/* --- CONFIGURAÇÕES GERAIS E VARIÁVEIS --- */
:root {
    --primary: #f39c12;      /* Amarelo Elétrico */
    --primary-dark: #d35400;
    --dark: #0f0f0f;         /* Preto Profundo */
    --dark-grey: #1c1c1c;    /* Cinza Grafite */
    --light: #ffffff;
    --bg-body: #f4f7f6;
    --text-muted: #a0a0a0;
}

body {
    font-family: 'Inter', 'Segoe UI', sans-serif;
    background-color: var(--bg-body);
    color: var(--dark);
    margin: 0;
}

/* HEADER */

.site-header {
    background-color: var(--dark);
    padding: 15px 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Marca / Logo */
.brand-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--light);
}

.brand-logo img {
    height: 120px; /* ALTERAR ESSE TAMANHO NO PROPRIO ARQUIVO DE IMG, AJUSTAR UM FIXO PARA MENOS PESO DO SITE */
    width: auto;
    margin-right: 15px;
}

.brand-name {
    font-size: 1.5rem;
    font-weight: 800;
}

/* Navegação Desktop */
.main-nav ul {
    list-style: none;
    display: flex;
    align-items: center;
    margin: 0;
    padding: 0;
    gap: 30px; /* Aumentei um pouquinho o respiro entre os links */
}

/* Estilo base dos links */
.main-nav a {
    color: var(--light);
    text-decoration: none;
    font-weight: 500;
    font-size: 18px;
    transition: color 0.3s ease;
    position: relative; /* Essencial para a linha animada não quebrar o layout */
    padding-bottom: 5px; /* Espaço para a linha respirar embaixo do texto */
}

/* Efeito de cor no texto */
.main-nav a:hover {
    color: var(--primary);
}

.main-nav a:not(.btn-nav-contact)::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px; /* Espessura da linha */
    background-color: var(--primary);
    
    /* Prepara a animação: esconde a linha encolhendo-a */
    transform: scaleX(0);
    transform-origin: right; /* Quando o mouse sair, ela encolhe para a direita */
    transition: transform 0.3s ease-in-out;
}

/* Quando o mouse passa por cima: a linha cresce */
.main-nav a:not(.btn-nav-contact):hover::after {
    transform: scaleX(1);
    transform-origin: left; /* Ela nasce da esquerda para a direita */
}

/* Botões do Header */
.btn-nav-contact {
    position: relative;
    /* Um degradê mais suave, menos "alaranjado" */
    background: linear-gradient(135deg, var(--primary) 0%, #f1c40f 100%);
    color: var(--dark) !important;
    
    /* Diminuí um pouco o padding para não ficar gigante */
    padding: 10px 22px; 
    border-radius: 50px;
    
    /* Peso 700 é negrito, mas não "gordo" como o 800 */
    font-weight: 700;
    font-size: 0.9rem;
    text-decoration: none;
    
    display: flex;
    align-items: center;
    gap: 8px;
    
    /* Transição suave para tudo */
    transition: all 0.3s ease;
    
    /* Sombra bem sutil, só para dar profundidade */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    border: none;
    overflow: hidden;
}

/* Ícone de WhatsApp */
.btn-nav-contact i {
    font-size: 1.1rem;
}

/* Efeito de Brilho (Shine) - Mantive, mas ele só acontece no HOVER */
.btn-nav-contact::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        120deg,
        transparent,
        rgba(255, 255, 255, 0.3),
        transparent
    );
    transition: all 0.6s;
}

 
/* Botão hamburger — só visível em mobile */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    border-radius: 8px;
    transition: background 0.2s ease;
}
 
.mobile-menu-btn:hover { background: rgba(255,255,255,0.08); }
 
.mobile-menu-btn span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--light);
    border-radius: 2px;
    transition: all 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
    transform-origin: center;
}
 
/* Animação das 3 linhas → X */
.mobile-menu-btn.is-active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.mobile-menu-btn.is-active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.mobile-menu-btn.is-active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
 
/* Overlay escuro */
.mobile-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    z-index: 998;
    opacity: 0;
    transition: opacity 0.35s ease;
    backdrop-filter: blur(2px);
}
 
.mobile-overlay.is-visible {
    display: block;
    opacity: 1;
}
 
/* Drawer lateral */
.mobile-drawer {
    position: fixed;
    top: 0;
    right: -100%;
    width: min(320px, 85vw);
    height: 100dvh;
    background: var(--dark-grey);
    z-index: 999;
    display: flex;
    flex-direction: column;
    transition: right 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: -8px 0 40px rgba(0,0,0,0.4);
}
 
.mobile-drawer.is-open { right: 0; }
 
/* Cabeçalho do drawer */
.drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 24px;
    border-bottom: 1px solid rgba(255,255,255,0.07);
}
 
.drawer-logo {
    font-size: 1rem;
    font-weight: 800;
    color: var(--light);
    letter-spacing: 0.5px;
}
 
.drawer-close {
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,0.07);
    border: none;
    border-radius: 8px;
    color: var(--light);
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease;
}
 
.drawer-close:hover { background: rgba(255,255,255,0.14); }
 
/* Links de navegação */
.drawer-nav {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 16px 16px 0;
    gap: 4px;
    overflow-y: auto;
}
 
.drawer-link {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 16px;
    border-radius: 12px;
    text-decoration: none;
    color: rgba(255,255,255,0.75);
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.2s ease;
}
 
.drawer-link i {
    font-size: 1.1rem;
    color: var(--primary);
    width: 20px;
    text-align: center;
    flex-shrink: 0;
}
 
