/* =========================================
   VARIÁVEIS GERAIS
   ========================================= */
:root {
    /* Cores Premium Dark */
    --bg-dark: #050505;
    --bg-darker: #000000;
    --bg-card: #111111;
    --text-main: #f4f4f4;
    --text-muted: #999999;
    --border-color: #222222;
    --white: #ffffff;
    
    /* Tipografia */
    --font-heading: 'Syne', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    /* Transições */
    --trans-fast: 0.3s ease;
    --trans-slow: 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

/* =========================================
   RESET E CONFIGURAÇÕES BÁSICAS
   ========================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

ul { list-style: none; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
button { cursor: pointer; font-family: inherit; }

.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 5%;
}

.section {
    padding: 120px 0;
}

.bg-darker { background-color: var(--bg-darker); }
.text-center { text-align: center; }

/* Tipografia */
h1, h2, h3, h4, h5, .logo {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3.5rem);
    margin-bottom: 2rem;
    letter-spacing: -0.02em;
}

/* =========================================
   BOTÕES
   ========================================= */
.btn {
    display: inline-block;
    padding: 16px 32px;
    font-size: 1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 0;
    transition: var(--trans-fast);
    border: 1px solid transparent;
}

.btn-primary {
    background-color: var(--white);
    color: var(--bg-darker);
}

.btn-primary:hover {
    background-color: #d1d1d1;
    transform: translateY(-2px);
}

.btn-outline {
    background-color: transparent;
    color: var(--white);
    border: 1px solid var(--white);
}

.btn-outline:hover {
    background-color: var(--white);
    color: var(--bg-darker);
}

.btn-text {
    background: none;
    color: var(--white);
    padding: 16px 0;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border-bottom: 1px solid transparent;
}

.btn-text:hover {
    gap: 12px;
    border-bottom: 1px solid var(--white);
}

.btn-large { padding: 20px 48px; font-size: 1.1rem; }
.btn-block { width: 100%; text-align: center; }

/* =========================================
   HEADER & NAVEGAÇÃO
   ========================================= */
#header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 24px 0;
    transition: var(--trans-fast);
    border: none;
    box-shadow: none;
    transform: translateZ(0);
    -webkit-font-smoothing: antialiased;
}

#header.scrolled {
    padding: 16px 0;
    background-color: rgba(5, 5, 5, 0.85);
    backdrop-filter: blur(10px);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img, 
.logo svg {
    max-width: 160px !important;
    max-height: 45px !important;
    width: auto !important;
    height: auto !important;
    object-fit: contain !important;
}

.desktop-nav .nav-links {
    display: flex;
    gap: 32px;
}

.nav-links a {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 400;
    color: var(--text-muted);
    transition: var(--trans-fast);
}

.nav-links a:hover {
    color: var(--white);
}

/* Menu Mobile Toggle */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    flex-direction: column;
    gap: 6px;
    z-index: 1001;
}

.mobile-menu-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--white);
    transition: var(--trans-fast);
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background-color: var(--bg-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--trans-slow);
    z-index: 999;
}

.mobile-menu.active { right: 0; }

.mobile-nav-links {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.mobile-nav-links a {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
}

/* =========================================
   HERO SECTION
   ========================================= */
#hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.bg-media {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background: linear-gradient(to right, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.5) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 120px 40px 0;
}

.hero-title {
    font-size: clamp(3rem, 6vw, 5.5rem);
    line-height: 0.95;
    max-width: 1100px;
    margin-bottom: 30px;
    text-transform: uppercase;
    color: #ffffff;
    letter-spacing: -0.03em;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
    max-width: 600px;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

/* =========================================
   SOBRE
   ========================================= */
.sobre-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 64px;
    align-items: center;
}

.sobre-texto p {
    font-size: 1.2rem;
    color: var(--text-muted);
    max-width: 500px;
}

.sobre-indicadores {
    display: flex;
    flex-direction: column;
    gap: 24px;
    border-left: 1px solid var(--border-color);
    padding-left: 40px;
}

.indicador { display: flex; align-items: baseline; gap: 16px; }

.ind-num {
    font-family: var(--font-heading);
    color: var(--text-muted);
    font-size: 0.9rem;
}

.ind-texto {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: 0.05em;
}

/* =========================================
   SERVIÇOS
   ========================================= */
.servicos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 48px;
}

