.footer-bottom {
    border-top: 1px solid rgba(228, 185, 72, 0.1);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.social-link {
    padding: 0.7rem 1.2rem;
    background: rgba(228, 185, 72, 0.1);
    border-radius: 25px;
    color: var(--primary-color);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 1px solid rgba(228, 185, 72, 0.2);
}

        .social-link svg {
    width: 25px;
    height: 25px;
    fill: var(--primary-color);  /* Color dorado normal */
    transition: all 0.3s ease;
    padding-top: 5px;
}

.social-link:hover svg {
    fill: white;  /* Color blanco al hacer hover */
}

        .social-link:hover {
            background: var(--primary-gradient);
            color: white;
            transform: translateY(-2px);
            box-shadow: var(--card-shadow);
        }


/* Reset y configuración base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--secondary-color);
    overflow-x: hidden;
    background: var(--background-color);
}


/* Navigation Bar - Actualizada con gradientes */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(15, 15, 15, 0.95);
    backdrop-filter: blur(20px);
    z-index: 1000;
    transition: all 0.3s ease;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    background: var(--logo-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.nav-logo:hover {
    background: var(--logo-gradient-hover);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.5));
}

.nav-menu {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    color: #f5f5f5;
    text-decoration: none;
    font-weight: 400;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-gradient);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link:hover {
    color: var(--primary-color);
}

.nav-cta {
    background: var(--primary-gradient);
    color: var(--secondary-color);
    padding: 0.7rem 1.5rem;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: none;
}

.nav-cta::after {
    display: none;
}

.nav-cta:hover {
    background: var(--primary-gradient-inverted);
    transform: translateY(-2px);
    box-shadow: var(--button-shadow);
    color: var(--secondary-color);
}

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

.mobile-menu-toggle span {
    width: 25px;
    height: 2px;
    background: var(--primary-color);
    transition: all 0.3s ease;
}

/* Hero Section con gradientes actualizados */
.hero {
    min-height: 100vh;
    background: var(--hero-gradient);
    color: #f5f5f5;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

/* Actualizar todas las referencias de colores con los valores correctos */
.geometric-lines {
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;
    background: 
        linear-gradient(45deg, transparent 30%, rgba(228, 185, 72, 0.03) 30.5%, rgba(228, 185, 72, 0.03) 31%, transparent 31.5%),
        linear-gradient(-45deg, transparent 30%, rgba(238, 200, 81, 0.02) 30.5%, rgba(238, 200, 81, 0.02) 31%, transparent 31.5%);
    background-size: 60px 60px;
    opacity: 0.7;
}

.geometric-circle {
    position: absolute;
    top: 20%;
    right: 10%;
    width: 300px;
    height: 300px;
    border: 1px solid rgba(228, 185, 72, 0.15);
    border-radius: 50%;
    animation: rotateCircle 20s linear infinite;
}

.geometric-circle::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 200px;
    height: 200px;
    border: 1px solid rgba(238, 200, 81, 0.1);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: rotateCircle 15s linear infinite reverse;
}

.geometric-circle::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100px;
    height: 100px;
    border: 1px solid rgba(228, 185, 72, 0.4);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: rotateCircle 10s linear infinite;
}

@keyframes rotateCircle {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.hero-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
    width: 100%;
    margin-left: 80px;
    margin-top: -100px;
}

.hero-badge {
    display: inline-block;
    background: rgba(228, 185, 72, 0.1);
    border: 1px solid rgba(228, 185, 72, 0.3);
    color: var(--primary-color);
    padding: 0.5rem 1.5rem;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(3.5rem, 8vw, 7rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -2px;
}

.hero-subtitle {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: 400;
    background: var(--logo-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 2rem;
    font-style: italic;
}

.hero-description {
    font-size: 1.2rem;
    color: #b0b0b0;
    margin-bottom: 3rem;
    max-width: 600px;
    line-height: 1.7;
    font-weight: 300;
}

.hero-description b {
    color: #ffffff;
    font-size: 1.2rem;
    font-weight: 500;
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: var(--primary-gradient);
    color: var(--secondary-color);
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.4s ease;
    box-shadow: var(--button-shadow);
    border: none;
}

.hero-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.4);
    background: var(--primary-gradient-inverted);
    color: var(--secondary-color);
}