.drawer-link:hover {
    background: rgba(255,255,255,0.06);
    color: var(--light);
    transform: translateX(4px);
}
 
/* Rodapé do drawer — botões de acção */
.drawer-footer {
    padding: 20px 16px 32px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    border-top: 1px solid rgba(255,255,255,0.07);
}
 
.drawer-whatsapp,
.drawer-phone {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px;
    border-radius: 14px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.92rem;
    transition: all 0.25s ease;
}
 
.drawer-whatsapp {
    background: #25D366;
    color: #fff;
}
 
.drawer-whatsapp:hover { background: #1ebe5a; }
 
.drawer-phone {
    background: rgba(255,255,255,0.07);
    color: var(--light);
    border: 1px solid rgba(255,255,255,0.1);
}
 
.drawer-phone:hover { background: rgba(255,255,255,0.12); }
 
/* Mostrar hamburger e esconder nav desktop em mobile */
@media (max-width: 992px) {
    .mobile-menu-btn { display: flex; }
    .mobile-nav      { display: none; } /* botão whatsapp antigo — ocultar */
}

/* --- ESTADOS DE INTERAÇÃO --- */

.btn-nav-contact:hover {
    /* Ele cresce de leve, sem exageros */
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(243, 156, 18, 0.3);
    /* No hover ele ganha um pouco mais de vida */
    filter: brightness(1.05);
}

/* O brilho atravessa o botão apenas quando o mouse passa */
.btn-nav-contact:hover::before {
    left: 100%;
}

/* O ícone dá um leve "pulo" para cima */
.btn-nav-contact:hover i {
    transform: translateY(-1px);
}

.mobile-nav {
    display: none; /* Escondido no Desktop */
}

.btn-mobile-contact {
    background-color: var(--primary);
    color: var(--dark);
    padding: 8px 15px;
    border-radius: 8px;
    font-size: 1.2rem;
}

/* --- HERO SECTION (BANNER PRINCIPAL) --- */
.hero-section {
    position: relative;
    padding: 100px 0 160px 0;
    text-align: center;
    /* Gradiente sobre a imagem de fundo */
    background: linear-gradient(135deg, rgba(15,15,15,0.95) 0%, rgba(44,44,44,0.8) 100%), 
                url('../img/carroDeLado.jpg') no-repeat center center;
    background-size: cover;
    background-attachment: fixed;
    clip-path: polygon(0 0, 100% 0, 100% 90%, 0% 100%);
    color: var(--light);
}

.hero-section h1 {
    font-size: clamp(2.5rem, 5vw, 4rem); /* Ajusta tamanho conforme a tela */
    font-weight: 900;
    margin-bottom: 20px;
}

.hero-section h1 span {
    color: var(--primary);
    text-shadow: 0 0 20px rgba(243, 156, 18, 0.3);
}

.hero-section p {
    max-width: 700px;
    margin: 0 auto 40px auto;
    font-size: 1.2rem;
    opacity: 0.9;
    color: var(--light) !important; 
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* --- BOTÕES DO HERO --- */
.btn-hero-main {
    background: var(--primary);
    color: var(--dark);
    text-decoration: none;
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: bold;
    transition: 0.3s;
    box-sizing: border-box;
}

.btn-hero-outline {
    border: 2px solid var(--light);
    color: var(--light);
    text-decoration: none;
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: bold;
    transition: 0.3s;
    box-sizing: border-box;
}

.btn-hero-main:hover { background: var(--light); }
.btn-hero-outline:hover { background: var(--light); color: var(--dark); }

/* --- SEÇÃO CTA (SOCORRO EMERGENCIAL) --- */
.cta-emergency {
    margin-top: 60px; /* Faz a caixa subir sobre o hero */
    position: relative;
    z-index: 10;
    margin-bottom: 80px;
}

.cta-box {
    background: var(--dark-grey);
    color: var(--light);
    padding: 50px;
    border-radius: 30px;
    text-align: center;
    border-left: 8px solid var(--primary);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.btn-cta {
    display: inline-block;
    background: var(--primary);
    color: var(--dark);
    padding: 10px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 19px;
    font-weight: bold;
    margin-top: 20px;
    transition: 0.3s;
}

.outher-cnt {
    display: inline-block;
    background: var(--text-muted);
    color: var(--dark);
    padding: 6px 10px;
    border-radius: 15px;
    text-decoration: none;
    font-weight: bold;
    margin-top: 20px;
    transition: 0.3s;
}

.btn-cta:hover { background: var(--light); }
.outher-cnt:hover { background: var(--light); color: var(--dark); }

/* --- SEÇÃO DE SERVIÇOS --- */
.services-section {
    padding: 60px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-weight: 800;
    font-size: 2.5rem;
}

.section-title-line {
    height: 5px;
    width: 60px;
    background: var(--primary);
    margin: 10px auto 20px auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); /* Responsividade automática */
    gap: 30px;
}

/* --- PREMIUM BASIC SECTION --- */
.premium-basic-section {
    padding: 100px 0;
    background-color: #fcfdfe;
}

.section-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.tag-line {
    color: var(--primary);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.8rem;
    display: block;
    margin-bottom: 10px;
}

.section-intro h2 {
    font-size: 2.5rem;
    font-weight: 900;
    color: #1a1a1a;
}

/* --- GRID E CARDS MELHORADOS --- */
.services-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.service-card-v2 {
    background: #ffffff;
    border-radius: 24px;
    padding: 40px 30px;
    position: relative;
    border: 2px solid var(--dark);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* Linha de destaque no topo */
.card-line-top {
    position: absolute;
    top: 0; left: 50%;
    width: 0; height: 4px;
    background: var(--primary);
    transition: all 0.4s ease;
    border-radius: 0 0 4px 4px;
    transform: translateX(-50%);
}

/* --- NOVO ESTILO DO ÍCONE INTEGRADO --- */
.card-icon-wrapper {
    position: relative;
    width: 65px;
    height: 65px;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-main {
    font-size: 2.2rem;
    color: var(--dark);
    z-index: 2;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.icon-circle-bg {
    position: absolute;
    width: 100%; height: 100%;
    background: rgba(243, 156, 18, 0.12);
    border-radius: 18px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Corpo do Card */
.card-body-v2 h4 {
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 15px;
    color: #222;
}

.card-body-v2 p {
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 30px;
    font-size: 1rem;
}

/* Botão de Ação */
.btn-action-simple {
    text-decoration: none;
    color: var(--dark);
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px;
    background: #f8f9fa;
    border-radius: 14px;
    transition: all 0.3s ease;
}

.btn-action-simple i {
    color: var(--primary);
    transition: transform 0.3s ease;
}

/* --- INTERAÇÕES NO HOVER --- */
.service-card-v2:hover {
    transform: translateY(-10px);
    border-color: transparent;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
}

.service-card-v2:hover .card-line-top {
    width: 40%;
}

/* Animação do Ícone e Fundo */
.service-card-v2:hover .icon-main {
    color: #ffffff;
    transform: scale(1.1) rotate(-5deg);
}

.service-card-v2:hover .icon-circle-bg {
    background: var(--primary);
    transform: rotate(45deg);
    box-shadow: 0 10px 20px rgba(243, 156, 18, 0.3);
}

/* Animação do Botão */
.service-card-v2:hover .btn-action-simple {
    background: var(--primary);
    color: var(--dark);
}

.service-card-v2:hover .btn-action-simple i {
    transform: translateX(5px);
    color: var(--dark);
}

.btn-hero-main2 {
    display: inline-block;
    background: var(--primary);
    color: var(--dark);
    padding: 10px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 19px;
    font-weight: bold;
    margin-top: 20px;
    transition: 0.3s;
}

.btn-hero-main2:hover {
    background: var(--dark-grey);
    color: var(--light);
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(255, 255, 255, 0.1);
}



/* SEÇÃO DE AVALIAÇÕES */
.reviews-section {
    background-color: var(--dark);
    padding: 60px 0;
}

/* Força os textos do cabeçalho da seção a ficarem claros */
.reviews-section .section-header h2,
.reviews-section .section-header p {
    color: var(--light);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

/* Estilo do Cartão de Avaliação */
.review-card {
    position: relative;
    background: var(--dark-grey);
    padding: 40px 30px;
    border-radius: 20px;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    border-top: 4px solid var(--primary);
}

/* O ícone do Google no canto superior direito */
.google-icon {
    position: absolute;
    top: 25px;
    right: 30px;
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.2);
    transition: color 0.3s ease;
}

.review-stars {
    color: var(--primary);
    font-size: 1.1rem;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.review-text {
    color: var(--light);
    font-size: 1rem;
    line-height: 1.7;
    font-style: italic;
    flex-grow: 1; /* Empurra o autor para o fundo do cartão */
    margin-bottom: 30px;
}

/* Informações do Autor da Avaliação */
.review-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 45px;
    height: 45px;
    background: var(--primary);
    color: var(--dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.2rem;
}

.author-info h5 {
    color: var(--light);
    margin: 0;
    font-size: 1rem;
    font-weight: 700;
}

.author-info span {
    color: var(--text-muted);
    font-size: 0.8rem;
}

/* --- ESTADOS DE HOVER (Quando passa o rato) --- */
.review-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(243, 156, 18, 0.15);
}

.review-card:hover .google-icon {
    /* O ícone do Google acende quando passa o rato */
    color: #4285F4; 
}

/* SEÇÃO SHOWCASE  */
.showcase-section {
    padding: 100px 0;
    background-color: var(--bg-body);
}

.showcase-container {
    margin-top: 60px;
    display: flex;
    flex-direction: column;
    gap: 120px; /* Espaço generoso entre as "páginas" */
}

.showcase-row {
    display: flex;
    align-items: center;
    gap: 80px;
}

/* A MÁGICA: Inverte a ordem em linhas pares (2, 4, 6...) */
.showcase-row:nth-child(even) {
    flex-direction: row-reverse;
}

/* Imagem com efeito de moldura moderna */
.showcase-image {
    flex: 1;
    position: relative;
}

.showcase-image img {
    width: 500px;
    height: 350px;
    border-radius: 30px;
    box-shadow: 20px 20px 60px rgba(0,0,0,0.1);
    transition: transform 0.5s ease;
}

.showcase-tag {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--primary);
    color: var(--dark);
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.8rem;
}

/* Conteúdo do Texto */
.showcase-content {
    flex: 1;
}

.step-number {
    font-size: 4rem;
    font-weight: 900;
    color: var(--text-muted); /* Número gigante e sutil ao fundo */
    line-height: 1;
    display: block;
    margin-bottom: -20px;
}

.showcase-content h3 {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--dark);
}

.showcase-content p {
    font-size: 1.1rem;
    color: var(--dark);
    line-height: 1.8;
    margin-bottom: 30px;
}

.showcase-features {
    display: flex;
    gap: 20px;
    font-weight: 600;
    color: var(--dark);
    font-size: 0.9rem;
}

.showcase-features i {
    color: var(--primary);
}



/*  FOOTER  */
.site-footer {
    background-color: var(--dark);
    color: var(--light);
    padding: 60px 0 20px 0;
    margin-top: auto; /* Empurra o footer pro fundo */
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 2fr;
    gap: 40px;
}

.site-footer h5 {
    color: var(--primary);
    font-weight: 800;
    margin-bottom: 25px;
    letter-spacing: 1px;
}

/* Links e Textos do Footer */
.site-footer p {
    color: var(--text-muted);
    line-height: 1.8;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    transition: 0.3s;
}

.footer-links a:hover {
    color: var(--primary);
    padding-left: 5px; /* Efeitinho legal ao passar o mouse */
}

/* Redes Sociais */
.social-icons a {
    color: var(--light);
    font-size: 1.5rem;
    margin-right: 15px;
    transition: 0.3s;
}

.social-icons a:hover {
    color: var(--primary);
}

/* Divisão e Fundo do Footer */
.footer-divider {
    border-color: rgba(255, 255, 255, 0.1);
    margin: 40px 0 20px 0;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* RESPONSIVIDADE */

@media (max-width: 992px) {
    .main-nav { display: none; } /* Esconde o menu de links */
    .mobile-nav { display: block; } /* Mostra o botão do whats pequeno */

    .showcase-row, .showcase-row:nth-child(even) {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }
    
    .showcase-features {
        justify-content: center;
    }
    
    .footer-grid {
        grid-template-columns: 1fr; /* Footer empilha no celular */
        text-align: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
}

/* --- RESPONSIVIDADE PARA CELULAR --- */
@media (max-width: 768px) {
    .hero-actions { flex-direction: column; }
    .hero-section { padding: 80px 0 120px 0; }
    .cta-box { padding: 30px; }
}




































/* ============================================================
   PÁGINA DE CONTACTO 
   ============================================================ */

/* --- HERO CONTACTO --- */
.contact-hero {
    background: linear-gradient(135deg, rgba(15,15,15,0.97) 0%, rgba(30,30,30,0.9) 100%),
                url('../img/carroDeLado.jpg') no-repeat center center;
    background-size: cover;
    padding: 100px 0 80px;
    color: var(--light);
    position: relative;
    overflow: hidden;
}

/* Linhas diagonais decorativas */
.contact-hero::before {
    content: '';
    position: absolute;
    top: 0; right: 0;
    width: 40%; height: 100%;
    background: repeating-linear-gradient(
        -55deg,
        transparent, transparent 12px,
        rgba(243,156,18,0.04) 12px,
        rgba(243,156,18,0.04) 13px
    );
    pointer-events: none;
}

.contact-hero-content { position: relative; z-index: 2; }

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(243,156,18,0.15);
    border: 1px solid rgba(243,156,18,0.3);
    color: var(--primary);
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.contact-hero h1 {
    font-size: clamp(2.8rem, 6vw, 5rem);
    font-weight: 900;
    line-height: 1;
    margin-bottom: 20px;
}

.contact-hero h1 em {
    font-style: normal;
    color: var(--primary);
}

.contact-hero p {
    font-size: 1.15rem;
    color: rgba(255,255,255,0.7);
    max-width: 520px;
    line-height: 1.7;
}

.hero-stats {
    display: flex;
    gap: 40px;
    margin-top: 50px;
    padding-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.08);
}

.stat-item { display: flex; flex-direction: column; }

.stat-number {
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--primary);
    line-height: 1;
}

.stat-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 4px;
}

/* --- SECÇÃO PRINCIPAL CONTACTO --- */
.contact-main { padding: 80px 0 100px; }

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

/* Coluna Esquerda: Canais */
.contact-channels {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.section-label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 8px;
}

.section-label::after {
    content: '';
    flex: 1;
    height: 1px;
    background: rgba(243,156,18,0.3);
}

.channels-title {
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--dark);
    line-height: 1.1;
    margin-bottom: 10px;
}

.channels-subtitle {
    color: #6c757d;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 30px;
}

/* Cards de canal */
.channel-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 22px 24px;
    background: #ffffff;
    border-radius: 18px;
    border: 1.5px solid var(--dark);
    text-decoration: none;
    color: var(--dark);
    transition: all 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
}

.channel-card::before {
    content: '';
    position: absolute;
    left: 0; top: 0;
    width: 4px; height: 100%;
    background: var(--primary);
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform 0.3s ease;
}

.channel-card:hover {
    border-color: transparent;
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
    transform: translateX(6px);
}

.channel-card:hover::before { transform: scaleY(1); }

.channel-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    flex-shrink: 0;
    transition: all 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.channel-icon.ch-whatsapp  { background: rgba(37,211,102,0.12); color: #25D366; }
.channel-icon.ch-phone     { background: rgba(243,156,18,0.12);  color: var(--primary); }
.channel-icon.ch-maps      { background: rgba(234,67,53,0.12);   color: #EA4335; }
.channel-icon.ch-sms       { background: rgba(13, 110, 253, 0.12); color: #0d6efd; }

.channel-card:hover .channel-icon { transform: scale(1.1) rotate(-5deg); }

.channel-info { flex: 1; }

.channel-label {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-muted);
    margin-bottom: 3px;
}

.channel-value {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--dark);
    line-height: 1.2;
}

.channel-sub {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 2px;
}

.channel-arrow {
    color: var(--text-muted);
    font-size: 1rem;
    transition: all 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.channel-card:hover .channel-arrow {
    color: var(--primary);
    transform: translateX(4px);
}

.channel-badge {
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 3px 10px;
    border-radius: 50px;
    background: rgba(37,211,102,0.15);
    color: #25D366;
    border: 1px solid rgba(37,211,102,0.3);
}

/* Coluna Direita */
.contact-right {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

/* Card de Horários */
.hours-card {
    background: var(--dark);
    border-radius: 24px;
    padding: 36px;
    color: var(--light);
    position: relative;
    overflow: hidden;
}

.hours-card::after {
    content: '24H';
    position: absolute;
    right: -10px; bottom: -20px;
    font-size: 8rem;
    font-weight: 900;
    color: rgba(243,156,18,0.07);
    line-height: 1;
    pointer-events: none;
}

.hours-card-title {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.2rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.hours-card-title i { color: var(--primary); }

.hours-text {
    color: rgba(255,255,255,0.7);
    font-size: 1rem;
    line-height: 1.7;
}

.live-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(40,167,69,0.2);
    border: 1px solid rgba(40,167,69,0.4);
    color: #6fcf82;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1px;
    padding: 4px 12px;
    border-radius: 50px;
    margin-left: auto;
}

.live-dot {
    width: 6px;
    height: 6px;
    background: #6fcf82;
    border-radius: 50%;
    animation: pulse-green 1.5s infinite;
}

@keyframes pulse-green {
    0%, 100% { opacity: 1; transform: scale(1); }
    50%       { opacity: 0.5; transform: scale(1.4); }
}

/* --- CARD SERVIÇO MÓVEL --- */
.mobile-service-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 36px;
    border: 1.5px solid var(--dark);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 20px;
    transition: all 0.3s ease;
}

/* Linha de destaque no topo */
.mobile-service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 5px;
    background: var(--primary);
}

.mobile-service-card:hover {
    box-shadow: 0 15px 35px rgba(0,0,0,0.05);
    transform: translateY(-5px);
}

.mobile-icon-wrapper {
    width: 65px;
    height: 65px;
    background: rgba(243, 156, 18, 0.12); /* Fundo suave com a cor primária */
    color: var(--primary);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    transition: transform 0.3s ease;
}

.mobile-service-card:hover .mobile-icon-wrapper {
    transform: scale(1.05) rotate(-5deg);
}

.mobile-service-content h3 {
    font-size: 1.6rem;
    font-weight: 900;
    color: var(--dark);
    line-height: 1.3;
    margin-bottom: 15px;
}

.mobile-service-content h3 span {
    color: var(--primary); /* Destaca o "Nós vamos até si" */
}

.mobile-service-content p {
    font-size: 1rem;
    line-height: 1.6;
    color: #6c757d;
    margin-bottom: 24px;
}

.mobile-service-content strong {
    color: var(--dark);
    font-weight: 800;
}

/* Etiquetas/Tags informativas */
.mobile-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.mobile-badges .badge {
    background: #f8f9fa;
    border: 1px solid var(--dark-grey);
    color: var(--dark);
    padding: 8px 14px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
}

.mobile-badges .badge i {
    color: var(--primary);
    font-size: 0.9rem;
}

/* --- SECÇÃO FORMULÁRIO → WHATSAPP --- */
.form-section {
    padding: 80px 0;
    background: var(--dark);
    position: relative;
    overflow: hidden;
}

.form-section::before {
    content: '';
    position: absolute;
    top: -100px; right: -100px;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(243,156,18,0.08) 0%, transparent 70%);
    pointer-events: none;
}

.form-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.form-intro h2 {
    font-size: 2.8rem;
    font-weight: 900;
    color: var(--light);
    line-height: 1.05;
    margin-bottom: 20px;
}

.form-intro h2 em {
    font-style: normal;
    color: var(--primary);
}

.form-intro p {
    color: rgba(255,255,255,0.5);
    line-height: 1.7;
    font-size: 1rem;
    margin-bottom: 30px;
}

.form-assurances {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.assurance-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
}

.assurance-item i {
    color: var(--primary);
    font-size: 1rem;
    flex-shrink: 0;
}

.contact-form {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 28px;
    padding: 44px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 16px;
}

.form-group label {
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: rgba(255,255,255,0.5);
}

.form-group input,
.form-group select,
.form-group textarea {
    background: rgba(255,255,255,0.06);
    border: 1.5px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    padding: 14px 18px;
    color: var(--light);
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    outline: none;
    transition: all 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
    width: 100%;
}

.form-group select option { background: var(--dark-grey); color: var(--light); }

.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,0.25); }

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary);
    background: rgba(243,156,18,0.06);
    box-shadow: 0 0 0 3px rgba(243,156,18,0.12);
}

