/* ==========================================================================
   DESIGN SYSTEM & VARIABLES - DNA CENTRO AUTOMOTIVO
   ========================================================================== */

:root {
    /* Colors HSL */
    --bg-black: #060606;
    --bg-dark-gray: #0d0d0d;
    --bg-card: #141414;
    --bg-card-hover: #1c1c1c;
    
    --orange-primary: #ff5f00;
    --orange-hover: #e04f00;
    --orange-glow: rgba(255, 95, 0, 0.15);
    
    --text-white: #ffffff;
    --text-gray-light: #f5f5f7;
    --text-gray: #a0a0a5;
    --text-gray-dark: #6e6e73;
    
    --whatsapp-green: #25d366;
    --whatsapp-glow: rgba(37, 211, 102, 0.25);
    
    /* Fonts */
    --font-heading: 'Anton', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    /* Layout */
    --container-max-width: 1200px;
    --transition-smooth: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    --transition-fast: all 0.15s ease-in-out;
}

/* ==========================================================================
   RESET & BASICS
   ========================================================================== */

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background-color: var(--bg-black);
    color: var(--text-gray-light);
    font-family: var(--font-body);
    -webkit-font-smoothing: antialiased;
}

body {
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-fast);
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    outline: none;
    background: none;
}

/* Scrollbar Customization */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: var(--bg-black);
}
::-webkit-scrollbar-thumb {
    background: var(--bg-card);
    border: 2px solid var(--bg-black);
    border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--orange-primary);
}

/* Common Layout Components */
.container {
    width: 100%;
    margin-right: auto;
    margin-left: auto;
    padding-right: 1.5rem;
    padding-left: 1.5rem;
}

/* Responsive Container Sizes */
@media (min-width: 576px) { .container { max-width: 540px; } }
@media (min-width: 768px) { .container { max-width: 720px; } }
@media (min-width: 992px) { .container { max-width: 960px; } }
@media (min-width: 1200px) { .container { max-width: var(--container-max-width); } }

/* Typography & Accent Highlights */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    text-transform: uppercase;
    color: var(--text-white);
    letter-spacing: 0.05em;
    font-weight: 400; /* Anton standard weight */
}

p {
    line-height: 1.6;
    color: var(--text-gray);
    font-weight: 400;
}

.highlight-orange {
    color: var(--orange-primary);
}

/* ==========================================================================
   BUTTONS SYSTEM
   ========================================================================== */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-family: var(--font-body);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.875rem;
    padding: 0.875rem 1.75rem;
    border-radius: 4px;
    letter-spacing: 0.05em;
    transition: var(--transition-smooth);
}

.btn-primary {
    background-color: var(--orange-primary);
    color: var(--text-white);
    box-shadow: 0 4px 15px rgba(255, 95, 0, 0.3);
}

.btn-primary:hover {
    background-color: var(--orange-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 95, 0, 0.45);
}

.btn-secondary {
    background-color: transparent;
    color: var(--text-white);
    border: 1px solid var(--orange-primary);
}

.btn-secondary:hover {
    background-color: var(--orange-primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 95, 0, 0.25);
}

.btn-block {
    display: flex;
    width: 100%;
}

.btn-large {
    font-size: 1rem;
    padding: 1.125rem 2.25rem;
}

/* ==========================================================================
   TOP BAR & HEADER
   ========================================================================== */

.top-bar {
    background-color: var(--bg-black);
    border-bottom: 1px solid #1a1a1a;
    font-size: 0.75rem;
    color: var(--text-gray);
    padding: 0.5rem 0;
    z-index: 99;
    position: sticky;
    top: 0;
}

.top-bar-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    text-align: center;
}

.top-bar-content .separator {
    color: #333;
}

.top-bar-whatsapp {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    color: var(--whatsapp-green);
    font-weight: 600;
}

.top-bar-whatsapp:hover {
    color: var(--text-white);
}

.top-bar-whatsapp svg {
    display: inline-block;
    vertical-align: middle;
    fill: currentColor;
    margin-right: 2px;
}

/* Main Header with Glassmorphism */
.main-header {
    position: sticky;
    top: calc(var(--top-bar-height, 0px) - 1px);
    z-index: 100;
    background-color: rgba(6, 6, 6, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 95, 0, 0.15);
    padding: 1rem 0;
    transition: var(--transition-smooth);
}

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

