/* CSS Updated: 2025-10-02 13:00 - Footer Fix */
:root {
    /* Paleta Surf Center */
    --verde-deep: #2f5268;
    --verde-ocean: #1a394b;
    --verde-center: #2f5268;
    --cinza-stone: #363c4c;
    --cinza-pedra: #363c4c;
    --verde-breezer: #34b2b8;
    --verde-drop: #89c7ca;
    --verde-surf: #b1dedb;
    --areia: #e2d4c7;
    --off-white: #f7f2ec;
    --cinza-surf: #cbcac5;
    --branco: #ffffff;

    /* Texto e sombras */
    --preto-texto: rgba(0, 0, 0, 0.9);
    --sombra-suave: 0 2px 10px rgba(0, 0, 0, 0.1);
    --sombra-media: 0 4px 20px rgba(0, 0, 0, 0.15);
    --border-radius: 16px;
    --max-width: 1200px;
}

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

/* Scrollbar personalizada - Webkit (Chrome, Safari, Edge) */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: var(--off-white);
}

::-webkit-scrollbar-thumb {
    background: var(--verde-breezer);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--verde-center);
}

/* Scrollbar personalizada - Firefox */
* {
    scrollbar-width: thin;
    scrollbar-color: var(--verde-breezer) var(--off-white);
}

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

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* Scroll Progress Bar */
/* Top Bar */
.top-bar {
    position: fixed;
    top: 0;
    width: 100%;
    background: linear-gradient(135deg, var(--verde-deep), var(--verde-center));
    color: var(--off-white);
    padding: 8px 0;
    z-index: 1001;
    cursor: pointer;
    transition: background 0.3s;
}

.top-bar:hover {
    background: linear-gradient(135deg, var(--verde-deep), var(--verde-center));
}

.top-bar-content {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 500;
}

.top-bar-icon {
    font-size: 16px;
    animation: pulse 2s infinite;
}

.top-bar-cta {
    font-weight: 600;
    margin-left: 10px;
}

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

.navbar {
    position: static;
    width: 100%;
    background: var(--off-white);
    box-shadow: var(--sombra-suave);
    z-index: 1000;
    padding: 15px 0;
}

.nav-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    height: 45px;
    object-fit: contain;
    cursor: pointer;
    transition: all 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
    filter: brightness(1.1);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-links a {
    text-decoration: none;
    color: var(--verde-center);
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--verde-deep);
}

.btn-whatsapp-nav {
    background: linear-gradient(135deg, var(--verde-deep), var(--verde-center));
    color: var(--off-white);
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
}

.btn-whatsapp-nav:hover {
    transform: translateY(-2px);
    box-shadow: var(--sombra-media);
}

/* Desktop Menu */
.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 40px;
    align-items: center;
}

.nav-menu li {
    margin: 0;
}

.nav-menu a {
    color: var(--verde-center);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: color 0.3s;
    position: relative;
}

.nav-menu a:hover {
    color: var(--verde-breezer);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--verde-breezer);
    transition: width 0.3s;
}

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

/* Hamburger Menu */
.hamburger-menu {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1002;
    border-radius: 8px;
    backdrop-filter: blur(5px);
}

.hamburger-menu span {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--verde-center);
    border-radius: 2px;
    transition: all 0.3s;
}

.hamburger-menu.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.hamburger-menu.active span:nth-child(2) {
    opacity: 0;
}

.hamburger-menu.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 998;
}

.mobile-menu-overlay.active {
    display: block;
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 320px;
    height: 100%;
    background: var(--off-white);
    z-index: 999;
    transition: right 0.3s ease;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    padding: 30px;
}

.mobile-menu.active {
    right: 0;
}

.close-mobile-menu {
    position: absolute;
    top: 20px;
    right: 20px;
    background: transparent;
    border: none;
    font-size: 24px;
    color: var(--verde-center);
    cursor: pointer;
}

.mobile-menu-items {
    list-style: none;
    padding: 0;
    margin: 60px 0 0 0;
    flex: 1;
}

.mobile-menu-items li {
    margin-bottom: 25px;
}

.mobile-menu-items a {
    color: var(--verde-center);
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    display: block;
    padding: 10px 0;
    border-bottom: 1px solid rgba(25, 57, 75, 0.1);
    transition: color 0.3s;
}

.mobile-menu-items a:hover {
    color: var(--verde-breezer);
}

.mobile-whatsapp {
    width: 100%;
    background: #25D366; /* WhatsApp Green - manter */
    color: var(--off-white);
    padding: 15px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.desktop-only {
    display: block;
}

/* Mobile Styles */
@media (max-width: 768px) {
    .nav-container {
        justify-content: center;
    }

    .logo {
        height: 40px;
    }

    .desktop-menu {
        display: none;
    }

    .desktop-only {
        display: none;
    }

    .hamburger-menu {
        display: flex;
    }

    .nav-links {
        display: flex;
        align-items: center;
    }
}

.hero {
    position: relative;
    height: 90vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-bg img,
.hero-bg video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7);
}

.hero-content {
    text-align: center;
    color: var(--off-white);
    max-width: 800px;
    padding: 0 20px;
}

.badge {
    display: inline-block;
    background: var(--verde-breezer);
    color: var(--branco);
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.badge:hover {
    background: var(--verde-deep);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 102, 102, 0.3);
}

.hero h1 {
    font-size: clamp(36px, 6vw, 64px);
    font-weight: 900;
    margin-bottom: 20px;
    line-height: 1.1;
}

.subtitle {
    font-size: clamp(18px, 3vw, 24px);
    font-weight: 400;
    margin-bottom: 40px;
    opacity: 0.95;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary, .btn-secondary {
    padding: 15px 35px;
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-primary {
    background: var(--verde-breezer);
    color: var(--verde-deep);
}

.btn-primary.btn-large {
    color: var(--off-white);
}

.btn-primary.btn-whatsapp {
    background: linear-gradient(135deg, var(--verde-deep), var(--verde-center));
    color: var(--off-white);
}

.btn-primary:hover {
    background: var(--verde-breezer);
    transform: translateY(-2px);
    box-shadow: var(--sombra-media);
}

.btn-primary.btn-whatsapp:hover {
    background: linear-gradient(135deg, var(--verde-center), var(--verde-deep));
    transform: translateY(-2px);
    box-shadow: 0 5px 25px rgba(25, 57, 75, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--off-white);
    border: 2px solid var(--off-white);
}

.btn-secondary:hover {
    background: var(--off-white);
    color: var(--verde-deep);
}

.features {
    padding: 80px 0;
    background: var(--off-white);
}

.features h2 {
    text-align: center;
    font-size: clamp(32px, 4vw, 48px);
    color: var(--verde-deep);
    margin-bottom: 60px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-card {
    background: #fdfbf7;
    padding: 45px 35px;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.4s ease;
    border: 1px solid rgba(110, 181, 184, 0.1);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg,
        transparent 0%,
        var(--verde-breezer) 30%,
        var(--verde-center) 70%,
        transparent 100%
    );
    transform: translateX(-100%);
    animation: borderSweep 12s ease-in-out infinite;
}

.feature-card::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 2px;
    height: 100%;
    background: linear-gradient(180deg,
        transparent 0%,
        var(--verde-breezer) 30%,
        var(--verde-center) 70%,
        transparent 100%
    );
    transform: translateY(-100%);
    animation: borderSweepVertical 12s ease-in-out infinite;
}

.feature-card:nth-child(1)::before { animation-delay: 0s; }
.feature-card:nth-child(1)::after { animation-delay: 0.5s; }
.feature-card:nth-child(2)::before { animation-delay: 3s; }
.feature-card:nth-child(2)::after { animation-delay: 3.5s; }
.feature-card:nth-child(3)::before { animation-delay: 6s; }
.feature-card:nth-child(3)::after { animation-delay: 6.5s; }
.feature-card:nth-child(4)::before { animation-delay: 9s; }
.feature-card:nth-child(4)::after { animation-delay: 9.5s; }

@keyframes borderSweep {
    0%, 75% { transform: translateX(-100%); opacity: 0; }
    8.33% { transform: translateX(-100%); opacity: 1; }
    16.66% { transform: translateX(0%); opacity: 1; }
    25%, 100% { transform: translateX(0%); opacity: 0; }
}

@keyframes borderSweepVertical {
    0%, 75% { transform: translateY(-100%); opacity: 0; }
    8.33% { transform: translateY(-100%); opacity: 1; }
    16.66% { transform: translateY(0%); opacity: 1; }
    25%, 100% { transform: translateY(0%); opacity: 0; }
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 50px rgba(110, 181, 184, 0.2);
    border-color: var(--verde-breezer);
}

.feature-icon {
    font-size: 52px;
    margin-bottom: 25px;
    background: linear-gradient(135deg, var(--verde-breezer), var(--verde-center));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.feature-card h3 {
    color: var(--verde-deep);
    font-size: 22px;
    margin-bottom: 18px;
    font-weight: 700;
    line-height: 1.3;
}

.feature-card p {
    color: var(--cinza-stone);
    font-size: 16px;
    line-height: 1.6;
}

.club-complete {
    padding: 80px 0;
    background: var(--off-white);
}

.club-complete h2 {
    text-align: center;
    font-size: clamp(32px, 4vw, 48px);
    color: var(--verde-deep);
    margin-bottom: 20px;
}

.club-complete .section-subtitle {
    text-align: center;
    font-size: 18px;
    color: rgba(25, 57, 75, 0.7);
    max-width: 700px;
    margin: 0 auto 60px;
    line-height: 1.6;
}

.activities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.activity-item {
    background: #fdfbf7;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--sombra-suave);
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.activity-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--sombra-media);
}

.activity-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.activity-content {
    display: flex;
    align-items: flex-start;
    padding: 20px;
    gap: 15px;
    flex-grow: 1;
}

.activity-icon {
    color: var(--verde-breezer);
    font-size: 24px;
    background: rgba(255, 255, 255, 0.3);
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    flex-shrink: 0;
}

.activity-item h4 {
    color: var(--verde-deep);
    font-size: 20px;
    margin: 0 0 2px 0;
    font-weight: 600;
}

.activity-item p {
    color: var(--cinza-stone);
    font-size: 15px;
    margin: 0;
    opacity: 0.9;
}

.architecture {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
    color: var(--off-white);
}

.arch-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.arch-bg video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.architecture::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(25, 57, 75, 0.92);
    z-index: 0;
}

.arch-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.arch-text h2 {
    font-size: clamp(32px, 4vw, 48px);
    margin-bottom: 30px;
}

.arch-text p {
    font-size: 18px;
    margin-bottom: 20px;
    opacity: 0.95;
}

.arch-text .btn-primary {
    margin-top: 15px;
}

.arch-gallery {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.arch-gallery img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: var(--border-radius);
}

/* Galeria com 4 fotos */
.arch-gallery-4 {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.arch-gallery-4 img {
    height: 200px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.arch-gallery-4 img:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
    .arch-gallery-4 {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .arch-gallery-4 img {
        height: 180px;
    }
}

.exclusivity {
    padding: 80px 0 40px;
    background: var(--off-white);
    text-align: center;
}

.exclusivity h2 {
    font-size: clamp(32px, 4vw, 48px);
    color: var(--verde-deep);
    margin-bottom: 60px;
}

.investment-highlights {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin: 0 auto 60px;
}

.highlight-card {
    background: #fdfbf7;
    padding: 40px 15px;
    border-radius: var(--border-radius);
    box-shadow: var(--sombra-media);
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.highlight-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--verde-breezer), var(--verde-center));
}

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

.highlight-number {
    font-size: 48px;
    font-weight: 900;
    color: var(--verde-breezer);
    margin-bottom: 10px;
    line-height: 1;
}

.highlight-label {
    font-size: 18px;
    font-weight: 700;
    color: var(--verde-deep);
    margin-bottom: 8px;
}

.highlight-desc {
    font-size: 14px;
    color: var(--cinza-stone);
    opacity: 0.9;
}

.investment-features {
    background: #fdfbf7;
    padding: 50px;
    border-radius: var(--border-radius);
    box-shadow: var(--sombra-suave);
    margin-bottom: 40px;
    width: 100%;
}

.investment-features h3 {
    color: var(--verde-center);
    font-size: 24px;
    margin-bottom: 30px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    text-align: left;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.benefit-item i {
    font-size: 24px;
    color: var(--verde-breezer);
    width: 30px;
    flex-shrink: 0;
}

.benefit-item span {
    color: var(--verde-deep);
    font-size: 16px;
    line-height: 1.4;
    font-weight: 500;
}

.btn-large {
    padding: 20px 50px;
    font-size: 18px;
}

.location {
    padding: 80px 0;
}

.location h2 {
    text-align: center;
    font-size: clamp(32px, 4vw, 48px);
    color: var(--verde-deep);
    margin-bottom: 60px;
}

.location-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.address h3 {
    color: var(--verde-center);
    font-size: 28px;
    margin-bottom: 20px;
}

.address p {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--cinza-stone);
}

.address p i {
    color: var(--verde-breezer);
    margin-right: 8px;
}

.map img {
    width: 100%;
    border-radius: var(--border-radius);
    box-shadow: var(--sombra-media);
}

.faq {
    padding: 80px 0;
    background: var(--verde-deep);
}

.faq h2 {
    text-align: center;
    font-size: clamp(32px, 4vw, 48px);
    color: var(--off-white);
    margin-bottom: 60px;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.faq-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.faq-item h3 {
    color: var(--verde-breezer);
    font-size: 20px;
    margin-bottom: 15px;
}

.faq-item p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
}

.final-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--verde-deep), var(--verde-center));
    text-align: center;
    color: var(--off-white);
}

.final-cta h2 {
    font-size: clamp(32px, 4vw, 48px);
    margin-bottom: 20px;
    color: var(--off-white);
}

.final-cta p {
    font-size: 20px;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.95;
    color: var(--off-white);
}

.btn-large {
    padding: 20px 50px;
    font-size: 18px;
}

.close-fullscreen {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    background: #294a60 !important;
    border: 2px solid #294a60 !important;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    z-index: 1000;
}

.close-fullscreen i {
    color: #ffffff !important;
    font-size: 18px;
}

.close-fullscreen:hover {
    background: var(--verde-deep);
    border-color: var(--verde-deep);
    transform: rotate(90deg);
}

.close-fullscreen:hover i {
    color: var(--branco);
}

.form-container {
    background: #fdfbf7;
    border-radius: 24px;
    padding: 40px 30px 25px;
    max-width: 550px;
    width: 100%;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    max-height: calc(100vh - 40px);
    overflow-y: auto;
    overflow-x: hidden;
    margin: auto;
}

.form-watermark {
    position: absolute;
    top: 20px;
    left: 20px;
    opacity: 0.08;
    pointer-events: none;
    z-index: 0;
}

.form-watermark img {
    width: 80px;
    height: auto;
    filter: grayscale(100%) brightness(1.2);
}

.form-container::-webkit-scrollbar {
    width: 6px;
}

.form-container::-webkit-scrollbar-track {
    background: rgba(226, 212, 199, 0.3);
    border-radius: 3px;
}

.form-container::-webkit-scrollbar-thumb {
    background: var(--verde-breezer);
    border-radius: 3px;
}

.form-container::-webkit-scrollbar-thumb:hover {
    background: var(--verde-center);
}


.form-header {
    text-align: center;
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
}

.form-logo {
    height: 50px;
    margin-bottom: 12px;
}

.form-header h2 {
    color: var(--verde-deep);
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 4px;
}

.form-header p {
    color: var(--cinza-stone);
    font-size: 14px;
    line-height: 1.5;
}

/* Modal Description */
.modal-description-wrapper {
    margin-top: 12px;
    position: relative;
}

.modal-description {
    font-size: 13px;
    line-height: 1.6;
    color: rgba(25, 57, 75, 0.75);
    text-align: left;
    max-height: 1000px;
    overflow: hidden;
    transition: max-height 0.4s ease, opacity 0.3s ease;
    position: relative;
}

.modal-description.collapsed {
    max-height: 80px;
}

.modal-description.collapsed::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40px;
    background: linear-gradient(to bottom, transparent, #fdfbf7);
    pointer-events: none;
}

.modal-description p {
    margin: 0 0 10px 0;
    font-size: 13px;
    line-height: 1.6;
}

.modal-description p:last-child {
    margin-bottom: 0;
}

.modal-description strong {
    color: var(--verde-deep);
    font-weight: 600;
}

/* Pricing Highlight Box */
.pricing-highlight {
    background: rgba(0, 102, 102, 0.02);
    border-left: 2px solid rgba(0, 150, 136, 0.2);
    padding: 10px 14px;
    margin: 15px 0;
    border-radius: 4px;
}

.pricing-highlight .pricing-title {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    color: rgba(25, 57, 75, 0.4);
    margin: 0 0 4px 0;
    font-weight: 500;
}

.pricing-highlight .pricing-current {
    font-size: 18px;
    font-weight: 600;
    color: rgba(25, 57, 75, 0.65);
    margin: 0 0 3px 0;
}

.pricing-highlight .pricing-future {
    font-size: 10px;
    color: rgba(25, 57, 75, 0.4);
    margin: 0;
    font-style: italic;
}

.description-footer {
    font-size: 13px !important;
    color: var(--verde-deep) !important;
    margin-top: 12px !important;
}

.read-more-btn {
    background: transparent;
    border: none;
    color: var(--verde-breezer);
    padding: 8px 0;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 8px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.read-more-btn:hover {
    background: var(--verde-breezer);
    color: var(--off-white);
    transform: translateY(-2px);
}

.read-more-btn i {
    transition: transform 0.3s ease;
    font-size: 12px;
}

.read-more-btn.active i {
    transform: rotate(180deg);
}

.expanded-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
    margin-top: 0;
}

.expanded-content.active {
    max-height: 1000px;
    margin-top: 16px;
}

.expanded-text {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 12px;
    border-left: 4px solid var(--verde-breezer);
}

.expanded-text p {
    color: var(--cinza-stone);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 12px;
}

.expanded-text p:last-child {
    margin-bottom: 0;
}

.value-highlight {
    background: linear-gradient(135deg, var(--verde-deep), var(--verde-center));
    padding: 16px;
    border-radius: 8px;
    text-align: center;
    margin: 16px 0;
}

.value-highlight strong {
    display: block;
    color: var(--off-white);
    font-size: 14px;
    margin-bottom: 8px;
}

.value-highlight .value-price {
    display: block;
    color: var(--verde-breezer);
    font-size: 28px;
    font-weight: 900;
    margin-bottom: 4px;
}

.value-highlight small {
    display: block;
    color: rgba(255, 255, 255, 0.8);
    font-size: 11px;
}

.final-cta-text {
    font-weight: 600;
    color: var(--verde-deep) !important;
    background: var(--verde-breezer);
    background: linear-gradient(135deg, rgba(52, 178, 184, 0.1), rgba(52, 178, 184, 0.2));
    padding: 12px;
    border-radius: 8px;
    margin-top: 16px !important;
}

.pricing-box {
    margin: 10px 0 12px;
    background: linear-gradient(135deg, var(--verde-deep), var(--verde-center));
    border-radius: 10px;
    padding: 12px 16px;
    box-shadow: 0 4px 12px rgba(47, 82, 104, 0.15);
    display: grid;
    grid-template-columns: 0.5fr auto 1fr;
    gap: 12px;
    align-items: center;
}

.day-use-warning-badge {
    margin: 10px 0 12px;
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    border-radius: 8px;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 2px 8px rgba(245, 158, 11, 0.2);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.day-use-warning-badge i {
    color: var(--branco);
    font-size: 18px;
}

.day-use-warning-badge span {
    color: var(--branco);
    font-size: 14px;
    font-weight: 600;
}

.day-use-warning-badge.hidden {
    display: none;
}

.pricing-left {
    display: flex;
    align-items: center;
    gap: 10px;
}

.pricing-left i {
    color: var(--verde-breezer);
    font-size: 24px;
    flex-shrink: 0;
}

.pricing-info-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.pricing-info-title {
    color: var(--branco);
    font-size: 16px;
    font-weight: 700;
    line-height: 1.2;
}

.pricing-info-subtitle {
    color: rgba(255, 255, 255, 0.85);
    font-size: 13px;
    font-weight: 400;
    line-height: 1.3;
    display: flex;
    align-items: center;
    gap: 4px;
}

.pricing-info-subtitle i {
    color: rgba(255, 255, 255, 0.6);
    font-size: 9px;
    flex-shrink: 0;
}

.pricing-info {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    color: rgba(255, 255, 255, 0.95);
    font-size: 10px;
    line-height: 1.4;
}

.pricing-info i {
    color: var(--verde-breezer);
    font-size: 16px;
    margin-top: 2px;
    flex-shrink: 0;
}

.pricing-divider {
    width: 1px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
}

.pricing-right {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.pricing-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
}

.pricing-label {
    display: block;
    color: rgba(255, 255, 255, 0.9);
    font-size: 10px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pricing-label i {
    margin-right: 4px;
    color: var(--verde-breezer);
    font-size: 11px;
}

.pricing-value {
    display: block;
    color: var(--branco);
    font-size: 38px;
    font-weight: 900;
    letter-spacing: -1px;
    line-height: 1;
}

.pricing-label-bottom {
    display: block;
    color: rgba(255, 255, 255, 0.95);
    font-size: 11px;
    font-weight: 500;
    text-align: center;
}

.pricing-label-bottom i {
    margin-right: 4px;
    color: var(--verde-breezer);
    font-size: 12px;
}

.pricing-label-small {
    display: block;
    color: rgba(255, 255, 255, 0.85);
    font-size: 11px;
    font-weight: 400;
    text-align: center;
    margin-bottom: 0;
}

.pricing-label-small .plus-icon {
    color: var(--verde-breezer);
    font-weight: 700;
    font-size: 16px;
}

.pricing-value-large {
    display: block;
    color: var(--branco);
    font-size: 32px;
    font-weight: 800;
    text-align: center;
    margin: 0;
    line-height: 1;
}

.pricing-value-large .times-small {
    font-size: 14px;
    font-weight: 600;
    color: var(--verde-breezer);
}

.pricing-label-bottom-single {
    display: block;
    color: rgba(255, 255, 255, 0.9);
    font-size: 11px;
    font-weight: 500;
    text-align: left;
    line-height: 1.4;
}

.pricing-label-bottom-single small {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.75);
    font-weight: 300;
}

.pricing-value-small {
    display: block;
    color: var(--branco);
    font-size: 16px;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.pricing-item-inline {
    flex-direction: row;
    gap: 8px;
    align-items: center;
}

.pricing-item i {
    font-size: 14px;
    color: var(--verde-breezer);
}


.pricing-main {
    text-align: center;
    margin-bottom: 8px;
}

.pricing-payment {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    color: rgba(255, 255, 255, 0.95);
    font-size: 11px;
}

.pricing-payment i {
    font-size: 14px;
    color: var(--verde-breezer);
}

.pricing-payment strong {
    color: var(--branco);
    font-weight: 700;
}

.form-progress-container {
    margin: 12px 0 20px;
    position: relative;
    z-index: 1;
}

.form-progress-bar {
    width: 100%;
    height: 6px;
    background: var(--areia);
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.form-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--verde-deep), var(--verde-breezer));
    border-radius: 10px;
    width: 20%;
    transition: width 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    box-shadow: 0 0 10px rgba(110, 181, 184, 0.5);
}

