/* =========================================
   ADVOCACIA PREMIUM - TEMA AZUL MARINHO
   ========================================= */

   :root {
    /* Color Palette */
    --bg-dark: #191945; /* New Navy Blue */
    --bg-darker: #0d0d2b; /* Slightly darker shade */
    --bg-light: #f4f6f9; /* Off-white for clear sections */
    
    --surface-dark: rgba(25, 25, 69, 0.6);
    --surface-light: rgba(255, 255, 255, 1);
    
    --accent: #E3B349; /* Premium Gold/Copper */
    --accent-hover: #c49635;
    --accent-glow: rgba(227, 179, 73, 0.4);
    
    --text-light: #ffffff;
    --text-muted: #94a3b8;
    --text-dark: #1e293b;
    --text-dark-muted: #475569;
    
    /* Typography */
    --font-heading: 'Cinzel', serif;
    --font-body: 'Outfit', sans-serif;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    --transition-slow: 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    overflow-x: hidden;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-light);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    cursor: none; /* Custom cursor */
}

/* Custom Cursor */
.cursor-dot {
    position: fixed;
    top: 0;
    left: 0;
    width: 8px;
    height: 8px;
    background-color: var(--accent);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 9999;
    transition: width 0.2s, height 0.2s;
}

.cursor-outline {
    position: fixed;
    top: 0;
    left: 0;
    width: 40px;
    height: 40px;
    border: 1px solid rgba(193, 155, 108, 0.5);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 9998;
    transition: width 0.2s, height 0.2s, background-color 0.2s;
}

body:hover .cursor-dot { opacity: 1; }
body:hover .cursor-outline { opacity: 1; }

a:hover ~ .cursor-outline, button:hover ~ .cursor-outline, .magnetic-btn:hover ~ .cursor-outline {
    width: 60px;
    height: 60px;
    background-color: rgba(193, 155, 108, 0.1);
    border-color: var(--accent);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.2;
}

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

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

/* Utilities */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

.text-center { text-align: center; }
.text-accent { color: var(--accent); }
.text-light { color: var(--text-light) !important; }
.mt-2 { margin-top: 2rem; }
.pt-0 { padding-top: 0 !important; }
.relative-z { position: relative; z-index: 10; }

.btn-icon {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
}

.btn-icon i {
    font-size: 1.3em;
}

.section {
    padding: 8rem 0;
    position: relative;
    --border-width: 0%;
}

.section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: var(--border-width);
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
    z-index: 10;
    transition: width 1.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.section.border-visible {
    --border-width: 80%; /* Expande até 80% da tela para um visual elegante */
}

.dark-section { 
    background-color: var(--bg-dark); 
}

.light-section { 
    background-color: var(--bg-light); 
    color: var(--text-dark);
}

.light-section .section-subtitle { color: var(--accent); }
.light-section .section-desc { color: var(--text-dark-muted); }

/* =========================================
   SEÇÃO: RECUPERAÇÃO DE CRÉDITO (MOVIDO PARA O TOPO)
   ========================================= */

.cobranca-section {
    background-color: #0d0d2b; /* Fallback para var(--bg-darker) */
    background-color: var(--bg-darker);
    position: relative;
    overflow: hidden;
}

.cobranca-grid {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 1.5rem;
    margin: 3.5rem 0;
    width: 100%;
}

.cobranca-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 12px;
    padding: 2.5rem 2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.cobranca-icon i {
    font-size: 2.4rem !important;
    color: #c19b6c !important; /* Fallback para var(--accent) */
    color: var(--accent) !important;
    margin-bottom: 1.2rem;
    display: inline-block;
}

.cobranca-card h3 {
    font-size: 1.1rem;
    color: #ffffff;
    margin-bottom: 0.8rem;
}

.cobranca-card p {
    color: rgba(255,255,255,0.7);
    font-size: 0.95rem;
    line-height: 1.7;
}

.cobranca-como-funciona {
    display: grid !important;
    grid-template-columns: 1fr 2fr !important;
    gap: 4rem;
    align-items: center;
    margin-top: 2rem;
    padding: 3rem 3.5rem;
    background: rgba(255,255,255,0.025);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 16px;
    border-left: 4px solid #c19b6c;
}

.cobranca-steps {
    list-style: none !important;
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 2rem;
    padding: 0 !important;
    margin: 0 !important;
}

.cobranca-steps li {
    display: flex;
    gap: 1.2rem;
    align-items: flex-start;
}

.step-num {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 700;
    color: transparent !important;
    -webkit-text-stroke: 1px #c19b6c !important;
    line-height: 1;
    flex-shrink: 0;
}