/* Logo Styling */
.logo {
    display: inline-flex;
    align-items: center;
    font-family: var(--font-heading);
    font-size: 1.75rem;
    letter-spacing: 0.03em;
    line-height: 1;
}

.logo-svg {
    height: 40px;
    width: auto;
    display: block;
}

.logo-svg-footer {
    height: 36px;
}

.logo-bold {
    color: var(--orange-primary);
    margin-right: 0.25rem;
    text-shadow: 0 0 10px rgba(255, 95, 0, 0.2);
}

.logo-light {
    color: var(--text-white);
}

/* Navigation Links */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    font-weight: 500;
    font-size: 0.875rem;
    color: var(--text-gray);
    letter-spacing: 0.02em;
    position: relative;
    padding: 0.5rem 0;
}

.nav-link:hover, .nav-link.active {
    color: var(--text-white);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--orange-primary);
    transition: var(--transition-smooth);
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

.btn-header {
    padding: 0.6rem 1.2rem;
    font-size: 0.75rem;
}

/* Mobile Menu Toggle Button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    z-index: 101;
}

.mobile-menu-btn span {
    display: block;
    height: 2px;
    width: 100%;
    background-color: var(--text-white);
    border-radius: 2px;
    transition: var(--transition-smooth);
}

/* Mobile Nav responsiveness */
@media (max-width: 991px) {
    .mobile-menu-btn {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background-color: var(--bg-dark-gray);
        border-left: 1px solid rgba(255, 95, 0, 0.2);
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
        flex-direction: column;
        align-items: flex-start;
        padding: 5rem 2rem 2rem 2rem;
        gap: 1.5rem;
        transition: var(--transition-smooth);
        z-index: 100;
    }
    
    .nav-menu.open {
        right: 0;
    }
    
    .nav-link {
        font-size: 1.125rem;
        width: 100%;
    }
    
    .btn-header {
        width: 100%;
        margin-top: 1rem;
    }
    
    .mobile-menu-btn.open span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
        background-color: var(--orange-primary);
    }
    
    .mobile-menu-btn.open span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-btn.open span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
        background-color: var(--orange-primary);
    }
}

/* ==========================================================================
   10. HERO SECTION
   ========================================================================== */

.hero-section {
    position: relative;
    padding: 4rem 0;
    min-height: 92vh;
    display: flex;
    align-items: center;
    background-color: var(--bg-black);
    background-image: url('images/hero-bg.png');
    background-position: center right;
    background-size: cover;
    background-repeat: no-repeat;
    border-bottom: 1px solid rgba(255, 95, 0, 0.1);
}



.hero-container-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.25fr 0.75fr;
    gap: 3rem;
    align-items: center;
}

.hero-content {
    max-width: 700px;
}

/* Badges de Destaque */
.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.hero-badge-item {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: rgba(255, 95, 0, 0.08);
    border: 1px solid rgba(255, 95, 0, 0.2);
    color: var(--orange-primary);
    padding: 0.4rem 0.8rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.hero-badge-item svg {
    flex-shrink: 0;
}

.hero-title {
    font-size: 4.5rem;
    line-height: 1.05;
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 12px rgba(0,0,0,0.5);
}

.mobile-title {
    display: none;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 3.1rem;
        text-align: center;
        margin-bottom: 0.75rem;
    }
    .hero-content {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .hero-badges {
        justify-content: center;
        gap: 0.5rem;
        margin-bottom: 0.75rem;
    }
    .hero-badge-item {
        padding: 0.35rem 0.6rem;
        font-size: 0.68rem;
    }
    .hero-posicionamento {
        border-left: none;
        border-bottom: 3px solid var(--orange-primary);
        border-radius: 4px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.6rem;
        margin-bottom: 0.5rem;
    }
    .hero-badges {
        gap: 0.35rem;
        margin-bottom: 0.5rem;
    }
    .hero-badge-item {
        padding: 0.25rem 0.45rem;
        font-size: 0.6rem;
    }
    .hero-subtitle {
        font-size: 0.875rem;
        margin-bottom: 1rem;
    }
    .hero-posicionamento {
        padding: 0.75rem 1rem;
        margin-bottom: 1.5rem;
    }
    .hero-posicionamento p {
        font-size: 0.95rem;
    }
}

.hero-subtitle {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: var(--text-gray-light);
}

.hero-posicionamento {
    background-color: rgba(13, 13, 13, 0.6);
    border-left: 3px solid var(--orange-primary);
    padding: 1rem 1.25rem;
    margin-bottom: 2rem;
    border-radius: 0 4px 4px 0;
    backdrop-filter: blur(5px);
}

.hero-posicionamento p {
    font-style: italic;
    font-size: 1.05rem;
    color: var(--text-white);
}

.hero-ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

/* Provas de Confiança Horizontal (Realocado para Esquerda) */
.hero-trust-bar {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 2rem;
}

.trust-bar-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.trust-bar-num {
    display: block;
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--orange-primary);
    line-height: 1;
    margin-bottom: 0.25rem;
}

