:root {
    --th-blue: #002B5C; /* Azul Escuro Ademicon */
    --th-gold: #C5A059;
    --th-gold-bright: #F4D03F;
    --th-dark: #0A1F32;
    --text-main: #2D3436;
    --text-muted: #636E72;
    --bg-light: #FFFFFF;
    --bg-off: #F9FAFB;
    --card-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    --border-soft: rgba(0, 0, 0, 0.08);
}

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

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

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Fixed Header */
.header-fixed {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: white;
    z-index: 2000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    padding: 10px 0;
}

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

.header-info {
    display: flex;
    flex-direction: column;
}

.header-title {
    font-weight: 800;
    font-size: 1rem;
    color: var(--th-blue);
    line-height: 1;
}

.header-subtitle {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.header-badge {
    background: var(--th-gold);
    color: white;
    padding: 6px 14px;
    border-radius: 8px;
    font-size: 0.6rem;
    font-weight: 800;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    line-height: 1.2;
    min-width: 110px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
}

.header-badge:hover {
    background: #b6985a;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* Hero */
.hero {
    padding: 120px 0 60px; /* Offset for fixed header */
    text-align: center;
    background: linear-gradient(180deg, #FFFFFF 0%, var(--bg-off) 100%);
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--th-dark);
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto 30px;
}

.hero-cta {
    display: inline-block;
    background: var(--th-blue);
    color: white;
    text-decoration: none;
    padding: 18px 40px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    box-shadow: 0 4px 15px rgba(0, 51, 102, 0.2);
    transition: all 0.3s ease;
}

.hero-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 51, 102, 0.3);
}

.validity-tag {
    margin-top: 30px;
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* Carousel Section */
.section-structures {
    padding: 60px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
}

.section-title h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: var(--th-dark);
}

/* Carousel Engine */
.carousel-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    touch-action: pan-y; /* Allow vertical scroll, block horizontal during drag */
    user-select: none;
    -webkit-user-drag: none;
    cursor: grab;
}

.carousel-container:active {
    cursor: grabbing;
}

.carousel-track {
    display: flex;
    flex-wrap: nowrap;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
}

/* Helper to disable transition during resize or drag */
.no-transition {
    transition: none !important;
}

.carousel-slide {
    flex: 0 0 100%;
    width: 100%;
    padding: 10px;
    box-sizing: border-box;
}

/* Indicators */
.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 30px;
}

.indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #DDD;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    padding: 0;
}

.indicator.active {
    background: var(--th-gold);
    width: 30px;
    border-radius: 5px;
}

/* Card Design */
.card {
    background: white;
    border: 1px solid var(--border-soft);
    border-radius: 20px;
    padding: 30px;
    box-shadow: var(--card-shadow);
    height: 100%;
    position: relative;
    transition: all 0.3s ease;
}

.card.highlighted {
    border: 2px solid var(--th-gold);
}

.badge-tag {
    position: absolute;
    top: -12px;
    right: 25px;
    background: var(--th-gold);
    color: white;
    padding: 4px 14px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
}

.card-title {
    font-size: 0.9rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.card-credit {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--th-dark);
    margin-bottom: 20px;
}

.card-payment {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding: 15px 0;
    border-top: 1px solid #F1F1F1;
}

.payment-label { font-size: 0.9rem; color: var(--text-muted); }
.payment-value { font-size: 1.2rem; font-weight: 700; color: var(--th-blue); }

.card-bullets {
    list-style: none;
    margin-bottom: 25px;
}

.card-bullets li {
    font-size: 0.9rem;
    color: #4A4A4A;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.card-bullets li::before {
    content: '→';
    color: var(--th-gold);
    font-weight: bold;
}

/* Expansion */
.expansion-area {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px dashed #DDD;
}

.expansion-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    margin-bottom: 10px;
}

.expansion-row span { color: var(--text-muted); }
.expansion-row strong { color: var(--th-dark); }

.disclaimer {
    font-size: 0.75rem;
    color: #999;
    font-style: italic;
    margin-top: 15px;
}

/* Buttons in Card */
.btn-card-main {
    display: block;
    width: 100%;
    background: var(--th-blue);
    color: white;
    text-align: center;
    text-decoration: none;
    padding: 15px;
    border-radius: 12px;
    font-weight: 600;
    margin-top: 20px;
}

