/* -------------------------------------------------------------
   CSS Reset & Variables
   ------------------------------------------------------------- */
:root {
    --bg-dark: #040810;
    --bg-dark-alt: #080f1e;
    --bg-card: rgba(11, 22, 40, 0.45);
    --bg-card-hover: rgba(15, 30, 54, 0.7);
    --border-color: rgba(226, 184, 87, 0.2);
    --border-color-hover: rgba(226, 184, 87, 0.5);
    
    --text-white: #ffffff;
    --text-gray: #a0aec0;
    --text-muted: #718096;
    
    /* Accents */
    --gold: #e2b857;
    --gold-rgb: 226, 184, 87;
    --green: #10b981;
    --green-rgb: 16, 185, 129;
    --teal: #0ea5e9;
    --blue: #2563eb;
    --orange: #ea580c;
    --royal-blue: #3b82f6;

    /* Fonts */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    /* Transitions */
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: all 0.2s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    background-color: var(--bg-dark);
    color: var(--text-white);
    font-family: var(--font-body);
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
}

body {
    overflow-x: hidden;
    line-height: 1.6;
}

/* -------------------------------------------------------------
   Typography & Helper Classes
   ------------------------------------------------------------- */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

p {
    font-size: 1.05rem;
    color: var(--text-gray);
    font-weight: 400;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-fast);
}

.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

.position-relative {
    position: relative;
}

/* Text Colors */
.gold-text {
    color: var(--gold);
}
.green-text {
    color: var(--green);
}
.teal-text {
    color: var(--teal);
}
.blue-text {
    color: var(--royal-blue);
}
.orange-text {
    color: var(--orange);
}
.font-bold {
    font-weight: 700;
}
.text-center {
    text-align: center;
}

/* -------------------------------------------------------------
   Buttons & Links
   ------------------------------------------------------------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    padding: 0.85rem 2rem;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition-smooth);
    border: 2px solid transparent;
}

.btn i {
    width: 18px;
    height: 18px;
    transition: var(--transition-fast);
}

.btn-primary {
    background-color: var(--gold);
    color: var(--bg-dark);
}

.btn-primary:hover {
    background-color: #f0c970;
    box-shadow: 0 0 25px rgba(var(--gold-rgb), 0.4);
    transform: translateY(-2px);
}

.btn-primary:hover i {
    transform: translateX(4px);
}

.btn-outline {
    background-color: transparent;
    border-color: var(--gold);
    color: var(--gold);
}

.btn-outline:hover {
    background-color: var(--gold);
    color: var(--bg-dark);
    box-shadow: 0 0 20px rgba(var(--gold-rgb), 0.3);
    transform: translateY(-2px);
}

.btn-large {
    padding: 1.1rem 2.5rem;
    font-size: 1.1rem;
}

.btn-block {
    display: flex;
    width: 100%;
}

.btn-glow {
    position: relative;
    overflow: hidden;
}

.btn-glow::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.3) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s;
    pointer-events: none;
}

.btn-glow:hover::after {
    opacity: 1;
}

/* -------------------------------------------------------------
   Header & Navigation
   ------------------------------------------------------------- */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.5rem 0;
    background-color: transparent;
    border-bottom: 1px solid transparent;
    transition: var(--transition-smooth);
}

.site-header.scrolled {
    padding: 0.85rem 0;
    background-color: rgba(4, 8, 16, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-color);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

.logo-link {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 55px;
    width: auto;
    object-fit: contain;
    transition: var(--transition-smooth);
}

.site-header.scrolled .logo-img {
    height: 48px;
}

.main-nav {
    display: flex;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 2.2rem;
}

.nav-list a {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-gray);
    position: relative;
    padding: 0.5rem 0;
}

.nav-list a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--gold);
    transition: var(--transition-smooth);
}

.nav-list a:hover {
    color: var(--text-white);
}

.nav-list a:hover::after {
    width: 100%;
}

.header-cta-wrapper {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-white);
    font-size: 1.8rem;
    cursor: pointer;
}