.servico-card {
    background-color: var(--bg-card);
    padding: 40px 32px;
    border: 1px solid var(--border-color);
    transition: var(--trans-fast);
}

.servico-card h3 {
    font-size: 1.4rem;
    margin-bottom: 16px;
}

.servico-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.servico-card:hover {
    background-color: #1a1a1a;
    transform: translateY(-5px);
    border-color: #333;
}

/* =========================================
   PROCESSO
   ========================================= */
.processo-linha {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 64px;
    position: relative;
}

@media(min-width: 768px) {
    .processo-linha::before {
        content: '';
        position: absolute;
        top: 24px;
        left: 0;
        width: 100%;
        height: 1px;
        background-color: var(--border-color);
        z-index: -1;
    }
}

.processo-etapa h4 {
    font-size: 1.4rem;
    margin-bottom: 16px;
    background-color: var(--bg-dark);
    display: inline-block;
    padding-right: 16px;
    white-space: nowrap;
}

.processo-etapa p {
    color: var(--text-muted);
}

/* =========================================
   PORTFÓLIO
   ========================================= */
.portfolio-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 60px;
    margin-bottom: 70px;
}

.section-eyebrow {
    display: block;
    margin-bottom: 20px;
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    color: var(--text-muted);
}

.portfolio-header .section-title {
    margin-bottom: 0;
}

.portfolio-intro {
    max-width: 360px;
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.7;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.portfolio-item {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 10;
    cursor: pointer;
    background-color: var(--bg-card);
}

.portfolio-item img,
.portfolio-item video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
    transition: transform 0.8s cubic-bezier(0.2, 0.65, 0.3, 1);
}

.portfolio-item:hover img,
.portfolio-item:hover video {
    transform: scale(1.06);
}

.item-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    padding: clamp(20px, 3vw, 48px);
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.9) 0%,
        rgba(0, 0, 0, 0.25) 50%,
        transparent 100%
    );
    opacity: 0;
    transition: opacity 0.4s ease;
}

.item-overlay span {
    display: block;
    margin-bottom: 8px;
    font-size: 0.7rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
}

.item-overlay h5 {
    margin: 0;
    font-size: clamp(1.3rem, 2vw, 2rem);
    font-weight: 500;
    color: var(--white);
}

.item-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    font-size: 1.2rem;
    transform: translateY(15px);
    transition: transform 0.4s ease;
}

.portfolio-item:hover .item-overlay {
    opacity: 1;
}

.portfolio-item:hover .item-arrow {
    transform: translateY(0);
}

/* =========================================
   DEPOIMENTOS
   ========================================= */
.depoimentos-header {
    margin-bottom: 64px;
}

.depoimentos-header .section-title {
    margin-bottom: 0;
}

.depoimentos-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.depoimento-card {
    position: relative;
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 48px;
    min-height: 320px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: var(--trans-fast);
}

.depoimento-card:hover {
    border-color: #333;
    transform: translateY(-5px);
}

.depoimento-aspas {
    font-family: Georgia, serif;
    font-size: 5rem;
    line-height: 0.7;
    color: var(--white);
    opacity: 0.25;
    margin-bottom: 24px;
}

.depoimento-texto {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--text-main);
    max-width: 600px;
    margin-bottom: 40px;
}

.depoimento-autor {
    display: flex;
    align-items: center;
    gap: 16px;
    border-top: 1px solid var(--border-color);
    padding-top: 24px;
}

.depoimento-avatar {
    width: 44px;
    height: 44px;
    border: 1px solid #333;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--white);
}

.depoimento-autor strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    margin-bottom: 3px;
}

.depoimento-autor span {
    display: block;
    color: var(--text-muted);
    font-size: 0.8rem;
}

/* =========================================
   DIFERENCIAL
   ========================================= */
.diferencial-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.diferencial-title {
    font-size: clamp(2rem, 5vw, 4rem);
    margin-bottom: 24px;
}

.diferencial-texto {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 48px;
}

.diferencial-lista {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
}

.diferencial-lista li {
    background-color: var(--bg-card);
    padding: 12px 24px;
    border-radius: 40px;
    border: 1px solid var(--border-color);
    font-size: 0.95rem;
}

/* =========================================
   CTA FINAL
   ========================================= */