.form-group textarea { resize: vertical; min-height: 110px; }

.btn-submit {
    width: 100%;
    padding: 16px;
    background: var(--primary);
    color: var(--dark);
    border: none;
    border-radius: 14px;
    font-family: inherit;
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
    margin-top: 8px;
}

.btn-submit:hover {
    background: var(--light);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(243,156,18,0.3);
}

/* --- ANIMAÇÕES DE ENTRADA --- */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to   { opacity: 1; transform: translateY(0); }
}

.contact-hero-content { animation: fadeInUp 0.7s ease both; }
.contact-channels     { animation: fadeInUp 0.7s 0.15s ease both; }
.contact-right        { animation: fadeInUp 0.7s 0.25s ease both; }

/* --- RESPONSIVIDADE CONTACTO --- */
@media (max-width: 992px) {
    .contact-grid  { grid-template-columns: 1fr; gap: 40px; }
    .form-wrapper  { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 768px) {
    .contact-hero  { padding: 70px 0 60px; }
    .hero-stats    { gap: 24px; }
    .form-row      { grid-template-columns: 1fr; }
    .contact-form  { padding: 28px 22px; }
}





























/* ============================================================
   PÁGINA DE SERVIÇOS 
   ============================================================ */

/* ---- SECÇÃO DE SERVIÇOS ---- */
.sp-services {
    padding: 90px 0 100px;
    background: var(--bg-body);
}

/* Cabeçalho da secção */
.sp-section-header {
    text-align: center;
    max-width: 750px;
    margin: 0 auto 64px;
}

.sp-section-header h2 {
    font-size: clamp(3rem, 4vw, 2.8rem);
    font-weight: 900;
    color: var(--dark);
    letter-spacing: -1px;
    line-height: 1.15;
    margin-bottom: 16px;
}

.sp-section-header h2 em {
    font-style: normal;
    color: var(--primary);
}

.sp-section-header p {
    font-size: 1rem;
    color: var(--dark);
    line-height: 1.9;
}

/* Grid de cards */
.sp-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(310px, 1fr));
    gap: 24px;
}