/* Mobile Drawer */
.mobile-drawer {
    position: fixed;
    top: 0;
    right: -100%;
    width: 320px;
    height: 100vh;
    background-color: var(--bg-dark);
    border-left: 1px solid var(--border-color);
    z-index: 1001;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-drawer.open {
    right: 0;
}

.drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.drawer-close {
    background: none;
    border: none;
    color: var(--text-white);
    cursor: pointer;
}

.drawer-nav-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
    margin-top: 3rem;
}

.drawer-nav-list a {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-gray);
    display: block;
}

.drawer-nav-list a:hover {
    color: var(--gold);
    transform: translateX(5px);
}

/* -------------------------------------------------------------
   Hero Section
   ------------------------------------------------------------- */
.section-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center right;
    background-repeat: no-repeat;
    padding-top: 100px;
    position: relative;
}

.section-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(4, 8, 16, 0.95) 0%, rgba(4, 8, 16, 0.7) 40%, rgba(4, 8, 16, 0.2) 100%);
    pointer-events: none;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    align-items: center;
    position: relative;
    z-index: 10;
}

.hero-content {
    max-width: 650px;
    padding-right: 2rem;
}

.hero-title {
    font-size: 4.5rem;
    line-height: 1.1;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--text-white);
}

.hero-paragraph {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    max-width: 520px;
    color: var(--text-gray);
}

.hero-action {
    margin-bottom: 2rem;
}

.hero-caption {
    font-size: 0.95rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* -------------------------------------------------------------
   O Negócio Section
   ------------------------------------------------------------- */
.section-negocio {
    padding: 10rem 0;
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    position: relative;
}

.section-negocio::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(4, 8, 16, 0.9) 0%, rgba(4, 8, 16, 0.8) 50%, rgba(4, 8, 16, 0.6) 100%);
    pointer-events: none;
}

.negocio-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 10;
}

.section-overline {
    display: block;
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 2.8rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.section-paragraph {
    margin-bottom: 2.5rem;
}

.features-mini-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.8rem;
    margin-bottom: 2.5rem;
}

.mini-feature-card {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.mini-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: rgba(16, 185, 129, 0.1);
    color: var(--green);
    border: 1px solid rgba(16, 185, 129, 0.2);
    flex-shrink: 0;
    font-size: 1.3rem;
}

.mini-text {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-white);
}

.services-boxes-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.service-box {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 2.5rem 1.8rem;
    border-radius: 16px;
    backdrop-filter: blur(10px);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.service-box:hover {
    border-color: var(--border-color-hover);
    background-color: var(--bg-card-hover);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(var(--gold-rgb), 0.1);
}

.service-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 12px;
    background-color: rgba(226, 184, 87, 0.1);
    color: var(--gold);
    margin-bottom: 1.5rem;
    border: 1px solid rgba(226, 184, 87, 0.2);
    font-size: 1.8rem;
}

.service-box:hover .service-icon {
    background-color: rgba(226, 184, 87, 0.2);
    transform: scale(1.05);
}

.service-title {
    font-size: 1.25rem;
    font-weight: 600;
}

/* -------------------------------------------------------------
   Principais Serviços Oferecidos Section
   ------------------------------------------------------------- */
.section-servicos-oferecidos {
    padding: 8rem 0;
    background-color: var(--bg-dark-alt);
    position: relative;
    border-bottom: 1px solid rgba(226, 184, 87, 0.05);
}

.servicos-header {
    margin-bottom: 4rem;
}

.services-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.service-card-item {
    background-color: var(--bg-card);
    border: 2px solid var(--border-color);
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: var(--transition-smooth);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.service-card-item:hover {
    border-color: var(--gold);
    box-shadow: 0 0 30px rgba(var(--gold-rgb), 0.35);
    transform: translateY(-10px);
}

.service-card-img-wrapper {
    height: 250px;
    overflow: hidden;
    position: relative;
}

.service-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-card-item:hover .service-card-img {
    transform: scale(1.08);
}

.service-card-body {
    padding: 2.5rem 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    text-align: center;
    justify-content: center;
}

.service-card-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--gold);
    margin-bottom: 1rem;
    letter-spacing: 0.02em;
    line-height: 1.3;
}