@media (max-width: 992px) {
    .cobranca-grid { grid-template-columns: repeat(2, 1fr) !important; }
}

@media (max-width: 768px) {
    .cobranca-grid { grid-template-columns: 1fr !important; }
    .cobranca-como-funciona {
        grid-template-columns: 1fr !important;
        padding: 2rem 1.5rem;
    }
    .cobranca-steps { grid-template-columns: 1fr !important; }
}

/* Benefícios Grid (Centralizado) */
.beneficios-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.2rem;
    max-width: 550px;
    margin: 3rem auto 0 auto;
}

.beneficio-item {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    background: rgba(255,255,255,0.03);
    padding: 1.2rem 1.8rem;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.08);
    transition: var(--transition-normal);
    width: 100%;
}

.beneficio-item:hover {
    background: rgba(255,255,255,0.06);
    border-color: var(--accent);
    transform: translateX(5px);
}

.beneficio-item i {
    color: var(--accent);
    font-size: 1.6rem;
    flex-shrink: 0;
}

.beneficio-item span {
    color: var(--text-light);
    font-size: 1.05rem;
    font-weight: 300;
}

/* Buttons */
.btn-primary, .btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-family: var(--font-body);
    font-weight: 600;
    letter-spacing: 1px;
    border-radius: 4px;
    transition: var(--transition-normal);
    cursor: none; /* Let custom cursor handle it */
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary {
    background: var(--accent);
    color: var(--bg-dark);
    padding: 1rem 2rem;
    border: 1px solid var(--accent);
}

.btn-primary:hover {
    background: var(--accent-hover);
    box-shadow: 0 4px 12px var(--accent-glow);
    transform: translateY(-2px);
}

.btn-large {
    padding: 1.2rem 3rem;
    font-size: 1.1rem;
}

.btn-secondary {
    background: transparent;
    color: var(--text-light);
    padding: 1rem 2rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--text-light);
    transform: translateY(-2px);
}

/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition-normal);
    padding: 1.5rem 0;
    border-bottom: 1px solid transparent;
}

header.scrolled {
    background: rgba(25, 25, 69, 0.75); /* Transparente Azulado baseado na cor principal */
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 69, 0.05);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.header-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 4rem;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-img {
    height: 50px;
    width: auto;
    object-fit: contain;
    transition: var(--transition-normal);
}

header.scrolled .logo-img {
    height: 40px; /* Logo shrinks slightly when scrolled */
}

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

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

.hover-underline {
    font-size: 0.95rem;
    font-weight: 400;
    letter-spacing: 1px;
    position: relative;
    color: var(--text-light);
}

.hover-underline::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--accent);
    transition: var(--transition-normal);
}

.hover-underline:hover::after {
    width: 100%;
}

.nav-links .btn-primary {
    padding: 0.6rem 1.5rem;
    font-size: 0.9rem;
}

.mobile-menu-btn {
    display: none;
    font-size: 1.8rem;
    color: var(--text-light);
    cursor: none;
    margin-left: auto;
}

/* Hero Section */
.hero {
    height: 100vh;
    min-height: 800px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-bg-image {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-image: url('assets/hero-jeferson.png.png');
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    z-index: 1;
}

.hero-overlay-gradient {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: linear-gradient(to right, var(--bg-dark) 30%, rgba(13, 13, 43, 0.55) 60%, rgba(13, 13, 43, 0.15) 100%);
    z-index: 2;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
    gap: 4rem;
    height: 100%;
    padding-top: 80px;
    z-index: 3;
    position: relative;
}

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

.badge {
    display: inline-block;
    padding: 0.4rem 1rem;
    border: 1px solid rgba(193, 155, 108, 0.3);
    border-radius: 50px;
    color: var(--accent);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    background: rgba(193, 155, 108, 0.05);
    backdrop-filter: blur(4px);
}

.hero h1 {
    font-size: clamp(3rem, 5vw, 4.5rem);
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
}

.hero .description {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    max-width: 550px;
    font-weight: 300;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.hero-stats {
    display: flex;
    gap: 3rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 2rem;
}

.stat-num {
    display: block;
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--text-light);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-text {
    font-size: 0.9rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-image-wrapper {
    position: relative;
    height: 80vh;
    display: flex;
    justify-content: center;
    align-items: flex-end;
}

.hero-image {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 2;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.5);
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.glass-decoration {
    position: absolute;
    width: 150px;
    height: 150px;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    z-index: 3;
    border-radius: 12px;
}

.top-right {
    top: 10%; right: -20px;
    width: 100px; height: 100px;
    transform: rotate(15deg);
}

.bottom-left {
    bottom: 10%; left: -30px;
    width: 120px; height: 120px;
    transform: rotate(-10deg);
}

/* Sections Generics */
.section-subtitle {
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.section-title {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    margin-bottom: 1.5rem;
}

.section-desc {
    color: var(--text-muted);
    font-size: 1.15rem;
    margin-bottom: 2rem;
    font-weight: 300;
}

.centered-desc {
    max-width: 650px;
    margin: 0 auto 4rem auto;
}

.section-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.align-center {
    align-items: center;
}

/* Áreas de Atuação (Light Section) */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--surface-light);
    padding: 3rem 2rem;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    border: 1px solid rgba(0,0,0,0.05);
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
    --mouse-x: 50%;
    --mouse-y: 50%;
    display: flex;
    flex-direction: column;
}

.service-card::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(circle at var(--mouse-x) var(--mouse-y), rgba(193, 155, 108, 0.08), transparent 60%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
    pointer-events: none;
}

.service-card > * {
    position: relative;
    z-index: 1;
}

.service-card::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 100%; height: 4px;
    background: var(--accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
    z-index: 2;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08), 0 0 0 1px rgba(193, 155, 108, 0.2);
}

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

.service-card:hover::after {
    transform: scaleX(1);
}

.card-icon {
    font-size: 3rem;
    color: var(--accent);
    margin-bottom: 1.5rem;
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: inline-block;
}

.service-card:hover .card-icon {
    transform: scale(1.15) translateY(-5px);
}

.service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.service-card p {
    color: var(--text-dark-muted);
    margin-bottom: 1.5rem;
    font-weight: 300;
    flex-grow: 1;
}

.card-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 0.95rem;
}