.trust-bar-stars {
    display: block;
    color: #ffd700;
    font-size: 0.7rem;
    letter-spacing: 0.05em;
    margin-bottom: 0.25rem;
}

.trust-bar-lbl {
    display: block;
    font-size: 0.7rem;
    color: var(--text-gray);
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.05em;
    line-height: 1.3;
}

/* Espaço Reservado na Direita da Hero */
.hero-right-space {
    width: 100%;
    min-height: 100px;
}

@media (max-width: 991px) {
    .hero-section {
        background-image: url('images/hero-bg-mobile.png');
        background-position: center top;
        background-size: cover;
        padding: 44vh 0 2rem 0;
        min-height: 100vh;
        display: flex;
        align-items: flex-start;
    }
    
    .hero-container-grid {
        grid-template-columns: 1fr;
        gap: 0;
        width: 100%;
    }
    
    .desktop-title {
        display: none;
    }
    
    .mobile-title {
        display: block;
    }
    
    .hero-posicionamento {
        display: none;
    }
    
    .hero-trust-bar {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        margin-top: 2rem;
        padding-top: 1.5rem;
    }
    
    .hero-right-space {
        display: none;
    }
}

/* ==========================================================================
   11. SERVIÇOS SECTION
   ========================================================================== */

.services-section {
    padding: 3.5rem 0;
    background-color: var(--bg-dark-gray);
    border-bottom: 1px solid rgba(255, 95, 0, 0.1);
}

.section-header {
    max-width: 700px;
    margin-bottom: 2.5rem;
}

.section-header.text-center {
    margin-right: auto;
    margin-left: auto;
    text-align: center;
}

.section-title {
    font-size: 3.75rem;
    line-height: 1.05;
    margin-bottom: 1.25rem;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2.75rem;
        text-align: center;
    }
    .section-header {
        text-align: center;
        margin-right: auto;
        margin-left: auto;
    }
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--text-gray);
}

/* Services Grid (Equal Prominence) */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
}

@media (max-width: 991px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}

.service-card {
    background-color: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: 6px;
    padding: 2rem 1.5rem;
    display: flex;
    flex-direction: column;
    transition: var(--transition-smooth);
    position: relative;
}

.service-card:hover {
    border-color: var(--orange-primary);
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4), 0 0 15px var(--orange-glow);
}

.service-icon-wrapper {
    color: var(--orange-primary);
    background-color: rgba(255, 95, 0, 0.05);
    border: 1px solid rgba(255, 95, 0, 0.15);
    width: 50px;
    height: 50px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.service-card-title {
    font-size: 1.35rem;
    margin-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 95, 0, 0.15);
    padding-bottom: 0.5rem;
    color: var(--text-white);
}

.service-card-details {
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.service-detail-p {
    font-size: 0.875rem;
    line-height: 1.5;
    margin-bottom: 0.75rem;
}

.service-detail-p:last-child {
    margin-bottom: 0;
}

.service-card-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    color: var(--orange-primary);
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    width: 100%;
}

.service-card-cta:hover {
    color: var(--text-white);
}

/* CTA Box After Services */
.services-outro-box {
    background-color: var(--bg-black);
    border: 1px solid var(--orange-primary);
    padding: 3rem;
    border-radius: 6px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    max-width: 800px;
    margin: 0 auto;
}

.outro-title {
    font-size: 2rem;
    margin-bottom: 0.75rem;
}

.outro-text {
    font-size: 1.05rem;
    color: var(--text-gray-light);
    margin-bottom: 1.75rem;
}

/* ==========================================================================
   12. SOBRE A EMPRESA
   ========================================================================== */