.cta-section {
    position: relative;
    padding: 160px 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cta-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.cta-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cta-title {
    font-size: clamp(2rem, 5vw, 4rem);
    margin-bottom: 40px;
}

/* =========================================
   CONTATO
   ========================================= */
.contato-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
}

.redes-sociais {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 40px;
}

.redes-sociais a {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 600;
    text-decoration: underline;
    text-decoration-color: transparent;
    transition: var(--trans-fast);
    width: fit-content;
}

.redes-sociais a:hover {
    text-decoration-color: var(--white);
}

form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-group.half-width {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

input, select, textarea {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--border-color);
    padding: 16px 0;
    color: var(--white);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--trans-fast);
}

input:focus, select:focus, textarea:focus {
    outline: none;
    border-bottom-color: var(--white);
}

select {
    color: var(--text-muted);
    cursor: pointer;
    -webkit-appearance: none;
    background-image: url('data:image/svg+xml;utf8,<svg fill="%23ffffff" height="24" viewBox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"><path d="M7 10l5 5 5-5z"/><path d="M0 0h24v24H0z" fill="none"/></svg>');
    background-repeat: no-repeat;
    background-position: right 8px center;
}

select option { background-color: var(--bg-darker); color: var(--white); }
textarea { resize: vertical; min-height: 120px; }
.form-status { margin-top: 16px; font-size: 0.9rem; text-align: center; }

/* =========================================
   FOOTER
   ========================================= */
.footer {
    border-top: 1px solid var(--border-color);
    background-color: var(--bg-darker);
    padding-top: 80px;
    color: var(--text-muted);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    padding-bottom: 60px;
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-logo img {
    height: 40px;
    width: auto;
    display: block;
}

.footer-desc {
    font-size: 0.95rem;
    line-height: 1.6;
    max-width: 380px;
    color: var(--text-muted);
}

.footer-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--white);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    padding: 6px 12px;
    border-radius: 20px;
    width: fit-content;
}

.status-dot {
    width: 8px;
    height: 8px;
    background-color: #22c55e;
    border-radius: 50%;
    box-shadow: 0 0 8px rgba(34, 197, 94, 0.6);
    animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
    0% { transform: scale(0.95); opacity: 0.8; }
    50% { transform: scale(1.2); opacity: 1; }
    100% { transform: scale(0.95); opacity: 0.8; }
}

.footer-col h4 {
    color: var(--white);
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-menu a {
    color: var(--text-muted);
    font-size: 0.95rem;
    transition: var(--trans-fast);
    text-decoration: none;
}

.footer-menu a:hover {
    color: var(--white);
    transform: translateX(4px);
}

.footer-bottom {
    border-top: 1px solid var(--border-color);
    padding: 24px 0;
    font-size: 0.85rem;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

/* =========================================
   LIGHTBOX
   ========================================= */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: var(--trans-fast);
}

.lightbox.active { opacity: 1; pointer-events: auto; }
.lightbox-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background-color: rgba(0,0,0,0.95); }

.lightbox-content {
    position: relative;
    z-index: 2001;
    max-width: 900px;
    width: 90%;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.lightbox-img, .lightbox-video { 
    width: 100%; 
    max-height: 70vh; 
    object-fit: contain; 
}

.lightbox-info { text-align: center; }
.lightbox-category { color: var(--text-muted); text-transform: uppercase; font-size: 0.85rem; letter-spacing: 0.1em; }
.lightbox-title { font-size: 2rem; margin: 8px 0; }
.lightbox-desc { color: var(--text-muted); }

.lightbox-close {
    position: absolute;
    top: -40px;
    right: 0;
    background: none;
    border: none;
    color: var(--white);
    font-size: 2rem;
    transition: var(--trans-fast);
}

.lightbox-close:hover { color: var(--text-muted); transform: scale(0.9); }

/* =========================================
   ANIMAÇÕES DE SCROLL (REVEAL)
   ========================================= */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }

/* =========================================
   NOVO BOTÃO FLUTUANTE DO WHATSAPP (DEFINITIVO)
   ========================================= */
a.whatsapp-float {
    position: fixed !important;
    bottom: 30px !important;
    right: 30px !important;
    left: auto !important;
    top: auto !important;
    width: 60px !important;
    height: 60px !important;
    background-color: #25d366 !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4) !important;
    z-index: 99999 !important;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease !important;
}

