/* ===================================
   RESET E CONFIGURAÇÕES GERAIS
   =================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Cores Suaves e Acolhedoras (Baseado no PDF) */
   --cor-primaria: #5B8DB8;        /* Azul médio vibrante */
--cor-secundaria: #A8B8C8;      /* Prata azulada */
--cor-destaque: #1C4E7A;        /* Azul profundo */
--cor-texto: #1A2F45;           /* Quase preto azulado */
--cor-texto-claro: #4A6080;     /* Cinza azulado */
--cor-fundo: #F4F7FA;           /* Branco azulado */
--cor-fundo-alt: #E2EAF2;       /* Prata clara */
    --cor-branco: #FFFFFF;
    --cor-whatsapp: #25D366;
    
    /* Tipografia */
    --fonte-principal: 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    --fonte-tamanho-base: 16px;
    
    /* Espaçamentos */
    --espacamento-section: 100px;
    --espacamento-mobile: 60px;
}

html {
    scroll-behavior: smooth;
    font-size: var(--fonte-tamanho-base);
}

body {
    font-family: var(--fonte-principal);
    line-height: 1.7;
    color: var(--cor-texto);
    background-color: var(--cor-fundo);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===================================
   NAVEGAÇÃO
   =================================== */
.navbar {
    background: rgba(255, 255, 255, 1);
    padding: 1.2rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(10px);
}

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

.logo {
    height: 70px;
    width: auto;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
}

.nav-menu a {
    color: var(--cor-texto);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--cor-primaria);
    transition: width 0.3s ease;
}

.nav-menu a:hover {
    color: var(--cor-destaque);
}

.nav-menu a:hover::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--cor-texto);
    transition: 0.3s;
}

/* ===================================
   BOTÃO FLUTUANTE
   =================================== */
.btn-floating {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: var(--cor-whatsapp);
    color: white;
    padding: 20px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.2rem;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: all 0.3s ease;
    animation: pulso 2s infinite;
}

@keyframes pulso {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.btn-floating:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
}

/* ===================================
   HERO SECTION
   =================================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
background: linear-gradient(rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.45)),
            url('./images/capa-floresta.jpg') center/cover no-repeat;
       padding: 120px 20px 60px;
    text-align: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
    color: #ffffff !important;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
}

.hero-subtitle {
    font-size: 1.8rem;
    margin-bottom: 3rem;
    opacity: 0.95;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 4rem;
}

.btn-primary, .btn-secondary {
    padding: 16px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-primary {
    background: white;
    color: var(--cor-destaque);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.25);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: var(--cor-destaque);
}

.hero-testimonial {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 15px;
    margin-top: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-testimonial p {
    font-style: italic;
    margin-bottom: 0.5rem;
    font-size: 1.4rem;
}

.hero-testimonial span {
    font-size: 1.3rem;
    opacity: 0.9;
    font-weight: 600;
}

/* ===================================
   SEÇÕES GERAIS
   =================================== */
section {
    padding: var(--espacamento-section) 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.8rem;
    color: var(--cor-texto);
    margin-bottom: 1rem;
    font-weight: 600;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--cor-texto-claro);
    max-width: 1100px;
    margin: 0 auto;
}

/* ===================================
   SEÇÃO SOBRE
   =================================== */
.sobre {
    background: linear-gradient(rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.95)), 
                url('../images/sobre-fundo.svg') center/cover no-repeat;
    background-color: var(--cor-branco);
}

.sobre-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: start;
}

.foto-profissional {
    position: sticky;
    top: 100px;
}

.foto-profissional {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.foto-real {
    width: 100%;
    height: auto;
    display: block;
}

.foto-placeholder {
    aspect-ratio: 1;
    background: linear-gradient(135deg, var(--cor-secundaria), var(--cor-primaria));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    text-align: center;
    padding: 2rem;
}

.sobre-texto h3 {
    font-size: 2rem;
    color: var(--cor-destaque);
    margin-bottom: 1.5rem;
}

.sobre-texto p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--cor-texto-claro);
    margin-bottom: 1.5rem;
}

.sobre-destaque {
    background: var(--cor-fundo-alt);
    padding: 2rem;
    border-radius: 15px;
    margin: 2rem 0;
    border-left: 4px solid var(--cor-primaria);
}