.about-section {
    padding: 6rem 0;
    background-color: var(--bg-black);
    border-bottom: 1px solid rgba(255, 95, 0, 0.1);
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.about-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 3.5rem;
    align-items: center;
    margin-bottom: 0;
    width: 100%;
}

@media (max-width: 991px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-visual {
        order: 2;
    }
}

@media (max-width: 768px) {
    .about-info {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .about-cta-wrapper {
        display: flex;
        justify-content: center;
        width: 100%;
    }
}

.about-image-frame {
    position: relative;
    border: 1px solid rgba(255, 95, 0, 0.25);
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6), 0 0 30px rgba(255, 95, 0, 0.07);
    aspect-ratio: 4 / 5;
    width: 100%;
}

.about-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.about-img-overlay {
    display: none;
}

.about-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.about-title {
    font-size: 3.75rem;
    line-height: 1.05;
    margin-bottom: 1.25rem;
}

.about-text-content p {
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
}

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

/* Impact Quote Block */
.impact-quote-box {
    background-color: var(--bg-black);
    border: 1px solid var(--orange-primary);
    padding: 1rem 1.5rem;
    margin: 1rem 0;
    border-radius: 4px;
}

.impact-quote-box p {
    font-family: var(--font-body);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-white);
    text-align: center;
}

.about-pillars {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 1rem;
}

@media (max-width: 576px) {
    .about-pillars {
        grid-template-columns: 1fr;
    }
}

.pillar-title {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.25rem;
    color: var(--text-white);
    margin-bottom: 0.75rem;
    text-transform: uppercase;
}

.pillar-text {
    font-size: 0.9rem;
    line-height: 1.5;
}

.pillar-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.pillar-tags span {
    background-color: var(--bg-card);
    border: 1px solid rgba(255, 95, 0, 0.15);
    color: var(--orange-primary);
    padding: 0.4rem 0.8rem;
    border-radius: 2px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
}

/* Diferenciais Section */
.diferenciais-container {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 5rem;
}

.diferenciais-heading {
    text-align: center;
    font-size: 1.75rem;
    margin-bottom: 3rem;
}

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

@media (max-width: 991px) {
    .diferenciais-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .diferenciais-grid {
        grid-template-columns: 1fr;
    }
}

.diferencial-card {
    background-color: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.02);
    padding: 2rem 1.5rem;
    border-radius: 4px;
    text-align: center;
    transition: var(--transition-smooth);
}

.diferencial-card:hover {
    border-color: var(--orange-primary);
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.diferencial-icon {
    color: var(--orange-primary);
    margin-bottom: 1.25rem;
}

.diferencial-card h5 {
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
}

.diferencial-card p {
    font-size: 0.85rem;
    line-height: 1.5;
}

/* ==========================================================================
   13. EQUIPE SECTION
   ========================================================================== */

.team-section {
    padding: 6rem 0;
    background-color: var(--bg-dark-gray);
    border-bottom: 1px solid rgba(255, 95, 0, 0.1);
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.team-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 3.5rem;
    align-items: center;
    width: 100%;
}

@media (max-width: 991px) {
    .team-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

.team-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.team-title {
    font-size: 3.75rem;
    line-height: 1.05;
    margin-bottom: 1rem;
}

.team-text {
    font-size: 0.95rem;
    margin-bottom: 1.25rem;
}

.steps-container {
    margin-top: 0.75rem;
}

.steps-heading {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    color: var(--text-white);
    border-left: 2px solid var(--orange-primary);
    padding-left: 0.75rem;
}

.steps-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
}

.steps-list li {
    display: flex;
    gap: 1.25rem;
}

.step-num {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    color: var(--orange-primary);
    line-height: 1;
    opacity: 0.8;
}

.step-body h6 {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    color: var(--text-white);
    text-transform: none;
    letter-spacing: 0;
}

.step-body p {
    font-size: 0.875rem;
    line-height: 1.4;
}

.team-image-frame {
    position: relative;
    border: 1px solid rgba(255, 95, 0, 0.25);
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6), 0 0 30px rgba(255, 95, 0, 0.07);
    aspect-ratio: 4 / 5;
    width: 100%;
}

.team-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.team-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.team-img-overlay {
    display: none;
}

@media (max-width: 991px) {
    .team-img {
        height: 100%;
    }
}