/* ---- CARD DE SERVIÇO ---- */
.sp-card {
    background: #ffffff;
    border-radius: 28px;
    padding: 32px 28px 26px;
    border: 2px solid var(--dark);
    display: flex;
    flex-direction: column;
    gap: 0;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    animation: sp-rise var(--card-delay, 0s) ease both;
}

@keyframes sp-rise {
    from { opacity: 0; transform: translateY(28px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* Linha amarela no topo que cresce no hover */
.sp-card::before {
    content: '';
    position: absolute;
    top: 0; left: 50%;
    width: 0; height: 4px;
    background: var(--primary);
    border-radius: 0 0 4px 4px;
    transform: translateX(-50%);
    transition: width 0.4s ease;
}

.sp-card:hover::before { width: 40%; }

/* Ícone decorativo gigante no fundo do card */
.sp-card-deco {
    position: absolute;
    bottom: -20px; right: -20px;
    font-size: 7rem;
    color: rgba(0,0,0,0.028);
    pointer-events: none;
    transition: all 0.5s ease;
    line-height: 1;
}

/* Cabeçalho do card */
.sp-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 26px;
}

/* Wrapper do ícone */
.sp-card-iconbox {
    position: relative;
    width: 60px; height: 60px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sp-card-iconbox i {
    position: relative;
    z-index: 2;
    font-size: 1.6rem;
    color: var(--dark);
    width: 100%; height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Fundo do ícone */
.sp-iconbox-ring {
    position: absolute;
    inset: 0;
    border-radius: 16px;
    background: rgba(243,156,18,0.1);
    border: 1.5px solid rgba(243,156,18,0.2);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.sp-card-header-meta {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 6px;
}

/* Corpo */
.sp-card-body { margin-bottom: 20px; }

.sp-card-body h3 {
    font-size: 1.4rem;
    font-weight: 800;
    color: #222;
    margin-bottom: 12px;
    line-height: 1.2;
}

.sp-card-body p {
    font-size: 1rem;
    color: var(--dark);
    line-height: 1.6;
}

/* Lista de detalhes */
.sp-card-details {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px 12px;
}

.sp-card-details li {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.78rem;
    font-weight: 600;
    color: #888;
    transition: color 0.3s ease;
}

.sp-card-details li i {
    color: var(--primary);
    font-size: 0.85rem;
    flex-shrink: 0;
}

/* Divisor */
.sp-card-divider {
    height: 1px;
    background: #f0f0f0;
    margin-bottom: 22px;
    transition: background 0.3s ease;
}

/* ---- RODAPÉ E BOTÃO ---- */
.sp-card-footer {
    display: flex;
    align-items: center;
    justify-content: center; /* Centraliza o botão */
    margin-top: auto;
    width: 100%;
}

.sp-card-btn {
    text-decoration: none;
    color: var(--dark);
    background: var(--primary); /* Cor de destaque fixa no botão */
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px 24px;
    border-radius: 50px; /* Formato de pílula (arredondado) */
    font-size: 0.95rem;
    width: 100%; /* Faz o botão ocupar a largura toda do card */
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    z-index: 2; /* Garante que fica acima do ícone decorativo de fundo */
}

/* ---- RODAPÉ E NOVO BOTÃO (PREMIUM) ---- */
.sp-card-footer {
    display: flex;
    justify-content: center; /* Centralizado no card */
    margin-top: auto;
    width: 70%;
}

.sp-card-btn {
    text-decoration: none;
    display: inline-flex; /* Diminuído: baseia-se no conteúdo agora */
    align-items: center;
    justify-content: center;
    gap: 10px; /* Espaço sutil entre texto e flecha */
    padding: 14px 28px; /* Padding premium e bonito */
    background: var(--dark-grey); /* starts dark */
    color: #ffffff; /* starts white text */
    font-weight: 800;
    font-size: 0.9rem;
    border-radius: 50px;
    border: 2px solid transparent; /* para o highlight no hover */
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    z-index: 2;
}

/* Wrapper da flecha para animação */
.sp-btn-arrow {
    display: flex;
    align-items: center;
    color: var(--primary); /* Flecha já é amarela desde o início */
    font-size: 1.1rem;
    transition: transform 0.4s ease-out; /* Transição para o movimento horizontal */
    transform: translateX(0); /* Posição inicial default */
}

/* Ícone de fundo decorativo (Mantido) */
.sp-card-deco { position: absolute; bottom: -20px; right: -20px; font-size: 7rem; color: rgba(0,0,0,0.02); pointer-events: none; transition: all 0.5s ease; z-index: 0; }

.sp-card:hover::before { width: 40%; }
.sp-card:hover .sp-card-deco { color: rgba(243,156,18,0.06); transform: scale(1.1) rotate(-5deg); }
.sp-card:hover .sp-card-iconbox i { color: #ffffff; transform: scale(1.1) rotate(-5deg); }
.sp-card:hover .sp-iconbox-ring { background: var(--primary); border-color: var(--primary); transform: rotate(45deg); }
.sp-card:hover .sp-card-divider { background: rgba(243,156,18,0.15); }

/* ---- NOVO HOVER DO BOTÃO ---- */
.sp-card:hover .sp-card-btn {
    background: var(--light); /* Hover muda cor (inverte) */
    color: var(--dark);       /* Texto muda */
    border-color: var(--dark);/* Adiciona uma borda definida */
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    transform: translateY(-3px); /* Ligeiro 'lift' do botão */
}

/* ---- HOVER DOS CARDS ---- */
.sp-card:hover {
    border-color: transparent;
    box-shadow: 0 24px 60px rgba(0,0,0,0.09);
    transform: translateY(-8px);
}

/* Ícone fica branco, fundo roda e vira amarelo */
.sp-card:hover .sp-card-iconbox i {
    color: #ffffff;
    transform: scale(1.1) rotate(-5deg);
}

.sp-card:hover .sp-iconbox-ring {
    background: var(--primary);
    border-color: var(--primary);
    transform: rotate(45deg);
    box-shadow: 0 10px 20px rgba(243,156,18,0.3);
}

.sp-card:hover .sp-card-deco {
    color: var(--primary);
    transform: scale(1.1) rotate(-5deg);
}

.sp-card:hover .sp-card-details li { color: #555; }

.sp-card:hover .sp-card-divider { background: rgba(243,156,18,0.15); }

.sp-card:hover .sp-price-value { color: var(--primary-dark); }

.sp-card:hover .sp-card-btn {
    background: var(--primary);
    color: var(--dark);
    box-shadow: 0 6px 18px rgba(243,156,18,0.28);
}

.sp-card:hover .sp-btn-arrow {
    color: var(--dark);   /* A flecha brilha em amarelo/laranja */
    transform: translateX(8px) scale(1.6); /* Desliza e cresce com impacto */
    box-shadow: 0 0 15px rgba(243, 156, 18, 0.4); /* Brilho neon sutil */
}

/* ---- RESPONSIVIDADE ---- */
@media (max-width: 1024px) {
    .sp-hero-inner { grid-template-columns: 1fr; gap: 60px; }
    .sp-float-badge { display: none; }
    .sp-trust-sep { display: none; }
    .sp-trust-items { gap: 4px; justify-content: flex-start; }
}

@media (max-width: 768px) {
    .sp-hero { padding: 80px 0 70px; }
    .sp-hero-actions { flex-direction: column; align-items: flex-start; }
    .sp-cards-grid { grid-template-columns: 1fr; }
    .sp-card-details { grid-template-columns: 1fr; }
    .sp-section-header { margin-bottom: 40px; }
}






































/* ============================================================
   PÁGINA DE AVALIAÇÕES
   ============================================================ */

/* ---- AJUSTE DO HERO PARA AVALIAÇÕES ---- */
/* Reutiliza .contact-hero, só sobrepõe o badge e detalhes */
.av-hero .hero-badge {
    background: rgba(243,156,18,0.15);
    border-color: rgba(243,156,18,0.3);
}

/* ---- BARRA DE RATING GERAL ---- */
.av-rating-bar {
    background: var(--dark-grey);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    padding: 28px 0;
}

.av-rating-inner {
    display: flex;
    align-items: center;
    gap: 48px;
    flex-wrap: wrap;
}

/* Score grande à esquerda */
.av-rating-score {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-shrink: 0;
}

.av-score-big {
    font-size: 3.8rem;
    font-weight: 900;
    color: var(--primary);
    line-height: 1;
}

.av-score-right {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.av-stars-row {
    display: flex;
    gap: 3px;
    color: var(--primary);
    font-size: 1rem;
}

.av-score-right span {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.4);
    font-weight: 500;
}

/* Barras de distribuição */
.av-rating-bars {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
    min-width: 200px;
}

.av-rbar-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.78rem;
    color: rgba(255,255,255,0.45);
    font-weight: 600;
}

.av-rbar-item > span:first-child {
    width: 36px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: 3px;
}

.av-rbar-item i { color: var(--primary); font-size: 0.7rem; }

.av-rbar-track {
    flex: 1;
    height: 6px;
    background: rgba(255,255,255,0.07);
    border-radius: 50px;
    overflow: hidden;
}

.av-rbar-fill {
    height: 100%;
    background: var(--primary);
    border-radius: 50px;
    animation: av-bar-grow 1s ease both;
}

.av-rbar-fill.av-rbar-low { background: rgba(243,156,18,0.35); }

@keyframes av-bar-grow {
    from { width: 0 !important; }
    to   { }
}

.av-rbar-pct {
    width: 32px;
    text-align: right;
    font-size: 0.72rem;
    color: rgba(255,255,255,0.3);
}

/* Botão Google */
.av-google-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--light);
    border: 1.5px solid rgba(255,255,255,0.12);
    color: var(--dark);
    text-decoration: none;
    padding: 12px 22px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    transition: all 0.3s ease;
    flex-shrink: 0;
    white-space: nowrap;
}

.av-google-btn i { color: #4285F4; font-size: 1rem; }

.av-google-btn:hover {
    background: rgba(255,255,255,0.05);
    border-color: rgba(255,255,255,0.25);
    color: var(--light);
    transform: translateY(-2px);
}

/* ---- SECÇÃO PRINCIPAL DE AVALIAÇÕES ---- */
.av-section {
    padding: 80px 0 100px;
    background: var(--bg-body);
}

.av-section .container {
    max-width: 1480px;
}

.av-section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 56px;
}

.av-section-header h2 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 900;
    color: var(--dark);
    letter-spacing: -1px;
    line-height: 1.15;
    margin-top: 16px;
}

.av-section-header h2 em {
    font-style: normal;
    color: var(--primary);
}

/* ---- GRID 2 COLUNAS — limpo e organizado ---- */
.av-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
    align-items: start;
}



/* ---- CARD DE AVALIAÇÃO ---- */
.av-card {
    background: var(--dark);
    border-radius: 22px;
    padding: 28px 26px;
    border: 1.5px solid rgba(255,255,255,0.06);
    text-decoration: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
    position: relative;
    overflow: hidden;
    transition: all 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
    border-top: 3px solid var(--primary);
}

/* Ícone do Google no canto */
.av-card-google {
    position: absolute;
    top: 22px; right: 24px;
    font-size: 1.3rem;
    color: rgba(255,255,255,0.06);
    transition: color 0.3s ease;
}

/* Estrelas */
.av-card-stars {
    display: flex;
    gap: 3px;
    color: var(--primary);
    font-size: 0.9rem;
}

/* Texto da avaliação */
.av-card-text {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.75);
    line-height: 1.75;
    font-style: italic;
    flex: 1;
    margin: 0;
}

/* Rodapé: avatar + autor + verificado */
.av-card-footer {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 16px;
    border-top: 1px solid rgba(255,255,255,0.07);
    margin-top: auto;
}

.av-card-avatar {
    width: 42px; height: 42px;
    background: var(--primary);
    color: var(--dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 1rem;
    flex-shrink: 0;
}

.av-card-author {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.av-card-author strong {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--light);
    display: block;
}

.av-card-author span {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.35);
}

.av-card-verified {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 0.7rem;
    font-weight: 700;
    color: rgba(255,255,255,0.3);
    white-space: nowrap;
}

.av-card-verified i { color: #4285F4; font-size: 0.85rem; }

/* ---- HOVER DOS CARDS ---- */
.av-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.4);
    border-color: rgba(243,156,18,0.25);
}

