:root {
    --primary-color: #002337;
    --fundo-1: #eff4f7;
    --fundo-2: #ffffff;
    --text-light: #ffffff;
    --text-dark: #333333;
    --accent: #25D366; /* WhatsApp color approx */
}

html {
    scroll-behavior: smooth;
}

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

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    background-color: var(--fundo-1);
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
}

/* Hero Section */
.hero {
    position: relative;
    width: 100vw;
    height: 100vh;
    min-height: 800px;
    display: flex;
    flex-direction: column;
    color: var(--text-light);
    overflow: hidden;
}

/* Video Background */
.video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

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

.desktop-video { display: block; }
.mobile-video { display: none; }

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 35, 55, 0.95) 0%, rgba(0, 35, 55, 0.85) 50%, rgba(0, 35, 55, 0.6) 100%);
}

/* Header */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 12%; /* Elegant centralization */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: background-color 0.4s ease, padding 0.4s ease, box-shadow 0.4s ease;
}

header.scrolled, header.solid-header {
    background-color: rgba(0, 35, 55, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 1rem 12%;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

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

.logo a {
    display: block;
}

.logo-img {
    width: 170px; /* Slightly reduced for a premium feel */
    height: auto;
    transition: transform 0.3s ease;
}

.logo-img:hover {
    transform: scale(1.05);
}

nav .nav-links {
    list-style: none;
    display: flex;
    gap: 0.5rem; /* Reduced gap to accommodate the new padding */
}

nav .nav-links li a {
    display: inline-block;
    color: #fff;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    position: relative;
    padding: 8px 16px;
    border-radius: 30px; /* Pill shape */
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    background: transparent;
    border: 1px solid transparent;
}

nav .nav-links li a:hover,
nav .nav-links li a.active-nav {
    color: #c5a880;
    background: rgba(197, 168, 128, 0.08); /* Extremely subtle gold background */
    border: 1px solid rgba(197, 168, 128, 0.2); /* Fine gold border */
    transform: translateY(-2px); /* Slight lift */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.mobile-menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Content */
.hero-content {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 5%;
    position: relative;
    z-index: 10;
}

.text-content {
    max-width: 600px;
}

.text-content h2 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.text-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2.5rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 20px;
}

.btn {
    padding: 12px 24px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.btn-outline {
    border: 1px solid var(--text-light);
    color: var(--text-light);
    background: transparent;
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
}

.btn-solid {
    background-color: var(--fundo-2);
    color: var(--primary-color);
}

.btn-solid:hover {
    background-color: #e2e8f0;
}

/* Interactive Graph */
.graph-content {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.interactive-graph {
    position: relative;
    width: 500px;
    height: 500px;
    --graph-scale: 1;
    animation: graphEntrance 1.5s cubic-bezier(0.25, 1, 0.5, 1) forwards;
    opacity: 0;
    transform: scale(calc(var(--graph-scale) * 0.8));
}

@keyframes graphEntrance {
    0% { opacity: 0; transform: scale(calc(var(--graph-scale) * 0.8)); }
    100% { opacity: 1; transform: scale(var(--graph-scale)); }
}

.center-node {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    background-color: transparent;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-weight: 700;
    font-size: 1.2rem;
    z-index: 2;
    text-shadow: 0px 2px 4px rgba(0,0,0,0.5);
}

.orbit {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 450px;
    height: 450px;
    transform: translate(-50%, -50%);
    border: 1px dashed rgba(255,255,255,0.3);
    border-radius: 50%;
    animation: rotate 40s linear infinite;
}

.interactive-graph:hover .orbit {
    animation-play-state: paused;
}

.node {
    position: absolute;
    width: 140px;
    height: 60px;
    background-color: rgba(10, 25, 45, 0.4); /* More transparent for blur */
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-size: 0.8rem;
    padding: 0 10px;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px) saturate(150%);
    -webkit-backdrop-filter: blur(12px) saturate(150%);
    /* Reverse rotation to keep text upright */
    animation: reverse-rotate 40s linear infinite;
    z-index: 3;
}

.interactive-graph:hover .node {
    animation-play-state: paused;
}

.node:hover {
    background-color: rgba(255, 255, 255, 0.15); /* Lighter on hover */
    border-color: rgba(255, 255, 255, 0.5);
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

/* Positioning nodes on the circle (radius = 225px) */
/* Center of node is at its center */
.node-1 { top: -30px; left: 155px; }
.node-2 { top: 82.5px; left: 349.8px; }
.node-3 { top: 307.5px; left: 349.8px; }
.node-4 { top: 420px; left: 155px; }
.node-5 { top: 307.5px; left: -39.8px; }
.node-6 { top: 82.5px; left: -39.8px; }

@keyframes rotate {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes reverse-rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(-360deg); }
}

/* Info Modal Styles (Apple Glassmorphism) */
.graph-modal {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -40%) scale(0.95);
    width: 380px;
    background: rgba(5, 15, 30, 0.65); /* A bit more opaque to guarantee text contrast */
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 24px;
    padding: 35px;
    z-index: 20;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(45px) saturate(200%);
    -webkit-backdrop-filter: blur(45px) saturate(200%);
    opacity: 0;
    pointer-events: none;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    text-align: center;
}

.graph-modal.active {
    animation: modalPop 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
    pointer-events: auto;
}

@keyframes modalPop {
    0% { opacity: 0; transform: translate(-50%, -40%) scale(0.95); }
    100% { opacity: 1; transform: translate(-50%, -50%) scale(1); }
}

.close-modal {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-size: 1rem;
    cursor: pointer;
    opacity: 0.8;
    transition: all 0.3s ease;
}

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

.graph-modal h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #ffffff;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.graph-modal p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 300;
}

.interactive-graph.modal-open .center-node {
    opacity: 0; /* completely hide the text so it doesn't bug/overlap with the modal */
    transform: translate(-50%, -50%) scale(0.8);
}

.interactive-graph .orbit, .interactive-graph .center-node {
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Media Queries */
@media (max-width: 1024px) {
    .hero-content {
        flex-direction: column;
        justify-content: flex-start;
        text-align: center;
        gap: 30px;
        padding-top: 140px;
    }

    .text-content {
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .interactive-graph {
        --graph-scale: 0.7;
    }
}

@media (max-width: 768px) {
    .hero {
        height: auto;
        min-height: 100vh;
        padding-bottom: 50px;
    }

    .desktop-video { display: none; }
    .mobile-video { display: block; }
    
    nav .nav-links {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .text-content h2 {
        font-size: 2.5rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
    
    .interactive-graph {
        --graph-scale: 0.65;
        margin: -40px auto;
    }
}

/* ==========================================================================
   Nosso DNA Section
   ========================================================================== */
.section-dna {
    background-color: #f4f6f9;
    padding: 0 0 6rem 0;
    position: relative;
    color: var(--text-dark);
}

.certificates-bar {
    background-color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5rem;
    height: 70px; /* Fixed very thin height */
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    margin-bottom: 4rem;
}

.certificates-bar img {
    height: 140px; /* Force images to render larger */
    object-fit: contain;
    opacity: 0.9;
    transition: transform 0.3s ease;
}

.certificates-bar img:hover {
    transform: scale(1.05);
    opacity: 1;
}

.dna-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding: 0 5%;
}

/* Base Panel Styles */
.dna-panel {
    border-radius: 4px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    position: relative;
}

/* Left Panel - Stats */
.dna-stats {
    background-color: var(--primary-color);
    color: var(--text-light);
    padding: 3rem 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 2rem;
    z-index: 2;
    margin-right: -20px;
    margin-top: 60px;
    height: 380px;
    flex: 0 0 280px;
}

.stat-block {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.stat-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.8;
}

.stat-value {
    font-size: 2.2rem;
    font-weight: 700;
}

.stat-divider {
    height: 1px;
    background: rgba(255,255,255,0.15);
    width: 100%;
}

/* Middle Panel - Results & Pie Charts */
.dna-results {
    background-color: #ffffff;
    padding: 4rem 3rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 1;
    flex: 1;
    min-height: 480px;
    border-radius: 6px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
    margin-top: 0;
}

.dna-results h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    text-transform: uppercase;
    margin-bottom: 2rem;
    letter-spacing: 1px;
}

.results-main {
    display: flex;
    flex-direction: column;
    margin-bottom: 2.5rem;
}

.results-big-number {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1;
}

.results-subtitle {
    font-size: 0.9rem;
    font-weight: 600;
    color: #666;
    letter-spacing: 0.5px;
}

.charts-container {
    display: flex;
    width: 100%;
    justify-content: space-around;
    align-items: flex-end;
    margin-bottom: 3rem;
    gap: 20px;
}

.chart-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

/* SVG Circular Charts */
.pie-chart-wrapper {
    width: 180px;
    height: 180px;
    position: relative;
}

.pie-chart-wrapper.small-wrapper {
    width: 100px;
    height: 100px;
    margin-top: 10px;
}

.circular-chart {
    display: block;
    margin: 0 auto;
    max-width: 100%;
    max-height: 250px;
    transform: rotate(-90deg); /* Rotate so the pie slice starts from the top */
    border-radius: 50%;
}

.pie-circle {
    transition: stroke-dasharray 2.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.chart-labels {
    text-align: center;
    font-size: 0.75rem;
    font-weight: 600;
    color: #555;
}

.chart-label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    margin-bottom: 3px;
}

.color-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    display: inline-block;
}

.chart-small h4 {
    font-size: 0.8rem;
    max-width: 150px;
    text-align: center;
    color: #444;
}

.chart-labels-small {
    display: flex;
    justify-content: space-between;
    width: 100%;
    font-size: 0.65rem;
    font-weight: 600;
    color: #666;
    margin-top: 10px;
}

.chart-labels-small .right {
    text-align: right;
}

.btn-lawyers {
    background-color: #8c7a56; /* Gold/brown color from screenshot */
    color: #fff;
    border: none;
    padding: 12px 30px;
    font-size: 0.95rem;
    cursor: pointer;
    border-radius: 2px;
}

.btn-lawyers:hover {
    background-color: #7a6a4a;
}

/* Right Panel - Lawyers */
.dna-lawyers {
    background-color: var(--primary-color);
    color: var(--text-light);
    display: flex;
    flex-direction: column;
    z-index: 2;
    margin-left: -20px;
    margin-top: 120px;
    flex: 0 0 320px;
    height: auto;
    min-height: 520px;
    overflow: hidden;
}

.lawyers-video {
    width: 100%;
    height: 250px;
    object-fit: cover;
    object-position: top center;
}

.lawyers-info {
    padding: 2rem 2.5rem 3rem 2.5rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.lawyers-names {
    font-size: 0.85rem;
    line-height: 1.5;
    font-weight: 600;
    margin-bottom: 2rem;
}

.dna-description {
    border-top: 1px solid rgba(255,255,255,0.15);
    padding-top: 1.5rem;
}

.dna-description h4 {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.dna-description p {
    font-size: 0.85rem;
    line-height: 1.6;
    font-weight: 300;
    opacity: 0.9;
}

/* ==========================================================================
   Seu JurÃ­dico na PrÃ¡tica Section
   ========================================================================== */
.section-pratica {
    background-color: var(--fundo-2);
    padding: 6rem 5%;
    color: var(--text-dark);
}

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

.pratica-header h2 {
    font-size: 2.2rem;
    color: var(--primary-color);
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.pratica-header p {
    font-size: 1.1rem;
    color: #666;
    font-style: italic;
}

.pratica-container {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr 1.2fr;
    gap: 40px;
}

/* Col 1 - BenefÃ­cios */
.pratica-col-1 h3, .pratica-col-2 h3 {
    font-size: 1.1rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.benefits-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.benefits-list li {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.benefit-title {
    font-weight: 700;
    color: var(--primary-color);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.benefit-title i {
    color: #c3a35a; /* Gold accent color for checkmarks */
}

.benefit-desc {
    font-size: 0.85rem;
    color: #555;
    line-height: 1.5;
    padding-left: 24px; /* Align with text after checkmark */
}

/* Col 2 - Accordion */
.accordion-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.accordion-item {
    border-bottom: 1px solid #eee;
    padding-bottom: 15px;
}

.accordion-item:last-child {
    border-bottom: none;
}

.accordion-header {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    color: var(--primary-color);
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.accordion-header i.fa-check {
    color: #c3a35a;
    margin-right: 10px;
}

.accordion-header .arrow {
    margin-left: auto;
    color: #888;
    transition: transform 0.3s ease;
    font-size: 0.8rem;
}

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

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.accordion-content ul {
    list-style: none;
    padding: 15px 0 0 24px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.accordion-content ul li {
    font-size: 0.85rem;
    color: #555;
    position: relative;
    padding-left: 15px;
    line-height: 1.4;
}

.accordion-content ul li::before {
    content: '•';
    color: var(--primary-color);
    position: absolute;
    left: 0;
    font-size: 1.2rem;
    line-height: 1;
    top: -1px;
}

/* Col 3 - Image */
.pratica-col-3 {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    padding: 20px;
}

/* Creating an elegant offset frame */
.pratica-col-3::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 85%;
    height: 90%;
    border: 2px solid var(--primary-color);
    border-radius: 4px;
    z-index: 0;
}

.pratica-col-3::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 15px;
    width: 60px;
    height: 60px;
    background-color: #f4f6f9;
    background-image: radial-gradient(var(--primary-color) 2px, transparent 2px);
    background-size: 10px 10px;
    z-index: 0;
    opacity: 0.3;
}

.image-wrapper {
    width: 100%;
    position: relative;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
    z-index: 2;
}


.image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
}

/* Responsive adjustments for DNA and Pratica sections */
@media (max-width: 1024px) {
    .dna-container {
        flex-direction: column;
        gap: 30px;
    }
    
    .dna-stats, .dna-lawyers {
        margin: 0;
        width: 100%;
        height: auto;
        flex: auto;
    }

    .dna-results {
        width: 100%;
        min-height: auto;
    }
    
    .dna-stats {
        flex-direction: row;
        justify-content: space-around;
        padding: 2rem;
    }
    
    .stat-divider {
        width: 1px;
        height: auto;
    }

    .pratica-container {
        grid-template-columns: 1fr 1fr;
    }

    .pratica-col-3 {
        grid-column: 1 / -1;
        margin-top: 30px;
    }
}

@media (max-width: 768px) {
    .dna-stats {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .stat-divider {
        width: 100%;
        height: 1px;
    }
    
    .charts-container {
        flex-direction: column;
        align-items: center;
        gap: 40px;
    }
    
    .certificates-bar {
        flex-direction: column;
        gap: 20px;
        height: auto;
        padding: 20px 0;
    }

    .pratica-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* Section Plano de ProteÃ§Ã£o */
.section-plano {
    padding: 6rem 12%;
    background-color: #fff;
    color: var(--primary-color);
}

.plano-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 4rem;
}

.plano-text {
    flex: 1;
}

.plano-text h2 {
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.plano-text p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.plano-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-outline-dark {
    display: inline-block;
    padding: 12px 24px;
    border: 1px solid var(--primary-color);
    background: transparent;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-outline-dark:hover {
    background: var(--primary-color);
    color: #fff;
}

.plano-card {
    flex: 1;
    background-color: var(--primary-color);
    color: #fff;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.plano-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.plano-card hr {
    border: 0;
    height: 1px;
    background: rgba(255,255,255,0.2);
    margin-bottom: 2rem;
}

.plano-checklist {
    list-style: none;
    padding: 0;
}

.plano-checklist li {
    font-size: 0.95rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 10px;
    opacity: 0; 
    transform: translateX(-30px); 
}

.plano-checklist li i {
    color: #28a745;
    font-size: 1.1rem;
}

.plano-checklist li.animate-in {
    animation: slideFadeIn 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes slideFadeIn {
    0% { opacity: 0; transform: translateX(-30px); }
    100% { opacity: 1; transform: translateX(0); }
}

@media (max-width: 992px) {
    .plano-container {
        flex-direction: column;
        gap: 3rem;
    }
    .plano-text h2 { font-size: 2.2rem; }
}

/* Section Depoimentos */
.section-depoimentos {
    padding: 6rem 5%;
    background-color: #f8f9fa; /* slightly off white */
    text-align: center;
    overflow: hidden; /* for slider */
}

.depoimentos-header h2 {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-weight: 700;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.btn-review {
    display: inline-flex;
    align-items: center;
    padding: 12px 28px;
    background-color: #fff;
    color: #333;
    border: 1px solid #ddd;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    margin-bottom: 3rem;
}

.btn-review:hover {
    box-shadow: 0 6px 15px rgba(0,0,0,0.1);
    transform: translateY(-2px);
    border-color: #ccc;
}

.btn-review i.fa-google {
    display: inline-block;
    width: 20px;
    height: 20px;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 48 48"><path fill="%23EA4335" d="M24 9.5c3.54 0 6.71 1.22 9.21 3.6l6.85-6.85C35.9 2.38 30.47 0 24 0 14.62 0 6.51 5.38 2.56 13.22l7.98 6.19C12.43 13.72 17.74 9.5 24 9.5z"/><path fill="%234285F4" d="M46.98 24.55c0-1.57-.15-3.09-.38-4.55H24v9.02h12.94c-.58 2.96-2.26 5.48-4.78 7.18l7.73 6c4.51-4.18 7.09-10.36 7.09-17.65z"/><path fill="%23FBBC05" d="M10.53 28.59c-.48-1.45-.76-2.99-.76-4.59s.27-3.14.76-4.59l-7.98-6.19C.92 16.46 0 20.12 0 24c0 3.88.92 7.54 2.56 10.78l7.97-6.19z"/><path fill="%2334A853" d="M24 48c6.48 0 11.93-2.13 15.89-5.81l-7.73-6c-2.15 1.45-4.92 2.3-8.16 2.3-6.26 0-11.57-4.22-13.47-9.91l-7.98 6.19C6.51 42.62 14.62 48 24 48z"/></svg>');
    background-size: cover;
    margin-right: 10px;
}
.btn-review i.fa-google::before {
    content: "" !important;
}

/* Slider Track */
.reviews-slider-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.reviews-track {
    display: flex;
    gap: 20px;
    width: max-content;
    padding: 20px 0;
    animation: scrollReviews 40s linear infinite;
}

.reviews-track:hover {
    animation-play-state: paused;
}

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

.review-card {
    flex: 0 0 350px;
    background: #fff;
    border-radius: 12px;
    padding: 25px;
    text-align: left;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    border: 1px solid #eee;
    scroll-snap-align: start;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 250px;
}

.review-stars {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    color: #fbbc05; /* Google Star Color */
    font-size: 0.9rem;
}

.verified-icon {
    color: #4285F4;
    margin-left: 8px;
    font-size: 0.9rem;
}

.google-icon {
    display: inline-block;
    width: 20px;
    height: 20px;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 48 48"><path fill="%23EA4335" d="M24 9.5c3.54 0 6.71 1.22 9.21 3.6l6.85-6.85C35.9 2.38 30.47 0 24 0 14.62 0 6.51 5.38 2.56 13.22l7.98 6.19C12.43 13.72 17.74 9.5 24 9.5z"/><path fill="%234285F4" d="M46.98 24.55c0-1.57-.15-3.09-.38-4.55H24v9.02h12.94c-.58 2.96-2.26 5.48-4.78 7.18l7.73 6c4.51-4.18 7.09-10.36 7.09-17.65z"/><path fill="%23FBBC05" d="M10.53 28.59c-.48-1.45-.76-2.99-.76-4.59s.27-3.14.76-4.59l-7.98-6.19C.92 16.46 0 20.12 0 24c0 3.88.92 7.54 2.56 10.78l7.97-6.19z"/><path fill="%2334A853" d="M24 48c6.48 0 11.93-2.13 15.89-5.81l-7.73-6c-2.15 1.45-4.92 2.3-8.16 2.3-6.26 0-11.57-4.22-13.47-9.91l-7.98 6.19C6.51 42.62 14.62 48 24 48z"/></svg>');
    background-size: cover;
    margin-left: auto; /* Push to right */
}
.google-icon::before {
    content: "" !important;
}

.review-text {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

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

.author-name {
    font-weight: 700;
    color: #333;
    font-size: 0.95rem;
}

/* Clientes Logos */
.clientes-logos {
    margin-top: 5rem;
    padding-top: 3rem;
    border-top: 1px solid #ddd;
}

.clientes-title {
    display: block;
    font-size: 0.9rem;
    font-weight: 700;
    color: #888;
    letter-spacing: 1.5px;
    margin-bottom: 2rem;
}

.clientes-logos {
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    width: 100%;
    padding: 2rem 0;
}

.logos-track {
    display: inline-flex;
    align-items: center;
    gap: 4rem;
    opacity: 0.7; 
    animation: scrollLogos 40s linear infinite;
    padding-left: 2rem;
}

.logos-track:hover {
    animation-play-state: paused;
}

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

.cliente-logo {
    height: 80px; /* Reduced base height slightly */
    width: auto;
    object-fit: contain;
    filter: grayscale(100%) contrast(0.5) brightness(1.2);
    transition: all 0.3s ease;
    opacity: 0.8;
}

.logo-md {
    height: 55px !important;
}

.logo-sm {
    height: 40px !important;
}

.cliente-logo:hover {
    filter: grayscale(0%) contrast(1) brightness(1);
    opacity: 1;
    transform: scale(1.05);
}

.logo-darken {
    filter: brightness(0) opacity(0.5) !important;
}

.logo-darken:hover {
    filter: brightness(0) opacity(1) !important;
}

@media (max-width: 768px) {
    .review-card { flex: 0 0 280px; }
    .depoimentos-header h2 { font-size: 1.8rem; }
}

/* ==========================================================================
   Cases Section (Dynamic)
   ========================================================================== */
.section-cases {
    background-color: var(--fundo-1);
    padding: 6rem 5% 8rem 5%;
    overflow: hidden;
    position: relative;
}

.cases-header-container {
    max-width: 1200px;
    margin: 0 auto 3rem auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.cases-title-area h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.cases-title-area h3 {
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--primary-color);
}

.cases-nav-area {
    display: flex;
    gap: 15px;
}

.case-nav-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #fff;
    border: none;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    color: var(--primary-color);
    cursor: pointer;
    font-size: 1.2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
}

.case-nav-btn:hover {
    background: var(--primary-color);
    color: #fff;
}

.cases-slider-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
    padding-bottom: 20px;
}

.cases-track {
    display: flex;
    gap: 30px;
    transition: transform 0.5s ease-in-out;
}

.case-card {
    flex: 0 0 calc(33.333% - 20px);
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

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

.case-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.case-content {
    padding: 30px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.case-content h4 {
    font-size: 1.1rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    line-height: 1.4;
    text-transform: uppercase;
}

.case-content p {
    font-size: 0.85rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 20px;
    flex: 1;
}

.case-cta-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--primary-color);
    color: #fff;
    padding: 15px 20px;
    text-decoration: none;
    font-weight: 500;
    transition: background 0.3s;
}

.case-cta-wrapper:hover {
    background: var(--accent);
}

.case-cta-icon {
    width: 40px;
    height: 40px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
}

@media (max-width: 1024px) {
    .case-card { flex: 0 0 calc(50% - 15px); }
    .cases-header-container { flex-direction: column; align-items: flex-start; gap: 20px; }
}
@media (max-width: 768px) {
    .case-card { flex: 0 0 100%; }
}

/* Site Footer Premium */
.site-footer {
    background: linear-gradient(to bottom, #00283a, #00151f);
    color: #e0e0e0;
    font-size: 0.95rem;
    font-weight: 300;
}

.footer-top {
    padding: 4rem 5% 2rem;
}

.footer-top-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 2rem;
    align-items: start;
}

.footer-title {
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-contact {
    list-style: none;
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}

.footer-contact i {
    color: #fff;
    font-size: 1rem;
}

.footer-contact a {
    color: #e0e0e0;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-contact a:hover {
    color: #fff;
    text-decoration: underline;
}

.footer-address p {
    line-height: 1.5;
    color: #e0e0e0;
}

.footer-col-logo {
    display: flex;
    justify-content: flex-end;
}

.footer-logo {
    max-height: 60px;
}

.footer-separator {
    height: 1px;
    background-color: rgba(255, 255, 255, 0.1);
    max-width: 1200px;
    margin: 0 auto;
}

.footer-bottom {
    padding: 3rem 5%;
}

.footer-bottom-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr 1.5fr;
    gap: 2rem;
    align-items: center;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 8px;
    position: relative;
    padding-left: 12px;
}

.footer-links li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #e0e0e0;
}

.footer-links a {
    color: #e0e0e0;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #fff;
    text-decoration: underline;
}

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

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: transparent;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.footer-social a:hover {
    background-color: #fff;
    color: #00151f;
    transform: translateY(-3px);
}

.footer-legal-col {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.legal-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: flex-end;
    margin-bottom: 15px;
}

.btn-legal {
    background-color: rgba(0, 0, 0, 0.2);
    color: #e0e0e0;
    padding: 10px 20px;
    border-radius: 4px;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 400;
    transition: background-color 0.3s;
}

.btn-legal:hover {
    background-color: rgba(0, 0, 0, 0.4);
    color: #fff;
}

.copyright-text {
    font-size: 0.8rem;
    color: #aaa;
}

/* Modal PDF Premium */
.pdf-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 15, 25, 0.85);
    backdrop-filter: blur(8px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

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

.pdf-modal-content {
    background-color: #111;
    width: 90%;
    max-width: 1000px;
    height: 85vh;
    border-radius: 12px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.5);
    position: relative;
    transform: scale(0.95);
    transition: transform 0.4s ease;
    display: flex;
    flex-direction: column;
}

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

.pdf-close-btn {
    position: absolute;
    top: -40px;
    right: 0;
    background: none;
    border: none;
    color: #fff;
    font-size: 2.5rem;
    cursor: pointer;
    transition: color 0.3s;
}

.pdf-close-btn:hover {
    color: var(--primary-color);
}

.pdf-iframe-container {
    width: 100%;
    height: 100%;
    border-radius: 12px;
    overflow: hidden;
}

.pdf-iframe-container iframe {
    width: 100%;
    height: 100%;
    border: none;
    background-color: #f4f6f9;
}

@media (max-width: 992px) {
    .footer-top-container {
        grid-template-columns: 1fr 1fr;
    }
    .footer-col-logo {
        justify-content: flex-start;
    }
    .footer-bottom-container {
        grid-template-columns: 1fr 1fr;
    }
    .footer-legal-col {
        grid-column: span 2;
        align-items: flex-start;
    }
}

@media (max-width: 768px) {
    .footer-top-container, .footer-bottom-container {
        grid-template-columns: 1fr;
    }
    .footer-legal-col {
        grid-column: span 1;
    }
    .pdf-modal-content {
        width: 95%;
        height: 90vh;
    }
}

/* Legal Pages Styling (Termos e LGPD) */
.legal-page {
    background-color: #f4f6f9;
    color: #333;
}

.legal-header {
    background-color: #0b1120;
    padding: 1.5rem 5%;
    display: flex;
    justify-content: center;
    border-bottom: 2px solid var(--primary-color);
}

.legal-header .logo-img {
    height: 50px;
}

.legal-content {
    padding: 4rem 5%;
    max-width: 900px;
    margin: 0 auto;
}

.legal-container {
    background: #fff;
    padding: 3rem 4rem;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.legal-container h1 {
    font-size: 1.8rem;
    color: #0b1120;
    margin-bottom: 1.5rem;
    line-height: 1.3;
    text-align: center;
}

.legal-container h2 {
    font-size: 1.4rem;
    color: var(--primary-color);
    margin: 2.5rem 0 1.5rem;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.legal-container h3 {
    font-size: 1.1rem;
    color: #0b1120;
    margin: 2rem 0 1rem;
}

.legal-container p {
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1.2rem;
    color: #444;
}

.legal-intro {
    font-weight: 600;
    text-align: center;
    margin-bottom: 2.5rem;
}

.legal-box {
    background-color: #f8f9fa;
    border-left: 4px solid var(--primary-color);
    padding: 1.5rem;
    border-radius: 4px;
    margin-bottom: 2rem;
    font-size: 0.95rem;
    line-height: 1.6;
}

.legal-indent {
    margin-left: 2rem;
    font-style: italic;
    color: #666;
}

.legal-list {
    list-style: none;
    margin-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.legal-list li {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 0.8rem;
    color: #444;
}

@media (max-width: 768px) {
    .legal-container {
        padding: 2rem 1.5rem;
    }
    
    .legal-container h1 {
        font-size: 1.5rem;
    }
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: #fff;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 9999;
    text-decoration: none;
    animation: pulse-whatsapp 2s infinite;
    transition: transform 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    color: #fff;
}

@keyframes pulse-whatsapp {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 1.8rem;
    }
}

/* Scroll Reveal Animations */
.reveal-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
    will-change: opacity, transform;
}

.reveal-up.active {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================================================================
   Post Modal
   ========================================================================== */
.post-modal-overlay {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,21,31,0.9);
    z-index: 100000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}
.post-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}
.post-modal-container {
    background: #fff;
    width: 90%;
    max-width: 800px;
    max-height: 90vh;
    border-radius: 12px;
    position: relative;
    overflow-y: auto;
    transform: translateY(20px);
    transition: all 0.4s ease;
    box-shadow: 0 25px 50px rgba(0,0,0,0.5);
}
.post-modal-overlay.active .post-modal-container {
    transform: translateY(0);
}
.post-modal-close {
    position: sticky;
    top: 20px;
    float: right;
    margin-right: 20px;
    background: #00151f;
    color: white;
    border: none;
    width: 40px; height: 40px;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s;
}
.post-modal-close:hover {
    background: var(--accent-gold);
    transform: scale(1.1);
}
.post-modal-content {
    padding: 40px;
}
.post-modal-content h1 {
    color: var(--deep-blue);
    margin-top: 0;
    font-size: 2rem;
    line-height: 1.2;
    margin-bottom: 20px;
}
.post-modal-content img {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 30px;
}
.pm-body {
    color: #333;
    font-size: 1.1rem;
    line-height: 1.8;
}
.pm-body p {
    margin-bottom: 1.5rem;
}
.pm-body h1, .pm-body h2, .pm-body h3, .pm-body strong {
    color: var(--deep-blue);
    font-weight: 600;
}
.pm-footer {
    margin-top: 40px;
    text-align: center;
    border-top: 1px solid #eee;
    padding-top: 30px;
}



/* ==========================================================================
   NOVA SEÇÃO DE PLANOS (HERO VÍDEO)
   ========================================================================== */
.section-planos-hero {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 160px 5% 80px 5%;
    background-color: var(--primary-color);
}

.planos-bg-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translateX(-50%) translateY(-50%);
    object-fit: cover;
    z-index: 1;
    opacity: 0.4;
}

.planos-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0,21,31,0.95) 0%, rgba(0,21,31,0.7) 100%);
    z-index: 2;
}

.planos-hero-content {
    position: relative;
    z-index: 3;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
    max-width: 1400px;
    gap: 4rem;
}

.planos-left {
    flex: 1;
    max-width: 600px;
}

.planos-tag {
    display: inline-block;
    color: #c5a880;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    padding: 5px 15px;
    border: 1px solid rgba(197, 168, 128, 0.3);
    border-radius: 20px;
    background: rgba(197, 168, 128, 0.05);
}

.planos-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    font-family: var(--font-primary);
}

.planos-subtitle {
    font-size: 1.2rem;
    color: #d1d5db;
    line-height: 1.6;
    margin-bottom: 3rem;
}

.planos-actions {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.btn-planos-primary {
    background: #c5a880;
    color: #000;
    padding: 16px 32px;
    font-weight: 700;
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid #c5a880;
    font-size: 0.95rem;
}

.btn-planos-primary:hover {
    background: transparent;
    color: #c5a880;
    box-shadow: 0 10px 20px rgba(197, 168, 128, 0.2);
}

.btn-planos-secondary {
    background: transparent;
    color: #fff;
    padding: 16px 32px;
    font-weight: 600;
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(255,255,255,0.4);
    font-size: 0.95rem;
}

.btn-planos-secondary:hover {
    background: rgba(255,255,255,0.1);
    border-color: #fff;
}

.planos-stats {
    background: rgba(0,0,0,0.2);
    padding: 2rem;
    border-radius: 8px;
    border-left: 3px solid #c5a880;
}

.rating-stars {
    margin-bottom: 1rem;
    color: #c5a880;
    font-size: 1.2rem;
}

.rating-stars span {
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    margin-left: 10px;
}

.stats-list {
    list-style: none;
}

.stats-list li {
    color: #e5e7eb;
    margin-bottom: 0.5rem;
    font-size: 1.05rem;
}

.stats-list i {
    color: #c5a880;
    margin-right: 10px;
}

/* Glass Card - Garantia On-Result */
.planos-right {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.glass-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 3rem 2.5rem;
    max-width: 500px;
    position: relative;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

.glass-card-badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: #c5a880;
    color: #000;
    font-size: 0.75rem;
    font-weight: 800;
    padding: 6px 15px;
    border-radius: 20px;
    letter-spacing: 1px;
    box-shadow: 0 5px 15px rgba(197, 168, 128, 0.3);
}

.glass-features {
    list-style: none;
}

.glass-features li {
    display: flex;
    gap: 20px;
    margin-bottom: 2rem;
}

.glass-features li:last-child {
    margin-bottom: 0;
}

.feat-number {
    font-size: 1.5rem;
    font-weight: 300;
    color: rgba(197, 168, 128, 0.5);
    font-family: var(--font-primary);
}

.feat-text h4 {
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.feat-text p {
    color: #a0aec0;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* ==========================================================================
   NOVA SEÇÃO: DNA EMPREENDEDOR
   ========================================================================== */
.section-dna-empreendedor {
    padding: 8rem 5%;
    background-color: #f8f9fa;
    position: relative;
    overflow: hidden;
}

.dna-empreendedor-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    position: relative;
}

.dna-empreendedor-img {
    width: 60%;
    position: relative;
    z-index: 1;
}

.dna-empreendedor-img img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.dna-empreendedor-card {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 50%;
    background: #eff4f7;
    padding: 5rem 4rem;
    z-index: 2;
    box-shadow: -10px 20px 50px rgba(0,0,0,0.05);
}

.dna-empreendedor-tag {
    display: block;
    color: var(--primary-color);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.dna-empreendedor-card h3 {
    font-size: 2.5rem;
    color: var(--primary-color);
    line-height: 1.2;
    margin-bottom: 2rem;
    font-family: var(--font-primary);
}

.dna-empreendedor-card hr {
    border: 0;
    height: 2px;
    width: 60px;
    background: var(--primary-color);
    margin-bottom: 2rem;
}

.dna-empreendedor-card p {
    font-size: 1.1rem;
    color: #4a5568;
    line-height: 1.8;
}

.secao-titulo-pratica {
    text-align: center;
    padding: 5rem 5% 2rem 5%;
    background: #f8f9fa;
}

.secao-titulo-pratica h2 {
    font-size: 2.8rem;
    color: var(--primary-color);
    font-family: var(--font-primary);
    margin-bottom: 1rem;
}

.secao-titulo-pratica p {
    font-size: 1.2rem;
    color: #4a5568;
    font-style: italic;
}

/* Responsividade */
@media (max-width: 1024px) {
    .planos-hero-content {
        flex-direction: column;
    }
    .planos-right {
        justify-content: flex-start;
        width: 100%;
    }
    .glass-card {
        max-width: 100%;
    }
    .dna-empreendedor-container {
        flex-direction: column;
    }
    .dna-empreendedor-img {
        width: 100%;
        margin-bottom: -50px;
    }
    .dna-empreendedor-card {
        position: relative;
        width: 90%;
        right: auto;
        transform: none;
        margin: 0 auto;
        padding: 3rem 2rem;
    }
}

@media (max-width: 768px) {
    .planos-title { font-size: 2.5rem; }
    .dna-empreendedor-card h3 { font-size: 1.8rem; }
}


/* ==========================================================================
   PÁGINA NOSSO DNA
   ========================================================================== */

/* DNA Hero */
.dna-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, #000c12 100%);
    padding: 160px 5% 80px 5%;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.dna-hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: radial-gradient(circle at center, rgba(197, 168, 128, 0.05) 0%, transparent 70%);
}

.dna-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.dna-hero-content h1 {
    font-size: 3.5rem;
    color: #ffffff;
    text-shadow: 0 4px 15px rgba(0,0,0,0.4);
    margin-bottom: 20px;
    font-family: var(--font-primary);
}

.dna-hero-content p {
    font-size: 1.3rem;
    color: #d1d5db;
    line-height: 1.6;
}

/* DNA Equipe (Team Members) */
.dna-equipe {
    padding: 8rem 5%;
    background-color: #f8f9fa;
}

.dna-team-member {
    max-width: 1200px;
    margin: 0 auto 8rem auto;
    display: flex;
    align-items: center;
    gap: 5rem;
}

.dna-team-member:last-child {
    margin-bottom: 0;
}

.dna-team-member.align-right {
    flex-direction: row-reverse;
}

.member-image-wrapper {
    flex: 1;
    position: relative;
    border-radius: 8px;
}

.member-image-wrapper img {
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    object-position: top;
    border-radius: 8px;
    position: relative;
    z-index: 2;
    box-shadow: 0 30px 60px rgba(0,0,0,0.15);
    transition: transform 0.5s ease;
}

.dna-team-member:hover .member-image-wrapper img {
    transform: translateY(-10px);
}

.member-image-bg {
    position: absolute;
    top: 20px;
    left: -20px;
    width: 100%;
    height: 100%;
    background: var(--accent-gold);
    border-radius: 8px;
    z-index: 1;
    opacity: 0.2;
    transition: all 0.5s ease;
}

.dna-team-member.align-right .member-image-bg {
    left: 20px;
}

.dna-team-member:hover .member-image-bg {
    top: 30px;
    left: -30px;
    opacity: 0.4;
}
.dna-team-member.align-right:hover .member-image-bg {
    left: 30px;
}

.member-info {
    flex: 1;
    background: #fff;
    padding: 4rem;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.04);
    position: relative;
    z-index: 3;
    margin-left: -100px;
}

.dna-team-member.align-right .member-info {
    margin-left: 0;
    margin-right: -100px;
}

.member-role {
    display: inline-block;
    color: var(--accent-gold);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.member-info h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    font-family: var(--font-primary);
    margin-bottom: 0.5rem;
}

.member-badge {
    display: inline-block;
    background: #f1f5f9;
    color: #475569;
    font-size: 0.85rem;
    font-weight: 600;
    padding: 5px 12px;
    border-radius: 4px;
    margin-bottom: 2.5rem;
    border: 1px solid #e2e8f0;
}

.curriculo-title {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    position: relative;
    padding-bottom: 10px;
}

.curriculo-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--accent-gold);
}

.member-info p {
    font-size: 1.05rem;
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.member-info p:last-child {
    margin-bottom: 0;
}

/* DNA Propósito */
.dna-proposito {
    display: flex;
    background: #fff;
    overflow: hidden;
}

.proposito-left {
    flex: 1;
    position: relative;
    min-height: 600px;
}

.proposito-left img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.proposito-img-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0,0,0,0) 0%, #fff 100%);
}

.proposito-right {
    flex: 1;
    padding: 6rem 8%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.proposito-right h2 {
    font-size: 2.8rem;
    color: var(--primary-color);
    font-family: var(--font-primary);
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.proposito-subtitle {
    font-size: 1.15rem;
    color: #4a5568;
    line-height: 1.6;
    margin-bottom: 3rem;
}

.progress-container {
    margin-bottom: 2rem;
}

.progress-label {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--primary-color);
    font-size: 0.95rem;
}

.progress-pct {
    color: var(--accent-gold);
}

.progress-bar {
    width: 100%;
    height: 24px;
    background: #e2e8f0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.1);
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #0f766e 0%, #10b981 100%);
    border-radius: 12px;
    position: relative;
    box-shadow: 0 4px 10px rgba(16, 185, 129, 0.4);
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 15px;
    color: white;
    font-weight: 700;
    font-size: 0.85rem;
    animation: loadProgress 2s ease-out forwards;
}

@keyframes loadProgress {
    0% { width: 0; }
}

.proposito-badges {
    margin-top: 3rem;
    display: flex;
    gap: 20px;
    align-items: center;
}

.proposito-badges img {
    height: 60px;
    width: auto;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.proposito-badges img:hover {
    filter: grayscale(0%);
    opacity: 1;
}

/* Responsividade DNA */
@media (max-width: 1024px) {
    .dna-team-member, .dna-team-member.align-right {
        flex-direction: column;
        gap: 0;
    }
    .member-info, .dna-team-member.align-right .member-info {
        margin: -50px 20px 0 20px;
        padding: 3rem 2rem;
    }
    .dna-proposito {
        flex-direction: column;
    }
    .proposito-left {
        min-height: 400px;
    }
    .proposito-img-overlay {
        background: linear-gradient(to bottom, rgba(0,0,0,0) 0%, #fff 100%);
    }
}
@media (max-width: 768px) {
    .dna-hero-content h1 { font-size: 2.5rem; }
    .member-info h2 { font-size: 2rem; }
    .proposito-right h2 { font-size: 2.2rem; }
}

/* ==========================================================================
   PRICING TABLE PREMIUM
   ========================================================================== */
.planos-pricing-section {
    padding: 4rem 5%;
    background-color: #f8f9fa;
    text-align: center;
}

.pricing-header h2 {
    font-size: 2.8rem;
    color: var(--primary-color);
    font-family: var(--font-primary);
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pricing-header p {
    font-size: 1.2rem;
    color: #475569;
    margin-bottom: 2rem;
}

.pricing-table-container {
    max-width: 1200px;
    margin: 0 auto;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
    overflow: hidden;
}

.pricing-table-head {
    display: flex;
    background: #fff;
    border-bottom: 1px solid #e2e8f0;
}

.pricing-col {
    flex: 1;
    padding: 1.5rem 1rem;
    position: relative;
}

.feature-col {
    flex: 1.5;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-right: 1px solid #e2e8f0;
}

.feature-col h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.guarantee-box {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    padding: 1.5rem;
    border-radius: 8px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.guarantee-box i {
    color: var(--accent-gold);
    font-size: 1.5rem;
    margin-top: 3px;
}

.guarantee-box strong {
    display: block;
    color: var(--primary-color);
    margin-bottom: 5px;
    font-size: 0.95rem;
}

.guarantee-box p {
    font-size: 0.85rem;
    color: #64748b;
    line-height: 1.5;
}

.plan-col {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.plan-basic {
    border-right: 1px solid #e2e8f0;
    background: #f8fafc;
}

.plan-premium {
    background: var(--primary-color);
    color: #fff;
    box-shadow: 0 -10px 30px rgba(0,12,18,0.1);
    transform: scale(1.02);
    z-index: 10;
    border-radius: 12px 12px 0 0;
}

.plan-tag {
    background: #e2e8f0;
    color: #475569;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    padding: 5px 12px;
    border-radius: 20px;
    margin-bottom: 1.5rem;
}

.tag-premium {
    background: var(--accent-gold);
    color: #fff;
}

.plan-col h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: inherit;
}

.plan-basic h4 { color: var(--primary-color); }

.plan-col p {
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 2rem;
    color: inherit;
    opacity: 0.8;
}

.plan-price {
    margin-bottom: 1rem;
}

.plan-price small {
    display: block;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
    opacity: 0.7;
}

.plan-price strong {
    font-size: 2.5rem;
    font-weight: 700;
}

.plan-price-monthly {
    margin-bottom: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.old-price {
    font-size: 0.9rem;
    text-decoration: line-through;
    opacity: 0.6;
    margin-bottom: 5px;
}

.new-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--accent-gold);
}

.new-price span {
    font-size: 1rem;
    font-weight: 400;
    color: #fff;
}

.btn-pricing {
    margin-top: auto;
    padding: 12px 30px;
    border-radius: 6px;
    font-weight: 600;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s ease;
    width: 80%;
}

.btn-pricing-outline {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.btn-pricing-outline:hover {
    background: var(--primary-color);
    color: #fff;
}

.btn-pricing-solid {
    background: #fff;
    color: var(--primary-color);
    border: none;
}

.btn-pricing-solid:hover {
    background: #f1f5f9;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255,255,255,0.2);
}

/* Table Body Rows */
.pricing-table-body {
    background: #fff;
}

.pricing-row {
    display: flex;
    border-bottom: 1px solid #e2e8f0;
    transition: background 0.3s ease;
}

.pricing-row:hover {
    background: #f8fafc;
}

.pricing-row:last-child {
    border-bottom: none;
}

.pricing-cell {
    flex: 1;
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-cell {
    flex: 1.5;
    justify-content: flex-start;
    text-align: left;
    font-size: 0.95rem;
    color: #475569;
    font-weight: 500;
    border-right: 1px solid #e2e8f0;
}

.check-icon {
    color: #10b981;
    font-size: 1.2rem;
}

.cross-icon {
    color: #cbd5e1;
    font-size: 1.2rem;
}

/* ==========================================================================
   SOLUÇÕES ADICIONAIS
   ========================================================================== */
.solucoes-adicionais-section {
    padding: 6rem 5% 8rem 5%;
    background-color: #fff;
}

.solucoes-ad-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem auto;
}

.solucoes-ad-header h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.solucoes-ad-header p {
    font-size: 1.1rem;
    color: #64748b;
}

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

.sol-ad-card {
    background: #f8fafc;
    padding: 2.5rem;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.sol-ad-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.06);
    border-color: var(--accent-gold);
}

.sol-ad-icon {
    width: 60px;
    height: 60px;
    background: rgba(197,168,128,0.1);
    color: var(--accent-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 1.5rem auto;
    transition: all 0.4s ease;
}

.sol-ad-card:hover .sol-ad-icon {
    background: var(--primary-color);
    color: #fff;
}

.sol-ad-card h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.sol-ad-card p {
    font-size: 0.95rem;
    color: #475569;
    line-height: 1.6;
}

/* Responsividade Pricing */
@media (max-width: 1024px) {
    .solucoes-ad-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .pricing-table-head {
        flex-direction: column;
    }
    .pricing-col {
        border-right: none;
        border-bottom: 1px solid #e2e8f0;
    }
    .feature-col {
        text-align: center;
        align-items: center;
    }
    .pricing-row {
        flex-direction: column;
        padding: 1rem 0;
    }
    .pricing-cell {
        padding: 0.5rem 1rem;
    }
    .feature-cell {
        border-right: none;
        text-align: center;
        font-weight: 700;
        margin-bottom: 10px;
    }
    .plan-premium {
        transform: none;
        border-radius: 0;
    }
}

/* ==========================================================================
   CALCULADORA ULTRA-PREMIUM
   ========================================================================== */
.calc-section {
    padding: 160px 5% 4rem 5%;
    background-color: #fff;
    border-top: 1px solid #e2e8f0;
}

.calc-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
    align-items: center;
}

/* Esquerda: Controles */
.calc-controls {
    flex: 1;
}

.calc-label-top {
    color: var(--accent-gold);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.calc-title {
    font-size: 2.5rem;
    color: var(--primary-color);
    font-family: var(--font-primary);
    line-height: 1.1;
    margin: 10px 0 15px 0;
}

.calc-subtitle {
    font-size: 1rem;
    color: #64748b;
    margin-bottom: 3rem;
}

.calc-slider-group {
    margin-bottom: 2rem;
}

.calc-slider-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 15px;
}

.calc-slider-header label {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: 1px;
}

.calc-value-badge {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    background: #f1f5f9;
    padding: 5px 15px;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
    min-width: 60px;
    text-align: center;
    transition: all 0.3s ease;
}

/* Custom Range Slider */
.premium-slider {
    -webkit-appearance: none;
    width: 100%;
    height: 6px;
    background: #cbd5e1; /* Changed from e2e8f0 to a darker slate for visibility */
    border-radius: 3px;
    outline: none;
    transition: background 450ms ease-in;
}

.premium-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--accent-gold);
    cursor: pointer;
    border: 4px solid #fff;
    box-shadow: 0 0 10px rgba(0,0,0,0.15);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.premium-slider::-webkit-slider-thumb:hover {
    transform: scale(1.2);
    box-shadow: 0 0 15px rgba(197,168,128,0.4);
}

.premium-slider::-moz-range-thumb {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--accent-gold);
    cursor: pointer;
    border: 4px solid #fff;
    box-shadow: 0 0 10px rgba(0,0,0,0.15);
    transition: transform 0.2s ease;
}

/* Direita: Painel Fatura */
.calc-receipt {
    flex: 1;
    background: var(--primary-color);
    border-radius: 16px;
    padding: 2.5rem;
    color: #fff;
    box-shadow: 0 30px 60px rgba(0,12,18,0.15);
}

.receipt-header {
    margin-bottom: 1.5rem;
}

.receipt-header small {
    color: var(--accent-gold);
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 5px;
}

.receipt-header h3 {
    font-size: 1.5rem;
    font-weight: 400;
}

.receipt-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.receipt-list li {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    font-size: 0.95rem;
    color: #cbd5e1;
}

.receipt-list li span:last-child {
    color: #fff;
    font-weight: 600;
}

.receipt-divider {
    height: 1px;
    background: rgba(255,255,255,0.1);
    margin: 1.5rem 0;
}

.receipt-summary {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    font-size: 0.95rem;
    color: #cbd5e1;
}

.summary-item span:last-child {
    font-weight: 600;
    color: #fff;
}

.highlight-economia span:first-child {
    color: var(--accent-gold);
    font-weight: 600;
}

.economia-badge {
    background: rgba(197,168,128,0.2);
    color: var(--accent-gold) !important;
    padding: 3px 10px;
    border-radius: 4px;
}

.receipt-total-box {
    margin-bottom: 2rem;
}

.receipt-total-box small {
    color: var(--accent-gold);
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.total-price {
    font-size: 3.5rem;
    font-weight: 700;
    color: #fff;
    margin: 5px 0 10px 0;
    font-family: var(--font-primary);
}

.total-note {
    font-size: 0.75rem;
    color: #94a3b8;
    line-height: 1.5;
}

.btn-activate-struct {
    display: block;
    width: 100%;
    text-align: center;
    background: var(--accent-gold);
    color: #fff;
    border: 2px solid #fff;
    padding: 18px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    margin-bottom: 2rem;
}

.btn-activate-struct:hover {
    background: #d4b588;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(197,168,128,0.3);
}

.receipt-footer p {
    font-size: 0.75rem;
    color: #64748b;
    line-height: 1.6;
}

.receipt-footer i {
    color: var(--accent-gold);
    margin-right: 5px;
}

/* Utility Class for number animation */
.animated-num {
    transition: all 0.3s ease;
}

@media (max-width: 1024px) {
    .calc-container {
        flex-direction: column;
    }
    .calc-receipt {
        padding: 2.5rem;
    }
}
@media (max-width: 768px) {
    .calc-title {
        font-size: 2.2rem;
    }
    .total-price {
        font-size: 2.8rem;
    }
}

/* ==========================================================================
   SOLUÇÕES HERO SECTION
   ========================================================================== */
.solucoes-hero {
    background: linear-gradient(135deg, #00151f 0%, #002333 100%);
    padding: 180px 5% 100px 5%;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.solucoes-hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: radial-gradient(circle at center, rgba(197,168,128,0.05) 0%, transparent 70%);
}

.solucoes-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.solucoes-hero h1 {
    font-size: 4rem;
    color: #ffffff;
    text-shadow: 0 4px 20px rgba(0,0,0,0.5);
    font-family: var(--font-primary);
    margin-bottom: 1.5rem;
    line-height: 1.1;
    letter-spacing: -1px;
}

.solucoes-hero p {
    font-size: 1.25rem;
    color: #e2e8f0;
    font-weight: 300;
}

/* ==========================================================================
   SOLUÇÕES - SHARED COMPONENTS
   ========================================================================== */
.sol-container {
    max-width: 1300px;
    margin: 0 auto;
}

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

.sol-section-header h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-family: var(--font-primary);
}

.sol-section-header p {
    font-size: 1.1rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
}

/* ==========================================================================
   BLOCO 1: BENTO BOX GRID (Serviços Jurídicos)
   ========================================================================== */
.sol-bento-section {
    padding: 6rem 5%;
    background-color: #f8fafc;
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 250px;
    gap: 1.5rem;
}

.bento-card {
    background: #fff;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    border: 1px solid rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 1;
}

.bento-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(180deg, transparent 0%, rgba(197,168,128,0.05) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.bento-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(197,168,128,0.15);
    border-color: rgba(197,168,128,0.3);
}

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

.bento-icon {
    font-size: 2rem;
    color: var(--primary-color);
    transition: color 0.3s ease;
    margin-bottom: 1.5rem;
}

.bento-card:hover .bento-icon {
    color: var(--accent-gold);
}

.bento-card h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.bento-card p {
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.5;
    margin-top: 1rem;
    transition: color 0.4s ease;
}

.bento-card:hover p {
    color: #334155;
}

/* Span classes for layout */
.bento-large {
    grid-column: span 2;
    grid-row: span 2;
}

.bento-large h3 {
    font-size: 2rem;
}

.bento-large .bento-icon {
    font-size: 2.5rem;
}

.bento-wide {
    grid-column: span 2;
}

/* ==========================================================================
   BLOCO 2: STICKY SCROLL (Para a sua Empresa)
   ========================================================================== */
.sol-sticky-section {
    padding: 8rem 5%;
    background-color: var(--primary-color);
    color: #fff;
    position: relative;
}

.sticky-container {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: flex-start; /* Important for sticky to work */
}

.sticky-sidebar {
    flex: 0 0 400px;
    position: sticky;
    top: 150px;
}

.sticky-sidebar h2 {
    font-size: 3.5rem;
    color: var(--accent-gold);
    line-height: 1.1;
    margin-bottom: 1.5rem;
    font-family: var(--font-primary);
}

.sticky-sidebar p {
    font-size: 1.1rem;
    color: #cbd5e1;
    line-height: 1.6;
}

.sticky-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.sticky-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 3rem;
    position: relative;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.sticky-card:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--accent-gold);
    transform: translateX(10px);
}

.card-num {
    position: absolute;
    top: -20px;
    right: 30px;
    font-size: 4rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.05);
    font-family: var(--font-primary);
}

.sticky-card h3 {
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 15px;
}

.sticky-card h3::before {
    content: '';
    display: block;
    width: 30px;
    height: 2px;
    background: var(--accent-gold);
}

.sticky-card p {
    color: #94a3b8;
    line-height: 1.6;
    font-size: 1rem;
}

/* ==========================================================================
   BLOCO 3: HOVER REVEAL LIST (Para você)
   ========================================================================== */
.sol-hover-section {
    padding: 8rem 5%;
    background-color: #fff;
}

.hover-list {
    display: flex;
    flex-direction: column;
    border-top: 1px solid #e2e8f0;
}

.hover-item {
    border-bottom: 1px solid #e2e8f0;
    padding: 2rem 0;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.hover-title {
    font-size: 2rem;
    color: var(--primary-color);
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color 0.3s ease, transform 0.3s ease;
}

.hover-item:hover .hover-title, .hover-item.active .hover-title {
    color: var(--accent-gold);
    transform: translateX(20px);
}

.hover-title i {
    font-size: 1.5rem;
    color: #cbd5e1;
    transition: transform 0.3s ease, color 0.3s ease;
}

.hover-item:hover .hover-title i, .hover-item.active .hover-title i {
    color: var(--accent-gold);
    transform: rotate(45deg);
}

.hover-content {
    max-height: 0;
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    padding-left: 20px;
}

.hover-item:hover .hover-content, .hover-item.active .hover-content {
    max-height: 200px;
    opacity: 1;
    margin-top: 1.5rem;
}

.hover-content p {
    font-size: 1.1rem;
    color: #64748b;
    line-height: 1.6;
    max-width: 800px;
}

/* ==========================================================================
   BLOCO 4: GLASSMORPHISM GRID (Soluções Customizadas)
   ========================================================================== */
.sol-glass-section {
    position: relative;
    padding: 8rem 5%;
    min-height: 800px;
    display: flex;
    align-items: center;
    background-color: var(--primary-color);
}

.glass-bg {
    display: none;
}

.glass-bg::after {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 21, 31, 0.75); /* Dark overlay */
}

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

.glass-header h2 {
    color: #fff;
}
.glass-header p {
    color: #cbd5e1;
}

.glass-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.glass-last {
    grid-column: 2; /* Center the 7th item in a 3 column grid */
}

.glass-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2.5rem;
    transition: all 0.3s ease;
}

.glass-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(197,168,128,0.5);
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}