/* ==========================================================================
   14. DEPOIMENTOS SECTION
   ========================================================================== */

.testimonials-section {
    padding: 3.5rem 0;
    background-color: var(--bg-black);
    border-bottom: 1px solid rgba(255, 95, 0, 0.1);
}

.testimonials-trust-block {
    background-color: var(--bg-card);
    border: 1px solid rgba(255, 95, 0, 0.2);
    border-radius: 6px;
    max-width: 800px;
    margin: 0 auto;
    padding: 4rem 2rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    transition: var(--transition-smooth);
}

.testimonials-trust-block:hover {
    box-shadow: 0 12px 40px rgba(255, 95, 0, 0.1);
}

.trust-value {
    font-family: var(--font-heading);
    font-size: 5rem;
    color: var(--orange-primary);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.trust-stars-large {
    color: #ffd700;
    font-size: 2rem;
    letter-spacing: 0.15em;
    margin-bottom: 1rem;
}

.trust-sub {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    letter-spacing: 0.05em;
}

.trust-paragraph {
    max-width: 600px;
    margin: 0 auto 2.5rem auto;
    font-size: 1.05rem;
    line-height: 1.6;
}

.trust-cta-wrapper {
    margin-top: 0.5rem;
}

/* Reviews Grid — 6 depoimentos, 3 por linha */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

@media (max-width: 991px) {
    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .reviews-grid {
        grid-template-columns: 1fr;
    }
}

.review-card {
    background-color: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: 6px;
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    transition: var(--transition-smooth);
}

.review-card:hover {
    border-color: rgba(255, 95, 0, 0.3);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.review-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--orange-primary), var(--orange-hover));
    color: #fff;
    font-family: var(--font-heading);
    font-size: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    letter-spacing: 0;
}

.review-meta {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.review-name {
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--text-white);
}

.review-stars {
    color: #ffd700;
    font-size: 0.85rem;
    letter-spacing: 0.05em;
}

.review-text {
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--text-gray);
    flex-grow: 1;
    font-style: italic;
}

.review-source {
    font-size: 0.7rem;
    color: var(--text-gray-dark);
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.05em;
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: 0.75rem;
}

/* ==========================================================================
   15. CTA PRINCIPAL SECTION
   ========================================================================== */

.cta-section {
    position: relative;
    padding: 4.5rem 0;
    background-color: var(--bg-black);
    background-image: url('images/FUNDOCTA.png');
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    border-bottom: 1px solid rgba(255, 95, 0, 0.1);
    text-align: center;
}

.cta-bg-overlay {
    position: absolute;
    top: -1px;
    left: 0;
    width: 100%;
    height: calc(100% + 2px);
    background: radial-gradient(circle, rgba(6, 6, 6, 0.85) 0%, rgba(6, 6, 6, 0.98) 100%);
    z-index: 1;
}

.cta-container-box {
    position: relative;
    z-index: 2;
}

.cta-content {
    max-width: 850px;
    margin: 0 auto;
}

.cta-heading {
    font-size: 4.5rem;
    line-height: 1.05;
    margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
    .cta-heading {
        font-size: 3rem;
    }
}

.cta-subheading {
    font-size: 1.25rem;
    color: var(--text-gray-light);
    margin-bottom: 3rem;
}

.cta-action-area {
    margin-bottom: 3rem;
}

.cta-trust-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.85rem;
    color: var(--text-gray);
    font-weight: 500;
}

.cta-trust-badges .dot {
    color: var(--orange-primary);
}

/* ==========================================================================
   16. FAQ SECTION
   ========================================================================== */

.faq-section {
    padding: 3.5rem 0;
    background-color: var(--bg-dark-gray);
    border-bottom: 1px solid rgba(255, 95, 0, 0.1);
    content-visibility: auto;
    contain-intrinsic-size: 500px;
}

