/* Estilos generales */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: #333;
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* Header y navegación */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
    background-color: #F5F5F5;
    position: relative;
}

.logo {
    height: 80px;
}

.menu {
    display: flex;
    gap: 30px;
}

.menu li a {
    font-size: 16px;
    font-weight: 500;
    transition: color 0.3s;
}

.menu li a:hover, .menu li a.active {
    color: #f8a5a5;
}

.menu li a.active {
    background-color: #f8a5a5;
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
}

.cart-icon {
    position: relative;
    display: inline-block;
}

.cart-icon svg {
    fill: #333;
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background-color: #f8a5a5;
    color: #F5F5F5;
    font-size: 12px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: #333;
    transition: all 0.3s;
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }
    
    .menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: #F5F5F5;
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        transform: translateY(-100%);
        opacity: 0;
        pointer-events: none;
        transition: all 0.3s;
        z-index: 100;
    }
    
    .menu.active {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }
}

/* Sección Hero */
.hero {
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.video-background:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 182, 193, 0.3); /* Overlay rosa semi-transparente */
    z-index: 2;
}

.video-background video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    min-height: 400px;
    padding-bottom: 0;
}

.hero h1 {
    font-size: 48px;
    font-weight: 700;
    color: #F5F5F5;
    margin-bottom: 30px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1);
}

.hero h1 span {
    display: inline-block;
}

.hero-button {
    display: inline-block;
    background-color: #F5F5F5;
    padding: 15px 30px;
    border-radius: 30px;
    margin-top: 0px;
    margin-bottom: -25px;
    position: relative;
    bottom: -25px;
    box-shadow: 0 8px 24px rgba(243, 162, 165, 0.25); /* Sombra paralela */
}

.hero-button p {
    color: #f8a5a5;
    font-weight: 700;
}

/* Sección de productos */
.products {
    padding: 80px 50px;
    text-align: center;
    background-color: #EFECF4;
}

.products h2 {
    font-size: 2rem;
    color: #707070;
    margin-bottom: 40px;
    font-weight: 400;
}

.products h2 span {
    font-weight: 600;
    color: #333;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.product-card {
    background-color: #EFECF4;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.product-card img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    transition: transform 0.3s ease;
    padding: 10px;
}
 .product-card:hover img {
    transform: scale(1.05);
}
.product-info {
    padding: 15px;
    text-align: center;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.product-name {
    font-size: 0.95rem;
    color: #333;
    margin-bottom: 10px;
    font-weight: 600;
}

 .product-description {
    font-size: 0.8rem;
    color: #666;
    margin-bottom: 12px;
    line-height: 1.3;
}

.add-to-cart {
    background-color: #F3A2A5;
    color: #F5F5F5;
    border: none;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(243,162,165,0.3);
    margin-top: auto;
}

.add-to-cart:hover {
    background-color: #333;
    color: #F5F5F5;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(243,162,165,0.4);
}

.add-to-cart:active {
    transform: translateY(0);
}
/* Sección de descripción */
.description {
    background-color: #EFECF4;
    padding: 60px 50px;
    text-align: center;
}

.description p {
    max-width: 800px;
    margin: 0 auto;
    font-size: 18px;
    line-height: 1.8;
    color: #555;
}

/* Footer */
footer {
    background-color:#EFECF4;
    padding: 50px;
    border-top: 1px solid #eee;
    position: relative;
}
footer::before {
    content: "";
    display: block;
    width: 100%;
    height: 4px;
    background: #F3A2A5;
    position: absolute;
    top: 0;
    left: 0;
}
.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-links ul {
    display: flex;
    gap: 20px;
}

.footer-links a {
    color: #777;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #f8a5a5;
}

.social-media {
    display: flex;
    gap: 15px;
}

.social-media a svg {
    fill: #777;
    transition: fill 0.3s;
}

.social-media a:hover svg {
    fill: #f8a5a5;
}

.copyright {
    text-align: center;
    margin-top: 30px;
    color: #999;
    font-size: 14px;
}

/* Responsive */
@media (max-width: 1024px) {
    .product-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    header {
        flex-direction: column;
        padding: 20px;
    }
    
    .menu {
        margin-top: 20px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .hero h1 {
        font-size: 36px;
    }
    
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-content {
        flex-direction: column;
        gap: 30px;
    }
}

@media (max-width: 480px) {
    .product-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-links ul {
        flex-direction: column;
        align-items: center;
    }
}
/* Sección Destacado Manzanilla */
.destacado-manzanilla {
    background: #F5F5F5;
    min-height: 550px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 0 0 40px;
}

.destacado-manzanilla-content {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 400px;
    gap: 0;
}

.destacado-manzanilla-text {
    background: #F7B296;
    color: #fff;
    border-radius: 28px 0 0 28px;
    padding: 40px 40px 40px 40px;
    max-width: 430px;
    min-width: 330px;
    font-size: 18px;
    font-weight: 500;
    box-sizing: border-box;
    margin-right: -60px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-shadow: 0 6px 6px rgba(55, 49, 49, 0.18);
}

.destacado-manzanilla-text h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #fff;
}

.destacado-manzanilla-text p {
    font-size: 15px;
    font-weight: 400;
    margin-bottom: 24px;
    color: #fff;
}

.destacado-btn {
    background: #F3A2A5;
    color: #222;
    font-weight: 700;
    border: none;
    border-radius: 20px;
    padding: 12px 32px;
    font-size: 16px;
    margin-top: 8px;
    box-shadow: 0 4px 16px rgba(243,162,165,0.18);
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
}
.destacado-btn:hover {
    background: #fff;
    color: #F3A2A5;
}

.destacado-manzanilla-img img {
    width: 420px;
    height: 420px;
    object-fit: cover;
    border-radius: 0 50% 50% 0;
    display: block;
    margin-left: 50px;
}

@media (max-width: 900px) {
    .destacado-manzanilla-content {
        flex-direction: column;
        gap: 30px;
    }
    .destacado-manzanilla-img img {
        width: 90vw;
        height: auto;
        border-radius: 0 0 50% 50%;
        margin-top: 20px;
        margin-left: 1px;
    }
    .destacado-manzanilla-text {
        margin-right: 0;
        border-radius: 28px 28px 0 0;
        max-width: 90vw;
    }
    .destacado-manzanilla {
        min-height: 600px;
        padding: 30px 0;
    }
}
.testimonios {
    background: #EFECF4;
    padding: 60px 0 80px 0;
    text-align: center;
}

.testimonios h2 {
    font-size: 2rem;
    color: #707070;
    margin-bottom: 40px;
    font-weight: 400;
}

.testimonios h2 strong {
    font-weight: 700;
}

.testimonios-list {
    display: flex;
    gap: 32px;
    justify-content: center;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonio-card {
    background: #fff;
    border-radius: 32px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    width: 260px;
    min-height: 340px;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: hidden;
}

.testimonio-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    object-position: top;
    border-radius: 32px 32px 0 0;
    display: block;
}

.testimonio-text {
    padding: 24px 18px 18px 18px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    height: 100%;
}

.testimonio-text p {
    font-size: 1em;
    color: #707070;
    margin-bottom: 18px;
}

.testimonio-text span {
    color: #707070;
    font-size: 1em;
    font-weight: 700;
    text-align: right;
    display: block;
}

@media (max-width: 900px) {
    .testimonios-list {
        flex-direction: column;
        gap: 24px;
        align-items: center;
    }
    .testimonio-card {
        width: 90vw;
        min-width: 0;
    }
}
body {
    transition: opacity 0.5s ease-in-out;
}

body.fade-out {
    opacity: 0;
}