.sobre-destaque h4 {
    color: var(--cor-destaque);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.sobre-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 2rem;
    grid-column: 1 / -1;
    width: 100%;
}

.info-item h4 {
    color: var(--cor-destaque);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.info-item ul {
    list-style: none;
    padding-left: 0;
}

.info-item li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    white-space: nowrap;
    font-size: 1rem;
}

.info-item li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--cor-primaria);
    font-weight: bold;
}

/* ===================================
   SEÇÃO SERVIÇOS
   =================================== */
.servicos {
    background: #FFFBEA;
}

.servicos-grid {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    max-width: 1100px;
    margin: 0 auto;
}

.servico-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-top: 4px solid var(--cor-primaria);
}

.servico-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.servico-icon {
    width: 100%;
    height: 250px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.servico-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.servico-card h3 {
    font-size: 1.5rem;
    color: var(--cor-destaque);
    margin-bottom: 1rem;
}

.servico-descricao {
    font-size: 1.05rem;
    color: var(--cor-texto-claro);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.servico-detalhes {
    background: var(--cor-fundo);
    padding: 1.5rem;
    border-radius: 10px;
    font-size: 0.95rem;
}

.servico-detalhes p {
    margin-bottom: 0.8rem;
}

.servico-detalhes strong {
    color: var(--cor-destaque);
}

/* ===================================
   SEÇÃO METODOLOGIAS
   =================================== */
.metodologias {
    background: white;
}

.metodologia-content {
    max-width: 1000px;
    margin: 0 auto;
}

.metodologia-item {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    padding: 2rem;
    background: var(--cor-fundo);
    border-radius: 15px;
}

.metodologia-numero {
    min-width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--cor-primaria), var(--cor-destaque));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: bold;
    flex-shrink: 0;
}

.metodologia-texto h3 {
    color: var(--cor-destaque);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.metodologia-texto p {
    color: var(--cor-texto-claro);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.metodologia-texto strong {
    color: var(--cor-destaque);
}

/* ===================================
   SEÇÃO DEPOIMENTOS
   =================================== */
.depoimentos {
    background: linear-gradient(135deg, rgba(232, 244, 248, 0.95) 0%, rgba(213, 232, 240, 0.95) 100%),
                url('../images/depoimento-fundo.svg') center/cover no-repeat;
}

.depoimentos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.depoimento-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    position: relative;
    border-left: 4px solid var(--cor-primaria);
}

.depoimento-aspas {
    font-size: 4rem;
    color: var(--cor-secundaria);
    line-height: 1;
    margin-bottom: 1rem;
}

.depoimento-texto {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--cor-texto-claro);
    font-style: italic;
    margin-bottom: 1.5rem;
}

.autor-nome {
    font-weight: 600;
    color: var(--cor-destaque);
    margin-bottom: 0.3rem;
}

.autor-desc {
    font-size: 0.9rem;
    color: var(--cor-texto-claro);
}

/* ===================================
   SEÇÃO VALORES
   =================================== */
.valores {
    background: white;
}

.valores-info {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
    padding: 2rem;
    background: var(--cor-fundo);
    border-radius: 15px;
}

.valores-info h3 {
    color: var(--cor-destaque);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.valores-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.valor-card {
    background: var(--cor-fundo-alt);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

.valor-card.destaque {
    background: linear-gradient(135deg, var(--cor-secundaria), var(--cor-primaria));
    color: white;
    transform: scale(1.05);
}

.badge-popular {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--cor-destaque);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: bold;
}

.valor-card h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--cor-destaque);
}

.valor-card.destaque h4,
.valor-card.destaque p {
    color: white;
}

.valor-tempo {
    font-size: 1rem;
    margin-bottom: 1rem;
    opacity: 0.8;
}

