/* TGV Benefits Section - Enhanced Styles */
:root {
    --tgv-blue: #002855;
    --tgv-red: #E10600;
    --tgv-gray: #F7F9FC;
    --tgv-gold: #FFD700;
}

.tgv-suite {
    font-family: inherit;
    margin-top: 2rem;
}

.tgv-suite section {
    overflow: hidden;
}

/* HERO Section */
.tgv-benefits {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    position: relative;
    min-height: 500px;
    padding: 4rem 0;
}

.tgv-benefits::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNjAiIGhlaWdodD0iNjAiIHZpZXdCb3g9IjAgMCA2MCA2MCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48ZGVmcz48cGF0dGVybiBpZD0iZ3JpZCIgd2lkdGg9IjYwIiBoZWlnaHQ9IjYwIiBwYXR0ZXJuVW5pdHM9InVzZXJTcGFjZU9uVXNlIj48cGF0aCBkPSJNIDEwIDAgTCAxMCA2MCBNIDI1IDAgTCAyNSA2MCBNIDM1IDAgTCAzNSA2MCBNIDQ1IDAgTCA0NSA2MCIgc3Ryb2tlPSIjMmEyYTNlIiBzdHJva2Utd2lkdGg9IjAuNSIvPjwvcGF0dGVybj48L2RlZnM+PHJlY3Qgd2lkdGg9IjYwIiBoZWlnaHQ9IjYwIiBmaWxsPSJ1cmwoI2dyaWQpIi8+PC9zdmc+') repeat;
    opacity: 0.1;
    animation: moveGrid 20s linear infinite;
}

@keyframes moveGrid {
    0% { transform: translate(0, 0); }
    100% { transform: translate(60px, 60px); }
}

.hero-content {
    position: relative;
    z-index: 2;
}

.success-widget {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.success-widget::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
    animation: pulse-glow 4s ease-in-out infinite;
    pointer-events: none;
}

@keyframes pulse-glow {
    0%, 100% { transform: scale(1); opacity: 0; }
    50% { transform: scale(1.1); opacity: 1; }
}

.success-counter {
    font-size: 4rem;
    font-weight: 900;
    color: var(--tgv-gold);
    text-shadow: 0 4px 20px rgba(255, 215, 0, 0.4);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    display: inline-block;
    position: relative;
}

.success-label {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 0.5rem;
}

.badge-premium {
    background: linear-gradient(135deg, var(--tgv-red), #FF4444);
    color: white;
    padding: 0.6rem 1.8rem;
    border-radius: 50px;
    font-weight: 700;
    display: inline-block;
    margin: 0.5rem;
    animation: float 3s ease-in-out infinite;
    box-shadow: 0 5px 20px rgba(225, 6, 0, 0.3);
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.badge-premium:nth-child(1) {
    animation-delay: 0s;
}

.badge-premium:nth-child(2) {
    animation-delay: 0.5s;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes fadeInUp {
    from { 
        opacity: 0; 
        transform: translateY(30px) scale(0.95); 
    }
    to { 
        opacity: 1; 
        transform: translateY(0) scale(1); 
    }
}

.fade-in {
    animation: fadeInUp 1s ease-out forwards;
}

.hero-title {
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1.3;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    margin-bottom: 1rem;
}

.hero-title .highlight {
    background: linear-gradient(90deg, var(--tgv-gold), #FFC700, var(--tgv-gold));
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shine 3s linear infinite;
}

@keyframes shine {
    to { background-position: 200% center; }
}

.hero-tagline {
    font-size: 1.15rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--tgv-gold);
    text-shadow: 0 2px 10px rgba(255, 215, 0, 0.3);
    margin-bottom: 2rem;
    text-transform: uppercase;
}

/* HOW IT WORKS Section */
.tgv-how {
    background: linear-gradient(180deg, #F8F9FA 0%, #FFFFFF 100%);
    padding: 4rem 0;
}

.step-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--tgv-blue), #003d7a);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    margin: 0 auto 1.5rem;
    box-shadow: 0 6px 20px rgba(0, 40, 85, 0.3);
    transition: all 0.4s ease;
}

.step-card {
    text-align: center;
    padding: 2rem 1rem;
    transition: all 0.4s ease;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    height: 100%;
}

.step-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.step-card:hover .step-icon {
    transform: scale(1.1) rotate(5deg);
}

.step-card h4 {
    color: var(--tgv-blue);
    font-weight: 700;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.step-card p {
    color: #6c757d;
    font-size: 1rem;
    line-height: 1.6;
}

/* EXPERTS Section */
.tgv-experts {
    background: #FAFBFC;
    padding: 4rem 0;
}

.tgv-experts h2 {
    color: var(--tgv-blue);
    font-weight: 800;
    margin-bottom: 3rem;
}

.advisor-card {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    margin: 0 10px;
    transition: all 0.4s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    background: #f8f9fa;
    aspect-ratio: 1 / 1;
    width: 100%;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    will-change: transform;
}

.advisor-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.advisor-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: all 0.6s ease;
    image-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    transform: translateZ(0);
}

.advisor-card:hover img {
    transform: scale(1.05) translateZ(0);
}

.advisor-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 40, 85, 0.95) 0%, rgba(0, 40, 85, 0.8) 50%, transparent 100%);
    color: white;
    padding: 30px 20px 20px;
    transition: all 0.4s ease;
}