.form-progress-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

.form-progress-text {
    text-align: center;
    margin-top: 8px;
}

.form-progress-text span {
    font-size: 14px;
    color: var(--verde-center);
    font-weight: 600;
    display: inline-block;
    animation: fadeInText 0.3s ease-out;
}

@keyframes fadeInText {
    from {
        opacity: 0;
        transform: translateY(-5px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.form-group {
    margin-bottom: 12px;
    position: relative;
}

.input-icon {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(25, 57, 75, 0.4);
    font-size: 18px;
    pointer-events: none;
    z-index: 1;
}

.form-group.completed::after {
    content: "\f058";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #25D366;
    font-size: 20px;
    opacity: 0;
    animation: checkmarkAppear 0.4s ease-out forwards;
    pointer-events: none;
}

@keyframes checkmarkAppear {
    0% {
        opacity: 0;
        transform: translateY(-50%) scale(0);
    }
    50% {
        transform: translateY(-50%) scale(1.2);
    }
    100% {
        opacity: 1;
        transform: translateY(-50%) scale(1);
    }
}

.form-group.completed input {
    padding-right: 45px;
    border-color: #25D366;
    background: rgba(37, 211, 102, 0.05);
    transition: all 0.3s ease;
}

.form-group input:focus {
    border-color: var(--verde-breezer);
    box-shadow: 0 0 0 3px rgba(110, 181, 184, 0.1);
    transform: scale(1.01);
    transition: all 0.3s ease;
}

.form-step {
    animation: slideInStep 0.4s ease-out;
    position: relative;
    z-index: 1;
}

@keyframes slideInStep {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.next-field-indicator {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin: 10px 0 0 0;
    padding: 12px;
    background: var(--verde-breezer);
    border-radius: 10px;
    border: none;
    color: var(--branco);
    font-size: 14px;
    font-weight: 600;
    animation: pulseIndicator 2s ease-in-out infinite;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    box-shadow: 0 4px 12px rgba(110, 181, 184, 0.3);
    font-family: 'Inter', sans-serif;
}

.next-field-indicator:hover {
    background: var(--verde-center);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(110, 181, 184, 0.4);
}

.next-field-indicator:active {
    transform: translateY(0);
}

.next-field-indicator i {
    animation: bounceDown 1.5s ease-in-out infinite;
}

@keyframes pulseIndicator {
    0%, 100% {
        opacity: 0.7;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.02);
    }
}

@keyframes bounceDown {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(3px);
    }
}

.form-group label {
    display: block;
    color: var(--verde-center);
    font-weight: 600;
    margin-bottom: 12px;
    font-size: 16px;
}

.form-group input[type="text"],
.form-group input[type="tel"],
.form-group input[type="email"] {
    width: 100%;
    padding: 12px 14px 12px 45px;
    border: 2px solid var(--areia);
    border-radius: 10px;
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s;
}

.form-group input:focus {
    outline: none;
    border-color: var(--verde-breezer);
    box-shadow: 0 0 0 3px rgba(110, 181, 184, 0.1);
}

.interest-section {
    margin: 12px 0;
}

.interest-title {
    font-weight: 600;
    color: var(--verde-center);
    font-size: 14px;
    margin-bottom: 10px;
}

.required-indicator {
    color: #dc3545;
    font-weight: 700;
    margin-left: 2px;
}

.interest-options.validation-error {
    padding: 8px;
    border: 2px solid #dc3545;
    border-radius: 12px;
    background: rgba(220, 53, 69, 0.05);
    animation: shakeError 0.3s ease;
}

@keyframes shakeError {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    75% { transform: translateX(5px); }
}

.interest-options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.day-use-notice {
    margin-top: 0;
    margin-bottom: 16px;
    padding: 14px 18px;
    background: #d4ff00;
    border-left: 5px solid #9ac400;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(154, 196, 0, 0.2);
}

.day-use-notice i {
    color: #4a5e00;
    font-size: 18px;
    flex-shrink: 0;
}

.day-use-notice span {
    color: #2d3800;
    font-size: 13.5px;
    line-height: 1.4;
    font-weight: 600;
}

.interest-box {
    display: block;
    cursor: pointer;
    position: relative;
}

.interest-box input[type="radio"] {
    position: absolute;
    opacity: 0;
}

.interest-card {
    display: block;
    cursor: pointer;
    position: relative;
}

.interest-card input[type="radio"] {
    position: absolute;
    opacity: 0;
}

.card-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 12px 8px;
    background: var(--off-white);
    border: 2px solid transparent;
    border-radius: 12px;
    transition: all 0.3s;
    min-height: 85px;
    text-align: center;
}

.interest-card input[type="radio"]:checked + .card-content {
    background: linear-gradient(135deg, rgba(110, 181, 184, 0.1), rgba(28, 76, 114, 0.1));
    border-color: var(--verde-breezer);
}

.card-icon {
    font-size: 22px;
    margin-bottom: 6px;
    color: var(--verde-breezer);
}

.card-icon i {
    display: block;
}

.card-text strong {
    font-weight: 600;
    color: var(--verde-center);
    font-size: 13px;
    display: block;
    margin-bottom: 2px;
}

.card-text small {
    color: var(--cinza-stone);
    font-size: 11px;
    display: block;
}

.interest-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 12px 8px;
    background: var(--off-white);
    border: 2px solid transparent;
    border-radius: 12px;
    transition: all 0.3s;
    min-height: 85px;
    text-align: center;
}

.interest-box input[type="radio"]:checked + .interest-content {
    background: linear-gradient(135deg, rgba(110, 181, 184, 0.1), rgba(28, 76, 114, 0.1));
    border-color: var(--verde-breezer);
}

.interest-box:hover .interest-content {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.interest-icon {
    font-size: 32px;
    margin-bottom: 10px;
    color: var(--verde-breezer);
}

.interest-icon i {
    display: block;
}

.interest-title {
    font-weight: 600;
    color: var(--verde-center);
    font-size: 16px;
    display: block;
    margin-bottom: 5px;
}

.interest-desc {
    color: var(--cinza-stone);
    font-size: 13px;
    display: block;
}

.btn-submit-form {
    width: 100%;
    background: linear-gradient(135deg, #25D366, #128C7E); /* WhatsApp gradient - manter */
    color: var(--off-white);
    border: none;
    padding: 20px;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.btn-submit-form:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
}

.btn-submit-form:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.submit-button {
    width: 100%;
    padding: 12px;
    background: #25D366;
    color: var(--branco);
    border: none;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 10px;
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
}

.submit-button i {
    font-size: 20px;
}

.submit-button:hover {
    transform: translateY(-2px);
    background: #20BD5A;
    box-shadow: 0 12px 30px rgba(37, 211, 102, 0.4);
}

.submit-button:active {
    transform: translateY(0);
}

.form-footer {
    text-align: left;
    margin-top: 8px;
    font-size: 10px;
    color: rgba(25, 57, 75, 0.4);
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 4px;
    line-height: 1.3;
}

.form-footer i {
    color: rgba(25, 57, 75, 0.4);
    font-size: 11px;
}

@media (max-width: 768px) {
    .modal-fullscreen {
        padding: 0 !important;
    }

    .pricing-left {
        flex-direction: column;
        text-align: left;
        gap: 8px;
        align-items: flex-start;
    }

    .pricing-info-text {
        align-items: flex-start;
    }

    .pricing-value {
        font-size: 30px;
    }

    .pricing-label-bottom {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
        gap: 0px;
        line-height: 1.2;
    }

    .pricing-label-bottom i {
        align-self: flex-start;
    }

    .pricing-label-bottom span:last-child {
        font-size: 16px;
        font-weight: 700;
    }

    .pricing-left i {
        font-size: 14px;
    }

    .pricing-info-title {
        font-size: 13px;
        text-align: left;
    }

    .pricing-info-subtitle {
        font-size: 10px;
        text-align: left;
    }
}

/* Modal mobile styles disabled - using desktop design for all devices
/* @media (max-width: 768px) {
    .modal-fullscreen {
        padding: 0;
        align-items: flex-start;
    }

    .form-container {
        padding: 0px;
        background: #fdfbf7;
        border-radius: 0;
        box-shadow: none;
    }

    .form-watermark {
        top: 0px;
        left: 35px;
        right: auto;
        z-index: 0;
    }

    .form-watermark img {
        width: 80px;
        filter: grayscale(100%) brightness(0.3) !important;
        opacity: 1 !important;
    }

    .close-fullscreen {
        top: 10px;
        right: 10px;
        width: 34px;
        height: 34px;
    }

    .form-header {
        margin-bottom: 8px;
        margin-top: 0px;
    }

    .form-header h2 {
        font-size: 20px;
        margin-bottom: 4px;
    }

    .form-header p {
        font-size: 11px;
        line-height: 1.3;
    }

    .pricing-box {
        margin: 8px 0 10px 0;
        padding: 10px 14px;
        border-radius: 8px;
        grid-template-columns: 0.5fr auto 1fr;
        gap: 10px;
    }

    .pricing-divider {
        width: 100%;
        height: 1px;
        margin: 4px 0;
    }

    .pricing-left i {
        font-size: 20px;
    }

    .pricing-info-title {
        font-size: 12px;
    }

    .pricing-info-subtitle {
        font-size: 11px;
    }

    .pricing-info {
        font-size: 9px;
        gap: 6px;
    }

    .pricing-info i {
        font-size: 14px;
    }

    .pricing-label {
        font-size: 9px;
    }

    .pricing-value {
        font-size: 20px;
    }

    .pricing-value-small {
        font-size: 14px;
    }

    .pricing-label-small {
        font-size: 9px;
        margin-bottom: 6px;
    }

    .pricing-value-large {
        font-size: 24px;
        margin: 8px 0;
    }

    .pricing-value-large .times-small {
        font-size: 14px;
        color: var(--verde-breezer);
    }

    .pricing-label-bottom-single {
        font-size: 10px;
    }

    .pricing-label-bottom-single small {
        font-size: 9px;
    }

    .pricing-item span {
        font-size: 10px;
    }

    .pricing-item i {
        font-size: 12px;
    }

    .pricing-payment {
        font-size: 10px;
    }

    .pricing-payment i {
        font-size: 12px;
    }

    .form-progress-container {
        margin: 10px 0 15px 0;
    }

    .form-progress-bar {
        height: 5px;
    }

    .form-progress-text span {
        font-size: 11px;
    }

    .form-step {
        padding: 0;
    }

    #leadForm {
        padding: 0px;
    }

    .form-group {
        margin-bottom: 10px;
    }

    .form-group input {
        padding: 11px 12px;
        font-size: 14px;
    }

    .form-group.completed::after {
        font-size: 18px;
        right: 10px;
    }

    .interest-section {
        margin: 10px 0;
    }

    .interest-title {
        font-size: 13px;
        margin-bottom: 8px;
    }

    .interest-options {
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
    }

    .card-content {
        flex-direction: row;
        justify-content: flex-start;
        align-items: center;
        padding: 12px;
        min-height: 70px;
        text-align: left;
        gap: 10px;
    }

    .card-icon {
        font-size: 20px;
        margin-bottom: 0;
        margin-right: 0;
    }

    .card-icon i {
        font-size: 24px;
    }

    .card-text strong {
        font-size: 13px;
        text-align: left;
    }

    .card-text small {
        font-size: 11px;
        text-align: left;
    }

    .next-field-indicator {
        padding: 11px;
        font-size: 13px;
        margin: 8px 0 0 0;
    }

    .submit-button {
        padding: 11px;
        font-size: 14px;
        margin-top: 8px;
        margin-bottom: 15px;
    }

    .form-footer {
        font-size: 9px;
        margin-top: 6px;
        padding: 0 0 15px 0;
    }

    .form-footer i {
        font-size: 10px;
    }

    .modal-fullscreen-content {
        padding: 0;
        max-width: 100%;
    }
}
*/

.comparison {
    padding: 80px 0;
    background: var(--off-white);
}

.comparison h2 {
    text-align: center;
    font-size: clamp(32px, 4vw, 48px);
    color: var(--verde-deep);
    margin-bottom: 20px;
}

.comparison .section-description {
    text-align: center;
    font-size: 18px;
    line-height: 1.6;
    color: rgba(25, 57, 75, 0.7);
    max-width: 800px;
    margin: 0 auto 50px;
}

.comparison-table {
    overflow-x: auto;
}

.comparison-table table {
    width: 100%;
    background: #fdfbf7;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--sombra-media);
}

.comparison-table th,
.comparison-table td {
    padding: 20px;
    text-align: center;
    border-bottom: 1px solid var(--areia);
    color: var(--cinza-stone);
}

.comparison-table thead th {
    background: var(--verde-deep);
    color: var(--off-white);
    font-weight: 600;
    font-size: 18px;
}

.comparison-table th.featured {
    background: linear-gradient(135deg, var(--verde-breezer), var(--verde-drop));
    color: var(--off-white);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.comparison-table .table-logo {
    height: 30px;
    width: auto;
    filter: brightness(0) invert(1);
    opacity: 0.95;
}

.comparison-table td.featured {
    background: rgba(52, 178, 184, 0.08);
    font-weight: 600;
    color: var(--verde-deep);
}

.comparison-table .feature-name {
    text-align: left;
    font-weight: 600;
    color: var(--verde-deep);
}

.comparison-table .fa-check {
    color: var(--verde-breezer);
}

.comparison-table .fa-star {
    color: #ffc107; /* Amarelo - estrelas/avisos */
}

.comparison-table .fa-times {
    color: #dc3545; /* Vermelho - erros/obrigatório */
}

/* Video Tour Section */
.video-tour {
    padding: 100px 0;
    background: var(--off-white);
    position: relative;
}

.video-header {
    text-align: center;
    margin-bottom: 60px;
}

.video-header h2 {
    font-size: clamp(32px, 4vw, 48px);
    color: var(--verde-deep);
    margin-bottom: 15px;
    font-weight: 700;
}

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

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: var(--border-radius);
    box-shadow: 0 20px 60px rgba(25, 57, 75, 0.15);
    background: var(--verde-deep);
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.video-info {
    margin-top: 40px;
}

.video-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.video-feature {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: rgba(110, 181, 184, 0.08);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.video-feature:hover {
    background: rgba(110, 181, 184, 0.15);
    transform: translateY(-2px);
}

.video-feature i {
    font-size: 32px;
    color: var(--verde-deep);
    flex-shrink: 0;
}

.video-feature strong {
    display: block;
    font-size: 16px;
    color: var(--verde-deep);
    margin-bottom: 4px;
}

.video-feature span {
    font-size: 14px;
    color: rgba(25, 57, 75, 0.7);
}

.video-cta {
    text-align: center;
}

.btn-video-cta {
    font-size: 18px;
    padding: 15px 40px;
    background: linear-gradient(135deg, var(--verde-deep), var(--verde-center));
    color: var(--off-white);
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-video-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(25, 57, 75, 0.3);
}

@media (max-width: 768px) {
    .video-tour {
        padding: 60px 0;
    }

    .video-features {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .video-feature {
        padding: 15px;
    }

    .btn-video-cta {
        width: 100%;
        justify-content: center;
    }

    .btn-map-cta {
        width: 100%;
        font-size: 16px;
        padding: 15px 30px;
        justify-content: center;
    }

    .location-map-cta {
        margin-top: 20px;
        text-align: center;
    }
}

/* Testimonials Section */
.testimonials {
    padding: 60px 0 100px;
    background: var(--off-white);
    overflow: hidden;
}

.testimonials-header {
    text-align: center;
    margin-bottom: 60px;
}

.testimonials h2 {
    font-size: clamp(32px, 4vw, 48px);
    color: var(--verde-deep);
    margin-bottom: 15px;
}

.testimonials-subtitle {
    font-size: 18px;
    color: var(--verde-center);
    opacity: 0.8;
    max-width: 600px;
    margin: 0 auto;
}

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

.testimonial-card {
    background: #fdfbf7;
    padding: 40px 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--sombra-media);
    position: relative;
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.quote-icon {
    position: absolute;
    top: -15px;
    left: 30px;
    width: 30px;
    height: 30px;
    background: var(--verde-deep);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--branco);
    font-size: 14px;
}

.testimonial-card blockquote {
    font-size: 16px;
    line-height: 1.6;
    color: var(--cinza-stone);
    margin-bottom: 25px;
    flex: 1;
    font-style: italic;
    margin-top: 15px;
}

.author-info {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-top: 20px;
    border-top: 1px solid rgba(25, 57, 75, 0.1);
    margin-top: auto;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--verde-deep), var(--verde-center));
    color: var(--off-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 18px;
}

.author-details h4 {
    color: var(--verde-deep);
    font-size: 16px;
    margin-bottom: 3px;
}

.author-details span {
    color: var(--verde-center);
    opacity: 0.7;
    font-size: 14px;
}

@media (max-width: 768px) {
    .comparison-table {
        font-size: 14px;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 12px 8px;
    }

    .testimonials {
        padding: 80px 0;
    }

    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .testimonial-card {
        padding: 30px 25px;
    }
}

@media (max-width: 480px) {
    .testimonials {
        padding: 60px 0;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .testimonial-card {
        padding: 25px 20px;
    }

    .investment-highlights {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .investment-features {
        padding: 30px 20px;
    }

    .comparison-table {
        font-size: 12px;
    }

    .comparison-table thead th {
        font-size: 11px;
        padding: 10px 4px;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 10px 6px;
    }

    .comparison-table .table-logo {
        height: 20px;
    }

    .comparison-table .feature-name {
        font-size: 11px;
    }

    .exclusive-badge {
        font-size: 9px;
    }

    .comparison-table i {
        font-size: 14px;
    }
}

.media-section {
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.media-section:hover {
    transform: scale(1.02);
}

.media-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.media-bg video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.media-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(25, 57, 75, 0.92);
    z-index: 0;
    transition: background 0.3s ease;
}

.media-section:hover::before {
    background: rgba(25, 57, 75, 0.75);
}

.media-section h2 {
    font-size: clamp(32px, 4vw, 48px);
    color: var(--off-white);
    margin-bottom: 20px;
    position: relative;
}

.media-subtitle {
    font-size: 18px;
    color: var(--off-white);
    opacity: 0.9;
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
}

.media-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.media-subtitle {
    font-size: 18px;
    color: var(--off-white);
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

.media-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
    position: relative;
    padding: 40px 50px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius);
    backdrop-filter: blur(10px);
    max-width: 1000px;
    margin: 0 auto;
}

.media-logos img {
    height: 50px;
    width: auto;
    max-width: 140px;
    object-fit: contain;
    filter: brightness(0) invert(1) sepia(1) saturate(0) hue-rotate(30deg) brightness(0.95);
    opacity: 0.8;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.media-logos img:hover {
    opacity: 1;
    transform: translateY(-5px);
}

/* Location Section */
.location {
    padding: 100px 0;
    background: url('materiais/fachada-cwb.jpg') center/cover no-repeat;
    position: relative;
    overflow: hidden;
}

.location::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(25, 57, 75, 0.92) 0%, rgba(28, 76, 114, 0.88) 100%);
    pointer-events: none;
    z-index: 1;
}

.location > * {
    position: relative;
    z-index: 2;
}

.location-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-badge {
    display: inline-block;
    padding: 8px 20px;
    background: var(--verde-breezer);
    color: var(--verde-deep);
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    text-transform: none;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.location h2 {
    font-size: clamp(36px, 5vw, 56px);
    color: var(--off-white);
    margin-bottom: 20px;
    font-weight: 700;
}

.location .section-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto;
}

.gradient-text {
    background: linear-gradient(45deg, var(--verde-deep), var(--verde-breezer), var(--verde-center), var(--verde-breezer));
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 6s ease-in-out infinite;
}

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

.gradient-text-light {
    background: linear-gradient(90deg, var(--verde-breezer) 0%, var(--verde-breezer) 25%, #ffffff 50%, var(--verde-breezer) 75%, var(--verde-breezer) 100%);
    background-size: 300% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: lightWave 10s ease-in-out infinite;
}

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

.section-subtitle {
    font-size: 20px;
    color: var(--cinza-stone);
    max-width: 600px;
    margin: 0 auto;
}

.location-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 50px;
    margin-bottom: 60px;
}

.location-main {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
    align-items: start;
}

.location-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.location-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.location-map-cta {
    text-align: left;
    margin-top: 25px;
}

.btn-map-cta {
    font-size: 18px;
    padding: 18px 45px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: var(--off-white);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-map-cta:hover {
    background: #fdfbf7;
    color: var(--verde-deep);
    border-color: var(--branco);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
}

.location-info-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.location-info-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.location-info-card h3 {
    font-size: 24px;
    color: var(--off-white);
    margin-bottom: 25px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
}

.location-info-card h3 i {
    color: var(--verde-breezer);
}

.info-grid {
    display: grid;
    gap: 20px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.info-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(5px);
}

.info-item i {
    font-size: 28px;
    color: var(--verde-breezer);
    width: 40px;
    text-align: center;
}

.info-item strong {
    display: block;
    color: var(--off-white);
    font-size: 16px;
    margin-bottom: 4px;
}

.info-item span {
    color: var(--off-white);
    opacity: 0.8;
    font-size: 14px;
}

.location-address-card {
    background: rgba(160, 220, 239, 0.15);
    backdrop-filter: blur(10px);
    padding: 25px;
    border-radius: 16px;
    border: 1px solid rgba(160, 220, 239, 0.3);
}

.location-address-card h4 {
    color: var(--off-white);
    font-size: 18px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.location-address-card h4 i {
    color: var(--verde-breezer);
}

.location-address-card address {
    color: var(--off-white);
    opacity: 0.9;
    font-style: normal;
    line-height: 1.8;
    font-size: 16px;
}

.location-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.location-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(25, 57, 75, 0.1);
    font-size: 16px;
    color: var(--cinza-stone);
}

.location-list li:last-child {
    border-bottom: none;
}

.location-list li i {
    width: 20px;
    color: var(--verde-breezer);
    font-size: 18px;
}

.location-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.location-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.location-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.location-icon i {
    font-size: 24px;
    color: var(--verde-breezer);
}

.location-text h4 {
    font-size: 18px;
    color: var(--off-white);
    margin-bottom: 5px;
    font-weight: 600;
}

.location-text p {
    font-size: 14px;
    color: var(--off-white);
    opacity: 0.8;
    line-height: 1.4;
}

.location-map-wrapper .location-actions {
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    display: flex;
    gap: 15px;
    z-index: 10;
}

.location-map-wrapper .location-actions button {
    flex: 1;
    padding: 15px 25px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 10px;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.location-actions .btn-primary {
    background: var(--verde-breezer);
    color: var(--verde-deep);
    border: none;
}

.location-actions .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(110, 181, 184, 0.3);
}

.location-actions .btn-secondary {
    background: var(--off-white);
    color: var(--verde-center);
    border: 2px solid var(--verde-breezer);
}

.location-actions .btn-secondary:hover {
    background: var(--verde-breezer);
    color: var(--off-white);
}

.location-address {
    padding: 25px 0 0 0;
    margin-top: 25px;
    border-top: 1px solid rgba(110, 181, 184, 0.2);
}

.location-address h4 {
    font-size: 18px;
    color: var(--verde-center);
    margin-bottom: 15px;
    font-weight: 600;
}

.location-address address {
    font-style: normal;
    font-size: 14px;
    line-height: 1.6;
    color: var(--cinza-stone);
}

.location-address i {
    color: var(--verde-breezer);
    margin-right: 8px;
}

.location-map-wrapper {
    position: relative;
}

.map-overlay {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 10;
}

.map-badge {
    background: #fdfbf7;
    padding: 12px 20px;
    border-radius: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    font-weight: 600;
    color: var(--verde-center);
    display: flex;
    align-items: center;
    gap: 8px;
}

.map-badge i {
    color: #ffc107; /* Amarelo - estrelas/avisos */
}

.location-map {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    background: #fdfbf7;
}

.location-map iframe {
    width: 100%;
    height: 500px;
    border: none;
    display: block;
}

.map-tips {
    display: flex;
    justify-content: space-around;
    padding: 25px;
    background: #fdfbf7;
    border-radius: 0 0 20px 20px;
    margin-top: -5px;
}

.tip-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--cinza-stone);
}

.tip-item i {
    color: var(--verde-breezer);
    font-size: 18px;
}

/* FAQ Section */
.faq {
    padding: 80px 0;
    background: var(--verde-deep);
}

.faq h2 {
    text-align: center;
    font-size: clamp(32px, 4vw, 48px);
    color: var(--off-white);
    margin-bottom: 60px;
}

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

.faq-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: all 0.3s;
}

.faq-question {
    width: 100%;
    padding: 20px;
    background: transparent;
    border: none;
    text-align: left;
    font-size: 16px;
    font-weight: 600;
    color: var(--branco);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s;
}

.faq-question:hover {
    background: rgba(255, 255, 255, 0.05);
}

.faq-question-content {
    display: flex;
    align-items: center;
    gap: 15px;
}

.faq-icon {
    color: var(--verde-breezer);
    font-size: 20px;
    width: 35px;
    height: 35px;
    background: rgba(160, 220, 239, 0.15);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.faq-arrow {
    transition: transform 0.3s;
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.faq-answer.active {
    padding: 0 20px 20px;
    max-height: 500px;
}

.faq-item.active .faq-arrow {
    transform: rotate(180deg);
}

/* Final CTA Section */
.final-cta {
    padding: 100px 0;
    background: url('materiais/interior-cwb.jpg') center/cover no-repeat;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.final-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(25, 57, 75, 0.7);
    z-index: 0;
}

.cta-content {
    position: relative;
    z-index: 1;
}

.final-cta h2 {
    font-size: clamp(36px, 5vw, 56px);
    color: var(--off-white);
    margin-bottom: 20px;
}

.final-cta p {
    font-size: 20px;
    color: var(--off-white);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.urgency-badges {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.urgency-badges span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(255,255,255,0.2);
    border-radius: 25px;
    color: var(--off-white);
    font-size: 14px;
    backdrop-filter: blur(10px);
}

/* Modal Fullscreen Styles */
.modal-fullscreen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(8,46,62,0.98) 0%, rgba(16,65,85,0.98) 50%, rgba(152,181,184,0.98) 100%);
    z-index: 10000;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.modal-fullscreen.active {
    opacity: 1;
    visibility: visible;
}

.modal-fullscreen-content {
    position: relative;
    width: 100%;
    max-width: 600px;
    transform: scale(0.9);
    transition: transform 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
}

.modal-fullscreen.active .modal-fullscreen-content {
    transform: scale(1);
}

/* Duplicate form styles removed - using optimized styles from lines 1023+ */

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from {
        transform: translateY(20px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes float {
    from { transform: translate(0, 0) rotate(0deg); }
    to { transform: translate(-100px, -100px) rotate(360deg); }
}

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

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}


@media (max-width: 768px) {
    .top-bar {
        padding: 6px 0;
    }

    .top-bar-content {
        font-size: 12px;
        gap: 5px;
    }

    .top-bar-cta {
        display: none;
    }

    .hero {
        height: 90vh;
        min-height: 600px;
    }

    .nav-container {
        justify-content: center;
        padding: 0 15px;
    }

    .hero + .features {
        margin-top: 0;
        padding-top: 40px;
    }

    .hero-bg video {
        object-fit: cover;
        object-position: center;
        height: 100% !important;
        width: 100% !important;
    }

    .hero-bg {
        height: 100% !important;
        background: #fdfbf7;
    }

    .hero-bg::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(135deg,
            rgba(25, 57, 75, 0.6) 0%,
            rgba(28, 76, 114, 0.4) 50%,
            rgba(25, 57, 75, 0.7) 100%
        );
        z-index: 1;
        pointer-events: none;
    }

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

    .media-logos {
        gap: 15px;
        padding: 20px 15px;
        justify-content: center;
    }

    .media-logos img {
        height: 24px;
        width: auto;
        max-width: 80px;
    }

    .media-section {
        padding: 60px 0;
    }

    .location-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .location-main {
        display: flex;
        flex-direction: column;
        gap: 30px;
    }

    .location-features {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .location-map {
        order: 1;
        width: 100%;
        margin: 0 -20px;
        width: calc(100% + 40px);
    }

    .location-details {
        order: 2;
    }

    .location-map iframe {
        height: 300px;
        border-radius: 0;
    }

    .location-actions {
        position: static !important;
        margin-bottom: 15px;
        left: auto !important;
        right: auto !important;
        top: auto !important;
    }

    .map-tips {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }

    .modal-content {
        width: 95%;
        margin: 10px;
    }

    .modal-header {
        padding: 30px 20px;
    }

    #leadForm {
        padding: 0px;
    }

    .urgency-badges {
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .investment-highlights {
        grid-template-columns: 1fr;
    }

    .media-logos {
        gap: 10px;
        padding: 15px 10px;
    }

    .media-logos img {
        height: 20px;
        width: auto;
        max-width: 70px;
    }
}

/* Footer Styles */
.footer {
    background: var(--verde-deep);
    color: var(--off-white);
    padding: 60px 0 0;
}

.footer-wrapper {
    background: var(--verde-deep);
}

.footer-main {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-section h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--off-white);
    font-weight: 600;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 40px;
}

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

.footer-logo {
    margin-bottom: 20px;
}

.footer-logo img {
    height: 50px;
    width: auto;
}

.footer-brand h3 {
    font-size: 24px;
    margin-bottom: 10px;
}

.footer-tagline {
    font-size: 18px;
    font-weight: 600;
    color: var(--verde-breezer);
    margin-bottom: 10px;
}

.footer-desc {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    font-size: 14px;
}

.footer-brand p {
    color: var(--off-white);
    line-height: 1.6;
}

.footer-links h4,
.footer-contact h4 {
    font-size: 18px;
    margin-bottom: 20px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    color: var(--off-white);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--verde-breezer);
}

.footer-contact p {
    margin-bottom: 10px;
    color: var(--off-white);
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-contact a {
    color: var(--off-white);
    text-decoration: none;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    transition: color 0.3s;
}

.footer-contact a:hover {
    color: var(--verde-breezer);
}

.footer-contact i {
    margin-right: 10px;
    color: var(--verde-breezer);
    font-size: 18px;
    margin-top: 2px;
}

.footer-address {
    line-height: 1.5;
}

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

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--off-white);
    transition: all 0.3s;
    text-decoration: none;
}

.footer-social a:hover {
    background: var(--verde-breezer);
    transform: translateY(-3px);
}

.footer-social i {
    font-size: 18px;
}

.footer-bottom {
    padding: 30px 0 20px;
    background: rgba(0, 0, 0, 0.2);
    margin-top: 40px;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-company p {
    margin: 5px 0;
    color: var(--off-white);
    font-size: 14px;
}

.footer-legal {
    font-size: 12px;
    opacity: 0.8;
}

.footer-credits p {
    color: var(--off-white);
    font-size: 14px;
}

.footer-bottom p {
    color: var(--off-white);
    font-size: 14px;
}

/* Footer Responsive */
@media (max-width: 768px) {
    .footer {
        padding: 40px 0 0;
    }

    .footer-main {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-section h4 {
        font-size: 16px;
        margin-bottom: 15px;
    }

    .footer-logo img {
        height: 40px;
    }

    .footer-tagline {
        font-size: 16px;
    }

    .footer-desc {
        font-size: 13px;
    }

    .footer-social {
        flex-wrap: wrap;
    }

    .footer-bottom {
        padding: 20px 0 15px;
        margin-top: 30px;
    }

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .footer-company p,
    .footer-credits p {
        font-size: 13px;
    }

    .footer-legal {
        font-size: 11px;
    }
}

/* Back to Top Button - Premium */
.back-to-top {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 50px;
    height: 50px;
    background: rgba(0, 212, 170, 0.15);
    border: 1px solid rgba(0, 212, 170, 0.3);
    border-radius: 50%;
    color: #00d4aa;
    cursor: pointer;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    z-index: 998;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: linear-gradient(135deg, #00d4aa 0%, #00a085 100%);
    border-color: #00d4aa;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 212, 170, 0.4);
}

.back-to-top i {
    font-size: 18px;
}

/* Floating CTA Button - Investir Premium */
.floating-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 16px 28px;
    background: linear-gradient(135deg, #00d4aa 0%, #00a085 100%);
    border: none;
    border-radius: 50px;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 10px 40px rgba(0, 212, 170, 0.4);
    transition: all 0.3s ease;
    z-index: 998;
    animation: pulseFloat 2s ease-in-out infinite;
    text-decoration: none;
}

.floating-cta:hover {
    background: linear-gradient(135deg, #00e4ba 0%, #00b495 100%);
    transform: translateY(-3px);
    box-shadow: 0 15px 50px rgba(0, 212, 170, 0.5);
    text-decoration: none;
    color: #fff;
}

.floating-cta i {
    font-size: 18px;
}

.floating-cta span {
    white-space: nowrap;
}

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

/* Responsive - Mobile */
@media (max-width: 768px) {
    .back-to-top {
        bottom: 20px;
        left: 20px;
        width: 45px;
        height: 45px;
    }

    .floating-cta {
        bottom: 20px;
        right: 20px;
        padding: 14px 22px;
        font-size: 14px;
    }

    .floating-cta i {
        font-size: 16px;
    }
}

/* Commercial Contact Button */

/* Activity Modal - Modern UI/UX */
.activity-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
}

.activity-modal.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        transform: translate(-50%, -40%);
        opacity: 0;
    }
    to {
        transform: translate(-50%, -50%);
        opacity: 1;
    }
}

.activity-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(8, 46, 62, 0.95);
    backdrop-filter: blur(10px);
    cursor: pointer;
}

.activity-modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 1200px;
    height: 85vh;
    max-height: 700px;
    background: #fdfbf7;
    border-radius: 20px;
    overflow: hidden;
    animation: slideUp 0.4s ease;
}