.card-link i {
    transition: transform 0.3s ease;
}

.card-link:hover { color: var(--accent); }
.card-link:hover i { transform: translateX(5px); }

/* Nosso Trabalho (Dark Section) */
.process-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-top: 3rem;
}

.process-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    text-align: center;
    padding: 2.5rem 2rem;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 12px;
    transition: var(--transition-normal);
}

.process-item:hover {
    background: rgba(255,255,255,0.06);
    border-color: rgba(227,179,73,0.2);
    transform: translateY(-6px);
}

.process-number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: transparent;
    -webkit-text-stroke: 1px var(--accent);
    font-weight: 700;
    line-height: 1;
}

.process-text h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.process-text p {
    color: var(--text-muted);
    font-size: 0.95rem;
    font-weight: 300;
    line-height: 1.6;
}

.image-parallax-wrapper {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    height: 600px;
}

.parallax-img {
    width: 100%;
    height: 120%; /* Extra height for parallax */
    object-fit: cover;
}

.glass-floating-card {
    position: absolute;
    bottom: 40px; left: -30px;
    background: rgba(5, 11, 20, 0.7);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255,255,255,0.05);
    padding: 2rem;
    border-radius: 8px;
    max-width: 300px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
    border-left: 3px solid var(--accent);
}

.glass-floating-card i {
    color: var(--accent);
    font-size: 1.2rem;
    margin-bottom: 1rem;
    display: inline-block;
}