.advisor-info p {
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.advisor-info small {
    color: var(--tgv-gold);
    font-weight: 500;
    font-size: 0.9rem;
}

/* TESTIMONIALS Section */
.tgv-testimonials {
    background: white;
    padding: 4rem 0;
}

.tgv-testimonials h2 {
    color: var(--tgv-blue);
    font-weight: 800;
    margin-bottom: 3rem;
}

.testimonial-card {
    background: linear-gradient(135deg, #FFFFFF 0%, #F8F9FA 100%);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
    margin: 1rem;
    min-height: 280px;
    position: relative;
    border: 1px solid rgba(0, 40, 85, 0.05);
    transition: all 0.4s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.15);
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 1rem;
    left: 1.5rem;
    font-size: 4rem;
    color: var(--tgv-gold);
    font-family: Georgia, serif;
    opacity: 0.2;
}

.stars {
    color: var(--tgv-gold);
    font-size: 1.3rem;
    margin-bottom: 1rem;
    text-shadow: 0 2px 5px rgba(255, 215, 0, 0.3);
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 1.5rem;
    line-height: 1.8;
    color: #495057;
    font-size: 1.05rem;
}

.testimonial-author {
    font-weight: 700;
    color: var(--tgv-blue);
    font-size: 1rem;
}

/* CTA Section */
.tgv-cta {
    background: linear-gradient(135deg, #F8F9FA 0%, #E9ECEF 100%);
    padding: 5rem 0;
    position: relative;
}

.tgv-cta h2 {
    color: var(--tgv-blue);
    font-weight: 800;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.tgv-cta .lead {
    color: #6c757d;
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
}

.whatsapp-btn {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
    font-size: 1.4rem;
    font-weight: 700;
    padding: 1.2rem 3.5rem;
    border-radius: 50px;
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
    text-decoration: none;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    animation: pulseBorder 2s infinite;
    position: relative;
    overflow: hidden;
}

.whatsapp-btn::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
    transform: rotate(45deg);
    transition: all 0.5s ease;
    opacity: 0;
}

.whatsapp-btn:hover::before {
    opacity: 1;
    top: -100%;
    left: -100%;
}

.whatsapp-btn:hover {
    transform: translateY(-3px) scale(1.05);
    color: white;
    text-decoration: none;
    box-shadow: 0 12px 35px rgba(37, 211, 102, 0.5);
}

.whatsapp-btn i {
    font-size: 1.6rem;
}

@keyframes pulseBorder {
    0%, 100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6); }
    50% { box-shadow: 0 0 0 20px rgba(37, 211, 102, 0); }
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.1rem;
    color: #6c757d;
    margin: 0.5rem;
    padding: 0.8rem 1.5rem;
    background: white;
    border-radius: 50px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.trust-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.12);
}

.trust-badge i {
    color: var(--tgv-gold);
    font-size: 1.8rem;
}

.wave-bg {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    z-index: -1;
}

.wave-bg svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 150px;
}

.wave-bg .shape-fill {
    fill: var(--tgv-blue);
    opacity: 0.1;
}

/* Mobile Optimizations */
@media (max-width: 768px) {
    .hero-title { font-size: 2.2rem; }
    .success-counter { font-size: 3rem; }
    .whatsapp-btn { font-size: 1.1rem; padding: 1rem 2.5rem; }
    .advisor-card { aspect-ratio: 1 / 1; max-width: 300px; margin: 0 auto; }
    .tgv-cta h2 { font-size: 2rem; }
    .trust-badge { font-size: 1rem; padding: 0.6rem 1rem; }
    .step-icon { width: 70px; height: 70px; font-size: 1.8rem; }
}

/* Desktop specific sizes for advisor cards */
@media (min-width: 769px) {
    .advisor-card {
        max-width: 400px;
        margin: 0 15px;
    }
}