.av-card:hover .av-card-google { color: #4285F4; }

/* ---- CTA: DEIXAR AVALIAÇÃO ---- */
.av-cta {
    background: var(--dark);
    padding: 70px 0;
    position: relative;
    overflow: hidden;
}

.av-cta::before {
    content: '';
    position: absolute;
    top: -100px; left: -100px;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(243,156,18,0.07) 0%, transparent 70%);
    pointer-events: none;
}

.av-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

.av-cta-left {
    display: flex;
    align-items: flex-start;
    gap: 24px;
}

.av-cta-icon {
    font-size: 2.2rem;
    color: var(--primary);
    flex-shrink: 0;
    margin-top: 4px;
}

.av-cta-left h2 {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 900;
    color: var(--light);
    line-height: 1.1;
    letter-spacing: -0.5px;
    margin-bottom: 8px;
}

.av-cta-left h2 em {
    font-style: normal;
    color: var(--primary);
}

.av-cta-left p {
    font-size: 0.92rem;
    color: rgba(255,255,255,0.45);
    line-height: 1.6;
    max-width: 400px;
}

.av-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--primary);
    color: var(--dark);
    text-decoration: none;
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 0.9rem;
    white-space: nowrap;
    flex-shrink: 0;
    transition: all 0.3s ease;
    box-shadow: 0 8px 24px rgba(243,156,18,0.25);
}