.service-card-desc {
    font-size: 0.95rem;
    color: var(--text-gray);
    line-height: 1.6;
}

/* -------------------------------------------------------------
   Expansão Nacional Section
   ------------------------------------------------------------- */
.section-expansao {
    padding: 10rem 0;
    background-image: url('bg_negocio_expansao.jpeg');
    background-size: cover;
    background-position: center bottom;
    background-repeat: no-repeat;
    position: relative;
}

.section-expansao::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(4, 8, 16, 0.9) 0%, rgba(4, 8, 16, 0.8) 50%, rgba(4, 8, 16, 0.6) 100%);
    pointer-events: none;
}

.expansao-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 10;
}

.units-container {
    background-color: rgba(8, 16, 30, 0.7);
    border: 2px solid var(--border-color);
    padding: 3rem;
    border-radius: 20px;
    backdrop-filter: blur(15px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    max-width: 450px;
    margin-left: auto;
}

.units-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    border-bottom: 1px solid rgba(226, 184, 87, 0.1);
    padding-bottom: 1rem;
}

.units-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
}

.units-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.units-list li {
    font-size: 1.1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.pin {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 10px currentColor;
}

.gold-pin { background-color: var(--gold); color: var(--gold); }
.green-pin { background-color: var(--green); color: var(--green); }
.orange-pin { background-color: var(--orange); color: var(--orange); }
.blue-pin { background-color: var(--blue); color: var(--blue); }
.teal-pin { background-color: var(--teal); color: var(--teal); }

/* -------------------------------------------------------------
   Processo & Detalhes do Investimento Section
   ------------------------------------------------------------- */
.section-processo {
    padding: 8rem 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.section-processo::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(4, 8, 16, 0.95) 0%, rgba(4, 8, 16, 0.9) 50%, rgba(4, 8, 16, 0.95) 100%);
    pointer-events: none;
}

.section-processo .container {
    position: relative;
    z-index: 10;
}

.process-header, .investment-header {
    margin-bottom: 4rem;
}

/* 6 Steps Grid */
.process-steps-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1.5rem;
    margin-bottom: 6rem;
}

.step-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: var(--transition-smooth);
}

.step-card:hover {
    transform: translateY(-5px);
}

.step-circle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    margin-bottom: 1.5rem;
    font-size: 1.6rem;
    border: 2px solid transparent;
    transition: var(--transition-smooth);
}

.step-card:hover .step-circle {
    transform: scale(1.1);
}

.step-circle.green { background-color: rgba(16, 185, 129, 0.1); border-color: rgba(16, 185, 129, 0.3); color: var(--green); }
.step-circle.teal { background-color: rgba(14, 165, 233, 0.1); border-color: rgba(14, 165, 233, 0.3); color: var(--teal); }
.step-circle.blue { background-color: rgba(37, 99, 235, 0.1); border-color: rgba(37, 99, 235, 0.3); color: var(--royal-blue); }
.step-circle.royal-blue { background-color: rgba(59, 130, 246, 0.1); border-color: rgba(59, 130, 246, 0.3); color: var(--royal-blue); }
.step-circle.orange { background-color: rgba(234, 88, 12, 0.1); border-color: rgba(234, 88, 12, 0.3); color: var(--orange); }
.step-circle.gold { background-color: rgba(226, 184, 87, 0.1); border-color: rgba(226, 184, 87, 0.3); color: var(--gold); }

.step-circle.green:hover { box-shadow: 0 0 20px rgba(16, 185, 129, 0.3); }
.step-circle.teal:hover { box-shadow: 0 0 20px rgba(14, 165, 233, 0.3); }
.step-circle.blue:hover { box-shadow: 0 0 20px rgba(37, 99, 235, 0.3); }
.step-circle.royal-blue:hover { box-shadow: 0 0 20px rgba(59, 130, 246, 0.3); }
.step-circle.orange:hover { box-shadow: 0 0 20px rgba(234, 88, 12, 0.3); }
.step-circle.gold:hover { box-shadow: 0 0 20px rgba(226, 184, 87, 0.3); }