.activity-carousel {
    position: relative;
    width: 100%;
    height: 100%;
}

.activity-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.95);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.activity-close:hover {
    background: var(--verde-center);
    color: var(--off-white);
    transform: scale(1.1);
}

.activity-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: #fdfbf7;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    z-index: 5;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
}

.activity-nav:hover {
    background: var(--verde-breezer);
    transform: translateY(-50%) scale(1.1);
}

.activity-nav i {
    font-size: 18px;
    color: var(--verde-center);
}

.activity-nav.prev {
    left: 20px;
}

.activity-nav.next {
    right: 20px;
}

.activity-slides-wrapper {
    position: relative;
    width: 100%;
    height: calc(100% - 80px);
    overflow: hidden;
}

.activity-slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease;
}

.activity-slide.active {
    opacity: 1;
    visibility: visible;
}

.activity-slide-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    height: 100%;
    gap: 0;
}

.activity-slide-image {
    position: relative;
    overflow: hidden;
    background: #f5f5f5;
}

.activity-slide-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.activity-slide:hover .activity-slide-image img {
    transform: scale(1.05);
}

.activity-slide-overlay {
    position: absolute;
    top: 30px;
    left: 30px;
    width: 70px;
    height: 70px;
    background: var(--verde-deep);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.activity-slide-overlay i {
    font-size: 28px;
    color: var(--branco);
}

.activity-slide-image .activity-logo {
    display: none;
}

.activity-logo {
    margin-bottom: 20px;
}

.activity-logo img {
    height: 60px;
}

.activity-slide-info {
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #fdfbf7;
}

.activity-logo {
    margin-bottom: 20px;
}

.activity-logo img {
    height: 50px;
}

.activity-slide-info h3 {
    font-size: 32px;
    color: var(--verde-center);
    margin-bottom: 10px;
    font-weight: 700;
}

.activity-subtitle {
    font-size: 16px;
    color: var(--verde-breezer);
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.activity-description {
    font-size: 16px;
    line-height: 1.8;
    color: var(--cinza-stone);
    margin-bottom: 30px;
}

.activity-features {
    list-style: none;
    padding: 0;
    margin-bottom: 40px;
}

.activity-features li {
    font-size: 15px;
    color: var(--verde-center);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.activity-features li i {
    color: var(--verde-breezer);
    font-size: 18px;
}

.activity-thumbnails {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: flex-start;
    gap: 2px;
    background: #fdfbf7;
    padding: 15px;
    border-top: 1px solid #e0e0e0;
    overflow-x: auto;
}

.activity-thumb {
    flex: 1;
    max-width: 120px;
    padding: 10px;
    background: #f8f9fa;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    border: 2px solid transparent;
}

.activity-thumb:hover {
    background: var(--verde-breezer);
    color: var(--off-white);
}

.activity-thumb.active {
    background: var(--verde-breezer);
    border-color: var(--verde-center);
}

.activity-thumb i {
    font-size: 18px;
    color: var(--verde-center);
    margin-bottom: 5px;
    display: block;
}

.activity-thumb span {
    font-size: 11px;
    font-weight: 600;
    display: block;
    color: var(--verde-center);
}

.activity-thumb.active i,
.activity-thumb.active span,
.activity-thumb:hover i,
.activity-thumb:hover span {
    color: var(--off-white);
}

@media (max-width: 768px) {
    .activity-modal-content {
        width: 100%;
        height: 100vh;
        max-width: none;
        max-height: none;
        border-radius: 0;
        transform: none;
        top: 0;
        left: 0;
    }

    .activity-close {
        top: 10px;
        right: 10px;
        background: rgba(8, 46, 62, 0.8);
        color: var(--branco);
    }

    .activity-slide-content {
        grid-template-columns: 1fr;
        grid-template-rows: 35% 65%;
        position: relative;
    }

    .activity-slide-image {
        position: relative;
    }

    .activity-slide-info {
        padding: 20px;
        overflow-y: auto;
        position: relative;
    }

    .activity-slide-image .activity-logo {
        display: none;
    }

    .activity-slide-info .activity-logo {
        float: left;
        margin-right: 10px;
        margin-bottom: 8px;
    }

    .activity-slide-info .activity-logo img {
        height: 28px;
        filter: none;
        opacity: 1;
        display: block;
    }

    .activity-slide-info h3 {
        font-size: 22px;
        margin-bottom: 8px;
        overflow: hidden;
    }

    .activity-subtitle {
        font-size: 13px;
        margin-bottom: 12px;
    }

    .activity-description {
        font-size: 13px;
        line-height: 1.5;
        margin-bottom: 15px;
    }

    .activity-features {
        margin-bottom: 20px;
    }

    .activity-features li {
        font-size: 13px;
        margin-bottom: 8px;
        gap: 8px;
    }

    .activity-features li i {
        font-size: 14px;
    }

    .activity-slide-info .btn-primary {
        padding: 12px 25px;
        font-size: 15px;
        margin-top: 10px;
    }

    .activity-nav {
        width: 40px;
        height: 40px;
        background: rgba(255, 255, 255, 0.2);
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.3);
        top: 22.5%;
        transform: translateY(-50%);
    }

    .activity-nav i {
        color: var(--branco);
    }

    .activity-nav:hover {
        background: rgba(255, 255, 255, 0.3);
    }

    .activity-nav.prev {
        left: 10px;
    }

    .activity-nav.next {
        right: 10px;
    }

    .activity-close {
        width: 40px;
        height: 40px;
        font-size: 20px;
        top: 10px;
        right: 10px;
    }

    .activity-thumbnails {
        overflow-x: auto;
        justify-content: flex-start;
        gap: 8px;
        padding: 10px;
        -webkit-overflow-scrolling: touch;
    }

    .activity-thumb {
        flex: 0 0 80px;
        padding: 8px;
    }

    .activity-thumb i {
        font-size: 16px;
    }

    .activity-thumb span {
        font-size: 10px;
    }

    .activity-slide-overlay {
        width: 50px;
        height: 50px;
        top: 15px;
        left: 15px;
        right: auto;
        background: var(--verde-deep);
    }

    .activity-slide-overlay i {
        font-size: 20px;
        color: var(--branco);
    }

    .activity-slides-wrapper {
        touch-action: pan-y;
    }
}

/* Activity Thumbnails Scrollbar Customization */
.activity-thumbnails::-webkit-scrollbar {
    height: 6px;
}

.activity-thumbnails::-webkit-scrollbar-track {
    background: var(--areia);
    border-radius: 10px;
}

.activity-thumbnails::-webkit-scrollbar-thumb {
    background: var(--verde-center);
    border-radius: 10px;
}

.activity-thumbnails::-webkit-scrollbar-thumb:hover {
    background: var(--verde-deep);
}

@media (max-width: 768px) {
    ::-webkit-scrollbar {
        width: 8px;
        height: 8px;
    }
}

.lightbox-content {
    position: relative;
    max-width: 900px;
    width: 90%;
    max-height: 90vh;
    background: #fdfbf7;
    border-radius: 16px;
    overflow: visible;
    margin: auto;
    padding-bottom: 150px;
    transform: scale(0.95);
    opacity: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.lightbox-modal.active .lightbox-content {
    transform: scale(1);
    opacity: 1;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 30px;
    color: var(--verde-center);
    cursor: pointer;
    z-index: 1000;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.lightbox-close:hover {
    background: var(--verde-center);
    color: var(--branco);
}

/* Street View Modal Styles */
.streetview-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(25, 57, 75, 0.95);
    z-index: 10000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.streetview-modal.active {
    opacity: 1;
    visibility: visible;
}

.streetview-close {
    position: absolute;
    top: 20px;
    right: 30px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--branco);
    font-size: 24px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10001;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.streetview-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.streetview-content {
    position: relative;
    width: 90%;
    max-width: 1200px;
    height: 80vh;
    background: #fdfbf7;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
}

.streetview-content h3 {
    background: var(--verde-deep);
    color: var(--off-white);
    padding: 20px 30px;
    margin: 0;
    font-size: 24px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.streetview-content h3 i {
    color: var(--verde-breezer);
}

.streetview-iframe-wrapper {
    flex: 1;
    position: relative;
    width: 100%;
}

.streetview-iframe-wrapper iframe {
    width: 100%;
    height: 100%;
}

.streetview-address {
    background: rgba(25, 57, 75, 0.05);
    padding: 15px;
    text-align: center;
    margin: 0;
    color: var(--verde-center);
    font-size: 16px;
    border-top: 1px solid rgba(25, 57, 75, 0.1);
}

@media (max-width: 768px) {
    .streetview-content {
        width: 95%;
        height: 90vh;
        border-radius: 15px;
    }

    .streetview-content h3 {
        padding: 15px 20px;
        font-size: 20px;
    }

    .streetview-close {
        top: 10px;
        right: 10px;
        width: 40px;
        height: 40px;
        font-size: 20px;
    }

    .streetview-address {
        font-size: 14px;
        padding: 12px;
    }
}

/* Video Modal */
.video-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
}

.video-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    cursor: pointer;
}

.video-modal-content {
    position: relative;
    width: 90%;
    max-width: 1200px;
    z-index: 1;
}

.video-modal-close {
    position: absolute;
    top: -50px;
    right: 0;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    color: white;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    z-index: 2;
}

.video-modal-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

.video-modal-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 12px;
    background: #000;
}

.video-modal-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.video-modal-cta {
    position: absolute;
    bottom: -70px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--verde-principal);
    color: white;
    border: none;
    padding: 16px 32px;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 102, 102, 0.3);
    z-index: 2;
}