.cta-arrow {
    transition: transform 0.3s ease;
}

.hero-cta:hover .cta-arrow {
    transform: translateX(5px);
}

/* Logo Container - Actualizado con gradientes */
.logo-container {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    margin-left: 50px;
    margin-top: -200px;
}

.main-logo {
    filter: drop-shadow(0 0 30px rgba(212, 175, 55, 0.4)) drop-shadow(0 0 60px rgba(245, 224, 73, 0.2));
    animation: logoGlow 4s ease-in-out infinite;
    transition: all 0.4s ease;
    max-width: 400px;
}

.main-logo:hover {
    filter: drop-shadow(0 0 40px rgba(212, 175, 55, 0.6)) drop-shadow(0 0 80px rgba(245, 224, 73, 0.3));
    transform: scale(1.05);
}

@keyframes logoGlow {
    0% { 
        filter: drop-shadow(0 0 20px rgba(212, 175, 55, 0.4)) drop-shadow(0 0 40px rgba(245, 224, 73, 0.1));
    }
    25% {
        filter: drop-shadow(0 0 30px rgba(212, 175, 55, 0.5)) drop-shadow(0 0 50px rgba(245, 224, 73, 0.15));
    }
    50% { 
        filter: drop-shadow(0 0 40px rgba(212, 175, 55, 0.6)) drop-shadow(0 0 60px rgba(245, 224, 73, 0.2));
    }
    75% {
        filter: drop-shadow(0 0 30px rgba(212, 175, 55, 0.5)) drop-shadow(0 0 50px rgba(245, 224, 73, 0.15));
    }
    100% { 
        filter: drop-shadow(0 0 20px rgba(212, 175, 55, 0.4)) drop-shadow(0 0 40px rgba(245, 224, 73, 0.1));
    }
}

.logo {
    margin-top: -2rem;
}