.step-title {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    min-height: 40px;
}

.step-desc {
    font-size: 0.85rem;
    color: var(--text-gray);
    line-height: 1.4;
}

/* Divider Line */
.section-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(226, 184, 87, 0.2) 50%, transparent 100%);
    margin: 5rem 0;
}

/* 5 Investment Cards Grid */
.investment-cards-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
    margin-bottom: 5rem;
}

.investment-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 2.2rem 1.5rem;
    backdrop-filter: blur(10px);
    transition: var(--transition-smooth);
}

.investment-card:hover {
    transform: translateY(-5px);
    background-color: var(--bg-card-hover);
}

.card-green:hover { border-color: var(--green); box-shadow: 0 10px 30px rgba(16, 185, 129, 0.1); }
.card-teal:hover { border-color: var(--teal); box-shadow: 0 10px 30px rgba(14, 165, 233, 0.1); }
.card-blue:hover { border-color: var(--royal-blue); box-shadow: 0 10px 30px rgba(59, 130, 246, 0.1); }
.card-orange:hover { border-color: var(--orange); box-shadow: 0 10px 30px rgba(234, 88, 12, 0.1); }
.card-gold:hover { border-color: var(--gold); box-shadow: 0 10px 30px rgba(226, 184, 87, 0.1); }

.inv-card-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    height: 100%;
    justify-content: center;
}

.inv-title {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 0.8rem;
    min-height: 40px;
}

.inv-subtitle {
    font-size: 0.75rem;
    color: var(--text-gray);
    margin-bottom: 0.5rem;
}

.inv-value {
    font-size: 1.8rem;
    font-family: var(--font-heading);
    font-weight: 800;
}

.inv-value-large {
    font-size: 2.8rem;
    font-family: var(--font-heading);
    font-weight: 800;
    line-height: 1;
    margin-bottom: 0.2rem;
}

.inv-suffix {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-gray);
}

/* Horizontal Features Bottom Bar */
.process-bottom-bar, .planos-bottom-bar, .contato-bottom-bar {
    background-color: rgba(11, 22, 40, 0.6);
    border: 1px solid var(--border-color);
    padding: 1.8rem 2.5rem;
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem 4rem;
    flex-wrap: wrap;
}

.bar-feature {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 0.85rem;
    font-weight: 600;
}

.bar-feature i {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

/* -------------------------------------------------------------
   Planos de Investimento Section
   ------------------------------------------------------------- */
.section-planos {
    padding: 10rem 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.section-planos::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(4, 8, 16, 0.9) 0%, rgba(4, 8, 16, 0.85) 50%, rgba(4, 8, 16, 0.9) 100%);
    pointer-events: none;
}

.planos-subtitle {
    font-size: 1.25rem;
    max-width: 650px;
    margin: 0 auto 5rem auto;
}

/* Floating Units Badge */
.units-badge {
    position: absolute;
    top: 40px;
    right: 40px;
    z-index: 10;
}

.badge-content {
    background-color: rgba(4, 8, 16, 0.85);
    border: 2px solid var(--gold);
    padding: 1.5rem 2rem;
    border-radius: 50%;
    width: 160px;
    height: 160px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    box-shadow: 0 10px 30px rgba(var(--gold-rgb), 0.2);
    animation: pulseGlow 3s infinite alternate;
}

.badge-star {
    color: var(--gold);
    width: 20px;
    height: 20px;
    margin-bottom: 0.3rem;
}

.badge-number {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--gold);
    line-height: 1;
}

.badge-text {
    font-size: 0.65rem;
    font-weight: 700;
    color: var(--text-white);
    letter-spacing: 0.05em;
    line-height: 1.2;
}

.badge-text-only {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-white);
    letter-spacing: 0.05em;
    line-height: 1.3;
    margin-top: 0.5rem;
}

/* 3 columns Cards */
.planos-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-bottom: 5rem;
    position: relative;
    z-index: 5;
}

.plano-column-card {
    background-color: rgba(8, 15, 30, 0.85);
    border: 2px solid var(--border-color);
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    backdrop-filter: blur(10px);
    transition: var(--transition-smooth);
}

