@charset "utf-8";
/* CSS Document */
 /* Extra small devices (phones, 600px and down) */
* {
	margin:0;
	padding:0;
	outline:none;
}
        /* Estilos CSS integrados - Versión mejorada */
:root {
            --primary-color: #4CAF50;
            --secondary-color: #FF9800;
            --accent-color: #FF5722;
            --dark-color: #2E7D32;
            --light-color: #f8f8f8;
            --text-color: #333;
            --text-light: #777;
            --white: #ffffff;
            --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            --transition: all 0.3s ease;
	      --verde-oscuro: #5A7242;
            --verde-medio: #6B8E4E;
            --verde-claro: #8B9E6D;
            --cafe-oscuro: #5A4C3A;
            --cafe-medio: #A38C6D;
            --cafe-claro: #C2A87F;
            --beige-oscuro: #E8DFC8;
            --beige: #F8F4E9;
            --beige-claro: #FFFDF8;
            --sombra: rgba(101, 67, 33, 0.3);
        }
.container {
            max-width: 1200px;
            margin: 2rem auto;
            padding: 1rem;
        }

.fruit-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
            gap: 2rem;
        }
.fruit-card {
            background-color: var(--white);
            border-radius: 12px;
            box-shadow: var(--shadow);
            overflow: hidden;
            transition: var(--transition);
            position: relative;
            border: 1px solid rgba(0, 0, 0, 0.05);
        }
.fruit-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
        }
.fruit-image {
            position: relative;
            height: 180px;
            overflow: hidden;
        }
.fruit-image img {
			width: 80%;
			height: 100%;
			transition: var(--transition);
			display: block; /* Asegura que el elemento sea un bloque */
			margin: auto; /* Centra horizontalmente */
}
.fruit-card:hover .fruit-image img {
            transform: scale(1.1);
        }
.fruit-badge {
            position: absolute;
            top: 10px;
            left: 10px;
            background-color: var(--accent-color);
            color: var(--white);
            padding: 0.5rem 0.8rem;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: bold;
            z-index: 1;
        }
.fruit-info {
            padding: 1.5rem;
        }
.fruit-name {
            margin: 0 0 0.5rem;
            font-size: 1.3rem;
            color: var(--text-color);
            font-weight: 600;
        }
.fruit-description {
            font-size: 0.95rem;
            color: var(--text-light);
            margin-bottom: 1rem;
            display: -webkit-box;
            -webkit-line-clamp: 3;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }
.fruit-price {
            font-size: 1.3rem;
            color: var(--primary-color);
            font-weight: 700;
            margin-top: 0.5rem;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }
.add-to-cart {
            background-color: var(--primary-color);
            color: white;
            border: none;
            padding: 0.5rem 1rem;
            border-radius: 5px;
            cursor: pointer;
            transition: var(--transition);
            font-size: 0.9rem;
        }
.no-fruits, .error {
            text-align: center;
            color: var(--accent-color);
            font-size: 1.2rem;
            grid-column: 1 / -1;
            padding: 2rem;
        }
.footer {
            background-color: var(--dark-color);
            color: var(--white);
            text-align: center;
            padding: 2rem 1rem;
            margin-top: 4rem;
        }
.footer-content {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            align-items: center;
        }
.social-links {
            display: flex;
            gap: 1.5rem;
            margin: 1rem 0;
        }
.social-links a {
            color: var(--white);
            font-size: 1.5rem;
            transition: var(--transition);
        }
.social-links a:hover {
            color: var(--secondary-color);
            transform: translateY(-3px);
        }
.copyright {
            margin-top: 1rem;
            font-size: 0.9rem;
            opacity: 0.8;
        }

 @media (max-width: 768px) {
            .header-content {
                flex-direction: column;
                gap: 1rem;
            }
            
            .logout-button {
                position: static;
                margin-top: 1rem;
            }
            
            .fruit-grid {
                grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
            }
        }

/* Estilos adicionales para los controles */
.search-sort-container {
            padding: 16px;
            background-color: #f5f5f5;
            margin-bottom: 20px;
        }
.search-box {
            width: 70%;
            padding: 10px;
            border: 1px solid #ddd;
            border-radius: 4px;
        }
.sort-select {
            width: 25%;
            padding: 10px;
            border: 1px solid #ddd;
            border-radius: 4px;
            margin-left: 5%;
        }
 @media (max-width: 600px) {
            .search-box, .sort-select {
                width: 100%;
                margin-left: 0;
                margin-bottom: 10px;
            }
        }