.video-modal-cta:hover {
    background: var(--verde-deep);
    transform: translateX(-50%) translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 102, 102, 0.4);
}

.video-modal-cta i {
    font-size: 20px;
}

@media (max-width: 768px) {
    .video-modal-content {
        width: 100%;
        padding: 0 20px;
    }

    .video-modal-close {
        top: 20px;
        right: 20px;
        position: fixed;
        z-index: 10000;
    }

    .video-modal-wrapper {
        border-radius: 8px;
    }

    .video-modal-cta {
        bottom: -60px;
        padding: 14px 24px;
        font-size: 16px;
    }

    .video-modal-cta i {
        font-size: 18px;
    }
}

/* Lightbox Styles */
.lightbox-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.lightbox-modal.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    background: transparent;
    border: none;
    color: var(--branco);
    font-size: 36px;
    cursor: pointer;
    z-index: 10001;
    transition: transform 0.3s;
}

.lightbox-close:hover {
    transform: scale(1.2);
}

.lightbox-content {
    position: relative;
    width: 100vw;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.lightbox-content img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

#lightboxCaption {
    position: absolute;
    bottom: 20px;
    color: var(--off-white);
    font-size: 18px;
    text-align: center;
    background: rgba(0, 0, 0, 0.7);
    padding: 10px 20px;
    border-radius: 8px;
}

@media (max-width: 768px) {
    .lightbox-close {
        font-size: 28px;
        top: 10px;
        right: 15px;
    }

    #lightboxCaption {
        font-size: 16px;
        margin-top: 10px;
    }
}

.carousel-container {
    position: relative;
    height: 80vh;
    max-height: 600px;
    overflow: hidden;
    border-radius: 16px;
}

.carousel-slide {
    display: none;
    height: 100%;
    grid-template-columns: 1fr 1fr;
    align-items: center;
}

.carousel-slide.active {
    display: grid;
}

.slide-image {
    height: 100%;
    overflow: hidden;
}

.slide-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide-content {
    padding: 40px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
}

.slide-logo {
    text-align: center;
    margin-bottom: 10px;
}

.slide-logo img {
    height: 40px;
    width: auto;
    filter: grayscale(100%) brightness(1.5) contrast(0.8);
    opacity: 0.6;
}

.slide-content h3 {
    font-size: 28px;
    color: var(--verde-center);
    margin-bottom: 20px;
    font-weight: 700;
}

.slide-content p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--preto-texto);
}

.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #fdfbf7;
    border: 2px solid var(--verde-center);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 28px;
    color: var(--verde-center);
    transition: all 0.3s ease;
    z-index: 1001;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.carousel-nav:hover {
    background: var(--verde-center);
    color: var(--off-white);
}

.carousel-nav.prev {
    left: -120px;
}

.carousel-nav.next {
    right: -120px;
}

.carousel-indicators {
    position: absolute;
    bottom: -100px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    flex-wrap: nowrap;
    justify-content: center;
    max-width: 800px;
    background: #fdfbf7;
    padding: 15px 20px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    padding: 8px 12px;
    border-radius: 8px;
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 70px;
    border: 2px solid transparent;
}

.indicator i {
    font-size: 16px;
    color: var(--verde-center);
}

.indicator span {
    font-size: 10px;
    color: var(--verde-center);
    font-weight: 600;
    text-align: center;
}

.indicator.active,
.indicator:hover {
    background: var(--verde-breezer);
    transform: translateY(-2px);
    border-color: var(--verde-center);
}

.indicator.active i,
.indicator:hover i,
.indicator.active span,
.indicator:hover span {
    color: var(--off-white);
}

.activity-item {
    cursor: pointer;
    transition: transform 0.3s ease;
}

.activity-item:hover {
    transform: translateY(-5px);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .lightbox-modal {
        padding: 0;
    }

    .lightbox-content {
        width: 100vw;
        max-width: 100vw;
        height: 100vh;
        max-height: 100vh;
        border-radius: 0;
        padding-bottom: 120px;
        overflow-x: hidden;
        overflow-y: auto;
    }

    .carousel-container {
        height: calc(100vh - 120px);
        border-radius: 0;
        position: relative;
        overflow: hidden;
    }

    .carousel-slide {
        display: none;
        flex-direction: column;
    }

    .carousel-slide.active {
        display: flex;
    }

    .slide-image {
        height: 50%;
        min-height: 300px;
    }

    .slide-content {
        height: 50%;
        padding: 20px;
        overflow-y: auto;
    }

    .slide-content h3 {
        font-size: 24px;
    }

    .slide-logo img {
        height: 30px;
    }

    .carousel-nav {
        width: 50px;
        height: 50px;
        font-size: 24px;
        top: 40%;
    }

    .carousel-nav.prev {
        left: 20px;
    }

    .carousel-nav.next {
        right: 20px;
    }

    .carousel-indicators {
        position: fixed;
        bottom: 20px;
        left: 50%;
        transform: translateX(-50%);
        gap: 8px;
        padding: 10px 15px;
        flex-wrap: wrap;
        max-width: 90vw;
        z-index: 1002;
    }

    .indicator {
        min-width: 45px;
        padding: 6px 8px;
    }

    .indicator i {
        font-size: 12px;
    }

    .indicator span {
        font-size: 8px;
    }

    .lightbox-close {
        position: fixed;
        top: 20px;
        right: 20px;
        z-index: 1003;
    }
}

@media (max-width: 768px) {
    .nav-links .btn-whatsapp-nav {
        display: none;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .arch-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .location-info {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }

    .modal-content {
        margin: 20% auto;
        width: 95%;
        padding: 30px 20px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .footer-links {
        align-items: flex-start;
    }

    .footer-section {
        text-align: left;
    }

    .modal-fullscreen-content {
        margin: 20px;
        max-width: 100%;
    }

    .form-container {
        padding: 30px 20px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .interest-options {
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
    }

    @keyframes slideUpMobile {
        from {
            opacity: 0;
            transform: translateY(100%);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .modal-fullscreen {
        background: #fdfbf7;
    }

    .modal-fullscreen-content {
        margin: 0;
        max-width: 100%;
        min-height: 100vh;
        background: #fdfbf7;
        /* Smooth transition instead of animation */
    }

    .form-container {
        padding: 60px 20px 40px;
        background: #fdfbf7;
        border-radius: 0;
        box-shadow: none;
    }

    .card-content {
        flex-direction: column;
        padding: 10px 6px;
        height: 90px;
        gap: 4px;
        justify-content: space-between;
        border: 2px solid var(--areia);
        overflow: hidden;
    }

    .card-icon {
        display: flex;
        align-items: center;
        justify-content: center;
        margin-top: 5px;
        width: 24px;
        height: 24px;
        margin: 5px auto 0 auto;
    }

    .card-icon i {
        font-size: 16px;
        color: var(--verde-center);
        line-height: 1;
        text-align: center;
    }

    .card-text {
        text-align: center;
        margin-bottom: 5px;
    }

    .card-text strong {
        font-size: 11px;
        color: var(--verde-deep);
        display: block;
        margin-bottom: 3px;
        line-height: 1.1;
        word-wrap: break-word;
        word-break: break-word;
        hyphens: auto;
    }

    .card-text small {
        font-size: 9px;
        color: rgba(25, 57, 75, 0.7);
        line-height: 1.1;
        word-wrap: break-word;
        word-break: break-word;
        hyphens: auto;
    }

    .close-fullscreen {
        position: fixed;
        top: 20px;
        right: 20px;
        width: 44px;
        height: 44px;
        background: var(--verde-deep);
        border: none;
        border-radius: 50%;
        z-index: 10001;
    }

    .close-fullscreen i {
        font-size: 18px;
        color: var(--branco);
    }

    .close-fullscreen:hover {
        background: var(--verde-center);
        transform: scale(1.1);
    }

    .form-header h2 {
        font-size: 24px;
        color: var(--verde-deep);
    }

    .form-header p {
        color: rgba(25, 57, 75, 0.7);
    }

    .submit-button {
        font-size: 16px;
        padding: 16px;
    }
}

/* Clickable titles */
h1[onclick],
h2[onclick],
h3[onclick] {
    cursor: pointer;
    transition: opacity 0.2s ease;
}

h1[onclick]:hover,
h2[onclick]:hover,
h3[onclick]:hover {
    opacity: 0.85;
}

/* ===================================
   Video Testimonials Section
   =================================== */

.video-testimonials {
    padding: 80px 0;
    background: linear-gradient(180deg, #fdfbf7 0%, var(--off-white) 100%);
    position: relative;
}

.video-testimonials-header {
    text-align: center;
    margin-bottom: 60px;
}

.video-testimonials-header h2 {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--verde-deep);
    cursor: pointer;
    transition: transform 0.2s;
}

.video-testimonials-header h2:hover {
    transform: scale(1.02);
}

.video-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.video-testimonial-card {
    background: var(--branco);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--sombra-suave);
    transition: all 0.3s ease;
}

.video-testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--sombra-media);
}

.video-testimonial-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 177.78%; /* 9:16 aspect ratio for vertical videos (shorts) */
    overflow: hidden;
    background: #000;
}

.video-testimonial-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.video-testimonials-cta {
    text-align: center;
    padding: 40px 20px;
    background: linear-gradient(135deg, rgba(47, 82, 104, 0.05), rgba(52, 178, 184, 0.05));
    border-radius: var(--border-radius);
    max-width: 600px;
    margin: 0 auto;
}

.video-testimonials-cta p {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--verde-deep);
    margin-bottom: 20px;
}

.video-testimonials-cta .btn-primary {
    padding: 16px 40px;
    font-size: 1.1rem;
    gap: 12px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .video-testimonials {
        padding: 60px 0;
    }

    .video-testimonials-header {
        margin-bottom: 40px;
    }

    .video-testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        max-width: 400px;
    }

    .video-testimonial-wrapper {
        padding-bottom: 177.78%;
    }

    .video-testimonials-cta {
        padding: 30px 20px;
    }

    .video-testimonials-cta p {
        font-size: 1.1rem;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .video-testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
        max-width: 900px;
    }
}

@media (min-width: 1025px) {
    .video-testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ===================================
   Day Use Alert (Modal Form)
   =================================== */

.day-use-alert {
    margin-top: 24px;
    padding: 20px;
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    border: 2px solid #fbbf24;
    border-radius: 12px;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.day-use-alert-content {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.day-use-alert-content i {
    font-size: 24px;
    color: #b45309;
    flex-shrink: 0;
    margin-top: 4px;
}

.day-use-alert-text {
    flex: 1;
}

.day-use-alert-header {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 8px;
}

.day-use-alert-text strong {
    color: #92400e;
    font-size: 16px;
    font-weight: 600;
}

.exclusive-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 12px;
    background: var(--verde-breezer);
    color: var(--branco);
    font-size: 12px;
    font-weight: 600;
    border-radius: 20px;
    white-space: nowrap;
}

.day-use-alert-text p {
    color: #b45309;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 8px;
}

.day-use-alert-text p:last-child {
    margin-bottom: 0;
    font-weight: 500;
}

/* Ajuste para grid de 3 cards */
.interest-options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

@media (max-width: 768px) {
    .interest-options {
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
    }

    .day-use-alert {
        padding: 16px;
    }

    .day-use-alert-content {
        gap: 12px;
    }

    .day-use-alert-content i {
        font-size: 20px;
    }

    .day-use-alert-text strong {
        font-size: 14px;
    }

    .day-use-alert-text p {
        font-size: 13px;
    }

    .day-use-alert-header {
        gap: 8px;
    }

    .exclusive-badge {
        font-size: 11px;
        padding: 3px 10px;
    }
}

/* Other Clubs Section */
.other-clubs {
    padding: 100px 0;
    background: #fdfbf7;
    position: relative;
    text-align: center;
}

.other-clubs h2 {
    font-size: clamp(32px, 4vw, 48px);
    margin-bottom: 20px;
    color: var(--verde-deep);
}

.other-clubs .section-subtitle {
    font-size: 18px;
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    color: rgba(25, 57, 75, 0.7);
}

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

.club-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    background: var(--cinza-stone);
    transition: all 0.4s ease;
    cursor: pointer;
    text-decoration: none;
    display: block;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.club-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    border: 2px solid var(--verde-breezer);
}

.club-image {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.club-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.club-card:hover .club-image img {
    transform: scale(1.1);
}

.club-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.7) 100%);
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    padding: 20px;
}

.club-badge {
    background: var(--verde-breezer);
    color: var(--branco);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

.club-content {
    padding: 30px;
    text-align: left;
}

.club-content h3 {
    color: var(--branco);
    font-size: 1.5rem;
    margin-bottom: 10px;
    font-weight: 700;
    text-transform: none;
}

.club-content p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    text-transform: none;
}

.btn-club {
    width: 100%;
    padding: 12px 24px;
    border-radius: 8px;
    border: 1px solid var(--verde-breezer);
    background: transparent;
    color: var(--verde-breezer);
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.club-card:hover .btn-club {
    background: var(--verde-breezer);
    color: var(--azul-profundo);
}

.btn-club-active {
    background: var(--verde-breezer);
    color: var(--azul-profundo);
}

@media (max-width: 768px) {
    .other-clubs {
        padding: 60px 20px;
    }

    .clubs-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-top: 40px;
    }

    .club-image {
        height: 200px;
    }

    .club-content {
        padding: 20px;
    }

    .club-content h3 {
        font-size: 1.25rem;
    }
}
/* ========================================
   INVESTOR SECTIONS - GENERAL STYLES
   ======================================== */

/* ========================================
   CUSTOM SCROLLBAR - THEME COLORS
   ======================================== */

/* Webkit browsers (Chrome, Safari, Edge) */
::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

::-webkit-scrollbar-track {
    background: #0a1628;
}

::-webkit-scrollbar-thumb {
    background: #142840;
    border-radius: 5px;
    border: 2px solid #0a1628;
}

::-webkit-scrollbar-thumb:hover {
    background: #1e3a5f;
}

/* Firefox */
* {
    scrollbar-width: thin;
    scrollbar-color: #142840 #0a1628;
}

/* ========================================
   HEADER BLUR TRANSPARENTE - INVESTIDORES
   ======================================== */
.navbar {
    position: fixed !important;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.3) !important;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1) !important;
    z-index: 9999;
    padding: 12px 0;
    transition: all 0.3s ease;
}

.navbar .logo {
    filter: brightness(0) invert(1);
    height: 40px;
}

.navbar .logo:hover {
    filter: brightness(0) invert(1) drop-shadow(0 0 10px rgba(255,255,255,0.5));
    transform: scale(1.05);
}

.navbar .nav-menu a,
.navbar .nav-links a {
    color: #fff !important;
    text-shadow: 0 1px 3px rgba(0,0,0,0.3);
}

.navbar .nav-menu a:hover,
.navbar .nav-links a:hover {
    color: #00d4aa !important;
}

.navbar .btn-whatsapp-nav {
    background: rgba(255, 255, 255, 0.15) !important;
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
    color: #fff !important;
    backdrop-filter: blur(10px);
}

.navbar .btn-whatsapp-nav:hover {
    background: rgba(255, 255, 255, 0.25) !important;
    border-color: rgba(255, 255, 255, 0.5) !important;
}

/* Ajuste do hero para compensar header fixo */
.hero-investidor {
    padding-top: 80px;
}

/* ========================================
   HERO STARTUP STYLE
   ======================================== */

.hero-startup {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero-startup .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.75) 0%,
        rgba(20, 40, 60, 0.85) 50%,
        rgba(0, 0, 0, 0.8) 100%
    );
    z-index: 1;
}

.hero-startup .hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1100px;
    padding: 0 30px;
}

.hero-startup-container {
    text-align: center;
}

/* Funding Badge */
.funding-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 10px 24px;
    border-radius: 50px;
    margin-bottom: 30px;
    animation: fadeInDown 0.8s ease;
}

.funding-badge span {
    color: #fff;
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.3px;
}