.valor-desc {
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.valor-preco {
    font-size: 1.3rem;
    font-weight: bold;
    color: var(--cor-destaque);
}

.valor-card.destaque .valor-preco {
    color: white;
}

.valores-extras {
    display: grid;
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
}

.extra-item {
    display: flex;
    gap: 1.5rem;
    align-items: start;
    background: var(--cor-fundo);
    padding: 2rem;
    border-radius: 15px;
}

.extra-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.extra-item h4 {
    color: var(--cor-destaque);
    margin-bottom: 0.5rem;
}

.extra-item p {
    color: var(--cor-texto-claro);
    line-height: 1.6;
}

/* ===================================
   SEÇÃO CONTATO
   =================================== */
.contato {
    background: linear-gradient(rgba(237, 242, 247, 0.95), rgba(237, 242, 247, 0.95)),
                url('../images/contato-fundo.svg') center/cover no-repeat;
    background-color: var(--cor-fundo-alt);
}

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

.whatsapp-card {
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(37, 211, 102, 0.3);
}

.whatsapp-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.whatsapp-card h3,
.whatsapp-card p {
    color: white;
}

.whatsapp-card h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.btn-whatsapp {
    display: inline-block;
    background: white;
    color: #128C7E;
    padding: 16px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    margin: 1.5rem 0;
    transition: all 0.3s ease;
}

.btn-whatsapp:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.telefone-numero {
    font-size: 1.5rem;
    font-weight: bold;
    margin: 1.5rem 0;
}

.horario-box {
    background: rgba(255, 255, 255, 0.15);
    padding: 1.5rem;
    border-radius: 10px;
    margin-top: 2rem;
}

.obs {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-top: 0.5rem;
}

.contato-opcoes {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.opcao-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.opcao-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.opcao-card h4 {
    color: var(--cor-destaque);
    margin-bottom: 1rem;
}

.opcao-card p {
    color: var(--cor-texto-claro);
    line-height: 1.6;
}

/* FAQ */
.faq-section {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    margin-bottom: 3rem;
}

.faq-section h3 {
    text-align: center;
    color: var(--cor-destaque);
    font-size: 2rem;
    margin-bottom: 2.5rem;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.faq-item {
    background: var(--cor-fundo);
    padding: 1.8rem;
    border-radius: 12px;
    border-left: 4px solid var(--cor-primaria);
}

.faq-item h4 {
    color: var(--cor-destaque);
    margin-bottom: 0.8rem;
    font-size: 1.1rem;
}

.faq-item p {
    color: var(--cor-texto-claro);
    line-height: 1.6;
}

/* Redes Sociais */
.redes-sociais {
    background: linear-gradient(135deg, #1C4E7A, #5B8DB8);
    padding: 4rem 3rem;
    border-radius: 20px;
    text-align: center;
}

.redes-sociais h3 {
    color: white;
    margin-bottom: 1rem;
    font-size: 2rem;
}

.redes-sociais > p {
    color: rgba(255,255,255,0.9);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.tags-redes {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
    justify-content: center;
}

.tags-redes span {
    background: white;
    color: var(--cor-destaque);
    padding: 0.7rem 1.5rem;
    border-radius: 25px;
    font-size: 0.95rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

/* ===================================
   FOOTER
   =================================== */
.footer {
    background: linear-gradient(135deg, #0F2840, #1C4E7A);
    color: white;
    padding: 5rem 0 2rem;
}

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

.footer-logo {
    height: 60px;
    width: auto;
    margin-bottom: 1rem;
    border-radius: 8px;
}

.footer-sobre p {
    opacity: 0.9;
    line-height: 1.7;
}

.footer-links h4,
.footer-contato h4 {
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: white;
    text-decoration: none;
    opacity: 0.9;
    transition: opacity 0.3s;
}

.footer-links a:hover {
    opacity: 1;
}

.footer-contato p {
    margin-bottom: 0.8rem;
    opacity: 0.9;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    opacity: 0.8;
}

.footer-bottom p {
    margin: 0.5rem 0;
    font-size: 0.9rem;
}

/* ===================================
   RESPONSIVO
   =================================== */
@media (max-width: 968px) {
    :root {
        --espacamento-section: 60px;
    }
    
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 2rem;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .section-header h2 {
        font-size: 2.2rem;
    }
    
    .sobre-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .sobre-info {
        grid-template-columns: 1fr;
    }
    
   
    
    .metodologia-item {
        flex-direction: column;
    }
    
    .contato-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .btn-floating {
    bottom: 20px;
    right: 20px;
    font-size: 1rem;
    padding: 15px 25px;
}
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .btn-primary, .btn-secondary {
        width: 100%;
    }
}

.terapias-holísticas-header {
    text-align: center;
    margin: 4rem auto 2rem;
    max-width: 800px;
}

.terapias-holísticas-header h2 {
    font-size: 3rem;
    color: var(--cor-destaque);
    margin-bottom: 1rem;
    font-weight: 600;
}

.terapias-holísticas-header p {
    font-size: 1.2rem;
    color: var(--cor-texto-claro);
    font-style: italic;
    max-width: 600px;
    margin: 0 auto;
}
.rede-link {
    background: white;
    color: var(--cor-destaque);
    padding: 1.5rem 3.5rem;
    border-radius: 50px;
    font-size: 1.3rem;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.rede-link:hover {
    background: #FFD700;
    color: #1A2F45;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}
/* Terapia Conversacional - Destaque Principal */
.servico-card.principal {
    transform: scale(1.03);
    border-top: 6px solid #1C4E7A;
    box-shadow: 0 15px 50px rgba(28, 78, 122, 0.2);
    position: relative;
    background: #FFF8DC;
}

.servico-card.principal:hover {
    transform: scale(1.05);
}

.selo-principal {
    position: absolute;
    top: -18px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #1C4E7A, #5B8DB8);
    color: white;
    padding: 0.6rem 2rem;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: bold;
    white-space: nowrap;
    box-shadow: 0 4px 15px rgba(28, 78, 122, 0.3);
}

/* Terapias Holísticas - Grid 3 em 3 */
.servicos-grid.holísticas {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.servicos-grid.holísticas .servico-card {
    background: #FFFDF0;
    padding: 1.5rem;
}

/* Responsivo - 1 coluna no celular */
@media (max-width: 968px) {
    .servicos-grid.holísticas {
        grid-template-columns: 1fr !important;
    }
}
.urgencia {
    color: #FFD700;
    font-size: 1rem;
    font-weight: 600;
    margin-top: 1rem;
    letter-spacing: 0.5px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
    animation: pulso 2s infinite;
}
.btn-urgencia {
    background: #FFD700 !important;
    color: #1A2F45 !important;
    font-size: 1.3rem;
    padding: 20px 50px;
    border-radius: 50px;
    font-weight: 800;
    box-shadow: 0 6px 25px rgba(255, 215, 0, 0.5);
    animation: pulso 2s infinite;
    display: inline-block;
    margin-top: 1.5rem;
}

.btn-urgencia:hover {
    background: #FFC200 !important;
    transform: translateY(-4px);
    box-shadow: 0 10px 35px rgba(255, 215, 0, 0.7);
}
.servico-icon a,
.servico-card a {
    cursor: pointer;
}

.servico-icon img {
    transition: transform 0.3s ease;
}

.servico-icon img:hover {
    transform: scale(1.05);
}
/* === CARDS DE VALOR CLICÁVEIS === */
.valor-link {
    text-decoration: none !important;
    display: block;
    color: inherit;
}

.valor-link * {
    text-decoration: none !important;
}

.valor-link:hover .valor-card {
    transform: translateY(-8px);
    box-shadow: 0 10px 40px rgba(28, 78, 122, 0.2);
    border-top: 4px solid #1C4E7A;
    transition: all 0.3s ease;
}

.valor-link:hover h4 {
    color: #1C4E7A;
}

.valor-link:hover .valor-preco {
    color: #1C4E7A;
}

/* === SELO PREMIUM === */
.selo-principal {
    position: absolute;
    top: -18px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #1A2F45;
    padding: 0.6rem 2rem;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: bold;
    white-space: nowrap;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}
.info-item h5 {
    color: var(--cor-destaque);
    font-size: 1.1rem;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    font-weight: 600;
}
.footer-sobre p {
    opacity: 0.85;
    line-height: 1.8;
    font-size: 1rem;
}

.footer-links h4,
.footer-contato h4 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    color: #FFD700;
}

.footer-contato p {
    font-size: 1rem;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    opacity: 0.7;
    font-size: 0.95rem;
}