.quote {
    font-style: italic;
    font-size: 0.95rem;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.author {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* CTA Section */
.cta-section {
    background-image: url('assets/imagem fim png.png');
    background-size: cover;
    background-position: center center;
    background-attachment: scroll; /* 'fixed' causa bug de renderização em navegadores modernos no desktop */
    text-align: center;
    padding: 10rem 0;
}

.cta-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(4, 9, 17, 0.85); /* #040911 overlay */
    z-index: 1;
}



/* Footer */
.footer {
    background: #040911;
    padding: 5rem 0 2rem 0;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-brand p {
    color: var(--text-muted);
    margin-top: 1.5rem;
    font-weight: 300;
    max-width: 300px;
}

.footer h4 {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: var(--text-light);
    letter-spacing: 1px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

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

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

.footer-contact p {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.footer-contact i {
    color: var(--accent);
    font-size: 1.2rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.05);
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* Sticky WhatsApp */
.sticky-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 35px;
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.3);
    z-index: 1000;
    transition: var(--transition-normal);
    animation: pulse-wa 2s infinite;
}

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

.sticky-whatsapp:hover {
    transform: scale(1.1);
    background-color: #1ebe57;
}

.sticky-whatsapp .tooltip {
    position: absolute;
    right: 80px;
    background: rgba(5, 11, 20, 0.9);
    color: #fff;
    padding: 8px 12px;
    border-radius: 4px;
    font-size: 0.85rem;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-fast);
    border: 1px solid rgba(255,255,255,0.1);
}

.sticky-whatsapp:hover .tooltip {
    opacity: 1;
    visibility: visible;
}

/* Responsive */
@media (max-width: 992px) {
    .hero-grid, .section-grid {
        grid-template-columns: 1fr;
    }
    
    .hero { height: auto; min-height: 100vh; }
    .hero-image-wrapper { height: 60vh; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .glass-floating-card { left: 20px; }
}

@media (max-width: 768px) {
    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(5, 11, 20, 0.95);
        backdrop-filter: blur(10px);
        flex-direction: column;
        padding: 2rem;
        border-top: 1px solid rgba(255,255,255,0.05);
        display: none;
    }
    
    .nav-links.active { display: flex; }
    .mobile-menu-btn { display: block; }
    
    .cursor-dot, .cursor-outline { display: none; }
    body { cursor: auto; }
    a, button { cursor: pointer; }

    /* Header & Navigation */
    header { padding: 1rem 0; }
    .header-container { padding: 0 1.2rem; }
    .logo { font-size: 1.15rem; gap: 0.4rem; }
    .logo-icon { font-size: 1.4rem; }

    /* Layout and Spacing */
    .section { padding: 4rem 0; }
    .cta-section { 
        padding: 5rem 0; 
        background-position: center center;
    }
    
    /* Hero Section */
    .hero-bg-image {
        background-position: 80% top; /* Traz o rosto da direita para o centro */
    }

    .hero-overlay-gradient {
        background: linear-gradient(to bottom, rgba(25, 25, 69, 0.8) 0%, rgba(13, 13, 43, 0.85) 100%);
        backdrop-filter: blur(4px);
        -webkit-backdrop-filter: blur(4px);
    }

    .hero-grid { 
        gap: 2rem; 
        padding-top: 120px; 
        text-align: center;
    }
    
    .hero h1 { font-size: 2.5rem; }
    .hero .description { margin: 0 auto 2rem auto; }
    .hero-buttons { justify-content: center; }
    
    .hero-stats { 
        flex-direction: row; 
        justify-content: center; 
        flex-wrap: wrap; 
        gap: 2rem; 
    }
    
    .hero-image-wrapper { height: 400px; }
    
    /* Typography & Grids */
    .section-title { font-size: 2rem; }
    .cards-grid { grid-template-columns: 1fr; gap: 1.5rem; }
    
    /* Work Section */
    .work-content { text-align: center; }
    .work-content .btn-primary { margin: 0 auto; display: inline-flex; }
    
    .process-list {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .process-item {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
        align-items: center;
        padding: 2rem 1.5rem;
    }
    
    .image-parallax-wrapper { height: 400px; }
    .glass-floating-card { 
        bottom: 20px; 
        left: 0;
        right: 0;
        margin: 0 auto;
        transform: none;
        width: 90%; 
        max-width: none; 
        padding: 1.5rem; 
    }
    
    /* Footer */
    .footer { padding: 3rem 0 1.5rem 0; text-align: center; }
    .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
    .footer-brand p { margin: 1.5rem auto 0 auto; }
    .footer-contact {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .footer-contact p { 
        justify-content: flex-start; 
        align-items: flex-start;
        text-align: left; /* Crucial para o texto não fugir do ícone ao quebrar linha */
        width: 100%;
        max-width: 280px;
        gap: 0.5rem;
    }
    .footer-contact i { 
        flex-shrink: 0; 
        margin-top: 4px;
        width: 18px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero h1 { font-size: 2.2rem; }
    .btn-primary, .btn-secondary { width: 100%; }
    .hero-image-wrapper { height: 300px; }
    .image-parallax-wrapper { height: 300px; }
    
    .sticky-whatsapp {
        width: 50px;
        height: 50px;
        font-size: 28px;
        bottom: 20px;
        right: 20px;
    }
}



/* Depoimentos / Carousel */
/* Depoimentos / Grid Estático */
.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

@media (max-width: 992px) {
    .testimonials-grid {
        display: flex !important;
        flex-direction: column !important;
        gap: 2rem;
    }
    
    .testimonial-image-col {
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
    }

    .testimonial-img-custom {
        object-position: center top;
    }
}

.testimonial-img-custom {
    width: 100%;
    display: block;
    object-fit: cover;
    object-position: center center;
    aspect-ratio: 4/5;
}

.testimonial-card {
    background: var(--bg-darker);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 2.5rem;
    border-radius: 12px;
    width: 100%;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: rgba(227, 179, 73, 0.3); /* Accent Glow */
}

.testimonial-card .stars {
    color: var(--accent);
    margin-bottom: 1rem;
    font-size: 1.2rem;
    display: flex;
    gap: 0.2rem;
}

.testimonial-card .quote {
    font-size: 1.05rem;
    font-style: italic;
    line-height: 1.6;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.testimonial-card .author {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 1px;
}