/* Secciones actualizadas */
.section {
    padding: 6rem 2rem;
    position: relative;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-badge {
    display: inline-block;
    background: rgba(228, 185, 72, 0.1);
    color: var(--primary-color);
    padding: 0.5rem 1.5rem;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    border: 1px solid rgba(228, 185, 72, 0.2);
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.section-description {
    font-size: 1.2rem;
    color: var(--text-color);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Manifesto Section */
.manifesto {
    background: #f8f8f8;
    position: relative;
}

.manifesto-content {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    padding: 4rem;
    border-radius: 25px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    text-align: center;
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.manifesto-quote-container {
    position: relative;
    padding: 2rem 0;
}

.manifesto-quote {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-style: italic;
    color: var(--secondary-color);
    line-height: 1.8;
    position: relative;
    z-index: 2;
}

.quote-mark {
    font-family: 'Playfair Display', serif;
    font-size: 6rem;
    color: rgba(228, 185, 72);
    position: absolute;
    font-weight: 700;
    line-height: 1;
}

.quote-start {
    top: -2rem;
    left: -1rem;
}

.quote-end {
    bottom: -4rem;
    right: -1rem;
}

/* HQV Section Styles */
.hqv {
    background: #ffffff;
}

.hqv-header {
    text-align: center;
    
}
.hqv-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-top: 3rem;
}

.hqv-content.image-left {
    grid-template-columns: 350px 1fr;
}

.hqv-content.image-right {
    grid-template-columns: 1fr 350px;
}

.hqv-image {
    position: relative;
}

.hqv-photo {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.hqv-photo:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15);
}

.hqv-text h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hqv-subtitle {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 600;
    background: var(--logo-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 2rem;
    font-style: italic; 

}

.hqv-description{
    font-size: 0.8rem;
    color: var(--text-color);
    line-height: 1.7;
    margin-top: 0.8rem;
    margin-bottom: 1.5rem;
    font-weight: 500;
    text-align: center;
}

.hqv-text .achievements {
    list-style: none ;
    padding: 0;
    
}

.hqv-text .achievements li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 0.8rem;
    font-size: 1rem;
    color: var(--text-color);
    line-height: 1.6;
    font-weight: 500;    
}

.hqv-text .achievements li::before {
    content: "•";
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.2rem;
    margin-right: 0.8rem;
    margin-top: 0.1rem;
    flex-shrink: 0;
}

.hqv-text .closing-text {
    font-size: 1.1rem;
    color: var(--text-color);
    line-height: 1.7;
    margin-top: 2rem;
    font-style: italic;
}

/* Responsive para HQV */
@media (max-width: 768px) {
    .hqv-content,
    .hqv-content.image-left,
    .hqv-content.image-right {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hqv-photo {
        height: 300px;
    }

    .hqv-text h3 {
        font-size: 2rem;
    }

    .hqv-text .subtitle {
        font-size: 1.1rem;
    }
}

/* Nosotros Section */
.nosotros {
    background: #f8f8f8;
    position: relative;
    overflow: hidden;
}

.nosotros-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.nosotros-text {
    padding: 2rem 0;
}

.nosotros .section-title {
    text-align: left;
    margin-bottom: 2rem;
}

.nosotros .section-description {
    text-align: left;
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.nosotros-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.visual-element {
    position: relative;
    width: 300px;
    height: 300px;
}

/* Actualizar otros elementos con colores correctos */
.visual-circle {
    width: 100%;
    height: 100%;
    border: 2px solid rgba(228, 185, 72, 0.3);
    border-radius: 50%;
    position: relative;
    animation: rotateCircle 15s linear infinite;
}

.visual-circle::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 150px;
    height: 150px;
    border: 1px solid rgba(238, 200, 81, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: rotateCircle 10s linear infinite reverse;
}

.visual-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(45deg, transparent 40%, rgba(228, 185, 72, 0.1) 40.5%, rgba(228, 185, 72, 0.1) 41%, transparent 41.5%),
        linear-gradient(-45deg, transparent 40%, rgba(238, 200, 81, 0.08) 40.5%, rgba(238, 200, 81, 0.08) 41%, transparent 41.5%);
    background-size: 30px 30px;
    border-radius: 50%;
    animation: rotateLines 20s linear infinite;
}

@keyframes rotateLines {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Testimonios actualizados */
.testimonios {
    background: #ffffff;
}

.testimonios-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.testimonio {
    background: #fff;
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.testimonio:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: rgba(228, 185, 72, 0.2);
}

.testimonio-content {
    margin-bottom: 2rem;
}

.testimonio-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    color: var(--secondary-color);
    line-height: 1.7;
    font-style: italic;
}

.testimonio-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--primary-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 600;
    font-size: 1.1rem;
}

.author-info h4 {
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 0.2rem;
}

.author-info p {
    color: var(--text-color);
    font-size: 0.9rem;
}
/* Final CTA Section with Brand Image */
.final-cta {
    background: var(--secondary-color);
    color: #f5f5f5;
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 600px;
    display: flex;
    align-items: center;
}

/* Background image positioned on the left */
.final-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    background-image: url('../img/LogoGVC.jpeg'); /* Replace with actual image path */
    background-size: cover;
    background-position: center right; /* Show the right side of the image */
    background-repeat: no-repeat;
    opacity: 0.65; /* Subtle fade into background */
    z-index: 1;
}

/* Gradient overlay to blend the image better */
.final-cta::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to right, 
        rgba(26, 26, 26, 0.3) 0%,
        rgba(26, 26, 26, 0.7) 40%,
        rgba(26, 26, 26, 0.9) 70%,
        var(--secondary-color) 100%
    );
    z-index: 2;
}

.final-cta .container {
    position: relative;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: flex-end; /* Push content to the right */
    min-height: 500px;
}

.cta-content {
    position: relative;
    z-index: 3;
    max-width: 500px; /* Reduced width */
    padding-left: 5rem; 
    padding-right: 2rem; 
    text-align: center; /* Left align text for better composition */
    margin-left: 700px;

}

