/* ===================================
   VARIABLES & RESET
   =================================== */
:root {
    --primary: #E91E63;
    --primary-dark: #C2185B;
    --primary-light: #F8BBD0;
    --secondary: #FF4081;
    --accent: #FFD700;
    --text: #2C2C2C;
    --text-light: #666666;
    --background: #FFFFFF;
    --background-light: #FFF5F8;
    --gradient-primary: linear-gradient(135deg, #E91E63 0%, #FF4081 100%);
    --gradient-secondary: linear-gradient(135deg, #F8BBD0 0%, #FFFFFF 100%);
    --shadow: 0 10px 40px rgba(233, 30, 99, 0.15);
    --shadow-lg: 0 20px 60px rgba(233, 30, 99, 0.25);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text);
    background: var(--background);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

/* ===================================
   TYPOGRAPHY
   =================================== */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    line-height: 1.2;
}

.highlight {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

.highlight-gold {
    color: #FFFFFF;
    font-weight: 700;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.highlight-pink {
    color: #FFFFFF;
    font-weight: 700;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.highlight-yellow {
    color: #FFFFFF;
    font-weight: 700;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.highlight-purple {
    color: #FFFFFF;
    font-weight: 700;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.brand {
    color: var(--primary);
    font-weight: 700;
}

/* ===================================
   BUTTONS
   =================================== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    text-align: center;
    justify-content: center;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: var(--shadow);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: white;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-secondary:hover {
    background: var(--primary);
    color: white;
}

.btn-producto {
    background: var(--background-light);
    color: var(--primary);
    padding: 12px 25px;
    font-size: 0.95rem;
}

.btn-producto:hover {
    background: var(--primary);
    color: white;
}

.btn-lg {
    padding: 20px 50px;
    font-size: 1.2rem;
}

/* ===================================
   HERO SECTION
   =================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 100px 0 80px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../assets/images/hero-background.png');
    background-size: cover;
    background-position: center;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(233, 30, 99, 0.85) 0%, rgba(255, 64, 129, 0.75) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-areas: "text image";
    gap: 60px;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 10px 20px;
    border-radius: 50px;
    color: white;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.hero-title {
    font-size: 3.5rem;
    color: white;
    margin-bottom: 20px;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 30px;
    line-height: 1.6;
}

.hero-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 40px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: white;
    font-weight: 500;
    font-size: 1.05rem;
}

.feature-item i {
    color: var(--accent);
    font-size: 1.2rem;
}

.hero-cta {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.hero-image {
    position: relative;
}

.image-frame {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
}

.image-frame img {
    width: 100%;
    height: auto;
    display: block;
}

.image-decoration {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 150px;
    height: 150px;
    background: var(--accent);
    border-radius: 50%;
    opacity: 0.3;
    z-index: -1;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-size: 2rem;
    animation: bounce 2s infinite;
    z-index: 2;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* ===================================
   MANIFIESTO SECTION
   =================================== */
.manifiesto {
    padding: 80px 0;
    background: var(--background-light);
}

.manifiesto-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.manifiesto-text {
    font-size: 1.8rem;
    line-height: 1.8;
    color: var(--text);
    font-family: 'Playfair Display', serif;
}

/* ===================================
   SECTION HEADERS
   =================================== */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-label {
    display: inline-block;
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 15px;
}

.section-title {
    font-size: 3rem;
    color: var(--text);
    margin-bottom: 15px;
}

.section-description {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
}

/* ===================================
   FUNDADORA SECTION
   =================================== */
.fundadora {
    padding: 100px 0;
}

.fundadora-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.fundadora-image {
    position: relative;
}

.fundadora-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

.fundadora-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: white;
    padding: 15px 25px;
    border-radius: 50px;
    box-shadow: var(--shadow);
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: var(--primary);
}

.fundadora-text h3 {
    font-size: 2.5rem;
    color: var(--text);
    margin-bottom: 10px;
}

.fundadora-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 30px;
}

.fundadora-story p {
    margin-bottom: 20px;
    font-size: 1.05rem;
    line-height: 1.8;
}

.highlight-text {
    font-size: 1.3rem;
    color: var(--primary);
    font-weight: 600;
    font-style: italic;
}

.vitalia-birth {
    font-size: 1.4rem;
    font-weight: 600;
    margin-top: 30px;
}

/* ===================================
   QUÉ ES VITALIA SECTION
   =================================== */
.que-es-vitalia {
    padding: 100px 0;
    background: var(--background-light);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.benefit-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
}

.benefit-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.benefit-card h4 {
    font-size: 1.3rem;
    color: var(--text);
    margin-bottom: 10px;
}

.benefit-card p {
    color: var(--text-light);
    font-size: 0.95rem;
}

.vitalia-message {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.vitalia-message p {
    font-size: 1.5rem;
    line-height: 1.8;
    font-family: 'Playfair Display', serif;
}

/* ===================================
   FILOSOFÍA SECTION
   =================================== */
.filosofia {
    padding: 100px 0;
}

.filosofia-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-bottom: 60px;
}

.filosofia-item {
    background: var(--background-light);
    padding: 40px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all 0.3s ease;
}

.filosofia-item:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow);
}

.filosofia-icon {
    font-size: 3rem;
    flex-shrink: 0;
}

.filosofia-item p {
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--text);
}

.filosofia-quote {
    text-align: center;
    padding: 60px;
    background: var(--gradient-primary);
    border-radius: 30px;
    color: white;
}

.filosofia-quote p {
    font-size: 2rem;
    font-family: 'Playfair Display', serif;
    line-height: 1.6;
}

/* ===================================
   GALERÍA SECTION
   =================================== */
.galeria {
    padding: 100px 0;
    background: var(--background-light);
}

.btn-gallery {
    margin-top: 20px;
    background: var(--gradient-primary);
    color: white;
    border: none;
    padding: 15px 40px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-gallery:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.gallery-scroll {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 20px 0;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
}

.gallery-scroll::-webkit-scrollbar {
    height: 8px;
}

.gallery-scroll::-webkit-scrollbar-track {
    background: var(--background-light);
    border-radius: 10px;
}

.gallery-scroll::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 10px;
}

.gallery-scroll::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}