.glass-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.15);
    color: #fce8a6; /* Brighter gold for better visibility */
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.glass-card h3 {
    color: #fff;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.glass-card p {
    color: #cbd5e1;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ==========================================================================
   SOLUÇÕES MEDIA QUERIES (RESPONSIVO)
   ========================================================================== */
@media (max-width: 1024px) {
    .bento-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .sticky-container {
        flex-direction: column;
    }
    
    .sticky-sidebar {
        flex: none;
        position: relative;
        top: 0;
        margin-bottom: 3rem;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .solucoes-hero h1 {
        font-size: 3rem;
    }
    
    .bento-grid {
        grid-template-columns: 1fr;
    }
    
    .bento-large, .bento-wide {
        grid-column: span 1;
        grid-row: span 1;
    }
    
    .hover-title {
        font-size: 1.5rem;
    }
    
    .glass-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   FAQ PAGE PREMIUM
   ========================================================================== */
.faq-hero {
    background: linear-gradient(135deg, #00151f 0%, #002333 100%);
    padding: 180px 5% 100px 5%;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.faq-hero::before {
    content: '';
    position: absolute;
    top: -50%; left: -50%; width: 200%; height: 200%;
    background: radial-gradient(circle, rgba(197,168,128,0.03) 0%, transparent 60%);
}

.faq-hero h1 {
    font-size: 3.5rem;
    color: #ffffff;
    font-family: var(--font-primary);
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.faq-hero p {
    font-size: 1.2rem;
    color: #cbd5e1;
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.faq-content-section {
    padding: 6rem 5%;
    background-color: #f8fafc;
}

.faq-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: flex-start;
}

/* Sidebar Sticky */
.faq-sidebar {
    flex: 0 0 350px;
    position: sticky;
    top: 120px;
}

.faq-sidebar-box {
    background: #fff;
    border-radius: 16px;
    padding: 3rem 2rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border: 1px solid rgba(0,0,0,0.03);
}

.faq-sidebar-box i {
    font-size: 3rem;
    color: var(--accent-gold);
    margin-bottom: 1.5rem;
}

.faq-sidebar-box h2 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.faq-sidebar-box p {
    font-size: 1rem;
    color: #64748b;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.faq-sidebar-box .btn {
    width: 100%;
    justify-content: center;
}

/* FAQ Accordion List */
.faq-list {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.faq-item {
    background: #fff;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(197,168,128,0.4);
    box-shadow: 0 5px 15px rgba(0,0,0,0.03);
}

.faq-question {
    display: flex;
    align-items: center;
    padding: 1.5rem 2rem;
    cursor: pointer;
    background: transparent;
    transition: background 0.3s ease;
}

.faq-item.active .faq-question {
    background: rgba(197,168,128,0.03);
}

.faq-number {
    font-family: var(--font-primary);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--accent-gold);
    margin-right: 1.5rem;
    opacity: 0.8;
}

.faq-question h3 {
    font-size: 1.15rem;
    color: var(--primary-color);
    font-weight: 600;
    flex: 1;
    margin: 0;
    padding-right: 2rem;
    line-height: 1.4;
}

.faq-toggle-icon {
    font-size: 1rem;
    color: #94a3b8;
    transition: transform 0.4s ease, color 0.3s ease;
}

.faq-item.active .faq-toggle-icon {
    transform: rotate(45deg);
    color: var(--accent-gold);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.5s ease;
    opacity: 0;
}

.faq-item.active .faq-answer {
    opacity: 1;
}

.faq-answer-inner {
    padding: 0 2rem 2rem 4.7rem; /* Indented to align with text */
}

.faq-answer-inner p {
    font-size: 1rem;
    color: #475569;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.faq-answer-inner p:last-child {
    margin-bottom: 0;
}

@media (max-width: 992px) {
    .faq-container {
        flex-direction: column-reverse;
    }
    .faq-sidebar {
        flex: none;
        width: 100%;
        position: static;
    }
}
@media (max-width: 768px) {
    .faq-hero h1 { font-size: 2.5rem; }
    .faq-answer-inner { padding: 0 1.5rem 1.5rem 1.5rem; }
    .faq-question { padding: 1.5rem; }
    .faq-number { margin-right: 1rem; }
}

/* ==========================================================================
   CONTACT PAGE PREMIUM
   ========================================================================== */
.contato-hero {
    background: linear-gradient(135deg, #00151f 0%, #002333 100%);
    padding: 180px 5% 100px 5%;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.contato-hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: radial-gradient(circle at center, rgba(197,168,128,0.05) 0%, transparent 70%);
}

.contato-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.contato-hero h1 {
    font-size: 3.5rem;
    color: #ffffff;
    font-family: var(--font-primary);
    margin-bottom: 1.5rem;
    line-height: 1.1;
    letter-spacing: -1px;
}

.contato-hero p {
    font-size: 1.25rem;
    color: #e2e8f0;
    font-weight: 300;
}

.contato-split-section {
    padding: 6rem 5%;
    background-color: #f4f6f9;
}

.contato-split-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: stretch;
}

/* Left Column - Info */
.contato-info-col {
    flex: 1;
    background: var(--primary-color);
    color: #fff;
    padding: 4rem;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 35, 55, 0.1);
}

.contato-info-col::after {
    content: '';
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 250px;
    height: 250px;
    background: rgba(197,168,128,0.1);
    border-radius: 50%;
}

.contato-info-col h2 {
    font-size: 2.2rem;
    font-family: var(--font-primary);
    color: var(--accent-gold);
    margin-bottom: 1rem;
}

.contato-info-col > p {
    font-size: 1.1rem;
    color: #cbd5e1;
    margin-bottom: 3rem;
    line-height: 1.6;
}

.contato-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contato-list li {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.contato-list .icon-box {
    width: 50px;
    height: 50px;
    background: rgba(197,168,128,0.15);
    color: var(--accent-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-size: 1.2rem;
}

.contato-list h4 {
    font-size: 1.1rem;
    color: #fff;
    margin-bottom: 5px;
}

.contato-list p {
    color: #94a3b8;
    line-height: 1.5;
}

/* Right Column - Form */
.contato-form-col {
    flex: 1.2;
    background: #fff;
    padding: 4rem;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
}

.contato-form-col h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.form-group {
    position: relative;
    margin-bottom: 2rem;
}

.form-control {
    width: 100%;
    padding: 15px 0;
    font-size: 1rem;
    color: #333;
    border: none;
    border-bottom: 1px solid #cbd5e1;
    background: transparent;
    outline: none;
    transition: border-color 0.3s ease;
}

.form-control:focus {
    border-bottom-color: var(--accent-gold);
}

.form-label {
    position: absolute;
    top: 15px;
    left: 0;
    font-size: 1rem;
    color: #64748b;
    pointer-events: none;
    transition: 0.3s ease all;
}

.form-control:focus ~ .form-label,
.form-control:not(:placeholder-shown) ~ .form-label {
    top: -15px;
    font-size: 0.85rem;
    color: var(--accent-gold);
}

textarea.form-control {
    resize: none;
    height: 80px;
}

.contato-form-col .btn-solid {
    width: 100%;
    padding: 18px;
    font-size: 1.1rem;
    justify-content: center;
    margin-top: 1rem;
}

#contactFeedback {
    margin-top: 1rem;
    text-align: center;
    font-weight: 500;
}

@media (max-width: 992px) {
    .contato-split-container {
        flex-direction: column;
    }
    .contato-info-col, .contato-form-col {
        padding: 3rem 2rem;
    }
}