.cta-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #f5f5f5;
    line-height: 1.2;
}

.cta-description {
    font-size: 1.3rem;
    color: #b0b0b0;
    margin-bottom: 3rem;
    line-height: 1.7;
}

.final-cta-button {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: var(--primary-gradient);
    color: var(--secondary-color);
    padding: 1.5rem 3rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.4s ease;
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.3);
    border: none;
}

.final-cta-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 60px rgba(212, 175, 55, 0.4);
    background: var(--primary-gradient-inverted);
}

.final-cta-button .cta-arrow {
    transition: transform 0.3s ease;
}

.final-cta-button:hover .cta-arrow {
    transform: translateX(5px);
}

/* Alternative version: Image on the right */
.final-cta.image-right::before {
    left: auto;
    right: 0;
    background-position: center left; /* Show left side of image */
}

.final-cta.image-right::after {
    background: linear-gradient(
        to left, 
        rgba(26, 26, 26, 0.3) 0%,
        rgba(26, 26, 26, 0.7) 40%,
        rgba(26, 26, 26, 0.9) 70%,
        var(--secondary-color) 100%
    );
}

.final-cta.image-right .container {
    justify-content: flex-start;
}

.final-cta.image-right .cta-content {
    margin-left: 0;
    margin-right: auto;
    padding-left: 0;
    padding-right: 3rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .final-cta::before {
        width: 60%;
        opacity: 0.1;
    }
    
    .final-cta .container {
        justify-content: center;
    }
    
    .cta-content {
        margin-left: auto;
        margin-right: auto;
        text-align: center;
        padding-left: 2rem;
        padding-right: 2rem;
    }
    
    .final-cta::after {
        background: linear-gradient(
            to bottom,
            rgba(26, 26, 26, 0.5) 0%,
            rgba(26, 26, 26, 0.8) 50%,
            var(--secondary-color) 100%
        );
    }
}

@media (max-width: 768px) {
    .final-cta::before {
        width: 100%;
        opacity: 0.08;
        background-position: center;
    }
    
    .final-cta::after {
        background: rgba(26, 26, 26, 0.7);
    }
    
    .cta-content {
        padding-left: 1rem;
        padding-right: 1rem;
        text-align: center;
    }
    
    .final-cta {
        min-height: 500px;
    }
}

/* Enhanced version with subtle animation */
@keyframes imageShimmer {
    0% { opacity: 0.60; }
    50% { opacity: 0.70; }
    100% { opacity: 0.60; }
}

.final-cta::before {
    animation: imageShimmer 8s ease-in-out infinite;
}

/* Performance optimization */
@media (prefers-reduced-motion: reduce) {
    .final-cta::before {
        animation: none;
        opacity: 0.65;
    }
}
/* Modern Professional Footer */
.footer {
    background: #0a0a0a;
    color: #b0b0b0;
    padding: 5rem 0 3rem;
    position: relative;
    overflow: hidden;
}

/* Subtle background decoration */
.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(135deg, rgba(228, 185, 72, 0.02) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(238, 200, 81, 0.015) 0%, transparent 60%);
    z-index: 0;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

.footer-main {
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: 6rem;
    margin-bottom: 4rem;
    align-items: start;
}

.footer-brand {
    max-width: 400px;
}

.footer-logo {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    background: var(--logo-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
    letter-spacing: 2px;
    line-height: 1.2;
}

.footer-tagline {
    color: var(--primary-color);
    font-style: italic;
    font-size: 1.2rem;
    margin-bottom: 2rem;
    font-weight: 300;
}

.footer-description {
    color: #888;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 2.5rem;
}

.footer-nav {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem;
}

.footer-section {
    display: flex;
    flex-direction: column;
}

.footer-section h4 {
    color: #f5f5f5;
    font-weight: 600;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
}

.footer-section h4::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--primary-gradient);
}

.footer-section a {
    color: #b0b0b0;
    text-decoration: none;
    padding: 0.5rem 0;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    position: relative;
}