.btn-card-secondary {
    display: block;
    width: 100%;
    background: transparent;
    color: var(--th-blue);
    border: 1px solid var(--th-blue);
    text-align: center;
    text-decoration: none;
    padding: 12px;
    border-radius: 12px;
    font-weight: 600;
    margin-top: 10px;
    cursor: pointer;
}

/* Custom Alternative Section */
.alternative-section {
    background: var(--bg-alt);
    padding: 40px;
    border-radius: 24px;
    text-align: center;
    margin-top: 40px;
}

.alternative-section p {
    font-weight: 500;
    color: var(--th-dark);
    margin-bottom: 20px;
}

.btn-alternative {
    display: inline-block;
    background: var(--th-blue);
    color: white;
    text-decoration: none;
    padding: 16px 35px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    box-shadow: 0 4px 15px rgba(0, 43, 92, 0.2);
    transition: all 0.3s ease;
}

.btn-alternative:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 43, 92, 0.3);
}

/* Desktop Styles */
/* Video Section */
.section-video {
    margin: 80px 0;
    text-align: center;
}

.video-container {
    max-width: 800px;
    margin: 0 auto;
    background: #000;
    border-radius: 24px;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    position: relative;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.video-placeholder {
    width: 100%;
    height: 100%;
    background: #2D3436;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    position: relative;
}

.video-placeholder img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.play-button {
    width: 80px;
    height: 80px;
    background: var(--th-blue);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    z-index: 2;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(0, 51, 102, 0.4);
}

.video-placeholder:hover .play-button {
    transform: scale(1.1);
    background: var(--th-gold);
}

.video-bullets {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.video-bullets li {
    font-weight: 600;
    color: var(--th-dark);
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
}

.video-overlay-text {
    position: absolute;
    bottom: 25px;
    left: 0;
    width: 100%;
    color: white;
    font-weight: 700;
    font-size: 1.1rem;
    text-shadow: 0 2px 10px rgba(0,0,0,0.8);
    z-index: 3;
    letter-spacing: 0.5px;
}

#proof-grid {
    display: flex;
    flex-wrap: nowrap;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.proof-slide {
    flex: 0 0 100%;
    padding: 10px;
    box-sizing: border-box;
}

@media (min-width: 992px) {
    .proof-slide {
        flex: 0 0 33.333%;
    }
}

.proof-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    border: 1px solid var(--border-soft);
    box-shadow: var(--card-shadow);
    transition: all 0.3s ease;
}

.proof-card h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    color: var(--th-dark);
    margin-bottom: 5px;
}

.proof-card .subtitle {
    font-size: 0.85rem;
    color: var(--th-gold);
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.proof-details {
    margin-bottom: 25px;
}

.proof-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    padding: 10px 0;
    border-bottom: 1px solid #F8F9FA;
}

.proof-row span { color: var(--text-muted); }
.proof-row strong { color: var(--th-dark); font-weight: 600; }

.proof-result-box {
    background: #F8F9FA;
    padding: 15px;
    border-radius: 12px;
    margin-bottom: 20px;
    text-align: center;
}

.proof-result-box span {
    display: block;
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    margin-bottom: 5px;
}

.proof-result-box p {
    font-weight: 700;
    color: var(--th-blue);
    font-size: 1.05rem;
}

.btn-proof-doc {
    display: block;
    width: 100%;
    background: transparent;
    border: 1px solid #DDD;
    color: var(--text-muted);
    padding: 12px;
    border-radius: 10px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    text-align: center;
}

/* Image Modal */
.image-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.9);
    align-items: center;
    justify-content: center;
    cursor: zoom-out;
}

.image-modal-content {
    max-width: 90%;
    max-height: 90%;
}

.image-modal-content img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.close-image-modal {
    position: absolute;
    top: 20px;
    right: 35px;
    color: white;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
}

/* Contemplated Section */
.section-contemplated {
    padding: 60px 0;
}

.validity-tag-small {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 10px;
    font-weight: 500;
}

.opp-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 25px;
}

.contemplated-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    border: 1px solid var(--border-soft);
    position: relative;
    transition: all 0.3s ease;
}

.contemplated-card .badge-tag {
    background: var(--th-blue);
}

.contemplated-card h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.contemplated-stat {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
    font-size: 0.9rem;
}

.contemplated-stat span { color: var(--text-muted); }
.contemplated-stat strong { color: var(--th-dark); }

.status-label {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-top: 10px;
}