.error-insulto {
    margin-top: 5px;
    padding: 8px 12px;
    animation: fadeIn 0.3s;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* En tu dbstyles.css */
.g-recaptcha {
    margin: 15px 0;
    display: flex;
    justify-content: center;
}

#recaptcha-error {
    margin-top: 5px;
    text-align: center;
}

/* Botón Mejorado */
.button {
    border: none;
    background: transparent;
    padding: 0;
    cursor: pointer;
    outline: none;
    margin-top: 20px;
}

.button-outer {
    position: relative;
    background: linear-gradient(135deg, #81c784, #4caf50);
    padding: 2px;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.4);
    transition: all 0.3s;
}

.button-inner {
    background: white;
    padding: 12px 30px;
    border-radius: 50px;
    transition: all 0.3s;
}

.button-outer:hover {
    box-shadow: 0 6px 20px rgba(76, 175, 80, 0.6);
    transform: translateY(-2px);
}

.button-outer:active {
    transform: translateY(0);
}

.button span {
    font-size: 1.1rem;
    font-weight: 600;
    background: linear-gradient(135deg, #81c784, #4caf50);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    transition: all 0.3s;
}

.button-outer:hover .button-inner {
    background: linear-gradient(135deg, #81c784, #4caf50);
}

.button-outer:hover span {
    color: white;
}


/* Chatbot*/
        #chatbot-container {
            position: fixed;
            bottom: 20px;
            right: 20px;
            z-index: 1000;
            filter: drop-shadow(0 10px 20px var(--sombra));
        }

        /* Botón flotante */
        #chatbot-toggle {
            background: linear-gradient(145deg, var(--verde-medio), var(--verde-oscuro));
            color: white;
            border: none;
            width: 65px;
            height: 65px;
            border-radius: 50%;
            font-size: 26px;
            cursor: pointer;
            box-shadow: 0 5px 15px var(--sombra);
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        #chatbot-toggle:hover {
            transform: scale(1.1) rotate(15deg);
            background: linear-gradient(145deg, var(--verde-claro), var(--verde-medio));
        }

        /* Ventana del chat */
        .chatbot-window {
            width: 380px;
            max-width: 90vw;
            background: var(--beige);
            border-radius: 15px;
            box-shadow: 0 10px 30px var(--sombra);
            position: absolute;
            bottom: 80px;
            right: 0;
            opacity: 0;
            transform: translateY(20px);
            transition: all 0.4s cubic-bezier(0.18, 0.89, 0.32, 1.28);
            max-height: 0;
            overflow: hidden;
            border: 1px solid var(--beige-oscuro);
            display: flex;
            flex-direction: column;
            height: 500px; /* Altura fija para mejor control */
        }

        .chatbot-container.active .chatbot-window {
            opacity: 1;
            transform: translateY(0);
            max-height: 70vh;
        }

        /* Header */
        .chatbot-header {
            background: linear-gradient(to right, var(--verde-oscuro), var(--verde-medio));
            color: white;
            padding: 15px 18px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            border-bottom: 2px solid var(--verde-oscuro);
            flex-shrink: 0;
        }

        /* Botón cerrar premium */
        .chatbot-close {
            background: linear-gradient(145deg, var(--cafe-medio), var(--cafe-oscuro));
            color: white;
            border: none;
            width: 34px;
            height: 34px;
            border-radius: 50%;
            font-size: 18px;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .chatbot-close::before,
        .chatbot-close::after {
            content: '';
            position: absolute;
            width: 18px;
            height: 2px;
            background: white;
            transition: all 0.3s;
        }

        .chatbot-close::before {
            transform: rotate(45deg);
        }

        .chatbot-close::after {
            transform: rotate(-45deg);
        }

        .chatbot-close:hover {
            transform: rotate(90deg) scale(1.1);
            box-shadow: 0 0 10px rgba(0,0,0,0.2);
        }

        /* Área de mensajes */
        .chatbot-messages {
    		height: calc(100% - 120px); /* Ajusta según necesidad */
            flex: 1;
            overflow-y: auto;
            padding: 20px;
            background: var(--beige-claro);
            scrollbar-width: thin;
            scrollbar-color: var(--verde-claro) var(--beige);
        }

        .chatbot-messages::-webkit-scrollbar {
            width: 6px;
        }

        .chatbot-messages::-webkit-scrollbar-thumb {
            background-color: var(--verde-claro);
            border-radius: 3px;
        }

        /* Mensajes */
        .message {
            margin-bottom: 18px;
            max-width: 85%;
            padding: 12px 16px;
            border-radius: 18px;
            line-height: 1.5;
            animation: fadeIn 0.3s ease;
            position: relative;
            box-shadow: 0 2px 5px rgba(0,0,0,0.08);
        }

        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(10px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .message.user {
            background: linear-gradient(to right, var(--cafe-medio), var(--cafe-oscuro));
            color: white;
            margin-left: auto;
            border-bottom-right-radius: 5px;
        }

        .message.bot {
            background: white;
            color: var(--cafe-oscuro);
            margin-right: auto;
            border-bottom-left-radius: 5px;
            border: 1px solid var(--beige-oscuro);
        }

        .message-time {
            display: block;
            font-size: 0.7rem;
            color: var(--cafe-medio);
            margin-top: 6px;
            text-align: right;
            opacity: 0.8;
        }

        /* Input area - VERSIÓN MEJORADA */
        .chatbot-input-container {
			display: none;
        }

        /* Quick replies */
        .quick-replies {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-top: 15px;
        }

        .quick-reply-btn {
            background: white;
            border: 1px solid var(--beige-oscuro);
            border-radius: 20px;
            padding: 8px 16px;
            font-size: 0.85rem;
            color: var(--verde-oscuro);
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 2px 5px rgba(0,0,0,0.05);
        }

        .quick-reply-btn:hover {
            background: var(--beige);
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(0,0,0,0.1);
        }

        /* Botón limpiar */
        #clear-chat {
            background: var(--cafe-medio);
            color: white;
            border: none;
            border-radius: 5px;
            padding: 6px 12px;
            margin: 10px;
            font-size: 0.8rem;
            cursor: pointer;
            transition: all 0.3s;
            float: right;
        }

        #clear-chat:hover {
            background: var(--cafe-oscuro);
        }

        /* Responsive */
        @media (max-width: 480px) {
            #chatbot-container {
                bottom: 15px;
                right: 15px;
            }
            
            .chatbot-window {
                width: 92vw;
                height: 450px;
            }
            
            #chatbot-toggle {
                width: 55px;
                height: 55px;
                font-size: 22px;
            }
            
            .chatbot-input-container {
                padding: 12px;
            }
            
            .chatbot-input {
                padding: 10px 15px;
                min-height: 40px;
            }
            
            .chatbot-send-btn {
                width: 40px;
                height: 40px;
            }
        }