.footer-section a::before {
    content: '';
    position: absolute;
    left: -15px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 1px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.footer-section a:hover {
    color: var(--primary-color);
    padding-left: 1rem;
}

.footer-section a:hover::before {
    width: 10px;
}

.footer-bottom {
    border-top: 1px solid rgba(228, 185, 72, 0.15);
    padding-top: 3rem;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 3rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.social-link {
    padding: 0.8rem 1.5rem;
    background: rgba(228, 185, 72, 0.08);
    border-radius: 30px;
    color: var(--primary-color);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.4s ease;
    border: 1px solid rgba(228, 185, 72, 0.15);
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--primary-gradient);
    transition: left 0.4s ease;
    z-index: 0;
}

.social-link span {
    position: relative;
    z-index: 1;
    transition: color 0.4s ease;
}

.social-link:hover::before {
    left: 0;
}

.social-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(228, 185, 72, 0.3);
    border-color: var(--primary-color);
}

.social-link:hover span {
    color: var(--secondary-color);
}

.footer-legal {
    text-align: center;
}

.footer-legal p {
    color: #888;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.legal-links {
    display: flex;
    gap: 2rem;
    justify-content: center;
}

.legal-links a {
    color: #888;
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.legal-links a:hover {
    color: var(--primary-color);
}

.footer-contact {
    text-align: right;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.contact-info span {
    color: #888;
    font-size: 0.9rem;
}

.contact-info a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: #f5f5f5;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .footer-main {
        grid-template-columns: 1fr;
        gap: 4rem;
        text-align: center;
    }
    
    .footer-nav {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }
    
    .footer-bottom {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-contact {
        text-align: center;
    }
    
    .legal-links {
        flex-wrap: wrap;
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 4rem 0 2rem;
    }
    
    .footer-content {
        padding: 0 1.5rem;
    }
    
    .footer-main {
        gap: 3rem;
    }
    
    .footer-nav {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .footer-logo {
        font-size: 2rem;
    }
    
    .footer-tagline {
        font-size: 1rem;
    }
    
    .social-link {
        padding: 0.7rem 1.2rem;
        font-size: 0.85rem;
    }
    
    .legal-links {
        flex-direction: column;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .footer-bottom {
        gap: 1.5rem;
    }
    
    .footer-social {
        flex-wrap: wrap;
        justify-content: center;
    }
}

/* Animation for footer elements */
.footer-section a,
.social-link,
.legal-links a {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Subtle glow effect for brand */
.footer-logo {
    filter: drop-shadow(0 0 10px rgba(228, 185, 72, 0.1));
    transition: filter 0.3s ease;
}

.footer-logo:hover {
    filter: drop-shadow(0 0 15px rgba(228, 185, 72, 0.2));
}
/* Actualizar partículas con colores correctos */
.particle {
    position: absolute;
    background: radial-gradient(circle, var(--highlight-color) 0%, var(--primary-color) 50%, #CC9432 100%);
    border-radius: 50%;
    opacity: 0;
    animation: floatUp 20s linear infinite;
    box-shadow: 0 0 6px rgba(228, 185, 72, 0.4), 0 0 12px rgba(238, 200, 81, 0.2);
    z-index: 0;
}

/* Diferentes tamaños de partículas para variedad */
.particle:nth-child(1n) {
    width: 1px;
    height: 1px;
    background: var(--primary-color);
    box-shadow: 0 0 3px rgba(228, 185, 72, 0.6);
}

.particle:nth-child(2n) {
    width: 2px;
    height: 2px;
    background: radial-gradient(circle, var(--highlight-color), var(--primary-color));
    box-shadow: 0 0 4px rgba(238, 200, 81, 0.5);
    animation-duration: 25s;
}

.particle:nth-child(3n) {
    width: 1.5px;
    height: 1.5px;
    background: var(--highlight-color);
    box-shadow: 0 0 3px rgba(238, 200, 81, 0.6);
    animation-duration: 18s;
}

.particle:nth-child(4n) {
    width: 0.8px;
    height: 0.8px;
    background: #CC9432;
    box-shadow: 0 0 2px rgba(204, 148, 50, 0.5);
    animation-duration: 30s;
}

.particle:nth-child(5n) {
    width: 2.5px;
    height: 2.5px;
    background: radial-gradient(circle, var(--highlight-color) 20%, var(--primary-color) 60%, #CC9432 100%);
    box-shadow: 0 0 6px rgba(228, 185, 72, 0.4), 0 0 12px rgba(238, 200, 81, 0.2);
    animation-duration: 15s;
}

/* Animación de flotación mejorada */
@keyframes floatUp {
    0% {
        opacity: 0;
        transform: translateY(100vh) translateX(0px) scale(0) rotate(0deg);
    }
    5% {
        opacity: 0.3;
        transform: translateY(95vh) translateX(5px) scale(1) rotate(20deg);
    }
    15% {
        opacity: 0.5;
        transform: translateY(85vh) translateX(-3px) scale(1.1) rotate(60deg);
    }
    25% {
        opacity: 0.4;
        transform: translateY(75vh) translateX(8px) scale(0.9) rotate(120deg);
    }
    35% {
        opacity: 0.6;
        transform: translateY(65vh) translateX(-5px) scale(1.2) rotate(180deg);
    }
    45% {
        opacity: 0.5;
        transform: translateY(55vh) translateX(10px) scale(1) rotate(240deg);
    }
    55% {
        opacity: 0.7;
        transform: translateY(45vh) translateX(-8px) scale(1.1) rotate(300deg);
    }
    65% {
        opacity: 0.6;
        transform: translateY(35vh) translateX(3px) scale(0.8) rotate(360deg);
    }
    75% {
        opacity: 0.4;
        transform: translateY(25vh) translateX(-10px) scale(1) rotate(420deg);
    }
    85% {
        opacity: 0.3;
        transform: translateY(15vh) translateX(6px) scale(1.1) rotate(480deg);
    }
    95% {
        opacity: 0.1;
        transform: translateY(5vh) translateX(-2px) scale(0.9) rotate(540deg);
    }
    100% {
        opacity: 0;
        transform: translateY(-5vh) translateX(0px) scale(0) rotate(600deg);
    }
}

/* Posiciones horizontales distribuidas */
.particle:nth-child(1) { left: 8%; animation-delay: 0s; }
.particle:nth-child(2) { left: 15%; animation-delay: 3s; }
.particle:nth-child(3) { left: 25%; animation-delay: 6s; }
.particle:nth-child(4) { left: 35%; animation-delay: 1s; }
.particle:nth-child(5) { left: 45%; animation-delay: 9s; }
.particle:nth-child(6) { left: 55%; animation-delay: 4s; }
.particle:nth-child(7) { left: 65%; animation-delay: 12s; }
.particle:nth-child(8) { left: 75%; animation-delay: 7s; }
.particle:nth-child(9) { left: 85%; animation-delay: 15s; }
.particle:nth-child(10) { left: 92%; animation-delay: 2s; }
.particle:nth-child(11) { left: 18%; animation-delay: 11s; }
.particle:nth-child(12) { left: 28%; animation-delay: 5s; }
.particle:nth-child(13) { left: 38%; animation-delay: 14s; }
.particle:nth-child(14) { left: 48%; animation-delay: 8s; }
.particle:nth-child(15) { left: 58%; animation-delay: 17s; }
.particle:nth-child(16) { left: 68%; animation-delay: 10s; }
.particle:nth-child(17) { left: 78%; animation-delay: 13s; }
.particle:nth-child(18) { left: 88%; animation-delay: 16s; }

/* Variación de brillo con gradientes correctos */
.particle:nth-child(7n) {
    animation: floatUp 22s linear infinite, twinkle 4s ease-in-out infinite;
    background: radial-gradient(circle, var(--highlight-color) 0%, var(--primary-color) 70%, #CC9432 100%);
}

.particle:nth-child(11n) {
    animation: floatUp 28s linear infinite, twinkle 6s ease-in-out infinite;
    background: radial-gradient(circle, var(--highlight-color) 10%, var(--primary-color) 50%, #CC9432 90%);
}

@keyframes twinkle {
    0%, 100% { 
        opacity: 0.2; 
        box-shadow: 0 0 3px rgba(228, 185, 72, 0.3);
    }
    50% { 
        opacity: 0.8; 
        box-shadow: 0 0 8px rgba(228, 185, 72, 0.6), 0 0 16px rgba(238, 200, 81, 0.3);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .nosotros-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .nosotros .section-title,
    .nosotros .section-description {
        text-align: center;
    }
    
    .footer-main {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .footer-nav {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(15, 15, 15, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 2rem;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        border-top: 1px solid rgba(212, 175, 55, 0.2);
    }
    
    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .nav-link {
        padding: 1rem 0;
        border-bottom: 1px solid rgba(212, 175, 55, 0.1);
        width: 100%;
        text-align: center;
    }
    
    .nav-cta {
        margin-top: 1rem;
        text-align: center;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    .hero {
        padding: 6rem 1rem 4rem;
        text-align: center;
    }
    
    .geometric-circle {
        width: 200px;
        height: 200px;
        top: 10%;
        right: 5%;
    }
    
    .geometric-lines {
        width: 100%;
        opacity: 0.5;
    }
    
    .section {
        padding: 4rem 1rem;
    }
    
    .products-grid,
    .testimonios-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
     
    .nosotros-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .footer-nav {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-legal {
        text-align: center;
    }
    
    .legal-links {
        justify-content: center;
    }
    
    /* Partículas optimizadas para móvil */
    .particle:nth-child(n+10) {
        display: none;
    }
    
    .particle {
        animation-duration: 25s;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .manifesto-content {
        padding: 2rem;
    }
    
    .manifesto-quote {
        font-size: 1.2rem;
    }
    
    .quote-mark {
        font-size: 4rem;
    }
    
    .product-card,
    .testimonio {
        padding: 2rem;
    }
    
    .main-logo {
        max-width: 200px;
    }
    
    .logo-container {
        margin-bottom: 2.5rem;
        transform: translateY(-20px);
    }
    
    .logo {
        margin-top: -1rem;
    }
}

/* Responsive para el logo */
@media (max-width: 768px) {
    .main-logo {
        max-width: 250px;
    }
    
    .logo-container {
        margin-bottom: 3rem;
        transform: translateY(-30px);
    }
    
    .logo {
        margin-top: -1.5rem;
    }
}

/* Para usuarios que prefieren menos movimiento */
@media (prefers-reduced-motion: reduce) {
    .floating-particles {
        display: none;
        z-index: 0;
    }
    
    .geometric-circle,
    .geometric-circle::before,
    .geometric-circle::after {
        animation: none !important;
    }
    
    .visual-circle,
    .visual-lines {
        animation: none !important;
    }
    
    .main-logo {
        animation: none !important;
    }
    
    .particle {
        animation: none !important;
    }
}

/* Mejoras adicionales para transiciones suaves */
.nav-logo,
.hero-subtitle,
.section-badge,
.product-icon,
.product-link,
.stat-number,
.footer-logo {
    background-size: 200% 200%;
    animation: gradientShift 3s ease infinite;
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

/* Estados hover mejorados */
.product-card:hover .product-icon {
    animation: gradientShift 1.5s ease infinite;
    transform: scale(1.1);
}

.nav-logo:hover,
.footer-logo:hover {
    animation: gradientShift 1s ease infinite;
}

/* Estilos para elementos con gradientes premium */
.premium-element {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all 0.3s ease;
}

.premium-element:hover {
    background: var(--primary-gradient-inverted);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Botones con gradientes premium */
.btn-premium {
    background: var(--primary-gradient);
    border: none;
    color: var(--secondary-color);
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.4s ease;
    box-shadow: var(--button-shadow);
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-premium:hover {
    background: var(--primary-gradient-inverted);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.4);
    color: var(--secondary-color);
}

/* Cards con bordes dorados */
.card-premium {
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.3s ease;
    box-shadow: var(--card-shadow);
    position: relative;
    overflow: hidden;
}

.card-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--primary-gradient);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.card-premium:hover::before {
    opacity: 1;
}

.card-premium:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.2);
    border-color: rgba(212, 175, 55, 0.4);
}

/* Payment modal */

.payment-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
}

.modal-content {
    position: relative;
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #e5e7eb;
}

.modal-header h2 {
    margin: 0;
    color: #0a0a0a;
    font-size: 1.5rem;
}

.close-btn {
    background: none;
    border: none;
    font-size: 2rem;
    color: #9ca3af;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.close-btn:hover {
    color: #6b7280;
}

.plan-summary {
    color: white;
    padding: 1.5rem;
    border-radius: 12px;
    margin-bottom: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    background: linear-gradient(135deg, #cd7f32, #e6a555);
}

.plan-summary.despertar {
    background: linear-gradient(135deg, #a36628, #CD7F32, #ee943a) !important;
    box-shadow: 0 4px 20px rgba(205, 127, 50, 0.3);
}

.plan-summary.evolucionar {
    background: linear-gradient(135deg, #CC9432, #E4B948, #EEC851) !important;
    box-shadow: 0 4px 20px rgba(228, 185, 72, 0.3);
}

.plan-summary h3 {
    margin: 0 0 1rem;
    font-size: 1.25rem;
}

.price-display-modal {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.price-label {
    font-size: 0.9rem;
    opacity: 0.9;
}

#planPrice {
    font-size: 1.5rem;
    font-weight: 700;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    color: #374151;
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.form-group input {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s;
    box-sizing: border-box;
}

.form-group input:focus {
    outline: none;
    border-color: #cd7f32;
    box-shadow: 0 0 0 3px rgba(205, 127, 50, 0.1);
}

.btn-paypal {
    background: #0070ba;
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.btn-paypal:hover {
    background: #005ea6;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 112, 186, 0.3);
}

.btn-paypal:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.loading-spinner {
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255,255,255,0.3);
    border-top: 2px solid white;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.payment-info {
    text-align: center;
    margin-top: 1rem;
}

.payment-info p {
    margin: 0.25rem 0;
    color: #6b7280;
}

.error-message {
    background: #fef2f2;
    border: 1px solid #fecaca;
    color: #dc2626;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.success-message {
    background: #f0f9ff;
    border: 1px solid #bae6fd;
    color: #0369a1;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1rem;
}

@media (max-width: 768px) {
    .modal-content {
        padding: 1.5rem;
        width: 95%;
    }
    
    .modal-header h2 {
        font-size: 1.25rem;
    }
}


/* Podcast/Video Section */
.podcast-section {
    background: #ffffff;
}

.podcast-embed-container {
    max-width: 900px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.podcast-embed-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15);
}

.podcast-embed-container iframe {
    display: block;
    border-radius: 12px;
}

@media (max-width: 768px) {
    .podcast-embed-container iframe {
        height: 300px;
    }
}






/* Badge "Próximamente" - Diseño Premium y Profesional */
.coming-soon-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1.75rem 2rem;
    margin-top: 2rem;
    background: rgba(250, 248, 246, 0.6);
    border: 1px solid rgba(212, 175, 55, 0.25);
    border-radius: 8px;
    position: relative;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.coming-soon-badge:hover {
    background: rgba(250, 248, 246, 0.8);
    border-color: rgba(212, 175, 55, 0.4);
}

/* Icono de reloj SVG */
.coming-soon-badge::before {
    content: '';
    width: 20px;
    height: 20px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23D4AF37' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='10'/%3E%3Cpolyline points='12 6 12 12 16 14'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.7;
}

.coming-soon-badge span {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    color: #5a5a5a;
    letter-spacing: 0.03em;
}

/* Ajuste para responsive */
@media (max-width: 768px) {
    .coming-soon-badge {
        padding: 1.5rem;
        gap: 0.5rem;
    }
    
    .coming-soon-badge::before {
        width: 18px;
        height: 18px;
    }
    
    .coming-soon-badge span {
        font-size: 0.9375rem;
    }
}