.plano-column-card:hover {
    transform: translateY(-8px);
}

.plano-column-card.card-blue:hover { border-color: var(--royal-blue); box-shadow: 0 15px 40px rgba(59, 130, 246, 0.15); }
.plano-column-card.card-green:hover { border-color: var(--green); box-shadow: 0 15px 40px rgba(16, 185, 129, 0.15); }
.plano-column-card.card-gold:hover { border-color: var(--gold); box-shadow: 0 15px 40px rgba(var(--gold-rgb), 0.15); }

.plano-card-header {
    padding: 3rem 2rem 2rem 2rem;
    text-align: center;
    border-bottom: 1px solid rgba(226, 184, 87, 0.1);
}

.plano-card-title {
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    letter-spacing: 0.02em;
}

.plano-lucratividade-label {
    display: block;
    font-size: 0.75rem;
    color: var(--text-gray);
    letter-spacing: 0.1em;
    margin-bottom: 0.3rem;
}

.plano-lucratividade-value {
    font-family: var(--font-heading);
    font-size: 2.6rem;
    font-weight: 800;
    line-height: 1;
}

.plano-card-body {
    padding: 3rem 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}

.plano-description {
    font-size: 1.05rem;
    line-height: 1.6;
    color: var(--text-gray);
}

.plano-card-footer {
    padding: 2rem;
    background-color: rgba(4, 8, 16, 0.5);
    border-top: 1px solid rgba(226, 184, 87, 0.1);
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.plano-footer-item {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.plano-footer-text {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text-white);
    letter-spacing: 0.05em;
}

/* -------------------------------------------------------------
   Por Que a Limpeja Section
   ------------------------------------------------------------- */
.section-por-que {
    padding: 10rem 0;
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    position: relative;
}

.section-por-que::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(4, 8, 16, 0.95) 0%, rgba(4, 8, 16, 0.8) 50%, rgba(4, 8, 16, 0.4) 100%);
    pointer-events: none;
}

.por-que-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 10;
}

.features-row {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    margin-top: 3rem;
}

.feature-item-pill {
    background-color: var(--bg-card);
    border: 1px solid rgba(16, 185, 129, 0.2);
    padding: 1rem 1.8rem;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 1.2rem;
    width: max-content;
    transition: var(--transition-smooth);
}

.feature-item-pill:hover {
    transform: translateX(8px);
    border-color: var(--green);
    background-color: rgba(16, 185, 129, 0.1);
}

.feature-item-pill i {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
}

.feature-item-pill span {
    font-size: 1.05rem;
    font-weight: 600;
}

/* -------------------------------------------------------------
   Contato & Form Section
   ------------------------------------------------------------- */
.section-contato {
    padding: 8rem 0;
    background-image: url('bg_final.jpeg');
    background-size: cover;
    background-position: center bottom;
    background-repeat: no-repeat;
    position: relative;
}

.section-contato::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(4, 8, 16, 0.95) 0%, rgba(4, 8, 16, 0.9) 50%, rgba(4, 8, 16, 0.95) 100%);
    pointer-events: none;
}

.contato-container {
    position: relative;
    z-index: 10;
    max-width: 800px;
}

.contato-subtitle {
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-bottom: 3.5rem;
}