/*Slidenav*/
.sidebar-container {
        background-color: #f5f0e6 !important; /* Fondo café claro */
        box-shadow: 5px 0 15px rgba(74, 107, 58, 0.3) !important;
        border-right: 3px solid #6b4e3a !important;
    }
    
    .sidebar-item {
        color: #4a6b3a !important; /* Texto verde oscuro */
        padding: 18px 24px !important;
        transition: all 0.3s ease !important;
        font-family: 'Segoe UI', Tahoma, sans-serif;
    }
    
    .sidebar-item:hover {
        background-color: #e8dfd1 !important; /* Café claro al pasar mouse */
        color: #3a5a2a !important;
        padding-left: 30px !important;
    }
    
    .sidebar-item i {
        margin-right: 12px;
        width: 20px;
        text-align: center;
    }
    
    .sidebar-header i {
        margin-right: 10px;
        color: #d4c9a8;
    }

/* Estilos para el análisis de sentimientos */
.sentiment-analysis {
    max-width: 800px;
    margin: 2rem auto;
    padding: 1.5rem;
    background: #f9f9f9;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.sentiment-box {
    margin-top: 1rem;
}

.sentiment-box textarea {
    width: 100%;
    min-height: 120px;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    resize: vertical;
    font-family: inherit;
}

.char-counter {
    text-align: right;
    font-size: 0.8rem;
    color: #666;
    margin-top: 4px;
}

.analyze-btn {
    background: #4CAF50;
    color: white;
    border: none;
    padding: 10px 20px;
    margin-top: 10px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 1rem;
    transition: background 0.3s;
}

.analyze-btn:hover {
    background: #3d8b40;
}

.analyze-btn i {
    margin-right: 8px;
}

.result-container {
    margin-top: 20px;
    display: none;
}

.loading, .error, .info {
    padding: 15px;
    border-radius: 6px;
    margin-bottom: 10px;
}