.status-label.disponivel { background: #E3FCEF; color: #006644; }
.status-label.reservado { background: #FFF0B3; color: #826A00; }
.status-label.vendido { background: #FFEBE6; color: #BF2600; }

.contemplated-modal-content h3 {
    font-family: 'Playfair Display', serif;
    margin-bottom: 20px;
    color: var(--th-dark);
}

/* Floating CTA (Bottom Right) */
.floating-cta-bar {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 2100;
    display: flex;
    justify-content: flex-end;
    background: transparent;
    padding: 0;
    box-shadow: none;
    border-top: none;
    width: auto;
    left: auto;
}

.btn-floating-cta-anchor {
    background: var(--th-blue);
    color: white;
    border: none;
    padding: 15px 25px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    width: auto;
    max-width: none;
}


.btn-floating-cta-anchor:hover {
    background: var(--th-blue);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .hero h1 { font-size: 1.8rem; }
    .credit-grid, .proof-grid, .opp-grid { grid-template-columns: 1fr; }
    .video-bullets { flex-direction: column; gap: 15px; align-items: center; }
    .btn-floating-cta-anchor { font-size: 0.85rem; padding: 15px 20px; }
}

@media (min-width: 992px) {
    .hero h1 { font-size: 3.5rem; }
    
    .carousel-slide {
        flex: 0 0 33.333%;
    }
}

/* Closing Section */
.section-closing {
    padding: 100px 0;
    background: #F8F9FA;
}

.closing-card {
    background: white;
    padding: 60px 40px;
    border-radius: 30px;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
    max-width: 800px;
    margin: 0 auto;
}

.closing-card h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--th-dark);
    margin-bottom: 20px;
}

.closing-card p {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* Footer */
.footer {
    background: var(--th-dark);
    color: rgba(255,255,255,0.6);
    padding: 60px 0;
    text-align: center;
    font-size: 0.9rem;
}


/* Contemplated Tweaks */
.contemplated-card.highlighted {
    border: 2px solid var(--th-gold);
    transform: scale(1.02);
}

.validity-mini {
    font-size: 0.75rem;
    color: #25D366;
    font-weight: 600;
    margin-bottom: 15px;
}

@media (max-width: 768px) {
    .closing-card h2 { font-size: 2rem; }
    .section-closing { padding: 60px 0; }
}

/* Institutional Section */
.section-institutional {
    padding: 80px 0;
    background: var(--bg-off);
}

.institutional-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin: 40px auto 0;
    max-width: 800px; /* Limita para centralizar no desktop */
}

@media (min-width: 768px) {
    .institutional-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.institutional-card {
    background: white;
    padding: 30px;
    border-radius: 20px;
    border: 1px solid var(--border-soft);
    text-align: left;
}

.institutional-card i {
    font-size: 2rem;
    color: var(--th-gold);
    margin-bottom: 20px;
    display: block;
}

.institutional-card h4 {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--th-blue);
    margin-bottom: 10px;
}

.institutional-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* Premium Contemplated Cards */
.contemplated-card.premium {
    background: var(--th-dark);
    color: white;
}

.contemplated-card.premium h4 { color: var(--th-gold); }
.contemplated-card.premium .contemplated-stat span { color: rgba(255,255,255,0.6); }
.contemplated-card.premium .contemplated-stat strong { color: white; }

.contemplated-card.premium .btn-card-secondary {
    border-color: rgba(255,255,255,0.3);
    color: white;
}

.contemplated-card.premium .btn-card-secondary:hover {
    border-color: white;
    background: rgba(255,255,255,0.1);
}

/* Footer Nav (Integrated) */
.footer-nav {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.footer-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    color: rgba(255,255,255,0.5);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.footer-nav-item i { font-size: 1.1rem; }
.footer-nav-item:hover { color: white; }

@media (max-width: 768px) {
    .footer { padding-bottom: 40px; }
    
    .floating-cta-bar {
        left: 0;
        right: 0;
        bottom: 20px;
        justify-content: center;
    }
    
    .btn-floating-cta-anchor {
        width: 90%;
        max-width: 400px;
        padding: 18px 20px;
        font-size: 0.8rem;
    }
}


.text-profit {
    color: #10b981 !important;
}

/* Follow Us Component */
.follow-us-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 32px;
    gap: 12px;
}

.follow-us-container p {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-muted);
    margin-bottom: 0;
}

.instagram-follow-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--th-dark);
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
}

.instagram-follow-btn:hover {
    color: var(--th-gold);
    transform: translateY(-2px);
}

.instagram-follow-btn i {
    font-size: 1.4rem;
    color: var(--th-gold);
}