.pulse-dot {
    width: 10px;
    height: 10px;
    background: #00d4aa;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.5;
        transform: scale(1.2);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Startup Headline */
.startup-headline {
    font-size: 3.5rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.15;
    margin: 0 0 25px;
    letter-spacing: -1px;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.startup-headline .highlight-gradient {
    background: linear-gradient(135deg, #00d4aa 0%, #3498db 50%, #00d4aa 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 3s ease infinite;
}

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

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

/* Startup Subheadline */
.startup-subheadline {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto 40px;
    animation: fadeInUp 0.8s ease 0.4s both;
}

.startup-subheadline strong {
    color: #00d4aa;
    font-weight: 700;
}

/* Startup Metrics */
.startup-metrics {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    margin-bottom: 45px;
    animation: fadeInUp 0.8s ease 0.6s both;
}

.metric-item {
    text-align: center;
}

.metric-value {
    display: block;
    font-size: 2.8rem;
    font-weight: 900;
    color: #fff;
    line-height: 1;
    margin-bottom: 8px;
}

.metric-label {
    display: block;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

.metric-divider {
    width: 1px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
}

/* Hero CTA Group */
.hero-cta-group {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 50px;
    animation: fadeInUp 0.8s ease 0.8s both;
}

.btn-startup-primary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #00d4aa, #00b894);
    color: #fff;
    padding: 18px 36px;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 40px rgba(0, 212, 170, 0.3);
}

.btn-startup-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 50px rgba(0, 212, 170, 0.4);
}

.btn-startup-primary i {
    font-size: 1.2rem;
}

.btn-startup-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: #fff;
    padding: 18px 32px;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-startup-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
}

/* Trust Signals */
.trust-signals {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 35px;
    animation: fadeInUp 0.8s ease 1s both;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.trust-item i {
    color: #00d4aa;
    font-size: 1rem;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.8rem;
    animation: bounce 2s infinite;
    z-index: 2;
}

.scroll-indicator i {
    font-size: 1.2rem;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* Responsive Startup Hero */
@media (max-width: 992px) {
    .startup-headline {
        font-size: 2.8rem;
    }

    .startup-metrics {
        gap: 25px;
    }

    .metric-value {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .startup-headline {
        font-size: 2.2rem;
    }

    .startup-subheadline {
        font-size: 1.1rem;
    }

    .startup-metrics {
        flex-wrap: wrap;
        gap: 20px;
    }

    .metric-divider {
        display: none;
    }

    .metric-item {
        flex: 1 1 calc(33% - 20px);
        min-width: 100px;
    }

    .metric-value {
        font-size: 2rem;
    }

    .metric-label {
        font-size: 0.75rem;
    }

    .hero-cta-group {
        flex-direction: column;
        gap: 15px;
    }

    .btn-startup-primary,
    .btn-startup-secondary {
        width: 100%;
        max-width: 320px;
        justify-content: center;
    }

    .trust-signals {
        flex-direction: column;
        gap: 15px;
    }

    .scroll-indicator {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero-startup .hero-content {
        padding: 0 20px;
    }

    .funding-badge {
        padding: 8px 18px;
        font-size: 0.85rem;
    }

    .startup-headline {
        font-size: 1.8rem;
        letter-spacing: -0.5px;
    }

    .startup-subheadline {
        font-size: 1rem;
    }

    .metric-value {
        font-size: 1.8rem;
    }

    .btn-startup-primary {
        padding: 16px 28px;
        font-size: 1rem;
    }

    .btn-startup-secondary {
        padding: 14px 24px;
        font-size: 0.95rem;
    }
}

/* ========================================
   BRANDS SECTION - Marcas Parceiras Premium
   ======================================== */

.brands-section {
    position: relative;
    padding: 70px 0;
    overflow: hidden;
    background: linear-gradient(180deg, #060d16 0%, #0a1628 50%, #060d16 100%);
}

/* Glow effects */
.brands-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 212, 170, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.brands-section::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 10%;
    transform: translateY(-50%);
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(52, 152, 219, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.brands-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.brands-label {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 500;
    margin-bottom: 40px;
    padding: 12px 28px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 50px;
}

.brands-label::before {
    content: '';
    width: 6px;
    height: 6px;
    background: #00d4aa;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.brands-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
}

.brands-row .brand-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 30px;
    transition: all 0.4s ease;
}

.brands-row .brand-item:hover {
    transform: translateY(-5px);
}

.brands-row .brand-item img {
    height: 70px;
    width: auto;
    filter: brightness(0) invert(1);
    opacity: 0.5;
    transition: all 0.4s ease;
}

.brands-row .brand-item:hover img {
    opacity: 1;
    filter: brightness(0) invert(1) drop-shadow(0 0 25px rgba(0, 212, 170, 0.4));
}

/* Mobile Carousel */
.brands-carousel {
    display: none;
    overflow: hidden;
    position: relative;
    width: 100%;
    padding: 20px 0;
}

.brands-carousel::before,
.brands-carousel::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 80px;
    z-index: 2;
    pointer-events: none;
}

.brands-carousel::before {
    left: 0;
    background: linear-gradient(90deg, #060d16 0%, transparent 100%);
}

.brands-carousel::after {
    right: 0;
    background: linear-gradient(90deg, transparent 0%, #060d16 100%);
}

.brands-carousel-track {
    display: flex;
    width: max-content;
    animation: scrollBrands 25s linear infinite;
}

.brands-carousel-track .brand-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 30px;
    margin: 0 15px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    flex-shrink: 0;
}

.brands-carousel-track .brand-item img {
    height: 35px;
    width: auto;
    filter: brightness(0) invert(1);
    opacity: 0.6;
}

@keyframes scrollBrands {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Responsive Brands Section */
@media (max-width: 1100px) {
    .brands-row {
        gap: 20px;
    }

    .brands-row .brand-item img {
        height: 55px;
    }
}

@media (max-width: 992px) {
    .brands-section {
        padding: 50px 0;
    }

    .brands-section::before,
    .brands-section::after {
        width: 250px;
        height: 250px;
    }

    .brands-row {
        gap: 15px;
    }

    .brands-row .brand-item img {
        height: 45px;
    }
}

@media (max-width: 768px) {
    .brands-section {
        padding: 50px 0;
    }

    .brands-section::before,
    .brands-section::after {
        display: none;
    }

    .brands-row {
        display: none;
    }

    .brands-carousel {
        display: block;
    }

    .brands-label {
        font-size: 0.7rem;
        letter-spacing: 2px;
        padding: 10px 20px;
        margin-bottom: 30px;
    }
}

@media (max-width: 480px) {
    .brands-section {
        padding: 40px 0;
    }

    .brands-carousel-track .brand-item {
        padding: 15px 22px;
        margin: 0 10px;
    }

    .brands-carousel-track .brand-item img {
        height: 28px;
    }

    .brands-label {
        font-size: 0.65rem;
        padding: 8px 16px;
    }
}

/* Navbar scrolled - mais sólido */
.navbar.scrolled {
    background: rgba(0, 0, 0, 0.7) !important;
    padding: 8px 0;
}

.investor-section {
    padding: 80px 0;
    position: relative;
}

.investor-section:nth-child(even) {
    background: #f8f9fa;
}

.investor-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #294a60, #3498db);
    color: #fff;
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.section-header h2 {
    font-size: 2.5rem;
    color: #294a60;
    margin: 0;
    line-height: 1.3;
}

.section-header h2 .highlight {
    color: #3498db;
}

/* Video Container */
.video-container {
    margin: 40px 0;
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.video-wrapper.small {
    padding-bottom: 56.25%;
    max-width: 400px;
    margin: 0 auto;
}

/* Video Placeholder */
.video-placeholder {
    background: linear-gradient(135deg, #294a60, #3498db);
    border-radius: 15px;
    padding: 80px 40px;
    text-align: center;
    color: #fff;
}

.video-placeholder.large {
    padding: 120px 40px;
}

.video-placeholder .placeholder-content i {
    font-size: 4rem;
    opacity: 0.8;
    margin-bottom: 20px;
}

.video-placeholder .placeholder-content p {
    font-size: 1.2rem;
    opacity: 0.9;
    margin: 0;
}

/* ========================================
   ABOUT SURF CENTER SECTION
   ======================================== */

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 40px 0;
}

.feature-item {
    background: #fff;
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
}

.feature-item i {
    font-size: 2.5rem;
    color: #3498db;
    margin-bottom: 15px;
}

.feature-item h4 {
    color: #294a60;
    font-size: 1.1rem;
    margin: 0 0 10px;
}

.feature-item p {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
}

/* Expansion Box */
.expansion-box {
    background: linear-gradient(135deg, #294a60, #1a2f3d);
    border-radius: 20px;
    padding: 40px;
    margin: 40px 0;
    color: #fff;
}

.expansion-box h3 {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.5rem;
    margin: 0 0 30px;
}

.expansion-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.expansion-item {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 20px;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.expansion-item .status {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.expansion-item.active .status {
    background: #27ae60;
}

.expansion-item.building .status {
    background: #f39c12;
}

.expansion-item.planned .status {
    background: #3498db;
}

.expansion-item h4 {
    font-size: 1.2rem;
    margin: 0 0 8px;
}

.expansion-item p {
    font-size: 0.9rem;
    opacity: 0.9;
    margin: 0;
}

/* Why Grow Box */
.why-grow-box {
    text-align: center;
    padding: 40px;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.why-grow-box h3 {
    color: #294a60;
    font-size: 1.8rem;
    margin: 0 0 15px;
}

.why-grow-box p {
    color: #555;
    font-size: 1.1rem;
    margin: 0 0 10px;
}

.why-grow-box .highlight-text {
    font-size: 1.3rem;
    color: #294a60;
}

.why-grow-box .tagline {
    color: #3498db;
    font-style: italic;
    font-size: 1.2rem;
    margin-top: 20px;
}

/* ========================================
   VISION SECTION
   ======================================== */

.vision-content {
    max-width: 800px;
    margin: 0 auto;
}

.vision-statement {
    text-align: center;
    margin-bottom: 40px;
}

.vision-statement h3 {
    color: #294a60;
    font-size: 1.8rem;
    margin: 0 0 15px;
}

.vision-statement p {
    color: #555;
    font-size: 1.1rem;
    line-height: 1.8;
}

.bluezone-box {
    background: linear-gradient(135deg, rgba(52, 152, 219, 0.1), rgba(41, 74, 96, 0.1));
    border-left: 4px solid #3498db;
    padding: 25px 30px;
    border-radius: 0 15px 15px 0;
    margin: 30px 0;
}

.bluezone-box p {
    color: #333;
    font-size: 1.05rem;
    line-height: 1.7;
    margin: 0;
}

.growth-reason h3 {
    color: #294a60;
    font-size: 1.4rem;
    margin: 0 0 10px;
}

.growth-reason > p {
    color: #666;
    margin-bottom: 25px;
}

.vectors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 15px;
    margin: 25px 0;
}

.vector-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    padding: 15px 20px;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
}

.vector-item i {
    color: #3498db;
    font-size: 1.3rem;
}

.vector-item span {
    color: #294a60;
    font-weight: 500;
    font-size: 0.9rem;
}

.vision-conclusion {
    text-align: center;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 2px solid #e0e0e0;
}

.vision-conclusion p {
    color: #555;
    font-size: 1.1rem;
    margin: 0 0 10px;
}

.vision-conclusion .highlight-text {
    font-size: 1.4rem;
    color: #294a60;
}

/* ========================================
   WHY INVEST SECTION
   ======================================== */

.invest-reasons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 50px;
}

.reason-card {
    background: #fff;
    padding: 30px 25px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

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

.reason-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #294a60, #3498db);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.reason-icon i {
    font-size: 1.8rem;
    color: #fff;
}

.reason-card h4 {
    color: #294a60;
    font-size: 1.2rem;
    margin: 0 0 10px;
}

.reason-card p {
    color: #666;
    font-size: 0.95rem;
    margin: 0;
}

/* Potential Box */
.potential-box {
    display: flex;
    align-items: center;
    gap: 30px;
    background: linear-gradient(135deg, #f39c12, #e67e22);
    border-radius: 20px;
    padding: 40px;
    margin: 40px 0;
    color: #fff;
}

.potential-icon {
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.potential-icon i {
    font-size: 3rem;
}

.potential-content h3 {
    margin: 0 0 10px;
    font-size: 1.3rem;
}

.potential-value {
    font-size: 3rem;
    font-weight: 900;
    display: block;
    margin-bottom: 15px;
}

.potential-content p {
    margin: 0;
    opacity: 0.9;
    font-size: 1rem;
}

/* Return Reasons */
.return-reasons {
    background: #fff;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.return-reasons h3 {
    color: #294a60;
    font-size: 1.5rem;
    margin: 0 0 25px;
    text-align: center;
}

.return-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.return-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid #f0f0f0;
}

.return-list li:last-child {
    border-bottom: none;
}

.return-list li i {
    color: #27ae60;
    font-size: 1.2rem;
    margin-top: 2px;
}

.return-list li span {
    color: #333;
    font-size: 1rem;
    line-height: 1.5;
}

/* CTA Invest */
.cta-invest {
    text-align: center;
    margin-top: 50px;
}

/* ========================================
   DIFFERENTIALS SECTION
   ======================================== */

.differentials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
}

.differential-card {
    background: #fff;
    padding: 35px 25px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    border-top: 4px solid #3498db;
    transition: all 0.3s ease;
}

.differential-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}

.differential-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #294a60, #3498db);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.differential-icon i {
    font-size: 2rem;
    color: #fff;
}

.differential-card h4 {
    color: #294a60;
    font-size: 1.3rem;
    margin: 0 0 10px;
}

.differential-card p {
    color: #666;
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.5;
}

/* ========================================
   PARTNERS & ATHLETES SECTION
   ======================================== */

.partners-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    margin-bottom: 60px;
}

.partner-card {
    background: #294a60;
    border-radius: 15px;
    padding: 30px 20px;
    text-align: center;
    transition: transform 0.3s ease;
}

.partner-card:hover {
    transform: translateY(-5px);
}

.partner-logo {
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.partner-logo img {
    max-height: 60px;
    max-width: 100%;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.partner-description {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.85rem;
    margin: 0;
}

/* Athletes Section */
.athletes-section {
    margin-top: 50px;
}

.athletes-section h3 {
    color: #294a60;
    font-size: 1.5rem;
    text-align: center;
    margin-bottom: 40px;
}

.athletes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.athlete-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
}

.athlete-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.athlete-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.photo-credit {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
}

.athlete-info {
    padding: 20px;
    text-align: center;
}

.athlete-info h4 {
    color: #294a60;
    font-size: 1.2rem;
    margin: 0 0 5px;
}

.athlete-title {
    color: #3498db;
    font-size: 0.95rem;
    margin: 0;
}

.athlete-video {
    padding: 0 20px 20px;
}

/* ========================================
   WELLNESS MARKET SECTION
   ======================================== */

.wellness-intro {
    text-align: center;
    margin: 40px 0;
}

.wellness-intro h3 {
    color: #294a60;
    font-size: 1.8rem;
    margin: 0 0 10px;
}

.wellness-intro .highlight-text {
    color: #3498db;
    font-size: 1.3rem;
}

.blue-ocean-box {
    background: linear-gradient(135deg, #294a60, #1a2f3d);
    border-radius: 20px;
    padding: 40px;
    margin: 40px 0;
    color: #fff;
}

.blue-ocean-box h3 {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.4rem;
    margin: 0 0 30px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.stat-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 25px;
    text-align: center;
}

.stat-value {
    font-size: 2.5rem;
    font-weight: 900;
    color: #f39c12;
}

.stat-value span {
    font-size: 1.2rem;
}

.stat-card p {
    margin: 10px 0 5px;
    opacity: 0.9;
}

.stat-source {
    font-size: 0.75rem;
    opacity: 0.7;
}

.market-description {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 10px;
}

.source-note {
    font-size: 0.8rem;
    opacity: 0.7;
    font-style: italic;
}

/* Blue Zones Box */
.bluezones-box {
    background: #fff;
    border-radius: 20px;
    padding: 40px;
    margin: 40px 0;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.bluezones-box h3 {
    color: #294a60;
    font-size: 1.4rem;
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 0 0 15px;
}

.bluezones-box > p {
    color: #555;
    margin-bottom: 25px;
}

.bluezone-factors {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 15px;
    margin-bottom: 20px;
}

.factor {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #f8f9fa;
    padding: 15px 20px;
    border-radius: 10px;
}

.factor i {
    color: #3498db;
    font-size: 1.3rem;
}

.factor span {
    color: #294a60;
    font-weight: 500;
}

/* Investor Meaning */
.investor-meaning {
    background: linear-gradient(135deg, rgba(52, 152, 219, 0.1), rgba(41, 74, 96, 0.1));
    border-radius: 20px;
    padding: 40px;
    text-align: center;
}

.investor-meaning h3 {
    color: #294a60;
    font-size: 1.5rem;
    margin: 0 0 20px;
}

.investor-meaning p {
    color: #333;
    font-size: 1.1rem;
    line-height: 1.7;
    margin: 0;
    max-width: 800px;
    margin: 0 auto;
}

/* ========================================
   SURF MARKET SECTION
   ======================================== */

.market-intro {
    text-align: center;
    margin-bottom: 50px;
}

.market-intro h3 {
    color: #294a60;
    font-size: 1.8rem;
    margin: 0;
    line-height: 1.4;
}

.market-intro h3 .highlight {
    color: #3498db;
}

.market-stats-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-bottom: 50px;
}

.stat-showcase-item {
    background: #fff;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    border-bottom: 4px solid #3498db;
}

.showcase-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #294a60, #3498db);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.showcase-icon i {
    font-size: 1.5rem;
    color: #fff;
}

.showcase-value {
    font-size: 1.8rem;
    font-weight: 900;
    color: #294a60;
    margin-bottom: 10px;
}

.showcase-value span {
    font-size: 1rem;
    font-weight: 600;
}

.stat-showcase-item p {
    color: #666;
    margin: 0 0 10px;
}

.stat-showcase-item .source {
    font-size: 0.75rem;
    color: #888;
    font-style: italic;
}

/* Big Players Box */
.big-players-box {
    background: linear-gradient(135deg, #294a60, #1a2f3d);
    border-radius: 20px;
    padding: 40px;
    margin: 40px 0;
    color: #fff;
}

.big-players-box h4 {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.2rem;
    margin: 0 0 25px;
}

.players-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}

.player {
    background: rgba(255, 255, 255, 0.15);
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: 600;
}

.big-players-box .source {
    font-size: 0.8rem;
    opacity: 0.7;
    font-style: italic;
}

/* Why Surf Box */
.why-surf-box {
    text-align: center;
    padding: 40px;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.why-surf-box h4 {
    color: #294a60;
    font-size: 1.5rem;
    margin: 0 0 15px;
}

.why-surf-box > p {
    color: #555;
    margin-bottom: 25px;
}

.surf-vectors {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

.surf-vectors span {
    display: flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #294a60, #3498db);
    color: #fff;
    padding: 12px 20px;
    border-radius: 30px;
    font-weight: 500;
}

/* ========================================
   COMPARISON SECTION
   ======================================== */

.comparison-intro {
    text-align: center;
    color: #555;
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto 50px;
}

/* Chart Container */
.chart-container {
    background: #fff;
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 50px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.chart-container h3 {
    color: #294a60;
    font-size: 1.4rem;
    text-align: center;
    margin: 0 0 30px;
}

.chart-wrapper {
    height: 400px;
    margin-bottom: 30px;
}

.chart-legend {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: #555;
}

.legend-color {
    width: 20px;
    height: 4px;
    border-radius: 2px;
}

.legend-color.surf { background: #294a60; }
.legend-color.selic { background: #3498db; }
.legend-color.poupanca { background: #27ae60; }
.legend-color.b3 { background: #f39c12; }
.legend-color.fiis { background: #9b59b6; }
.legend-color.bitcoin { background: #e74c3c; }

/* Comparison Table */
.comparison-table-container {
    margin-bottom: 50px;
}

.comparison-table-container h3 {
    color: #294a60;
    font-size: 1.4rem;
    text-align: center;
    margin: 0 0 30px;
}

.table-responsive {
    overflow-x: auto;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
}

.comparison-table th,
.comparison-table td {
    padding: 18px 15px;
    text-align: left;
    border-bottom: 1px solid #f0f0f0;
}

.comparison-table th {
    background: #294a60;
    color: #fff;
    font-weight: 600;
    font-size: 0.9rem;
}

.comparison-table td {
    font-size: 0.9rem;
    color: #333;
    vertical-align: top;
}

.comparison-table td small {
    display: block;
    color: #888;
    font-size: 0.8rem;
    margin-top: 3px;
}

.highlight-row {
    background: rgba(52, 152, 219, 0.08);
}

.highlight-row td {
    font-weight: 500;
}

/* Return Values */
.return-value {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.95rem;
}

.return-value.high { background: #27ae60; color: #fff; }
.return-value.very-high { background: #f39c12; color: #fff; }
.return-value.medium { background: #3498db; color: #fff; }
.return-value.low { background: #95a5a6; color: #fff; }

/* Risk Badges */
.risk-badge {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.risk-badge.very-low { background: #e8f5e9; color: #27ae60; }
.risk-badge.low { background: #e3f2fd; color: #2196f3; }
.risk-badge.medium { background: #fff3e0; color: #f39c12; }
.risk-badge.high { background: #ffebee; color: #e74c3c; }
.risk-badge.very-high { background: #fce4ec; color: #c2185b; }

.table-footnote {
    text-align: center;
    color: #888;
    font-size: 0.85rem;
    font-style: italic;
    margin-top: 20px;
}

/* Comparison Conclusion */
.comparison-conclusion {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.comparison-conclusion p {
    color: #555;
    font-size: 1.1rem;
    line-height: 1.7;
    margin: 0 0 15px;
}

.comparison-conclusion .highlight-text {
    color: #294a60;
    font-size: 1.4rem;
    font-weight: 700;
}

.conclusion-highlight {
    background: linear-gradient(135deg, rgba(52, 152, 219, 0.1), rgba(41, 74, 96, 0.1));
    border-radius: 15px;
    padding: 30px;
    margin-top: 30px;
}

.conclusion-final {
    color: #294a60;
    font-weight: 600;
}

/* ========================================
   INVESTOR PROFILE SECTION
   ======================================== */

.profile-intro {
    text-align: center;
    margin-bottom: 40px;
}

.profile-intro h3 {
    color: #294a60;
    font-size: 1.8rem;
    margin: 0;
}

.profile-list {
    max-width: 800px;
    margin: 0 auto 50px;
}

.profile-item {
    display: flex;
    align-items: center;
    gap: 20px;
    background: #fff;
    padding: 25px 30px;
    border-radius: 15px;
    margin-bottom: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.profile-item:hover {
    transform: translateX(10px);
}

.profile-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #294a60, #3498db);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.profile-icon i {
    font-size: 1.5rem;
    color: #fff;
}

.profile-item p {
    color: #333;
    font-size: 1.1rem;
    margin: 0;
}

/* Final CTA */
.final-cta {
    text-align: center;
    background: linear-gradient(135deg, #294a60, #1a2f3d);
    border-radius: 20px;
    padding: 60px 40px;
    color: #fff;
}

.final-cta h3 {
    font-size: 2rem;
    margin: 0 0 15px;
}

.final-cta p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin: 0 0 30px;
}

.btn-large {
    padding: 20px 45px !important;
    font-size: 1.2rem !important;
}

/* ========================================
   RESPONSIVE STYLES
   ======================================== */

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

@media (max-width: 768px) {
    .investor-section {
        padding: 60px 0;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .potential-box {
        flex-direction: column;
        text-align: center;
    }

    .potential-value {
        font-size: 2.5rem;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 12px 10px;
        font-size: 0.85rem;
    }

    .chart-wrapper {
        height: 300px;
    }

    .chart-legend {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 576px) {
    .partners-grid {
        grid-template-columns: 1fr;
    }

    .expansion-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .vectors-grid {
        grid-template-columns: 1fr;
    }

    .bluezone-factors {
        grid-template-columns: 1fr;
    }

    .surf-vectors {
        flex-direction: column;
    }

    .comparison-table {
        display: block;
    }

    .comparison-table thead {
        display: none;
    }

    .comparison-table tbody,
    .comparison-table tr {
        display: block;
    }

    .comparison-table tr {
        margin-bottom: 20px;
        background: #fff;
        border-radius: 10px;
        box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
        padding: 15px;
    }

    .comparison-table td {
        display: block;
        padding: 10px 0;
        border-bottom: 1px solid #f0f0f0;
    }

    .comparison-table td:last-child {
        border-bottom: none;
    }

    .comparison-table td::before {
        content: attr(data-label);
        font-weight: 700;
        color: #294a60;
        display: block;
        margin-bottom: 5px;
        font-size: 0.8rem;
    }

    .profile-item {
        flex-direction: column;
        text-align: center;
    }

    .final-cta {
        padding: 40px 20px;
    }

    .final-cta h3 {
        font-size: 1.5rem;
    }
}

/* ========================================
   FOOTER INVESTOR - PREMIUM STARTUP STYLE
   ======================================== */

.footer-investor {
    background: #060d16;
    color: #fff;
}

/* ========================================
   FINAL CTA SECTION - Premium Style
   ======================================== */

.final-cta-section {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
}

.final-cta-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(0, 212, 170, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 50%, rgba(52, 152, 219, 0.1) 0%, transparent 50%),
        linear-gradient(180deg, #0a1628 0%, #060d16 100%);
}

.final-cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.final-cta-section .cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(0, 212, 170, 0.1);
    border: 1px solid rgba(0, 212, 170, 0.3);
    padding: 10px 24px;
    border-radius: 50px;
    margin-bottom: 30px;
    font-size: 0.9rem;
    color: #00d4aa;
    font-weight: 500;
}

.final-cta-section .cta-badge .pulse-dot {
    width: 8px;
    height: 8px;
    background: #00d4aa;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.final-cta-content h2 {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.2;
    margin: 0 0 20px;
    color: #fff;
}

.final-cta-content h2 .gradient-text {
    background: linear-gradient(135deg, #00d4aa 0%, #3498db 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.final-cta-content > p {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0 0 40px;
    line-height: 1.6;
}

.final-cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-cta-primary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #00d4aa 0%, #00b894 100%);
    color: #fff;
    padding: 18px 40px;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 40px rgba(0, 212, 170, 0.3);
}

.btn-cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 50px rgba(0, 212, 170, 0.4);
}

.btn-cta-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    padding: 18px 35px;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-cta-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
}

/* Main Footer Section */
.footer-main-section {
    padding: 80px 0 60px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 60px;
}

/* Brand Column */
.footer-brand-col .footer-logo {
    margin-bottom: 25px;
}

.footer-brand-col .footer-logo img {
    height: 55px;
    filter: brightness(0) invert(1);
    opacity: 0.95;
}

.footer-brand-desc {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
    margin: 0 0 30px;
}

.footer-stats {
    display: flex;
    gap: 30px;
}

.footer-stat {
    text-align: center;
    padding: 20px 25px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
}

.stat-number {
    display: block;
    font-size: 1.8rem;
    font-weight: 800;
    color: #00d4aa;
    line-height: 1;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Links Column */
.footer-links-col h4,
.footer-contact-col h4,
.footer-social-col h4 {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.4);
    margin: 0 0 25px;
    font-weight: 600;
}

.footer-links-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links-col ul li {
    margin-bottom: 14px;
}

.footer-links-col ul li a {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.footer-links-col ul li a i {
    font-size: 0.65rem;
    color: #00d4aa;
    opacity: 0;
    transform: translateX(-5px);
    transition: all 0.3s ease;
}

.footer-links-col ul li a:hover {
    color: #00d4aa;
    padding-left: 5px;
}

.footer-links-col ul li a:hover i {
    opacity: 1;
    transform: translateX(0);
}

/* Contact Column */
.contact-item {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
}

.contact-icon {
    width: 45px;
    height: 45px;
    background: rgba(0, 212, 170, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon i {
    color: #00d4aa;
    font-size: 1rem;
}

.contact-info span {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 5px;
}

.contact-info a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.9rem;
    line-height: 1.5;
    transition: color 0.3s ease;
}

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

/* Social Column */
.social-desc {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
    margin: 0 0 20px;
}

.social-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.social-card {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-card i {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.6);
    transition: color 0.3s ease;
}

.social-card span {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.3s ease;
}

.social-card:hover {
    background: rgba(0, 212, 170, 0.1);
    border-color: rgba(0, 212, 170, 0.3);
    transform: translateY(-2px);
}

.social-card:hover i,
.social-card:hover span {
    color: #00d4aa;
}

/* Bottom Bar */
.footer-bottom-bar {
    padding: 25px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

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

.copyright p {
    margin: 0;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
}

.copyright p strong {
    color: #00d4aa;
}

.copyright .legal {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.35);
    margin-top: 5px;
}

.bottom-links {
    display: flex;
    align-items: center;
    gap: 15px;
}

.bottom-links a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s ease;
}

.bottom-links a:hover {
    color: #00d4aa;
}

.bottom-links .separator {
    color: rgba(255, 255, 255, 0.3);
}

/* Footer Responsive */
@media (max-width: 1100px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 50px;
    }

    .footer-brand-col {
        grid-column: span 2;
        text-align: center;
    }

    .footer-brand-col .footer-logo {
        display: flex;
        justify-content: center;
    }

    .footer-stats {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .final-cta-section {
        padding: 70px 0;
    }

    .final-cta-content h2 {
        font-size: 2.2rem;
    }

    .final-cta-content > p {
        font-size: 1rem;
    }

    .final-cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn-cta-primary,
    .btn-cta-secondary {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }

    .footer-main-section {
        padding: 60px 0 50px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .footer-brand-col {
        grid-column: span 1;
    }

    .footer-stats {
        flex-direction: row;
        justify-content: center;
    }

    .footer-links-col ul li a {
        justify-content: center;
    }

    .footer-links-col ul li a i {
        display: none;
    }

    .contact-item {
        justify-content: center;
        text-align: left;
    }

    .social-grid {
        max-width: 280px;
        margin: 0 auto;
    }

    .bottom-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .final-cta-section {
        padding: 50px 0;
    }

    .final-cta-content h2 {
        font-size: 1.8rem;
    }

    .final-cta-section .cta-badge {
        font-size: 0.8rem;
        padding: 8px 18px;
    }

    .btn-cta-primary {
        padding: 16px 30px;
        font-size: 1rem;
    }

    .btn-cta-secondary {
        padding: 14px 25px;
        font-size: 0.95rem;
    }

    .footer-brand-col .footer-logo img {
        height: 45px;
    }

    .footer-stats {
        gap: 15px;
    }

    .footer-stat {
        padding: 15px 20px;
    }

    .stat-number {
        font-size: 1.5rem;
    }

    .social-grid {
        grid-template-columns: 1fr 1fr;
    }
}

/* ========================================
   INVESTOR PROFILE PREMIUM SECTION
   ======================================== */

.investor-profile-premium {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(180deg, #060d16 0%, #0a1628 50%, #060d16 100%);
    overflow: hidden;
}

.profile-premium-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse at 30% 20%, rgba(0, 212, 170, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 80%, rgba(52, 152, 219, 0.06) 0%, transparent 50%);
    pointer-events: none;
}

.investor-profile-premium .container {
    position: relative;
    z-index: 1;
}

/* Header */
.profile-premium-header {
    text-align: center;
    margin-bottom: 60px;
}

.profile-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(0, 212, 170, 0.1);
    border: 1px solid rgba(0, 212, 170, 0.3);
    padding: 10px 24px;
    border-radius: 50px;
    color: #00d4aa;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 25px;
}

.profile-premium-header h2 {
    font-size: 3rem;
    font-weight: 800;
    color: #fff;
    margin: 0 0 20px;
    letter-spacing: -1px;
}

.profile-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

/* Grid */
.profile-premium-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    max-width: 1000px;
    margin: 0 auto;
}

/* Cards */
.profile-premium-card {
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 30px;
    transition: all 0.4s ease;
    overflow: hidden;
}

.profile-premium-card:hover {
    background: rgba(0, 212, 170, 0.08);
    border-color: rgba(0, 212, 170, 0.3);
    transform: translateY(-5px);
}

.profile-premium-card.featured {
    grid-column: span 2;
    justify-content: center;
    background: rgba(0, 212, 170, 0.05);
    border-color: rgba(0, 212, 170, 0.2);
}

/* Card Glow Effect */
.profile-card-glow {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(0, 212, 170, 0.15) 0%, transparent 70%);
    transform: translateY(-50%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.profile-premium-card:hover .profile-card-glow {
    opacity: 1;
}

/* Icon */
.profile-card-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(0, 212, 170, 0.2) 0%, rgba(52, 152, 219, 0.2) 100%);
    border: 1px solid rgba(0, 212, 170, 0.3);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.4s ease;
}

.profile-card-icon i {
    font-size: 1.5rem;
    color: #00d4aa;
    transition: all 0.4s ease;
}

.profile-premium-card:hover .profile-card-icon {
    background: linear-gradient(135deg, #00d4aa 0%, #00b894 100%);
    border-color: transparent;
    box-shadow: 0 8px 25px rgba(0, 212, 170, 0.3);
}

.profile-premium-card:hover .profile-card-icon i {
    color: #fff;
    transform: scale(1.1);
}

/* Content */
.profile-card-content p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0;
}

.profile-card-content strong {
    color: #fff;
    font-weight: 700;
}

.profile-premium-card.featured .profile-card-content strong {
    background: linear-gradient(135deg, #00d4aa 0%, #3498db 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Responsive */
@media (max-width: 768px) {
    .investor-profile-premium {
        padding: 70px 0;
    }

    .profile-premium-header h2 {
        font-size: 2rem;
    }

    .profile-subtitle {
        font-size: 1.1rem;
    }

    .profile-premium-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .profile-premium-card {
        padding: 20px;
    }

    .profile-premium-card.featured {
        grid-column: span 1;
    }

    .profile-card-icon {
        width: 50px;
        height: 50px;
    }

    .profile-card-icon i {
        font-size: 1.2rem;
    }

    .profile-card-content p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .profile-badge {
        font-size: 0.75rem;
        padding: 8px 16px;
    }

    .profile-premium-header h2 {
        font-size: 1.7rem;
    }
}

/* ========================================
   INVESTMENT COMPARISON PREMIUM SECTION
   ======================================== */

.comparison-premium {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(180deg, #0a1628 0%, #060d16 50%, #0a1628 100%);
    overflow: hidden;
}

.comparison-premium-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse at 20% 30%, rgba(0, 212, 170, 0.06) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 70%, rgba(52, 152, 219, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.comparison-premium .container {
    position: relative;
    z-index: 1;
}

/* Header */
.comparison-premium-header {
    text-align: center;
    margin-bottom: 60px;
}

.comparison-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(0, 212, 170, 0.1);
    border: 1px solid rgba(0, 212, 170, 0.3);
    padding: 10px 24px;
    border-radius: 50px;
    color: #00d4aa;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 25px;
}

.comparison-premium-header h2 {
    font-size: 3rem;
    font-weight: 800;
    color: #fff;
    margin: 0 0 20px;
    letter-spacing: -1px;
}

.comparison-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

/* Chart Container */
.chart-premium-container {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 35px;
    margin-bottom: 40px;
}

.chart-premium-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 15px;
}

.chart-premium-header h3 {
    color: #fff;
    font-size: 1.3rem;
    font-weight: 700;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 12px;
}

.chart-premium-header h3 i {
    color: #00d4aa;
}

.chart-period {
    background: rgba(0, 212, 170, 0.15);
    color: #00d4aa;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.chart-premium-wrapper {
    height: 350px;
    margin-bottom: 30px;
}

/* Chart Legend */
.chart-premium-legend {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

.legend-premium-item {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.03);
    padding: 8px 14px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.legend-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.legend-premium-item.surf .legend-dot { background: #00d4aa; box-shadow: 0 0 10px rgba(0, 212, 170, 0.5); }
.legend-premium-item.selic .legend-dot { background: #3498db; }
.legend-premium-item.poupanca .legend-dot { background: #9b59b6; }
.legend-premium-item.acoes .legend-dot { background: #f39c12; }
.legend-premium-item.fiis .legend-dot { background: #1abc9c; }
.legend-premium-item.bitcoin .legend-dot { background: #e74c3c; }

.legend-label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
}

.legend-value {
    color: #fff;
    font-weight: 700;
    font-size: 0.85rem;
}

.legend-premium-item.surf {
    background: rgba(0, 212, 170, 0.1);
    border-color: rgba(0, 212, 170, 0.3);
}

.legend-premium-item.surf .legend-label,
.legend-premium-item.surf .legend-value {
    color: #00d4aa;
}

/* Table Container */
.table-premium-container {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 35px;
    margin-bottom: 40px;
    overflow: hidden;
}

.table-premium-header {
    margin-bottom: 25px;
}

.table-premium-header h3 {
    color: #fff;
    font-size: 1.3rem;
    font-weight: 700;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 12px;
}

.table-premium-header h3 i {
    color: #00d4aa;
}

.table-premium-wrapper {
    overflow-x: auto;
}

/* Premium Table */
.table-premium {
    width: 100%;
    border-collapse: collapse;
}

.table-premium thead th {
    background: rgba(0, 212, 170, 0.1);
    color: #00d4aa;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 16px 20px;
    text-align: left;
    border-bottom: 1px solid rgba(0, 212, 170, 0.2);
}

.table-premium tbody tr {
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    transition: all 0.3s ease;
}

.table-premium tbody tr:hover {
    background: rgba(255, 255, 255, 0.03);
}

.table-premium tbody tr.row-highlight {
    background: rgba(0, 212, 170, 0.08);
}

.table-premium tbody tr.row-highlight:hover {
    background: rgba(0, 212, 170, 0.12);
}

.table-premium tbody td {
    padding: 18px 20px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    vertical-align: middle;
}

.investment-name {
    display: flex;
    align-items: center;
    gap: 12px;
}

.investment-name i {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 1rem;
}

.row-highlight .investment-name i {
    background: rgba(0, 212, 170, 0.2);
    color: #00d4aa;
}

.row-highlight .investment-name strong {
    color: #00d4aa;
}

/* Return Badges */
.return-badge {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 700;
}

.return-badge.high {
    background: linear-gradient(135deg, rgba(0, 212, 170, 0.2), rgba(0, 184, 148, 0.2));
    color: #00d4aa;
    border: 1px solid rgba(0, 212, 170, 0.4);
}

.return-badge.medium {
    background: rgba(52, 152, 219, 0.15);
    color: #3498db;
}

.return-badge.low {
    background: rgba(155, 89, 182, 0.15);
    color: #9b59b6;
}

.return-badge.volatile {
    background: rgba(231, 76, 60, 0.15);
    color: #e74c3c;
}

/* Risk Tags */
.risk-tag {
    display: inline-block;
    padding: 5px 12px;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 600;
}

.risk-tag.very-low {
    background: rgba(39, 174, 96, 0.15);
    color: #27ae60;
}

.risk-tag.low {
    background: rgba(26, 188, 156, 0.15);
    color: #1abc9c;
}

.risk-tag.medium {
    background: rgba(241, 196, 15, 0.15);
    color: #f1c40f;
}

.risk-tag.high {
    background: rgba(243, 156, 18, 0.15);
    color: #f39c12;
}

.risk-tag.very-high {
    background: rgba(231, 76, 60, 0.15);
    color: #e74c3c;
}

.analysis-text {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.table-premium-footnote {
    margin-top: 20px;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.table-premium-footnote i {
    color: rgba(0, 212, 170, 0.5);
}

/* Conclusion */
.comparison-conclusion-premium {
    max-width: 800px;
    margin: 0 auto;
}

.conclusion-card {
    background: linear-gradient(135deg, rgba(0, 212, 170, 0.1) 0%, rgba(52, 152, 219, 0.05) 100%);
    border: 1px solid rgba(0, 212, 170, 0.2);
    border-radius: 20px;
    padding: 40px;
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

.conclusion-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #00d4aa 0%, #00b894 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 10px 30px rgba(0, 212, 170, 0.3);
}

.conclusion-icon i {
    font-size: 1.8rem;
    color: #fff;
}

.conclusion-content h4 {
    color: #fff;
    font-size: 1.4rem;
    font-weight: 700;
    margin: 0 0 15px;
}

.conclusion-content p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.05rem;
    line-height: 1.7;
    margin: 0 0 20px;
}

.conclusion-content strong {
    color: #fff;
}

.conclusion-highlight-box {
    background: rgba(0, 212, 170, 0.15);
    border: 1px solid rgba(0, 212, 170, 0.3);
    border-radius: 12px;
    padding: 20px 25px;
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.conclusion-highlight-box .highlight-number {
    font-size: 2.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, #00d4aa 0%, #3498db 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.conclusion-highlight-box .highlight-text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
}

.conclusion-final {
    color: rgba(255, 255, 255, 0.6) !important;
    font-size: 0.95rem !important;
    margin-bottom: 0 !important;
}

/* Responsive */
@media (max-width: 992px) {
    .chart-premium-legend {
        gap: 10px;
    }

    .legend-premium-item {
        padding: 6px 10px;
        font-size: 0.8rem;
    }

    .table-premium thead th {
        padding: 12px 15px;
        font-size: 0.8rem;
    }

    .table-premium tbody td {
        padding: 14px 15px;
    }
}

@media (max-width: 768px) {
    .comparison-premium {
        padding: 70px 0;
    }

    .comparison-premium-header h2 {
        font-size: 2rem;
    }

    .chart-premium-container,
    .table-premium-container {
        padding: 20px;
        border-radius: 16px;
    }

    .chart-premium-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .chart-premium-wrapper {
        height: 280px;
    }

    .chart-premium-legend {
        flex-direction: column;
        align-items: stretch;
    }

    .legend-premium-item {
        justify-content: space-between;
    }

    /* Mobile Table */
    .table-premium thead {
        display: none;
    }

    .table-premium tbody tr {
        display: block;
        margin-bottom: 15px;
        background: rgba(255, 255, 255, 0.02);
        border-radius: 12px;
        border: 1px solid rgba(255, 255, 255, 0.06);
        padding: 15px;
    }

    .table-premium tbody tr.row-highlight {
        border-color: rgba(0, 212, 170, 0.3);
    }

    .table-premium tbody td {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 10px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .table-premium tbody td:last-child {
        border-bottom: none;
    }

    .table-premium tbody td::before {
        content: attr(data-label);
        font-weight: 600;
        color: rgba(255, 255, 255, 0.5);
        font-size: 0.8rem;
        text-transform: uppercase;
    }

    .investment-name {
        flex-direction: row-reverse;
    }

    .conclusion-card {
        flex-direction: column;
        text-align: center;
        padding: 30px 20px;
    }

    .conclusion-icon {
        margin: 0 auto;
    }

    .conclusion-highlight-box {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .comparison-badge {
        font-size: 0.75rem;
        padding: 8px 16px;
    }

    .comparison-premium-header h2 {
        font-size: 1.7rem;
    }

    .conclusion-highlight-box .highlight-number {
        font-size: 2rem;
    }
}

/* ========================================
   SURF MARKET PREMIUM SECTION
   ======================================== */

.surf-market-premium {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(180deg, #060d16 0%, #0a1628 50%, #060d16 100%);
    overflow: hidden;
}

.surf-market-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse at 70% 20%, rgba(0, 212, 170, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 30% 80%, rgba(52, 152, 219, 0.06) 0%, transparent 50%);
    pointer-events: none;
}

.surf-market-premium .container {
    position: relative;
    z-index: 1;
}

/* Header */
.surf-market-header {
    text-align: center;
    margin-bottom: 60px;
}

.surf-market-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(0, 212, 170, 0.1);
    border: 1px solid rgba(0, 212, 170, 0.3);
    padding: 10px 24px;
    border-radius: 50px;
    color: #00d4aa;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 25px;
}

.surf-market-header h2 {
    font-size: 3rem;
    font-weight: 800;
    color: #fff;
    margin: 0 0 20px;
    letter-spacing: -1px;
}

.surf-market-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

/* Stats Grid */
.surf-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-bottom: 50px;
}

.surf-stat-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 30px 25px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.surf-stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(0, 212, 170, 0.5), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.surf-stat-card:hover {
    background: rgba(0, 212, 170, 0.08);
    border-color: rgba(0, 212, 170, 0.3);
    transform: translateY(-5px);
}

.surf-stat-card:hover::before {
    opacity: 1;
}

.surf-stat-card.featured {
    background: rgba(0, 212, 170, 0.1);
    border-color: rgba(0, 212, 170, 0.3);
}

.surf-stat-card.featured::before {
    opacity: 1;
}

.surf-stat-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, rgba(0, 212, 170, 0.2) 0%, rgba(52, 152, 219, 0.2) 100%);
    border: 1px solid rgba(0, 212, 170, 0.3);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
}

.surf-stat-icon i {
    font-size: 1.5rem;
    color: #00d4aa;
    transition: all 0.4s ease;
}

.surf-stat-card:hover .surf-stat-icon {
    background: linear-gradient(135deg, #00d4aa 0%, #00b894 100%);
    box-shadow: 0 8px 25px rgba(0, 212, 170, 0.3);
}

.surf-stat-card:hover .surf-stat-icon i {
    color: #fff;
    transform: scale(1.1);
}

.surf-stat-content {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
    margin-bottom: 10px;
}

.surf-stat-value {
    font-size: 2rem;
    font-weight: 800;
    color: #fff;
}

.surf-stat-period {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 500;
}

.surf-stat-label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    margin: 0 0 12px;
    line-height: 1.5;
}

.surf-stat-source {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.4);
    font-style: italic;
}

/* Players Card */
.surf-players-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 50px;
}

.players-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.players-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(52, 152, 219, 0.2) 0%, rgba(0, 212, 170, 0.2) 100%);
    border: 1px solid rgba(52, 152, 219, 0.3);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.players-icon i {
    font-size: 1.5rem;
    color: #3498db;
}

.players-title h4 {
    color: #fff;
    font-size: 1.3rem;
    font-weight: 700;
    margin: 0 0 5px;
}

.players-title p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
    margin: 0;
}

.players-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.player-chip {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.8);
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.player-chip:hover {
    background: rgba(0, 212, 170, 0.15);
    border-color: rgba(0, 212, 170, 0.4);
    color: #00d4aa;
    transform: translateY(-2px);
}

/* Why Section */
.surf-why-section {
    text-align: center;
}

.why-header {
    margin-bottom: 40px;
}

.why-header h4 {
    color: #fff;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 0 10px;
}

.why-header p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.05rem;
    margin: 0;
}

.surf-vectors-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.vector-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 25px 30px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    transition: all 0.4s ease;
    min-width: 140px;
}

.vector-item:hover {
    background: rgba(0, 212, 170, 0.1);
    border-color: rgba(0, 212, 170, 0.3);
    transform: translateY(-5px);
}

.vector-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(0, 212, 170, 0.15) 0%, rgba(52, 152, 219, 0.15) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
}

.vector-icon i {
    font-size: 1.3rem;
    color: #00d4aa;
    transition: all 0.4s ease;
}

.vector-item:hover .vector-icon {
    background: linear-gradient(135deg, #00d4aa 0%, #00b894 100%);
    box-shadow: 0 8px 20px rgba(0, 212, 170, 0.3);
}

.vector-item:hover .vector-icon i {
    color: #fff;
}

.vector-item span {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    font-weight: 600;
}

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

@media (max-width: 768px) {
    .surf-market-premium {
        padding: 70px 0;
    }

    .surf-market-header h2 {
        font-size: 2rem;
    }

    .surf-market-subtitle {
        font-size: 1.05rem;
    }

    .surf-stats-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .surf-stat-card {
        padding: 25px 20px;
    }

    .surf-stat-value {
        font-size: 1.8rem;
    }

    .surf-players-card {
        padding: 25px 20px;
    }

    .players-header {
        flex-direction: column;
        text-align: center;
    }

    .players-grid {
        justify-content: center;
    }

    .player-chip {
        padding: 8px 16px;
        font-size: 0.85rem;
    }

    .surf-vectors-grid {
        gap: 12px;
    }

    .vector-item {
        padding: 20px;
        min-width: 120px;
    }
}

@media (max-width: 480px) {
    .surf-market-badge {
        font-size: 0.75rem;
        padding: 8px 16px;
    }

    .surf-market-header h2 {
        font-size: 1.7rem;
    }

    .vector-item {
        min-width: calc(50% - 10px);
    }
}

/* ========================================
   WELLNESS MARKET PREMIUM SECTION
   ======================================== */

.wellness-premium {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(180deg, #0a1628 0%, #060d16 50%, #0a1628 100%);
    overflow: hidden;
}

.wellness-premium-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse at 20% 30%, rgba(52, 152, 219, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 70%, rgba(0, 212, 170, 0.06) 0%, transparent 50%);
    pointer-events: none;
}

.wellness-premium .container {
    position: relative;
    z-index: 1;
}

/* Header */
.wellness-premium-header {
    text-align: center;
    margin-bottom: 50px;
}

.wellness-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(0, 212, 170, 0.1);
    border: 1px solid rgba(0, 212, 170, 0.3);
    padding: 10px 24px;
    border-radius: 50px;
    color: #00d4aa;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 25px;
}

.wellness-premium-header h2 {
    font-size: 3rem;
    font-weight: 800;
    color: #fff;
    margin: 0 0 20px;
    letter-spacing: -1px;
}

.wellness-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Video Container */
.wellness-video-container {
    margin-bottom: 60px;
}

.wellness-video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.wellness-video-wrapper::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    width: 50%;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(0, 212, 170, 0.5), transparent);
    z-index: 1;
}

.wellness-video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Blue Ocean Section */
.blue-ocean-premium {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 45px;
    margin-bottom: 40px;
}

.blue-ocean-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 40px;
}

.blue-ocean-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(52, 152, 219, 0.2) 0%, rgba(0, 212, 170, 0.2) 100%);
    border: 1px solid rgba(52, 152, 219, 0.3);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.blue-ocean-icon i {
    font-size: 1.5rem;
    color: #3498db;
}

.blue-ocean-title h3 {
    color: #fff;
    font-size: 1.4rem;
    font-weight: 700;
    margin: 0;
    line-height: 1.4;
}

/* Stats Row */
.wellness-stats-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-bottom: 40px;
}

.wellness-stat-big {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 35px 45px;
    text-align: center;
    flex: 1;
    max-width: 320px;
    transition: all 0.4s ease;
}

.wellness-stat-big:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-5px);
}

.wellness-stat-big.featured {
    background: rgba(0, 212, 170, 0.1);
    border-color: rgba(0, 212, 170, 0.3);
}

.wellness-stat-big .stat-currency {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 600;
}

.wellness-stat-big .stat-number {
    font-size: 3.5rem;
    font-weight: 900;
    color: #fff;
    line-height: 1;
    margin: 0 5px;
}

.wellness-stat-big.featured .stat-number {
    background: linear-gradient(135deg, #00d4aa 0%, #3498db 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.wellness-stat-big .stat-unit {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 600;
}

.wellness-stat-big p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    margin: 15px 0 10px;
}

.wellness-stat-big p strong {
    color: #fff;
}

.wellness-stat-big .stat-source {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.4);
    font-style: italic;
}

.wellness-stat-arrow {
    color: #00d4aa;
    font-size: 1.5rem;
    animation: arrowPulse 2s ease-in-out infinite;
}

@keyframes arrowPulse {
    0%, 100% { transform: translateX(0); opacity: 1; }
    50% { transform: translateX(10px); opacity: 0.6; }
}

/* Description */
.wellness-description {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.wellness-description p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    line-height: 1.7;
    margin: 0 0 15px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.wellness-description strong {
    color: #00d4aa;
}

.source-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.85rem;
}

.source-tag i {
    color: rgba(0, 212, 170, 0.5);
}

/* Blue Zones Section */
.bluezones-premium {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 45px;
    margin-bottom: 40px;
}

.bluezones-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 35px;
}

.bluezones-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(0, 212, 170, 0.2) 0%, rgba(26, 188, 156, 0.2) 100%);
    border: 1px solid rgba(0, 212, 170, 0.3);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.bluezones-icon i {
    font-size: 1.5rem;
    color: #00d4aa;
}

.bluezones-title h3 {
    color: #fff;
    font-size: 1.4rem;
    font-weight: 700;
    margin: 0 0 5px;
}

.bluezones-title p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1rem;
    margin: 0;
}

.bluezones-factors-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 25px;
}

.bluezone-factor-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 25px 20px;
    text-align: center;
    transition: all 0.4s ease;
}

.bluezone-factor-card:hover {
    background: rgba(0, 212, 170, 0.1);
    border-color: rgba(0, 212, 170, 0.3);
    transform: translateY(-5px);
}

.factor-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 15px;
    background: linear-gradient(135deg, rgba(0, 212, 170, 0.15) 0%, rgba(52, 152, 219, 0.15) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
}

.factor-icon i {
    font-size: 1.3rem;
    color: #00d4aa;
    transition: all 0.4s ease;
}

.bluezone-factor-card:hover .factor-icon {
    background: linear-gradient(135deg, #00d4aa 0%, #00b894 100%);
    box-shadow: 0 8px 20px rgba(0, 212, 170, 0.3);
}

.bluezone-factor-card:hover .factor-icon i {
    color: #fff;
}

.bluezone-factor-card span {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    font-weight: 600;
}

.bluezones-source {
    display: block;
    text-align: center;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.85rem;
    font-style: italic;
}

.bluezones-source i {
    color: rgba(0, 212, 170, 0.4);
    margin-right: 8px;
}

/* Conclusion Card */
.wellness-conclusion-card {
    position: relative;
    background: linear-gradient(135deg, rgba(0, 212, 170, 0.1) 0%, rgba(52, 152, 219, 0.05) 100%);
    border: 1px solid rgba(0, 212, 170, 0.2);
    border-radius: 24px;
    padding: 45px;
    display: flex;
    align-items: flex-start;
    gap: 25px;
    overflow: hidden;
}

.wellness-conclusion-card .conclusion-glow {
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(0, 212, 170, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.wellness-conclusion-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #00d4aa 0%, #00b894 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 10px 30px rgba(0, 212, 170, 0.3);
}

.wellness-conclusion-icon i {
    font-size: 1.5rem;
    color: #fff;
}

.wellness-conclusion-content {
    position: relative;
    z-index: 1;
}

.wellness-conclusion-content h4 {
    color: #fff;
    font-size: 1.4rem;
    font-weight: 700;
    margin: 0 0 15px;
}

.wellness-conclusion-content p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.05rem;
    line-height: 1.7;
    margin: 0 0 20px;
}

.wellness-conclusion-content p strong {
    color: #fff;
}

.conclusion-highlight {
    background: rgba(0, 212, 170, 0.15);
    border-left: 3px solid #00d4aa;
    padding: 15px 20px;
    border-radius: 0 12px 12px 0;
}

.conclusion-highlight span {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
}

.conclusion-highlight strong {
    color: #00d4aa;
}

/* Responsive */
@media (max-width: 992px) {
    .wellness-stats-row {
        flex-direction: column;
        gap: 20px;
    }

    .wellness-stat-big {
        max-width: 100%;
        width: 100%;
    }

    .wellness-stat-arrow {
        transform: rotate(90deg);
    }

    @keyframes arrowPulse {
        0%, 100% { transform: rotate(90deg) translateX(0); opacity: 1; }
        50% { transform: rotate(90deg) translateX(10px); opacity: 0.6; }
    }

    .bluezones-factors-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .wellness-premium {
        padding: 70px 0;
    }

    .wellness-premium-header h2 {
        font-size: 2rem;
    }

    .wellness-video-container {
        margin-bottom: 40px;
    }

    .wellness-video-wrapper {
        border-radius: 16px;
    }

    .blue-ocean-premium,
    .bluezones-premium {
        padding: 25px 20px;
        border-radius: 16px;
    }

    .blue-ocean-header,
    .bluezones-header {
        flex-direction: column;
        text-align: center;
    }

    .blue-ocean-title h3,
    .bluezones-title h3 {
        font-size: 1.2rem;
    }

    .wellness-stat-big {
        padding: 25px 20px;
    }

    .wellness-stat-big .stat-number {
        font-size: 2.5rem;
    }

    .bluezones-factors-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .bluezone-factor-card {
        padding: 20px 15px;
    }

    .wellness-conclusion-card {
        flex-direction: column;
        text-align: center;
        padding: 30px 20px;
    }

    .wellness-conclusion-icon {
        margin: 0 auto;
    }

    .conclusion-highlight {
        border-left: none;
        border-top: 3px solid #00d4aa;
        border-radius: 0 0 12px 12px;
    }
}

@media (max-width: 480px) {
    .wellness-badge {
        font-size: 0.75rem;
        padding: 8px 16px;
    }

    .wellness-premium-header h2 {
        font-size: 1.7rem;
    }

    .bluezones-factors-grid {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   PARTNERS & ATHLETES PREMIUM SECTION
   ======================================== */

.partners-premium {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(180deg, #060d16 0%, #0a1628 50%, #060d16 100%);
    overflow: hidden;
}

.partners-premium-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse at 30% 20%, rgba(0, 212, 170, 0.06) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 80%, rgba(52, 152, 219, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.partners-premium .container {
    position: relative;
    z-index: 1;
}

/* Header */
.partners-premium-header {
    text-align: center;
    margin-bottom: 50px;
}

.partners-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(0, 212, 170, 0.1);
    border: 1px solid rgba(0, 212, 170, 0.3);
    padding: 10px 24px;
    border-radius: 50px;
    color: #00d4aa;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 25px;
}

.partners-premium-header h2 {
    font-size: 3rem;
    font-weight: 800;
    color: #fff;
    margin: 0 0 20px;
    letter-spacing: -1px;
}

.partners-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

/* Video Container */
.partners-video-container {
    margin-bottom: 60px;
}

.partners-video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.partners-video-wrapper::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    width: 50%;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(0, 212, 170, 0.5), transparent);
    z-index: 1;
}

.partners-video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.video-caption {
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.95rem;
    margin-top: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.video-caption i {
    color: #00d4aa;
}

/* Section Blocks */
.partners-section-block,
.athletes-section-block {
    margin-bottom: 50px;
}

.partners-section-block:last-child,
.athletes-section-block:last-child {
    margin-bottom: 0;
}

.section-block-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
}

.block-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(0, 212, 170, 0.2) 0%, rgba(52, 152, 219, 0.2) 100%);
    border: 1px solid rgba(0, 212, 170, 0.3);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.block-icon i {
    font-size: 1.2rem;
    color: #00d4aa;
}

.section-block-header h3 {
    color: #fff;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
}

/* Partners Grid */
.partners-premium-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.partner-premium-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.4s ease;
}

.partner-premium-card:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.partner-logo-wrap {
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.partner-logo-wrap img {
    max-height: 70px;
    max-width: 100%;
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: 0.8;
    transition: all 0.3s ease;
}

.partner-premium-card:hover .partner-logo-wrap img {
    opacity: 1;
}

.partner-role {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
    font-weight: 500;
}

/* Athletes Grid */
.athletes-premium-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.athlete-premium-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s ease;
    position: relative;
}

.athlete-premium-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-8px);
}

.athlete-premium-card.featured {
    border-color: rgba(0, 212, 170, 0.3);
}

.athlete-premium-card.featured::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #00d4aa, #3498db);
}

.athlete-image-wrap {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.athlete-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.athlete-premium-card:hover .athlete-image-wrap img {
    transform: scale(1.05);
}

.athlete-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #f1c40f 0%, #f39c12 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(241, 196, 15, 0.4);
}

.athlete-badge i {
    color: #fff;
    font-size: 1rem;
}

.athlete-info {
    padding: 20px;
}

.athlete-info h4 {
    color: #fff;
    font-size: 1.2rem;
    font-weight: 700;
    margin: 0 0 5px;
}

.athlete-title {
    display: block;
    color: #00d4aa;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.athlete-achievement {
    display: block;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
}

.athlete-instagram {
    display: block;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.8rem;
    margin-top: 8px;
}

.athlete-premium-card .photo-credit {
    position: absolute;
    bottom: 10px;
    left: 12px;
    background: none;
    padding: 0;
    border-radius: 0;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.7rem;
    font-style: italic;
    z-index: 2;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.8);
}

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

@media (max-width: 992px) {
    .partners-premium-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .athletes-premium-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .partners-premium {
        padding: 70px 0;
    }

    .partners-premium-header h2 {
        font-size: 2rem;
    }

    .partners-video-wrapper {
        border-radius: 16px;
    }

    .partners-premium-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .partner-premium-card {
        padding: 20px 15px;
    }

    .partner-logo-wrap {
        height: 50px;
    }

    .partner-logo-wrap img {
        max-height: 40px;
    }

    .athletes-premium-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .athlete-image-wrap {
        height: 250px;
    }

    .section-block-header {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .partners-badge {
        font-size: 0.75rem;
        padding: 8px 16px;
    }

    .partners-premium-header h2 {
        font-size: 1.7rem;
    }

    .partners-premium-grid {
        grid-template-columns: 1fr 1fr;
    }

    .partner-premium-card {
        padding: 15px 10px;
    }

    .partner-role {
        font-size: 0.75rem;
    }
}

/* ========================================
   ABOUT PREMIUM - O QUE É A SURF CENTER
======================================== */
.about-premium {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(180deg, #060d16 0%, #0a1628 50%, #060d16 100%);
    overflow: hidden;
}

.about-premium-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse at 30% 20%, rgba(0, 212, 170, 0.03) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 80%, rgba(52, 152, 219, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.about-premium-header {
    text-align: center;
    margin-bottom: 50px;
}

.about-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 212, 170, 0.1);
    border: 1px solid rgba(0, 212, 170, 0.2);
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    color: #00d4aa;
    font-weight: 600;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-premium-header h2 {
    font-size: 2.8rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
    margin: 0 0 20px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.about-subtitle {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.6);
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Video Container */
.about-video-container {
    margin-bottom: 60px;
}

.about-video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.about-video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Testimonials Videos Grid */
.testimonials-videos-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.testimonials-videos-grid .about-video-wrapper {
    padding-bottom: 56.25%;
}

@media (max-width: 992px) {
    .testimonials-videos-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

/* Features Grid */
.about-features-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    margin-bottom: 60px;
}

.about-feature-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.about-feature-card:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(0, 212, 170, 0.2);
    transform: translateY(-5px);
}

.feature-icon-wrap {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(0, 212, 170, 0.15) 0%, rgba(0, 212, 170, 0.05) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.feature-icon-wrap i {
    font-size: 1.5rem;
    color: #00d4aa;
}

.about-feature-card h4 {
    color: #fff;
    font-size: 1.05rem;
    font-weight: 700;
    margin: 0 0 10px;
}

.about-feature-card p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

/* Expansion Box */
.expansion-premium-box {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 40px;
    margin-bottom: 50px;
}

.expansion-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 40px;
    padding-bottom: 25px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.expansion-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(0, 212, 170, 0.2) 0%, rgba(0, 212, 170, 0.05) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.expansion-icon i {
    font-size: 1.5rem;
    color: #00d4aa;
}

.expansion-title h3 {
    color: #fff;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 0 5px;
}

.expansion-title p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.95rem;
    margin: 0;
}

/* Timeline */
.expansion-timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    position: relative;
}

.expansion-timeline::before {
    content: '';
    position: absolute;
    top: 25px;
    left: 60px;
    right: 60px;
    height: 2px;
    background: linear-gradient(90deg, #00d4aa 0%, #00d4aa 25%, #f39c12 25%, #f39c12 75%, rgba(255, 255, 255, 0.1) 75%);
    z-index: 0;
}

.timeline-item {
    text-align: center;
    position: relative;
    z-index: 1;
}

.timeline-marker {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.timeline-item.active .timeline-marker {
    background: linear-gradient(135deg, #00d4aa 0%, #00a085 100%);
    box-shadow: 0 5px 20px rgba(0, 212, 170, 0.4);
}

.timeline-item.building .timeline-marker {
    background: linear-gradient(135deg, #f39c12 0%, #e67e22 100%);
    box-shadow: 0 5px 20px rgba(243, 156, 18, 0.3);
}

.timeline-item.planned .timeline-marker {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.timeline-marker i {
    font-size: 1.1rem;
    color: #fff;
}

.timeline-item.planned .timeline-marker i {
    color: rgba(255, 255, 255, 0.5);
}

.timeline-content {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 20px 15px;
}

.timeline-status {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
}

.timeline-status.ready {
    background: rgba(0, 212, 170, 0.15);
    color: #00d4aa;
}

.timeline-status.building {
    background: rgba(243, 156, 18, 0.15);
    color: #f39c12;
}

.timeline-status.planned {
    background: rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.5);
}

.timeline-content h4 {
    color: #fff;
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0 0 8px;
}

.timeline-content p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
    margin: 0;
    line-height: 1.4;
}

/* Why We Grow */
.why-grow-premium {
    position: relative;
    background: linear-gradient(135deg, rgba(0, 212, 170, 0.08) 0%, rgba(0, 212, 170, 0.02) 100%);
    border: 1px solid rgba(0, 212, 170, 0.15);
    border-radius: 24px;
    padding: 50px;
    text-align: center;
    overflow: hidden;
}

.why-grow-glow {
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(0, 212, 170, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.why-grow-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(0, 212, 170, 0.2) 0%, rgba(0, 212, 170, 0.05) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    position: relative;
}

.why-grow-icon i {
    font-size: 2rem;
    color: #00d4aa;
}

.why-grow-content {
    position: relative;
}

.why-grow-content h3 {
    color: #fff;
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0 0 15px;
}

.why-grow-content > p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.1rem;
    margin: 0 0 20px;
}

.why-grow-highlight {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 12px;
    padding: 20px 30px;
    margin-bottom: 20px;
    display: inline-block;
}

.why-grow-highlight span {
    color: #fff;
    font-size: 1.2rem;
    line-height: 1.6;
}

.why-grow-highlight strong {
    color: #00d4aa;
}

.why-grow-tagline {
    color: #00d4aa;
    font-size: 1.3rem;
    font-weight: 600;
    font-style: italic;
    margin: 0;
}

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

@media (max-width: 992px) {
    .about-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .expansion-timeline {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .expansion-timeline::before {
        display: none;
    }
}

@media (max-width: 768px) {
    .about-premium {
        padding: 70px 0;
    }

    .about-premium-header h2 {
        font-size: 2rem;
    }

    .about-video-wrapper {
        border-radius: 16px;
    }

    .about-features-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .about-feature-card {
        padding: 25px 20px;
    }

    .expansion-premium-box {
        padding: 25px 20px;
    }

    .expansion-header {
        flex-direction: column;
        text-align: center;
    }

    .expansion-timeline {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .why-grow-premium {
        padding: 35px 25px;
    }

    .why-grow-highlight {
        padding: 15px 20px;
    }

    .why-grow-highlight span {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .about-badge {
        font-size: 0.75rem;
        padding: 8px 16px;
    }

    .about-premium-header h2 {
        font-size: 1.7rem;
    }

    .why-grow-content h3 {
        font-size: 1.5rem;
    }

    .why-grow-tagline {
        font-size: 1.1rem;
    }
}

/* ========================================
   VISION PREMIUM - VISÃO E PROPÓSITO
======================================== */
.vision-premium {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(180deg, #060d16 0%, #0a1628 50%, #060d16 100%);
    overflow: hidden;
}

.vision-premium-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse at 20% 30%, rgba(0, 212, 170, 0.03) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 70%, rgba(52, 152, 219, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.vision-premium-header {
    text-align: center;
    margin-bottom: 50px;
}

.vision-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 212, 170, 0.1);
    border: 1px solid rgba(0, 212, 170, 0.2);
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    color: #00d4aa;
    font-weight: 600;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.vision-premium-header h2 {
    font-size: 2.8rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
    margin: 0 0 20px;
}

.vision-subtitle {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.6);
    max-width: 550px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Video Placeholder */
.vision-video-placeholder {
    background: rgba(255, 255, 255, 0.02);
    border: 2px dashed rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 80px 40px;
    text-align: center;
    margin-bottom: 50px;
}

.placeholder-inner {
    max-width: 300px;
    margin: 0 auto;
}

.placeholder-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.placeholder-icon i {
    font-size: 2rem;
    color: rgba(255, 255, 255, 0.3);
}

.placeholder-inner p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 1.1rem;
    margin: 0 0 10px;
}

.placeholder-hint {
    display: inline-block;
    background: rgba(243, 156, 18, 0.1);
    color: #f39c12;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* Vision Statement Card */
.vision-statement-card {
    position: relative;
    background: linear-gradient(135deg, rgba(0, 212, 170, 0.08) 0%, rgba(0, 212, 170, 0.02) 100%);
    border: 1px solid rgba(0, 212, 170, 0.15);
    border-radius: 24px;
    padding: 50px;
    margin-bottom: 30px;
    overflow: hidden;
}

.statement-glow {
    position: absolute;
    top: -50%;
    left: -20%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(0, 212, 170, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.statement-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(0, 212, 170, 0.2) 0%, rgba(0, 212, 170, 0.05) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.statement-icon i {
    font-size: 1.8rem;
    color: #00d4aa;
}

.statement-content {
    position: relative;
}

.statement-content h3 {
    color: #fff;
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0 0 15px;
}

.statement-content p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.15rem;
    line-height: 1.7;
    margin: 0;
}

.statement-content strong {
    color: #00d4aa;
}

/* Vision Motto Card */
.vision-motto-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 30px;
    text-align: center;
}

.motto-text {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.25rem;
    line-height: 1.6;
    margin: 0 0 25px;
}

.motto-text strong {
    color: #00d4aa;
}

.expansion-highlight {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: rgba(0, 212, 170, 0.1);
    border: 1px solid rgba(0, 212, 170, 0.2);
    border-radius: 50px;
    padding: 12px 30px;
}

.expansion-number {
    font-size: 2rem;
    font-weight: 800;
    color: #00d4aa;
}

.expansion-text {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    text-align: left;
}

/* Blue Zone Card */
.bluezone-premium-card {
    display: flex;
    align-items: flex-start;
    gap: 25px;
    background: rgba(52, 152, 219, 0.05);
    border: 1px solid rgba(52, 152, 219, 0.15);
    border-radius: 20px;
    padding: 35px;
    margin-bottom: 50px;
}

.bluezone-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(52, 152, 219, 0.2) 0%, rgba(52, 152, 219, 0.05) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.bluezone-icon i {
    font-size: 1.5rem;
    color: #3498db;
}

.bluezone-content p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.05rem;
    line-height: 1.7;
    margin: 0;
}

.bluezone-content strong {
    color: #3498db;
}

.bluezone-content em {
    color: #3498db;
    font-style: italic;
}

/* Growth Section */
.growth-premium-section {
    margin-bottom: 50px;
}

.growth-header {
    text-align: center;
    margin-bottom: 35px;
}

.growth-header h3 {
    color: #fff;
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0 0 10px;
}

.growth-header p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 1.05rem;
    margin: 0;
}

/* Vectors Grid */
.vectors-premium-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 15px;
}

.vector-premium-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 25px 15px;
    text-align: center;
    transition: all 0.3s ease;
}

.vector-premium-card:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(0, 212, 170, 0.2);
    transform: translateY(-5px);
}

.vector-premium-card .vector-icon-wrap {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(0, 212, 170, 0.15) 0%, rgba(0, 212, 170, 0.05) 100%);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.vector-premium-card .vector-icon-wrap i {
    font-size: 1.2rem;
    color: #00d4aa;
}

.vector-premium-card span {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
    line-height: 1.4;
}

/* Conclusion */
.vision-conclusion-premium {
    position: relative;
    text-align: center;
    padding: 50px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    overflow: hidden;
}

.vision-conclusion-premium .conclusion-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 212, 170, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.conclusion-text {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.2rem;
    margin: 0 0 15px;
    position: relative;
}

.conclusion-highlight {
    color: #fff;
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0;
    position: relative;
}

.conclusion-highlight strong {
    color: #00d4aa;
}

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

@media (max-width: 992px) {
    .vectors-premium-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .vision-premium {
        padding: 70px 0;
    }

    .vision-premium-header h2 {
        font-size: 2rem;
    }

    .vision-video-placeholder {
        padding: 50px 25px;
    }

    .vision-statement-card {
        padding: 35px 25px;
    }

    .statement-content h3 {
        font-size: 1.5rem;
    }

    .bluezone-premium-card {
        flex-direction: column;
        text-align: center;
        padding: 30px 25px;
    }

    .bluezone-icon {
        margin: 0 auto;
    }

    .vectors-premium-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .vector-premium-card {
        padding: 20px 12px;
    }

    .vision-conclusion-premium {
        padding: 35px 25px;
    }

    .conclusion-highlight {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .vision-badge {
        font-size: 0.75rem;
        padding: 8px 16px;
    }

    .vision-premium-header h2 {
        font-size: 1.7rem;
    }

    .vectors-premium-grid {
        grid-template-columns: 1fr 1fr;
    }

    .growth-header h3 {
        font-size: 1.5rem;
    }
}

/* ========================================
   WHY INVEST PREMIUM - POR QUE INVESTIR
======================================== */
.why-invest-premium {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(180deg, #060d16 0%, #0a1628 50%, #060d16 100%);
    overflow: hidden;
}

.why-invest-premium-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse at 50% 0%, rgba(0, 212, 170, 0.05) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 100%, rgba(52, 152, 219, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.why-invest-premium-header {
    text-align: center;
    margin-bottom: 50px;
}

.why-invest-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 212, 170, 0.1);
    border: 1px solid rgba(0, 212, 170, 0.2);
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    color: #00d4aa;
    font-weight: 600;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.why-invest-premium-header h2 {
    font-size: 2.8rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
    margin: 0 0 20px;
}

.why-invest-subtitle {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.6);
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Why Invest Intro */
.why-invest-intro {
    max-width: 800px;
    margin: 40px auto 50px;
    text-align: center;
}

.why-invest-intro p {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    margin: 0;
}

.why-invest-intro strong {
    color: #00d4aa;
    font-weight: 600;
}

/* Reasons Grid */
.invest-reasons-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    margin-bottom: 50px;
}

.invest-reason-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.invest-reason-card:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(0, 212, 170, 0.2);
    transform: translateY(-5px);
}

.reason-icon-wrap {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(0, 212, 170, 0.15) 0%, rgba(0, 212, 170, 0.05) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.reason-icon-wrap i {
    font-size: 1.5rem;
    color: #00d4aa;
}

.invest-reason-card h4 {
    color: #fff;
    font-size: 1.05rem;
    font-weight: 700;
    margin: 0 0 10px;
}

.invest-reason-card p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

/* Potential Box */
.potential-premium-box {
    position: relative;
    background: linear-gradient(135deg, rgba(0, 212, 170, 0.1) 0%, rgba(0, 212, 170, 0.02) 100%);
    border: 1px solid rgba(0, 212, 170, 0.2);
    border-radius: 24px;
    padding: 50px;
    text-align: center;
    margin-bottom: 50px;
    overflow: hidden;
}

.potential-glow {
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 212, 170, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.potential-icon-wrap {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #00d4aa 0%, #00a085 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    box-shadow: 0 10px 40px rgba(0, 212, 170, 0.3);
    position: relative;
}

.potential-icon-wrap i {
    font-size: 2rem;
    color: #fff;
}

.potential-content {
    position: relative;
}

.potential-content h3 {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0 0 15px;
}

.potential-value-wrap {
    margin-bottom: 20px;
}

.potential-value {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, #00d4aa 0%, #00ffcc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.potential-note {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.95rem;
    margin: 0;
    text-align: center;
}

/* Return Reasons */
.return-reasons-premium {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 40px;
    margin-bottom: 50px;
}

.return-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.return-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(0, 212, 170, 0.2) 0%, rgba(0, 212, 170, 0.05) 100%);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.return-icon i {
    font-size: 1.3rem;
    color: #00d4aa;
}

.return-header h3 {
    color: #fff;
    font-size: 1.4rem;
    font-weight: 700;
    margin: 0;
}

.return-list-premium {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.return-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.return-item:hover {
    background: rgba(255, 255, 255, 0.04);
}

.return-check {
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, rgba(0, 212, 170, 0.2) 0%, rgba(0, 212, 170, 0.1) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.return-check i {
    font-size: 0.75rem;
    color: #00d4aa;
}

.return-item span {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    line-height: 1.5;
}

.return-item strong {
    color: #00d4aa;
}

/* CTA */
.why-invest-cta {
    text-align: center;
}

.btn-invest-premium {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #00d4aa 0%, #00a085 100%);
    color: #fff;
    font-size: 1.1rem;
    font-weight: 700;
    padding: 18px 40px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 40px rgba(0, 212, 170, 0.3);
}

.btn-invest-premium:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 50px rgba(0, 212, 170, 0.4);
}

.btn-invest-premium i:last-child {
    transition: transform 0.3s ease;
}

.btn-invest-premium:hover i:last-child {
    transform: translateX(5px);
}

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

@media (max-width: 992px) {
    .invest-reasons-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .why-invest-premium {
        padding: 70px 0;
    }

    .why-invest-premium-header h2 {
        font-size: 2rem;
    }

    .invest-reasons-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .invest-reason-card {
        padding: 25px 20px;
    }

    .potential-premium-box {
        padding: 35px 25px;
    }

    .potential-value {
        font-size: 2.5rem;
    }

    .return-reasons-premium {
        padding: 30px 20px;
    }

    .return-header {
        flex-direction: column;
        text-align: center;
    }

    .return-item {
        padding: 12px 15px;
    }

    .btn-invest-premium {
        padding: 16px 30px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .why-invest-badge {
        font-size: 0.75rem;
        padding: 8px 16px;
    }

    .why-invest-premium-header h2 {
        font-size: 1.7rem;
    }

    .potential-value {
        font-size: 2rem;
    }

    .return-header h3 {
        font-size: 1.2rem;
    }

    .return-item span {
        font-size: 0.9rem;
    }
}

/* ========================================
   TESTIMONIALS PREMIUM - DEPOIMENTOS
======================================== */
.testimonials-premium {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(180deg, #060d16 0%, #0a1628 50%, #060d16 100%);
    overflow: hidden;
}

.testimonials-premium-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse at 30% 50%, rgba(0, 212, 170, 0.03) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 50%, rgba(52, 152, 219, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.testimonials-premium-header {
    text-align: center;
    margin-bottom: 50px;
}

.testimonials-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 212, 170, 0.1);
    border: 1px solid rgba(0, 212, 170, 0.2);
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    color: #00d4aa;
    font-weight: 600;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.testimonials-premium-header h2 {
    font-size: 2.8rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
    margin: 0 0 20px;
}

.testimonials-subtitle {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.6);
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Video Placeholder */
.testimonials-video-placeholder {
    background: rgba(255, 255, 255, 0.02);
    border: 2px dashed rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 100px 40px;
    text-align: center;
}

.placeholder-icon-large {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, rgba(0, 212, 170, 0.1) 0%, rgba(0, 212, 170, 0.02) 100%);
    border: 1px solid rgba(0, 212, 170, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
}

.placeholder-icon-large i {
    font-size: 2.5rem;
    color: rgba(0, 212, 170, 0.5);
}

.testimonials-video-placeholder h3 {
    color: #fff;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 0 15px;
}

.testimonials-video-placeholder p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 1.05rem;
    max-width: 450px;
    margin: 0 auto 25px;
    line-height: 1.6;
}

.placeholder-status {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(243, 156, 18, 0.1);
    border: 1px solid rgba(243, 156, 18, 0.2);
    color: #f39c12;
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
}

.placeholder-status i {
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {
    .testimonials-premium {
        padding: 70px 0;
    }

    .testimonials-premium-header h2 {
        font-size: 2rem;
    }

    .testimonials-video-placeholder {
        padding: 60px 25px;
    }

    .placeholder-icon-large {
        width: 80px;
        height: 80px;
    }

    .placeholder-icon-large i {
        font-size: 2rem;
    }

    .testimonials-video-placeholder h3 {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .testimonials-badge {
        font-size: 0.75rem;
        padding: 8px 16px;
    }

    .testimonials-premium-header h2 {
        font-size: 1.7rem;
    }

    .testimonials-video-placeholder p {
        font-size: 0.95rem;
    }
}

/* ========================================
   DIFFERENTIALS PREMIUM - DIFERENCIAIS
======================================== */
.differentials-premium {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(180deg, #060d16 0%, #0a1628 50%, #060d16 100%);
    overflow: hidden;
}

.differentials-premium-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse at 20% 80%, rgba(0, 212, 170, 0.03) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(52, 152, 219, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.differentials-premium-header {
    text-align: center;
    margin-bottom: 50px;
}

.differentials-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 212, 170, 0.1);
    border: 1px solid rgba(0, 212, 170, 0.2);
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    color: #00d4aa;
    font-weight: 600;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.differentials-premium-header h2 {
    font-size: 2.8rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
    margin: 0 0 20px;
}

.differentials-subtitle {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.6);
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Differentials Grid */
.differentials-premium-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.differential-premium-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 35px 25px;
    text-align: center;
    transition: all 0.3s ease;
}

.differential-premium-card:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(0, 212, 170, 0.2);
    transform: translateY(-5px);
}

.differential-premium-card.featured {
    background: linear-gradient(135deg, rgba(0, 212, 170, 0.08) 0%, rgba(0, 212, 170, 0.02) 100%);
    border-color: rgba(0, 212, 170, 0.2);
}

.differential-premium-card.featured:hover {
    border-color: rgba(0, 212, 170, 0.4);
}

.differential-icon-wrap {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(0, 212, 170, 0.15) 0%, rgba(0, 212, 170, 0.05) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.differential-premium-card.featured .differential-icon-wrap {
    background: linear-gradient(135deg, #00d4aa 0%, #00a085 100%);
    box-shadow: 0 10px 30px rgba(0, 212, 170, 0.3);
}

.differential-icon-wrap i {
    font-size: 1.6rem;
    color: #00d4aa;
}

.differential-premium-card.featured .differential-icon-wrap i {
    color: #fff;
}

.differential-content h4 {
    color: #fff;
    font-size: 1.15rem;
    font-weight: 700;
    margin: 0 0 12px;
}

.differential-premium-card.featured .differential-content h4 {
    color: #00d4aa;
}

.differential-content p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

.differential-content strong {
    color: #00d4aa;
}

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

@media (max-width: 992px) {
    .differentials-premium-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .differentials-premium {
        padding: 70px 0;
    }

    .differentials-premium-header h2 {
        font-size: 2rem;
    }

    .differentials-premium-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .differential-premium-card {
        padding: 30px 25px;
    }
}

@media (max-width: 480px) {
    .differentials-badge {
        font-size: 0.75rem;
        padding: 8px 16px;
    }

    .differentials-premium-header h2 {
        font-size: 1.7rem;
    }
}

/* ========================================
   LGPD COOKIE CONSENT POPUP
======================================== */
.lgpd-popup {
    position: fixed;
    bottom: 100px;
    left: 30px;
    z-index: 997;
    max-width: 300px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.4s ease;
}

.lgpd-popup.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lgpd-popup.hide {
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
}

.lgpd-content {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.lgpd-text p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.8rem;
    line-height: 1.5;
    margin: 0;
}

.lgpd-text a {
    color: #fff;
    text-decoration: underline;
    font-weight: 500;
    transition: opacity 0.3s ease;
}

.lgpd-text a:hover {
    opacity: 0.7;
}

.lgpd-accept {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.lgpd-accept:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
}

/* Mobile - Centralizado */
@media (max-width: 768px) {
    .lgpd-popup {
        bottom: 90px;
        left: 50%;
        transform: translateX(-50%) translateY(20px);
        max-width: 300px;
        width: calc(100% - 40px);
    }

    .lgpd-popup.show {
        transform: translateX(-50%) translateY(0);
    }

    .lgpd-popup.hide {
        transform: translateX(-50%) translateY(20px);
    }

    .lgpd-content {
        padding: 18px;
        text-align: center;
    }

    .lgpd-accept {
        width: 100%;
    }
}

/* ============================================
   LEGAL PAGES - Política de Privacidade & Termos de Uso
   ============================================ */

.legal-page {
    background: linear-gradient(180deg, #060d16 0%, #0a1628 100%);
    min-height: 100vh;
}

/* Legal Header */
.legal-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    background: rgba(6, 13, 22, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.legal-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
}

.legal-logo img {
    height: 45px;
    width: auto;
    transition: opacity 0.3s ease;
}

.legal-logo:hover img {
    opacity: 0.8;
}

.legal-back {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    font-weight: 500;
    text-decoration: none;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.legal-back:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
}

.legal-back i {
    font-size: 0.85rem;
}

/* Legal Content */
.legal-content {
    padding: 140px 0 80px;
}

.legal-content .container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 30px;
}

/* Legal Hero */
.legal-hero {
    text-align: center;
    margin-bottom: 50px;
}

.legal-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(0, 212, 170, 0.1);
    border: 1px solid rgba(0, 212, 170, 0.2);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #00d4aa;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.legal-hero h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    color: #fff;
    margin-bottom: 15px;
    line-height: 1.1;
}

.legal-update {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.95rem;
}

/* Legal Card */
.legal-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 50px;
    backdrop-filter: blur(10px);
}

/* Legal Section */
.legal-section {
    padding: 35px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.legal-section:first-child {
    padding-top: 0;
}

.legal-section:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.section-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(0, 212, 170, 0.15), rgba(0, 212, 170, 0.05));
    border: 1px solid rgba(0, 212, 170, 0.2);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.section-icon i {
    font-size: 1.3rem;
    color: #00d4aa;
}

.legal-section h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
}

.legal-section p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 15px;
}

.legal-section p:last-child {
    margin-bottom: 0;
}

.legal-section strong {
    color: #fff;
}

/* Legal List */
.legal-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.legal-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    line-height: 1.7;
    padding: 10px 0;
}

.legal-list li i {
    color: #00d4aa;
    font-size: 0.75rem;
    margin-top: 6px;
    flex-shrink: 0;
}

.legal-list li i.fa-times {
    color: #ff6b6b;
}

.legal-list li strong {
    color: #fff;
}

/* Legal Warning Box */
.legal-warning {
    display: flex;
    gap: 15px;
    background: rgba(255, 193, 7, 0.08);
    border: 1px solid rgba(255, 193, 7, 0.2);
    border-radius: 14px;
    padding: 20px 25px;
    margin: 20px 0;
}

.legal-warning > i {
    color: #ffc107;
    font-size: 1.4rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.legal-warning p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 0;
}

.legal-warning strong {
    color: #ffc107;
}

/* Legal Note */
.legal-note {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(0, 212, 170, 0.08);
    border: 1px solid rgba(0, 212, 170, 0.15);
    border-radius: 10px;
    padding: 15px 20px;
    margin-top: 20px;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
}

.legal-note i {
    color: #00d4aa;
}

/* Legal Contact */
.legal-contact {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 25px;
}

.contact-card {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    padding: 20px 25px;
    transition: all 0.3s ease;
}

.contact-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(0, 212, 170, 0.2);
}

.contact-card > i {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, rgba(0, 212, 170, 0.15), rgba(0, 212, 170, 0.05));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #00d4aa;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.contact-card div {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.contact-card strong {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-card a,
.contact-card span {
    color: #fff;
    font-size: 0.95rem;
    text-decoration: none;
    line-height: 1.4;
}

.contact-card a:hover {
    color: #00d4aa;
}

/* Legal Footer Info */
.legal-footer-info {
    text-align: center;
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.legal-footer-info p {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.9rem;
    margin: 5px 0;
}

.legal-footer-info strong {
    color: rgba(255, 255, 255, 0.6);
}

/* Legal Simple Footer */
.legal-simple-footer {
    padding: 30px 0;
    background: rgba(0, 0, 0, 0.2);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.legal-simple-footer .container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 30px;
    text-align: center;
}

.legal-simple-footer p {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.85rem;
    margin: 0;
}

/* Legal Pages - Responsive */
@media (max-width: 768px) {
    .legal-header .container {
        padding: 0 20px;
    }

    .legal-logo img {
        height: 35px;
    }

    .legal-back span {
        display: none;
    }

    .legal-back {
        padding: 10px 12px;
    }

    .legal-content {
        padding: 120px 0 60px;
    }

    .legal-content .container {
        padding: 0 20px;
    }

    .legal-hero {
        margin-bottom: 35px;
    }

    .legal-badge {
        font-size: 0.75rem;
        padding: 6px 15px;
    }

    .legal-card {
        padding: 30px 25px;
        border-radius: 18px;
    }

    .legal-section {
        padding: 25px 0;
    }

    .section-icon {
        width: 45px;
        height: 45px;
    }

    .section-icon i {
        font-size: 1.1rem;
    }

    .legal-section h2 {
        font-size: 1.3rem;
    }

    .legal-section p {
        font-size: 0.95rem;
    }

    .legal-list li {
        font-size: 0.95rem;
    }

    .legal-warning {
        flex-direction: column;
        gap: 12px;
        padding: 18px 20px;
    }

    .legal-contact {
        grid-template-columns: 1fr;
    }

    .contact-card {
        padding: 18px 20px;
    }

    .legal-footer-info {
        margin-top: 35px;
    }

    .legal-simple-footer .container {
        padding: 0 20px;
    }
}

/* Mobile: Top-bar e Navbar não fixos */
@media (max-width: 768px) {
    .top-bar {
        position: static !important;
    }

    .navbar {
        position: static !important;
        background: var(--off-white) !important;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
    }

    .navbar .logo {
        filter: none;
    }

    .navbar .nav-menu a,
    .navbar .nav-links a {
        color: var(--verde-deep) !important;
        text-shadow: none;
    }

    .hero-investidor {
        padding-top: 0;
    }
}