.loading {
    background: #f0f8ff;
    color: #2196F3;
}

.error {
    background: #ffebee;
    color: #f44336;
}

.info {
    background: #e8f5e9;
    color: #2e7d32;
}

.sentiment-result {
    background: white;
    padding: 15px;
    border-radius: 6px;
    border-left: 4px solid #4CAF50;
}

.sentiment {
    padding: 8px 12px;
    border-radius: 4px;
    margin: 10px 0;
    display: inline-block;
}

.very-positive { background: #e8f5e9; color: #1b5e20; }
.positive { background: #f1f8e9; color: #33691e; }
.neutral { background: #fff8e1; color: #ff6f00; }
.negative { background: #ffebee; color: #c62828; }
.very-negative { background: #fce4ec; color: #ad1457; }

.stars {
    font-size: 1.2em;
    margin-right: 8px;
}

.original-comment {
    margin-top: 15px;
    padding-top: 10px;
    border-top: 1px dashed #ddd;
}

.original-comment blockquote {
    margin: 5px 0 0;
    padding: 8px 12px;
    background: #f5f5f5;
    border-left: 3px solid #ccc;
}

.feedback-toast {
    position: fixed;
    bottom: 20px;
    right: 20px;
    padding: 12px 24px;
    color: white;
    border-radius: 4px;
    animation: fadeIn 0.3s;
    z-index: 1000;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
.section-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0 15px;
    }
    
    .comments-icon {
        color: #4CAF50;
        font-size: 1.5em;
        text-decoration: none;
        transition: all 0.3s;
        padding: 5px;
    }
    
    .comments-icon:hover {
        color: #45a049;
        transform: scale(1.1);
    }
    
    .comments-icon i {
        vertical-align: middle;
    }





/* Medias query*/
@media only screen and (max-width: 600px) {
.bgimg {
	background-attachment: scroll;
	margin-top: -10px;
	width: 100%;
	height: 100vh;
    background-image: url('images/PortadaPrinciPhone.jpg');
    min-height: 100%;
	background-position: center;
	background-size: cover;
	}	
.Titulo {
	padding-top: 100px;
	font-family: "Eagle Lake", serif;
    font-weight: 400;
    font-style: normal;
    font-size: 40px;
    text-align: right;
    margin-right: 15px;
    color: #333; /* Color base oscuro para mejor contraste */
    text-shadow: 
        2px 2px 0px rgba(0, 0, 0, 0.2), /* Sombra principal */
        4px 4px 0px rgba(0, 0, 0, 0.1), /* Sombra secundaria más difusa */
        1px 1px 4px rgba(255, 255, 255, 0.5); /* Brillito sutil en el borde superior */
	}
.Titulo2 {
	padding-top: 5px;
	font-family: "Eagle Lake", serif;
    font-weight: 400;
    font-style: normal;
    font-size: 40px;
    text-align: right;
    margin-right: 15px;
    color: #333; /* Color base oscuro para mejor contraste */
    text-shadow: 
        2px 2px 0px rgba(0, 0, 0, 0.2), /* Sombra principal */
        4px 4px 0px rgba(0, 0, 0, 0.1), /* Sombra secundaria más difusa */
        1px 1px 4px rgba(255, 255, 255, 0.5); /* Brillito sutil en el borde superior */
	}
.ProductosTitulo {
    font-family: "La Belle Aurore", cursive;
    font-weight: 400;
    font-style: normal;
	font-size: 4em;
    text-shadow: 
        2px 2px 0px rgba(0, 0, 0, 0.2), /* Sombra principal */
        4px 4px 0px rgba(0, 0, 0, 0.1), /* Sombra secundaria más difusa */
        1px 1px 4px rgba(255, 255, 255, 0.5); /* Brillito sutil en el borde superior */
	}
.About {
    font-size: 22px;
	font-family: "Inconsolata", monospace;
	font-optical-sizing: auto;
	font-weight: <weight>;
	font-style: normal;
	font-variation-settings:
		"wdth" 100;	
	text-align: justify;
	}
}



/* Small devices (portrait tablets and large phones, 600px and up) */
@media only screen and (min-width: 600px) {
.bgimg {
	background-attachment: scroll;
	margin-top: -10px;
	width: 100%;
	height: 100vh;
    background-image: url('images/PortadaPrinciPhone.jpg');
    min-height: 100%;
	background-position: center;
	background-size: cover;
	}	
.Titulo {
	padding-top: 100px;
	font-family: "Eagle Lake", serif;
    font-weight: 400;
    font-style: normal;
    font-size: 50px;
    text-align: right;
    margin-right: 15px;
    color: #333; /* Color base oscuro para mejor contraste */
    text-shadow: 
        2px 2px 0px rgba(0, 0, 0, 0.2), /* Sombra principal */
        4px 4px 0px rgba(0, 0, 0, 0.1), /* Sombra secundaria más difusa */
        1px 1px 4px rgba(255, 255, 255, 0.5); /* Brillito sutil en el borde superior */
	}
.Titulo2 {
	padding-top: 5px;
	font-family: "Eagle Lake", serif;
    font-weight: 400;
    font-style: normal;
    font-size: 50px;
    text-align: right;
    margin-right: 15px;
    color: #333; /* Color base oscuro para mejor contraste */
    text-shadow: 
        2px 2px 0px rgba(0, 0, 0, 0.2), /* Sombra principal */
        4px 4px 0px rgba(0, 0, 0, 0.1), /* Sombra secundaria más difusa */
        1px 1px 4px rgba(255, 255, 255, 0.5); /* Brillito sutil en el borde superior */
	}
.ProductosTitulo {
    font-family: "La Belle Aurore", cursive;
    font-weight: 400;
    font-style: normal;
	font-size: 5em;
    text-shadow: 
        2px 2px 0px rgba(0, 0, 0, 0.2), /* Sombra principal */
        4px 4px 0px rgba(0, 0, 0, 0.1), /* Sombra secundaria más difusa */
        1px 1px 4px rgba(255, 255, 255, 0.5); /* Brillito sutil en el borde superior */
	}
.About {
    font-size: 24px;
	font-family: "Inconsolata", monospace;
	font-optical-sizing: auto;
	font-weight: <weight>;
	font-style: normal;
	font-variation-settings:
		"wdth" 100;	
	text-align: justify;
	}
}

/* Medium devices (landscape tablets, 768px and up) */
@media only screen and (min-width: 768px) {
.bgimg {
	background-attachment: fixed;
	margin-top: -10px;
	width: 100%;
	height: 100vh;
    background-image: url('images/PortadaPrinciPc.jpg');
    min-height: 100%;
	background-position: center;
	background-size: cover;
	}	
.Titulo {
	padding-top: 100px;
	font-family: "Eagle Lake", serif;
    font-weight: 400;
    font-style: normal;
    font-size: 50px;
    text-align: right;
    margin-right: 15px;
    color: #333; /* Color base oscuro para mejor contraste */
    text-shadow: 
        2px 2px 0px rgba(0, 0, 0, 0.2), /* Sombra principal */
        4px 4px 0px rgba(0, 0, 0, 0.1), /* Sombra secundaria más difusa */
        1px 1px 4px rgba(255, 255, 255, 0.5); /* Brillito sutil en el borde superior */
	}
.Titulo2 {
	padding-top: 5px;
	font-family: "Eagle Lake", serif;
    font-weight: 400;
    font-style: normal;
    font-size: 50px;
    text-align: right;
    margin-right: 15px;
    color: #333; /* Color base oscuro para mejor contraste */
    text-shadow: 
        2px 2px 0px rgba(0, 0, 0, 0.2), /* Sombra principal */
        4px 4px 0px rgba(0, 0, 0, 0.1), /* Sombra secundaria más difusa */
        1px 1px 4px rgba(255, 255, 255, 0.5); /* Brillito sutil en el borde superior */
	}
.ProductosTitulo {
    font-family: "La Belle Aurore", cursive;
    font-weight: 400;
    font-style: normal;
	font-size: 5em;
    text-shadow: 
        2px 2px 0px rgba(0, 0, 0, 0.2), /* Sombra principal */
        4px 4px 0px rgba(0, 0, 0, 0.1), /* Sombra secundaria más difusa */
        1px 1px 4px rgba(255, 255, 255, 0.5); /* Brillito sutil en el borde superior */
	}
.About {
    font-size: 26px;
	font-family: "Inconsolata", monospace;
	font-optical-sizing: auto;
	font-weight: <weight>;
	font-style: normal;
	font-variation-settings:
		"wdth" 100;	
	text-align: justify;
	}	
}

/* Large devices (laptops/desktops, 992px and up) */
@media only screen and (min-width: 992px) {
.bgimg {
	background-attachment: fixed;
	margin-top: -10px;
	width: 100%;
	height: 100vh;
    background-image: url('images/PortadaPrinciPc.jpg');
    min-height: 100%;
	background-position: center;
	background-size: cover;
	}	
.Titulo {
	padding-top: 150px;
	font-family: "Eagle Lake", serif;
    font-weight: 400;
    font-style: normal;
    font-size: 65px;
    text-align: right;
    margin-right: 15px;
    color: #333; /* Color base oscuro para mejor contraste */
    text-shadow: 
        2px 2px 0px rgba(0, 0, 0, 0.2), /* Sombra principal */
        4px 4px 0px rgba(0, 0, 0, 0.1), /* Sombra secundaria más difusa */
        1px 1px 4px rgba(255, 255, 255, 0.5); /* Brillito sutil en el borde superior */
	}
.Titulo2 {
	padding-top: 5px;
	font-family: "Eagle Lake", serif;
    font-weight: 400;
    font-style: normal;
    font-size: 65px;
    text-align: right;
    margin-right: 15px;
    color: #333; /* Color base oscuro para mejor contraste */
    text-shadow: 
        2px 2px 0px rgba(0, 0, 0, 0.2), /* Sombra principal */
        4px 4px 0px rgba(0, 0, 0, 0.1), /* Sombra secundaria más difusa */
        1px 1px 4px rgba(255, 255, 255, 0.5); /* Brillito sutil en el borde superior */
	}
.ProductosTitulo {
    font-family: "La Belle Aurore", cursive;
    font-weight: 400;
    font-style: normal;
	font-size: 6em;
    text-shadow: 
        2px 2px 0px rgba(0, 0, 0, 0.2), /* Sombra principal */
        4px 4px 0px rgba(0, 0, 0, 0.1), /* Sombra secundaria más difusa */
        1px 1px 4px rgba(255, 255, 255, 0.5); /* Brillito sutil en el borde superior */
	}
.About {
    font-size: 24px;
	font-family: "Inconsolata", monospace;
	font-optical-sizing: auto;
	font-weight: <weight>;
	font-style: normal;
	font-variation-settings:
		"wdth" 100;	
	text-align: justify;
	}	
}

/* Extra large devices (large laptops and desktops, 1200px and up) */
@media only screen and (min-width: 1200px) {
.bgimg {
	background-attachment: fixed;
	margin-top: -10px;
	width: 100%;
	height: 100vh;
    background-image: url('images/PortadaPrinciPc.jpg');
    min-height: 100%;
	background-position: center;
	background-size: cover;
	}	
.Titulo {
	padding-top: 150px;
	font-family: "Eagle Lake", serif;
    font-weight: 400;
    font-style: normal;
    font-size: 70px;
    text-align: right;
    margin-right: 15px;
    color: #333; /* Color base oscuro para mejor contraste */
    text-shadow: 
        2px 2px 0px rgba(0, 0, 0, 0.2), /* Sombra principal */
        4px 4px 0px rgba(0, 0, 0, 0.1), /* Sombra secundaria más difusa */
        1px 1px 4px rgba(255, 255, 255, 0.5); /* Brillito sutil en el borde superior */
	}
.Titulo2 {
	padding-top: 5px;
	font-family: "Eagle Lake", serif;
    font-weight: 400;
    font-style: normal;
    font-size: 70px;
    text-align: right;
    margin-right: 15px;
    color: #333; /* Color base oscuro para mejor contraste */
    text-shadow: 
        2px 2px 0px rgba(0, 0, 0, 0.2), /* Sombra principal */
        4px 4px 0px rgba(0, 0, 0, 0.1), /* Sombra secundaria más difusa */
        1px 1px 4px rgba(255, 255, 255, 0.5); /* Brillito sutil en el borde superior */
	}
.ProductosTitulo {
    font-family: "La Belle Aurore", cursive;
    font-weight: 400;
    font-style: normal;
	font-size: 7em;
    text-shadow: 
        2px 2px 0px rgba(0, 0, 0, 0.2), /* Sombra principal */
        4px 4px 0px rgba(0, 0, 0, 0.1), /* Sombra secundaria más difusa */
        1px 1px 4px rgba(255, 255, 255, 0.5); /* Brillito sutil en el borde superior */
	}
.About {
    font-size: 26px;
	font-family: "Inconsolata", monospace;
	font-optical-sizing: auto;
	font-weight: <weight>;
	font-style: normal;
	font-variation-settings:
		"wdth" 100;	
	text-align: justify;
	}
} 