.av-cta-btn i { font-size: 1rem; }

.av-cta-btn:hover {
    background: var(--light);
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(243,156,18,0.2);
}

/* ---- ANIMAÇÕES DE ENTRADA ---- */
@keyframes av-rise {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: translateY(0); }
}

.av-card {
    animation: av-rise 0.5s ease both;
}

.av-card:nth-child(1) { animation-delay: 0.05s; }
.av-card:nth-child(2) { animation-delay: 0.12s; }
.av-card:nth-child(3) { animation-delay: 0.19s; }
.av-card:nth-child(4) { animation-delay: 0.26s; }
.av-card:nth-child(5) { animation-delay: 0.33s; }
.av-card:nth-child(6) { animation-delay: 0.40s; }

/* ---- RESPONSIVIDADE ---- */
@media (max-width: 992px) {
    .av-grid { grid-template-columns: repeat(2, 1fr); }
    .av-card:first-child { grid-column: span 2; }
    .av-rating-inner { gap: 28px; }
}

@media (max-width: 768px) {
    .av-grid { grid-template-columns: 1fr; }
    .av-card:first-child { grid-column: span 1; }
    .av-rating-bar { padding: 20px 0; }
    .av-rating-inner { flex-direction: column; gap: 20px; align-items: flex-start; }
    .av-cta-inner { flex-direction: column; }
    .av-cta-left { flex-direction: column; gap: 12px; }
    .av-cta-btn { width: 100%; justify-content: center; }
}