a.whatsapp-float:hover {
    transform: scale(1.1) translateY(-3px) !important;
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6) !important;
}

a.whatsapp-float svg {
    width: 32px !important;
    height: 32px !important;
    max-width: 32px !important;
    max-height: 32px !important;
    fill: #ffffff !important;
    margin: 0 !important;
}

/* Ajuste responsivo para celulares */
@media (max-width: 768px) {
    a.whatsapp-float {
        bottom: 20px !important;
        right: 20px !important;
        width: 52px !important;
        height: 52px !important;
    }
    a.whatsapp-float svg {
        width: 26px !important;
        height: 26px !important;
    }
}
/* Ajuste para dispositivos móveis para não tapar conteúdos importantes */
@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 52px;
        height: 52px;
    }
    .whatsapp-float svg {
        width: 28px;
        height: 28px;
    }
}
/* =========================================
   RESPONSIVIDADE MÓVEL OTIMIZADA
   ========================================= */

/* =========================================
   AJUSTE DE RESPONSIVIDADE DO MENU (< 992px)
   Barra completa visível em notebooks (1024px+) e desktops.
   ========================================= */

@media (max-width: 992px) {
    .container { 
        padding: 0 5px; 
    }

    .header-content {
        padding: 0 16px;
    }
    .hero-section, .hero-content {
        padding-top: 40px !important;
        margin-top: 0 !important;
        min-height: auto !important;
    }
    /* O menu desktop dá lugar ao menu mobile em tablets e celulares */
    .desktop-nav, .nav-btn { 
        display: none; 
    }
    
    .mobile-menu-btn { 
        display: flex; 
        background: none;
        border: none;
        padding: 8px;
        cursor: pointer;
    }
    
    .mobile-menu-btn.active span:nth-child(1) { transform: translateY(4px) rotate(45deg); }
    .mobile-menu-btn.active span:nth-child(2) { transform: translateY(-4px) rotate(-45deg); }
    
    .sobre-grid, 
    .contato-grid { 
        grid-template-columns: 1fr; 
        gap: 40px; 
    }
    
    .sobre-indicadores { 
        border-left: none; 
        border-top: 1px solid var(--border-color); 
        padding-left: 0; 
        padding-top: 32px; 
        flex-direction: row; 
        flex-wrap: wrap;
        justify-content: space-between;
    }
    
    .form-group.half-width { 
        grid-template-columns: 1fr; 
        gap: 24px; 
    }
    
    .portfolio-grid { 
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); 
    }

    .portfolio-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
        margin-bottom: 40px;
    }
}

@media (max-width: 768px) {
    .section { padding: 60px 0; }
    
    .hero-title { 
        font-size: clamp(2.2rem, 8vw, 3.2rem); 
        line-height: 1.1;
        margin-bottom: 20px;
    }

    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 30px;
    }

    .hero-content {
        padding: 100px 20px 0;
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
        gap: 16px;
    }

    .hero-actions .btn {
        width: 100%;
        text-align: center;
    }
    
    .cta-title { font-size: 1.8rem; }
    
    .footer-content { 
        grid-template-columns: 1fr; 
        gap: 32px; 
        text-align: center; 
        align-items: center; 
    }

    .footer-desc { max-width: 100%; }

    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .portfolio-item {
        aspect-ratio: 4 / 3;
    }

    .item-overlay {
        opacity: 1; 
        background: linear-gradient(
            to top,
            rgba(0, 0, 0, 0.85) 0%,
            transparent 100%
        );
        padding: 20px;
    }

    .item-arrow {
        display: none;
    }

    .sobre-indicadores {
        flex-direction: column;
        gap: 16px;
    }

    .diferencial-lista li {
        padding: 10px 18px;
        font-size: 0.85rem;
    }

    .depoimentos-grid {
        grid-template-columns: 1fr;
    }

    .depoimento-card {
        padding: 32px;
        min-height: auto;
    }

    .depoimento-texto {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .container { padding: 0 5%; }
    .hero-title { font-size: 2rem; }
    .section-title { font-size: 1.8rem; }
    .btn { padding: 14px 24px; font-size: 0.9rem; }
    .servico-card, .depoimento-card { padding: 24px 20px; }
    .lightbox-content { width: 95%; gap: 16px; }
    .lightbox-title { font-size: 1.5rem; }
}