/* Form Styling */
.form-container {
    background: rgba(8, 16, 30, 0.8);
    border: 2px solid var(--border-color);
    border-radius: 20px;
    padding: 3.5rem;
    backdrop-filter: blur(15px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
    margin-bottom: 5rem;
}

.lead-form {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.form-group.full-width {
    grid-column: span 2;
}

.form-group label {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-white);
    letter-spacing: 0.05em;
}

.form-group input, .form-group select {
    background-color: rgba(4, 8, 16, 0.6);
    border: 1px solid var(--border-color);
    padding: 1rem 1.2rem;
    border-radius: 8px;
    color: var(--text-white);
    font-family: var(--font-body);
    font-size: 1rem;
    outline: none;
    transition: var(--transition-fast);
}

.form-group input:focus, .form-group select:focus {
    border-color: var(--gold);
    box-shadow: 0 0 10px rgba(var(--gold-rgb), 0.2);
}

.form-group select option {
    background-color: var(--bg-dark);
    color: var(--text-white);
}

.form-action {
    margin-top: 1rem;
}

.form-success-message {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2rem 0;
}

.success-icon {
    width: 64px;
    height: 64px;
    color: var(--green);
    margin-bottom: 1.5rem;
}

.form-success-message h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.form-success-message p {
    font-size: 1.1rem;
    color: var(--text-gray);
}

.hidden {
    display: none !important;
}

/* -------------------------------------------------------------
   Footer
   ------------------------------------------------------------- */
.site-footer {
    background-color: #03050a;
    border-top: 1px solid var(--border-color);
    padding: 6rem 0 3rem 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 5rem;
    margin-bottom: 4rem;
}

.footer-col h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1.8rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--gold);
}

.brand-col {
    max-width: 400px;
}

.footer-logo {
    height: 50px;
    width: auto;
    object-fit: contain;
    margin-bottom: 1.8rem;
}

.brand-desc {
    font-size: 0.95rem;
    line-height: 1.7;
}

.footer-links, .footer-contact {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-links a {
    color: var(--text-gray);
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--gold);
    padding-left: 5px;
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--text-gray);
    font-size: 0.95rem;
}

.footer-contact li i {
    width: 18px;
    height: 18px;
    color: var(--gold);
    flex-shrink: 0;
}

.footer-contact a:hover {
    color: var(--gold);
}

.footer-bottom {
    border-top: 1px solid rgba(226, 184, 87, 0.05);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-muted);
    font-size: 0.85rem;
    flex-wrap: wrap;
    gap: 1rem;
}

/* -------------------------------------------------------------
   WhatsApp Floating Button
   ------------------------------------------------------------- */
.whatsapp-float-btn {
    position: fixed;
    bottom: 40px;
    right: 40px;
    width: 65px;
    height: 65px;
    border-radius: 50%;
    background-color: #25d366;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
    z-index: 999;
    font-size: 2rem;
    transition: var(--transition-smooth);
    animation: pulseWhatsApp 2s infinite;
}

.whatsapp-float-btn i {
    width: 28px;
    height: 28px;
}

.whatsapp-float-btn:hover {
    transform: scale(1.1) rotate(5deg);
    background-color: #20ba5a;
}