.gallery-item {
    flex: 0 0 120px;
    height: 120px;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.05);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Gallery Modal */
.gallery-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    animation: fadeIn 0.3s ease;
}

.gallery-modal-content {
    position: relative;
    margin: auto;
    padding: 0;
    width: 90%;
    max-width: 1200px;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-modal-content img {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 10px;
}

.gallery-close {
    position: absolute;
    top: 30px;
    right: 50px;
    color: white;
    font-size: 50px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10001;
    transition: all 0.3s ease;
}

.gallery-close:hover {
    color: var(--primary);
    transform: scale(1.2);
}

.gallery-prev,
.gallery-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: none;
    font-size: 40px;
    padding: 20px 25px;
    cursor: pointer;
    border-radius: 10px;
    transition: all 0.3s ease;
    z-index: 10001;
}

.gallery-prev:hover,
.gallery-next:hover {
    background: var(--primary);
}

.gallery-prev {
    left: 30px;
}

.gallery-next {
    right: 30px;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* ===================================
   PARA QUIÉN SECTION
   =================================== */
.para-quien {
    padding: 100px 0;
}

.para-quien-grid {
    max-width: 900px;
    margin: 0 auto 60px;
}

.para-quien-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px;
    background: var(--background-light);
    border-radius: 15px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.para-quien-item:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow);
}

.check-icon {
    font-size: 2rem;
    color: var(--primary);
    flex-shrink: 0;
}

.para-quien-item p {
    font-size: 1.1rem;
    color: var(--text);
    line-height: 1.6;
}

.para-quien-message {
    text-align: center;
    padding: 50px;
    background: var(--gradient-primary);
    border-radius: 30px;
    color: white;
}

.para-quien-message p {
    font-size: 1.8rem;
    font-family: 'Playfair Display', serif;
    line-height: 1.8;
}

/* ===================================
   PRODUCTOS SECTION
   =================================== */
.productos {
    padding: 100px 0;
    background: var(--background-light);
}

.productos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.producto-card {
    background: white;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.producto-card:hover {
    transform: translateY(-15px);
    box-shadow: var(--shadow-lg);
}

.producto-image {
    position: relative;
    height: 250px;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
}

.producto-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: white;
    color: var(--primary);
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.85rem;
}

.producto-icon {
    font-size: 5rem;
    color: white;
}

.producto-content {
    padding: 35px;
}