.faq-accordion-grid {
    max-width: 800px;
    margin: 2.5rem auto 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-column {
    display: contents;
}

.faq-item {
    background-color: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.02);
    border-radius: 4px;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.faq-item:hover {
    border-color: rgba(255, 95, 0, 0.2);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 1.5rem;
    text-align: left;
    color: var(--text-white);
    font-weight: 600;
    font-size: 1rem;
    gap: 1rem;
}

.faq-question span {
    font-family: var(--font-body);
}

.faq-arrow {
    color: var(--orange-primary);
    flex-shrink: 0;
    transition: var(--transition-smooth);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.faq-answer-inner {
    padding: 0 1.5rem 1.5rem 1.5rem;
    color: var(--text-gray);
    font-size: 0.95rem;
    line-height: 1.6;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    padding-top: 1rem;
}

/* Active FAQ items styles */
.faq-item.active {
    border-color: var(--orange-primary);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

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

/* ==========================================================================
   17. LOCALIZAÇÃO SECTION
   ========================================================================== */

.location-section {
    padding: 3.5rem 0;
    background-color: var(--bg-black);
    border-bottom: 1px solid rgba(255, 95, 0, 0.1);
    content-visibility: auto;
    contain-intrinsic-size: 600px;
}

.location-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: stretch;
}

@media (max-width: 991px) {
    .location-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

.location-title {
    font-size: 3.75rem;
    line-height: 1.05;
    margin-bottom: 2rem;
}

@media (max-width: 768px) {
    .location-title {
        text-align: center;
    }
}

.location-info-block {
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
    margin-bottom: 3rem;
}

.location-info-item {
    display: flex;
    gap: 1.25rem;
}

.location-icon-orange {
    color: var(--orange-primary);
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.location-info-item h6 {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 0.25rem;
    text-transform: none;
    letter-spacing: 0;
}

.location-info-item p {
    font-size: 0.95rem;
}

.badge-area {
    display: inline-block;
    margin-top: 0.5rem;
    font-size: 0.75rem;
    background-color: var(--bg-card);
    color: var(--orange-primary);
    border: 1px solid rgba(255, 95, 0, 0.15);
    padding: 0.25rem 0.5rem;
    border-radius: 2px;
    font-weight: 600;
}

/* Local CTA Box */
.location-cta-box {
    background-color: var(--bg-card);
    border: 1px solid rgba(255, 95, 0, 0.15);
    padding: 2rem;
    border-radius: 4px;
}

.location-cta-box h5 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.location-cta-box p {
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

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

@media (max-width: 768px) {
    .location-cta-box {
        text-align: center;
    }
    .location-cta-buttons {
        justify-content: center;
    }
}

/* Map Wrapper */
.location-map-wrapper {
    min-height: 400px;
    height: 100%;
}

.map-card-container {
    height: 100%;
    min-height: 400px;
    border: 1px solid rgba(255, 95, 0, 0.2);
    border-radius: 6px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.map-placeholder {
    width: 100%;
    height: 100%;
    position: relative;
}

/* Google Maps Iframe Custom Integration */
.google-map-iframe {
    width: 100%;
    height: 100%;
    min-height: 400px;
    filter: invert(90%) hue-rotate(180deg) contrast(1.1); /* Stylize the standard map to match dark mode! */
}

/* Map Glow overlays */
.map-pin-label {
    position: absolute;
    bottom: 1.5rem;
    left: 1.5rem;
    background-color: rgba(6, 6, 6, 0.95);
    border: 1px solid var(--orange-primary);
    padding: 0.75rem 1.25rem;
    border-radius: 4px;
    z-index: 10;
    box-shadow: 0 5px 15px rgba(0,0,0,0.5);
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    pointer-events: none;
}

.map-pin-label strong {
    font-family: var(--font-heading);
    color: var(--orange-primary);
    font-size: 0.875rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.map-pin-label span {
    font-size: 0.75rem;
    color: var(--text-white);
}

/* ==========================================================================
   18. RODAPÉ SECTION
   ========================================================================== */

.main-footer {
    background-color: var(--bg-black);
    border-top: 1px solid rgba(255, 95, 0, 0.25);
    padding: 5rem 0 3rem 0;
    content-visibility: auto;
    contain-intrinsic-size: 400px;
}

.footer-content-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

@media (max-width: 991px) {
    .footer-content-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }
}

@media (max-width: 576px) {
    .footer-content-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
}

.footer-logo {
    margin-bottom: 1.5rem;
}

.footer-desc {
    font-size: 0.875rem;
    line-height: 1.5;
    margin-bottom: 2rem;
}

.footer-copy {
    font-size: 0.75rem;
    color: var(--text-gray-dark);
    margin-bottom: 0.5rem;
}

/* Page Credit Bar (below footer) */
.page-credit {
    background-color: #030303;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    text-align: center;
    padding: 1rem;
    font-size: 0.7rem;
    color: var(--text-gray-dark);
    letter-spacing: 0.03em;
}

.credit-link {
    color: var(--text-gray);
    font-weight: 700;
    transition: var(--transition-fast);
}

.credit-link:hover {
    color: var(--orange-primary);
}

.footer-section-title {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    letter-spacing: 0.05em;
    position: relative;
    display: inline-block;
}

.footer-section-title::after {
    content: '';
    display: block;
    width: 20px;
    height: 2px;
    background-color: var(--orange-primary);
    margin-top: 0.5rem;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a {
    font-size: 0.875rem;
    color: var(--text-gray);
}

.footer-links a:hover {
    color: var(--text-white);
    padding-left: 0.25rem;
}

.footer-contact-info p {
    font-size: 0.875rem;
    margin-bottom: 1.25rem;
    line-height: 1.5;
}

.footer-contact-info p strong {
    color: var(--text-white);
}

.footer-whatsapp-number {
    font-size: 1.1rem;
    color: var(--text-white);
    margin-bottom: 1.25rem;
}

.footer-cta-btn {
    font-size: 0.75rem;
    padding: 0.75rem 1.25rem;
}

/* ==========================================================================
   19. BOTÃO FLUTUANTE DO WHATSAPP
   ========================================================================== */

.whatsapp-floating {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background-color: var(--whatsapp-green);
    color: var(--text-white);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4), 0 0 15px var(--whatsapp-glow);
    z-index: 999;
    transition: var(--transition-smooth);
}

.whatsapp-floating:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.5), 0 0 25px var(--whatsapp-glow);
}

/* Tooltip text styling */
.whatsapp-tooltip {
    position: absolute;
    right: 75px;
    background-color: var(--bg-card);
    border: 1px solid var(--orange-primary);
    color: var(--text-white);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    white-space: nowrap;
    letter-spacing: 0.05em;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    opacity: 0;
    visibility: hidden;
    transform: translateX(10px);
    transition: var(--transition-smooth);
}

.whatsapp-floating:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

/* Pulse keyframes for WhatsApp floating button */
@keyframes whatsappPulse {
    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);
    }
}

.whatsapp-floating {
    animation: whatsappPulse 2s infinite;
}

/* Mobile responsive fixes for WhatsApp button */
@media (max-width: 768px) {
    .whatsapp-floating {
        bottom: 1.5rem;
        right: 1.5rem;
        width: 50px;
        height: 50px;
    }
    
    .whatsapp-tooltip {
        display: none; /* Hide tooltip on small mobile screens */
    }
}

/* WhatsApp Popover Chat Bubble - LIGHT/WHITE THEME */
.whatsapp-chat-bubble {
    position: absolute;
    bottom: 75px;
    right: 0;
    width: 260px;
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.35);
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 1000;
    cursor: default;
}

.whatsapp-chat-bubble.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.bubble-header {
    background-color: #f7f7f9;
    border-bottom: 1px solid #ebeeef;
    padding: 0.6rem 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top-left-radius: 7px;
    border-top-right-radius: 7px;
}

.bubble-header strong {
    font-size: 0.8rem;
    color: #1a1a1a;
    letter-spacing: 0.02em;
}

.bubble-close {
    font-size: 1.2rem;
    color: #888888;
    cursor: pointer;
    line-height: 1;
    transition: var(--transition-fast);
}

.bubble-close:hover {
    color: var(--orange-primary);
}

.bubble-body {
    padding: 1rem;
    font-size: 0.9rem;
    color: #333333;
    line-height: 1.4;
    text-align: left;
    font-weight: 500;
}

/* Chat bubble arrow */
.whatsapp-chat-bubble::after {
    content: '';
    position: absolute;
    bottom: -8px;
    right: 24px;
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 8px solid #ffffff;
}

.whatsapp-chat-bubble::before {
    content: '';
    position: absolute;
    bottom: -9px;
    right: 24px;
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 8px solid #e0e0e0;
}

@media (max-width: 768px) {
    .whatsapp-chat-bubble {
        bottom: 65px;
        right: -10px;
        width: 220px;
    }
    .whatsapp-chat-bubble::after {
        right: 26px;
    }
    .whatsapp-chat-bubble::before {
        right: 26px;
    }
}