.whatsapp-float-btn .tooltip {
    position: absolute;
    right: 80px;
    background-color: #0b132b;
    border: 1px solid var(--border-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-fast);
    white-space: nowrap;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.whatsapp-float-btn:hover .tooltip {
    opacity: 1;
    right: 75px;
}

/* -------------------------------------------------------------
   Animations & Reveals
   ------------------------------------------------------------- */
@keyframes pulseGlow {
    0% {
        box-shadow: 0 0 20px rgba(var(--gold-rgb), 0.1);
        border-color: rgba(var(--gold-rgb), 0.2);
    }
    100% {
        box-shadow: 0 0 35px rgba(var(--gold-rgb), 0.35);
        border-color: rgba(var(--gold-rgb), 0.6);
    }
}

@keyframes pulseWhatsApp {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 20px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Delay for grids */
.process-steps-grid.active .step-card:nth-child(1) { transition-delay: 0.1s; }
.process-steps-grid.active .step-card:nth-child(2) { transition-delay: 0.2s; }
.process-steps-grid.active .step-card:nth-child(3) { transition-delay: 0.3s; }
.process-steps-grid.active .step-card:nth-child(4) { transition-delay: 0.4s; }
.process-steps-grid.active .step-card:nth-child(5) { transition-delay: 0.5s; }
.process-steps-grid.active .step-card:nth-child(6) { transition-delay: 0.6s; }

.investment-cards-grid.active .investment-card:nth-child(1) { transition-delay: 0.1s; }
.investment-cards-grid.active .investment-card:nth-child(2) { transition-delay: 0.2s; }
.investment-cards-grid.active .investment-card:nth-child(3) { transition-delay: 0.3s; }
.investment-cards-grid.active .investment-card:nth-child(4) { transition-delay: 0.4s; }
.investment-cards-grid.active .investment-card:nth-child(5) { transition-delay: 0.5s; }

.planos-cards-grid.active .plano-column-card:nth-child(1) { transition-delay: 0.1s; }
.planos-cards-grid.active .plano-column-card:nth-child(2) { transition-delay: 0.2s; }
.planos-cards-grid.active .plano-column-card:nth-child(3) { transition-delay: 0.3s; }

.services-cards-grid.active .service-card-item:nth-child(1) { transition-delay: 0.1s; }
.services-cards-grid.active .service-card-item:nth-child(2) { transition-delay: 0.2s; }
.services-cards-grid.active .service-card-item:nth-child(3) { transition-delay: 0.3s; }

/* -------------------------------------------------------------
   Responsive Breakpoints
   ------------------------------------------------------------- */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 3.5rem;
    }
    .container {
        padding: 0 1.5rem;
    }
    .process-steps-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
    .investment-cards-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    h2.section-title {
        font-size: 2.3rem;
    }
    .hero-grid, .negocio-grid, .expansao-grid, .por-que-grid {
        grid-template-columns: 1fr;
        gap: 3.5rem;
    }
    
    .section-hero {
        background-position: center;
        text-align: center;
        padding-top: 120px;
    }
    
    .section-hero::before {
        background: rgba(4, 8, 16, 0.88); /* Stronger dark overlay on mobile/tablet for perfect text readability */
    }
    
    .section-processo {
        background-image: none !important; /* Hide image with horizontal lines/borders to prevent misalignment on mobile */
        background-color: var(--bg-dark);
    }
    
    .section-planos {
        background-image: none !important; /* Hide image with fixed columns backdrop */
        background-color: var(--bg-dark-alt);
    }
    
    .section-por-que::before {
        background: rgba(4, 8, 16, 0.92); /* Darken details of sofa/brick/dog on tablet to read text clearly */
    }
    
    .section-contato {
        background-image: none !important;
        background-color: var(--bg-dark);
    }
    
    .hero-content {
        margin: 0 auto;
        padding-right: 0;
    }
    
    .hero-paragraph {
        margin-left: auto;
        margin-right: auto;
    }
    
    .main-nav {
        display: none;
    }
    
    .menu-toggle {
        display: block;
        padding: 0.5rem;
        transition: var(--transition-fast);
    }
    
    .menu-toggle:hover {
        color: var(--gold);
    }
    
    .units-container {
        margin: 0 auto;
    }
    
    .units-badge {
        position: relative;
        top: 0;
        right: 0;
        margin: 0 auto 3rem auto;
        width: max-content;
    }
    
    .planos-cards-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto 5rem auto;
        gap: 3rem;
    }
    
    .services-cards-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto 5rem auto;
        gap: 3rem;
    }
    
    .form-container {
        padding: 2.5rem 1.5rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 3.5rem;
        text-align: center;
    }
    
    .brand-col {
        margin: 0 auto;
    }
    
    .footer-col h4::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-contact li {
        justify-content: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.8rem;
    }
    
    .process-steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .investment-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .form-grid {
        grid-template-columns: 1fr;
    }
    
    .form-group.full-width {
        grid-column: span 1;
    }
    
    .process-bottom-bar, .planos-bottom-bar, .contato-bottom-bar {
        flex-direction: column;
        align-items: flex-start;
        padding: 2rem;
    }
    
    .whatsapp-float-btn {
        bottom: 25px;
        right: 25px;
        width: 55px;
        height: 55px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.2rem;
    }
    
    .process-steps-grid {
        grid-template-columns: 1fr;
    }
    
    .investment-cards-grid {
        grid-template-columns: 1fr;
    }
    
    .features-mini-grid {
        grid-template-columns: 1fr;
    }
    
    .services-boxes-grid {
        grid-template-columns: 1fr;
    }
    
    .feature-item-pill {
        width: 100%;
        justify-content: flex-start;
    }
}