.producto-content h3 {
    font-size: 1.8rem;
    color: var(--text);
    margin-bottom: 5px;
}

.producto-subtitle {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 15px;
}

.producto-description {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 25px;
    line-height: 1.6;
}

/* ===================================
   BENEFICIOS SECTION
   =================================== */
.beneficios {
    padding: 100px 0;
}

.beneficios-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.beneficio-item {
    text-align: center;
    padding: 40px 30px;
    background: var(--background-light);
    border-radius: 20px;
    transition: all 0.3s ease;
}

.beneficio-item:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow);
}

.beneficio-icon {
    font-size: 4rem;
    margin-bottom: 20px;
}

.beneficio-item h4 {
    font-size: 1.4rem;
    color: var(--text);
    margin-bottom: 10px;
}

.beneficio-item p {
    color: var(--text-light);
    font-size: 1rem;
}

/* ===================================
   CTA FINAL SECTION
   =================================== */
.cta-final {
    padding: 120px 0;
    background: var(--gradient-primary);
}

.cta-content {
    text-align: center;
    color: white;
    max-width: 900px;
    margin: 0 auto;
}

.cta-icon {
    font-size: 5rem;
    margin-bottom: 30px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

.cta-content h2 {
    font-size: 3.5rem;
    margin-bottom: 15px;
}

.cta-subtitle {
    font-size: 2rem;
    margin-bottom: 30px;
    font-style: italic;
}

.cta-text {
    font-size: 1.3rem;
    line-height: 1.8;
    margin-bottom: 50px;
}

.cta-buttons {
    margin-bottom: 30px;
}

.cta-footer {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* ===================================
   FOOTER
   =================================== */
.footer {
    background: var(--text);
    color: white;
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo img {
    height: 60px;
    margin-bottom: 15px;
    border-radius: 10px;
}

.footer-logo p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

.footer-links h4,
.footer-contact h4 {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.footer-links a {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    padding: 5px 0;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: white;
}

.footer-contact a {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.7);
    padding: 5px 0;
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: var(--primary-light);
}

.footer-contact p {
    color: rgba(255, 255, 255, 0.7);
    padding: 5px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.disclaimer {
    font-size: 0.8rem !important;
    max-width: 800px;
    margin: 0 auto;
}

/* ===================================
   WHATSAPP FLOATING BUTTON
   =================================== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 70px;
    height: 70px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: white;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: all 0.3s ease;
    animation: float 3s ease-in-out infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 15px 40px rgba(37, 211, 102, 0.6);
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* ===================================
   RESPONSIVE
   =================================== */
@media (max-width: 992px) {
    .hero-content {
        grid-template-columns: 1fr;
        grid-template-areas: "image" "text";
        text-align: center;
        gap: 40px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-features {
        grid-template-columns: 1fr;
    }

    .hero-cta {
        justify-content: center;
    }

    .hero-image {
        max-width: 400px;
        margin: 0 auto;
        grid-area: image;
        order: -1;
    }

    .hero-text {
        grid-area: text;
        order: 1;
    }

    .fundadora-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .filosofia-grid {
        grid-template-columns: 1fr;
    }

    .gallery-item {
        flex: 0 0 110px;
        height: 110px;
    }

    .productos-grid {
        grid-template-columns: 1fr;
    }

    .beneficios-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .manifiesto-text {
        font-size: 1.4rem;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .gallery-item {
        flex: 0 0 100px;
        height: 100px;
    }

    .gallery-prev,
    .gallery-next {
        font-size: 30px;
        padding: 15px 20px;
    }

    .gallery-prev {
        left: 10px;
    }

    .gallery-next {
        right: 10px;
    }

    .gallery-close {
        top: 20px;
        right: 20px;
        font-size: 40px;
    }

    .beneficios-grid {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .cta-content h2 {
        font-size: 2.2rem;
    }

    .cta-subtitle {
        font-size: 1.5rem;
    }

    .cta-text {
        font-size: 1.1rem;
    }

    .whatsapp-float {
        width: 60px;
        height: 60px;
        font-size: 2rem;
        bottom: 20px;
        right: 20px;
    }
}

/* Producto Image Real */
.producto-image-real {
    position: relative;
    height: 280px;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.producto-image-real img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 20px;
    transition: transform 0.3s ease;
}

.producto-card:hover .producto-image-real img {
    transform: scale(1.1);
}
