/* =====================================================
   IMPORTAÇÃO DE FONTES
   Bebas Neue → display agressivo / Barlow → corpo limpo
   ===================================================== */
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Barlow:ital,wght@0,300;0,400;0,600;0,700;1,300&display=swap');

/* =====================================================
   VARIÁVEIS
   ===================================================== */
:root {
    --roxo:         #6f42c1;
    --roxo-escuro:  #5a32a3;
    --acento:       #bf5fff;   /* roxo claro vibrante */
    --laranja:      #bf5fff;   /* igual ao --acento, mantido para compatibilidade */
    --laranja-vivo: #ff6b35;   /* laranja verdadeiro para acentos quentes */
    --preto:        #0d0d0d;
    --preto-meio:   #1a1a1a;
    --branco:       #ffffff;
    --cinza-claro:  #f4f4f8;
    --cinza:        #7a7a8c;
    --fonte-display: 'Bebas Neue', sans-serif;
    --fonte-corpo:   'Barlow', sans-serif;
    --raio:         12px;
    --sombra:       0 8px 32px rgba(111,66,193,.18);
    --transicao:    .35s cubic-bezier(.4,0,.2,1);
    --whatsapp: #25d366;
    --whatsapp-dark: #128C7E;
}

/* =====================================================
   BASE
   ===================================================== */
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }

html { scroll-behavior: smooth; }

body {
    font-family: var(--fonte-corpo);
    color: var(--preto);
    background: var(--branco);
    overflow-x: hidden;
    padding-top: 76px;      /* compensa o header fixo */
}

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

a { text-decoration:none; color:inherit; }

/* =====================================================
   GRID UTILITÁRIO LEVE
   ===================================================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
}

.row {
    display: flex;
    flex-wrap: wrap;
}

.secao .row {
    gap: 28px;
}

/* Colunas sem gutters negativos — mais previsível */
.col-3  { flex: 1 1 calc(33.333% - 28px); }
.col-2  { flex: 1 1 calc(50%     - 28px); }
.col-1  { flex: 1 1 100%; }

/* =====================================================
   BOTÕES
   ===================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: .85rem 2.2rem;
    border-radius: 50px;
    font-family: var(--fonte-corpo);
    font-weight: 700;
    font-size: .95rem;
    letter-spacing: .04em;
    text-transform: uppercase;
    transition: var(--transicao);
    border: 2px solid transparent;
    cursor: pointer;
    white-space: nowrap;
}

.btn-primario {
    background: var(--roxo);
    color: var(--branco);
    border-color: var(--roxo);
}
.btn-primario:hover {
    background: transparent;
    color: var(--roxo);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(111,66,193,.35);
}

.btn-acento {
    background: var(--acento);
    color: var(--branco);
    border-color: var(--acento);
}
.btn-acento:hover {
    background: transparent;
    color: var(--acento);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(191,95,255,.35);
}

.btn-fantasma {
    background: transparent;
    color: var(--branco);
    border-color: rgba(255,255,255,.6);
}
.btn-fantasma:hover {
    background: var(--branco);
    color: var(--roxo);
    transform: translateY(-3px);
}

/* Utilitários de cor */
.text-roxo { color: var(--roxo); }
.text-laranja { color: var(--laranja); }
.text-laranja-vivo { color: var(--laranja-vivo); }

.btn-outline-roxo {
    color: var(--roxo);
    border-color: var(--roxo);
}
.btn-outline-roxo:hover {
    background: var(--roxo);
    color: var(--branco);
}

.btn-roxo {
    background: var(--roxo);
    color: var(--branco);
    border-color: var(--roxo);
}
.btn-roxo:hover {
    background: var(--roxo-escuro);
    color: var(--branco);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(111,66,193,.35);
}

.btn-laranja {
    background: var(--laranja-vivo);
    color: var(--branco);
    border-color: var(--laranja-vivo);
}
.btn-laranja:hover {
    background: #e55a2b;
    color: var(--branco);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255,107,53,.35);
}

/* =====================================================
   HERO
   ===================================================== */
.hero {
    position: relative;
    height: 100vh;
    min-height: 620px;
    overflow: hidden;
    color: var(--branco);
    margin-top: -76px;      /* sobe atrás do header */
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero__video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

/* Overlay com grain sutil */
.hero__overlay {
    position: absolute;
    inset: 0;
    background:
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='.035'/%3E%3C/svg%3E"),
        linear-gradient(160deg, rgba(90,50,163,.88) 0%, rgba(13,13,13,.92) 65%);
    z-index: 1;
}

.hero__content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 24px;
    max-width: 820px;
}

/* Chip / tag acima do título */
.hero__chip {
    display: inline-block;
    background: rgba(191,95,255,.25);
    border: 1px solid rgba(191,95,255,.5);
    color: #e0b3ff;
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .15em;
    text-transform: uppercase;
    padding: .35rem 1rem;
    border-radius: 50px;
    margin-bottom: 1.4rem;
    animation: fadeUp .8s ease both;
}

.hero__titulo {
    font-family: var(--fonte-display);
    font-size: clamp(3rem, 8vw, 6.5rem);
    line-height: 1;
    letter-spacing: .02em;
    margin-bottom: 1.2rem;
    text-shadow: 0 4px 24px rgba(0,0,0,.4);
    animation: fadeUp .9s .1s ease both;
}

.hero__titulo span {
    color: var(--acento);
}

.hero__sub {
    font-size: clamp(1rem, 2.2vw, 1.3rem);
    font-weight: 300;
    opacity: .9;
    line-height: 1.65;
    margin-bottom: 2.4rem;
    animation: fadeUp .9s .2s ease both;
}

.hero__botoes {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeUp .9s .35s ease both;
}

/* Scroll indicator */
.hero__scroll {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    color: rgba(255,255,255,.5);
    font-size: .72rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    animation: bounce 2s ease-in-out infinite;
}

.hero__scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, rgba(255,255,255,.5), transparent);
    animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
    0%, 100% { transform: scaleY(1); transform-origin: top; opacity: 1; }
    50%      { transform: scaleY(0.3); transform-origin: top; opacity: 0.5; }
}

/* =====================================================
   SEÇÕES GENÉRICAS
   ===================================================== */
.secao {
    padding: 96px 0;
}

.secao--cinza {
    background: var(--cinza-claro);
}

.secao--escura {
    background: var(--preto-meio);
    color: var(--branco);
}

/* Título de seção */
.titulo-secao {
    text-align: center;
    margin-bottom: 3.5rem;
}

.titulo-secao__label {
    display: inline-block;
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--roxo);
    margin-bottom: .6rem;
}

.titulo-secao h2 {
    font-family: var(--fonte-display);
    font-size: clamp(2rem, 5vw, 3.2rem);
    color: var(--preto);
    letter-spacing: .03em;
    position: relative;
    display: inline-block;
    padding-bottom: .9rem;
    margin-bottom: .8rem;
}

.titulo-secao h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 56px;
    height: 3px;
    border-radius: 2px;
    background: linear-gradient(90deg, var(--roxo), var(--acento));
}

.secao--escura .titulo-secao h2 { color: var(--branco); }
.secao--escura .titulo-secao__label { color: var(--acento); }

.titulo-secao p {
    color: var(--cinza);
    font-size: 1.05rem;
    max-width: 540px;
    margin: 0 auto;
    line-height: 1.7;
}

.secao--escura .titulo-secao p { color: rgba(255,255,255,.6); }

/* =====================================================
   DIFERENCIAIS
   ===================================================== */
.dif-card {
    background: var(--branco);
    border-radius: var(--raio);
    padding: 2.5rem 2rem;
    text-align: center;
    border: 1px solid rgba(111,66,193,.1);
    box-shadow: var(--sombra);
    transition: var(--transicao);
    position: relative;
    overflow: hidden;
}

.dif-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(111,66,193,.06), rgba(191,95,255,.04));
    opacity: 0;
    transition: var(--transicao);
}

.dif-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(111,66,193,.2);
    border-color: rgba(111,66,193,.3);
}

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

.dif-card__icone {
    width: 72px;
    height: 72px;
    margin: 0 auto 1.4rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--roxo), var(--acento));
    color: var(--branco);
    font-size: 1.6rem;
    box-shadow: 0 8px 24px rgba(111,66,193,.3);
    transition: var(--transicao);
}

.dif-card:hover .dif-card__icone {
    transform: scale(1.12) rotate(6deg);
}

.dif-card h4 {
    font-family: var(--fonte-display);
    font-size: 1.4rem;
    letter-spacing: .04em;
    color: var(--preto);
    margin-bottom: .6rem;
}

.dif-card p {
    color: var(--cinza);
    font-size: .95rem;
    line-height: 1.65;
}

/* =====================================================
   PORTFÓLIO DESTAQUES
   ===================================================== */
.portfolio-card {
    background: var(--branco);
    border-radius: var(--raio);
    overflow: hidden;
    box-shadow: var(--sombra);
    transition: var(--transicao);
    display: flex;
    flex-direction: column;
}

.portfolio-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(111,66,193,.2);
}

.portfolio-card__thumb {
    position: relative;
    overflow: hidden;
    height: 240px;
}

.portfolio-card__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s ease;
}

.portfolio-card:hover .portfolio-card__thumb img {
    transform: scale(1.08);
}

/* Overlay gradiente sobre a imagem */
.portfolio-card__thumb::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(90,50,163,.6), transparent 60%);
    opacity: 0;
    transition: var(--transicao);
}

.portfolio-card:hover .portfolio-card__thumb::after {
    opacity: 1;
}

.portfolio-card__corpo {
    padding: 1.6rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.portfolio-card__corpo h5 {
    font-family: var(--fonte-display);
    font-size: 1.3rem;
    letter-spacing: .04em;
    color: var(--roxo);
    margin-bottom: .6rem;
}

.portfolio-card__corpo p {
    color: var(--cinza);
    font-size: .93rem;
    line-height: 1.6;
    flex: 1;
    margin-bottom: 1.2rem;
}

/* =====================================================
   SOBRE — LAYOUT DIVIDIDO
   ===================================================== */
.sobre__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.sobre__imagem {
    position: relative;
    border-radius: var(--raio);
    overflow: hidden;
}

.sobre__imagem img {
    width: 100%;
    height: 460px;
    object-fit: cover;
    border-radius: var(--raio);
    display: block;
    transition: transform .6s ease;
}

.sobre__imagem:hover img {
    transform: scale(1.05);
}

/* Borda decorativa deslocada */
.sobre__imagem::before {
    content: '';
    position: absolute;
    top: -16px;
    left: -16px;
    right: 16px;
    bottom: 16px;
    border: 3px solid var(--roxo);
    border-radius: var(--raio);
    opacity: .35;
    z-index: -1;
    transition: var(--transicao);
}

.sobre__imagem:hover::before {
    top: -22px;
    left: -22px;
    opacity: .6;
}

.sobre__texto {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.sobre__label {
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--roxo);
}

.sobre__texto h2 {
    font-family: var(--fonte-display);
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.1;
    letter-spacing: .03em;
    color: var(--preto);
}

.sobre__texto p {
    font-size: 1.05rem;
    color: var(--cinza);
    line-height: 1.75;
}

/* =====================================================
   SOBRE PAGE — sobre.php
   ===================================================== */
.sobre-page {
    padding: 60px 0;
}

.sobre-page:first-of-type {
    padding-top: 100px;
}

/* Cards padronizados com animação hover */
.sobre-page .card {
    border: none;
    border-radius: var(--raio);
    box-shadow: var(--sombra);
    transition: var(--transicao);
    height: 100%;
}

.sobre-page .card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(111,66,193,.2);
}

.sobre-page .card .card-body {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.sobre-page .card i {
    color: var(--laranja);
    transition: var(--transicao);
}

.sobre-page .card:hover i {
    color: var(--roxo);
    transform: scale(1.1);
}

.sobre-page .card h4,
.sobre-page .card h5,
.sobre-page .card .card-title {
    color: var(--roxo);
    margin: 1rem 0;
}

.sobre-page .card p {
    color: #666;
    margin: 0;
    flex: 1;
}

/* Diferenciais (mantém compatibilidade com classe existente) */
.sobre-page .diferencial-card .card-body {
    padding: 2rem;
}

/* =====================================================
   CTA FINAL
   ===================================================== */
.cta {
    padding: 96px 0;
    position: relative;
    overflow: hidden;
    background: linear-gradient(130deg, var(--roxo-escuro) 0%, var(--preto-meio) 60%);
    text-align: center;
    color: var(--branco);
}

/* Círculos decorativos de fundo */
.cta::before,
.cta::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.cta::before {
    width: 500px;
    height: 500px;
    top: -200px;
    right: -120px;
    background: radial-gradient(circle, rgba(191,95,255,.25) 0%, transparent 70%);
}

.cta::after {
    width: 380px;
    height: 380px;
    bottom: -160px;
    left: -80px;
    background: radial-gradient(circle, rgba(111,66,193,.3) 0%, transparent 70%);
}

.cta__conteudo {
    position: relative;
    z-index: 1;
    max-width: 680px;
    margin: 0 auto;
    padding: 0 24px;
}

.cta__conteudo h2 {
    font-family: var(--fonte-display);
    font-size: clamp(2.2rem, 5vw, 4rem);
    letter-spacing: .03em;
    margin-bottom: 1rem;
}

.cta__conteudo p {
    font-size: 1.1rem;
    opacity: .85;
    margin-bottom: 2.4rem;
    line-height: 1.65;
}

/* =====================================================
   ANIMAÇÕES
   ===================================================== */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(28px); }
    to   { opacity: 1; transform: translateY(0);    }
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0);    }
    50%       { transform: translateX(-50%) translateY(-10px); }
}

/* Reveal ao scroll */
.reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity .7s ease, transform .7s ease;
}
.reveal.visivel {
    opacity: 1;
    transform: translateY(0);
}

/* =====================================================
   RESPONSIVIDADE
   ===================================================== */
@media (max-width: 1024px) {
    .sobre__grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .sobre__imagem img { height: 340px; }
}

@media (max-width: 768px) {
    body { padding-top: 64px; }

    .secao { padding: 64px 0; }

    .hero__titulo { font-size: clamp(2.4rem, 10vw, 4rem); }

    .row { gap: 20px; }

    .col-3,
    .col-2 { flex: 1 1 100%; }

    .cta { padding: 64px 0; }
}

@media (max-width: 480px) {
    .hero__botoes { flex-direction: column; align-items: center; }
    .btn { width: 100%; max-width: 280px; justify-content: center; }
}

/* =====================================================
   NAVBAR — menu.php
   ===================================================== */
/* Estilos do navbar */
.navbar {
    background-color: #4b0268 !important;
    padding: 0.8rem 0;
    transition: var(--transicao);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    min-height: 80px;
}

.navbar.scrolled {
    padding: 0.5rem 0;
    background-color: #9002c9 !important;
    min-height: 60px;
}

.navbar-brand {
    display: flex;
    align-items: center;
    text-decoration: none;
    padding: 0;
    height: 100%;
}

.logo-img {
    height: 140px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
    transition: var(--transicao);
}

.navbar.scrolled .logo-img {
    height: 60px;
}

/* Estilos dos links do menu */
.nav-link {
    color: white !important;
    margin: 0 0.2rem !important;
    font-weight: 500;
    transition: var(--transicao);
    padding: 0.5rem 0.8rem !important;
    border-radius: 30px;
}

.nav-link:hover {
    color: #ffffff !important;
    background-color: rgba(255, 255, 255, 0.2);
}

.nav-link.active {
    color: #ffffff !important;
    font-weight: 600;
    background-color: rgba(255, 255, 255, 0.3);
}

/* ===== BOTÃO DA LOJA AMARELO ===== */
.btn-loja-amarelo {
    background: #ffc107 !important;  /* Amarelo */
    color: #4b0268 !important;        /* Texto roxo escuro para contraste */
    font-weight: 800 !important;
    padding: 0.5rem 1.2rem !important;
    margin-left: 0.5rem !important;
    margin-right: 0.5rem !important;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    border: 2px solid #ffc107;
    box-shadow: 0 4px 15px rgba(255, 193, 7, 0.4);
    position: relative;
    overflow: hidden;
    animation: pulseAmarelo 2s infinite;
}

.btn-loja-amarelo i {
    color: #4b0268;  /* Ícone roxo escuro */
    transition: transform 0.3s;
}

.btn-loja-amarelo:hover {
    background: #ffca2c !important;  /* Amarelo mais claro */
    border-color: #ffca2c;
    color: #4b0268 !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 193, 7, 0.6);
    animation: none;
}

.btn-loja-amarelo:hover i {
    transform: rotate(15deg) scale(1.2);
    color: #4b0268;
}

/* Efeito de brilho ao passar o mouse */
.btn-loja-amarelo::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
    transition: left 0.5s;
}

.btn-loja-amarelo:hover::before {
    left: 100%;
}

/* Animação de pulsação amarela */
@keyframes pulseAmarelo {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 193, 7, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(255, 193, 7, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 193, 7, 0);
    }
}

/* ESTILOS ESPECÍFICOS PARA ÍCONES SOCIAIS DO MENU */
.menu-social-link {
    background: transparent !important;
    padding: 0.5rem 0.6rem !important;
    margin: 0 0.1rem !important;
    font-size: 1.2rem;
}

.menu-social-link:hover {
    background: rgba(255, 255, 255, 0.2) !important;
    transform: translateY(-2px);
}

.menu-social-link i {
    color: white;
    font-size: 1.2rem;
}

/* Separador */
.separador {
    background: transparent !important;
    padding: 0.5rem 0.2rem !important;
    margin: 0 0.2rem !important;
}

.separador:hover {
    background: transparent !important;
}

/* Ajustes para mobile */
@media (max-width: 768px) {
    .navbar {
        min-height: 60px;
    }
    
    .logo-img {
        height: 50px;
    }
    
    .navbar.scrolled {
        min-height: 50px;
    }
    
    .navbar.scrolled .logo-img {
        height: 40px;
    }
    
    .nav-link {
        margin: 0.1rem 0 !important;
        text-align: center;
    }
    
    /* Botão da loja em mobile */
    .btn-loja-amarelo {
        margin: 0.5rem 0 !important;
        width: 100%;
        text-align: center;
    }
    
    .menu-social-link {
        display: inline-block;
        margin: 0.2rem !important;
    }
    
    /* Esconder separador no mobile */
    .separador {
        display: none;
    }
}

/* Ajuste fino para desktop */
@media (min-width: 992px) {
    .btn-loja-amarelo {
        margin-left: 1rem !important;
        margin-right: 0.5rem !important;
    }
}

/* =====================================================
   FOOTER — footer.php
   ===================================================== */
/* =====================================================
   FOOTER ESTILOS (independente do Bootstrap)
   ===================================================== */
.footer {
    background: var(--preto-meio, #1a1a1a);
    color: var(--cinza, #7a7a8c);
    padding: 60px 0 30px;
    margin-top: 0;
}

.footer h5 {
    font-family: var(--fonte-display, 'Bebas Neue', sans-serif);
    font-size: 1.3rem;
    letter-spacing: 0.04em;
    color: var(--branco, #ffffff);
    margin-bottom: 1.2rem;
    position: relative;
    display: inline-block;
}

.footer h5::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--roxo, #6f42c1);
    border-radius: 2px;
}

.footer p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--cinza, #7a7a8c);
}

.footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer ul li {
    margin-bottom: 0.75rem;
}

.footer ul li a {
    color: var(--cinza, #7a7a8c);
    text-decoration: none;
    transition: var(--transicao);
    font-size: 0.9rem;
}

.footer ul li a:hover {
    color: var(--roxo, #6f42c1);
    padding-left: 5px;
}

.footer ul li i {
    width: 24px;
    color: var(--roxo, #6f42c1);
}

.footer hr {
    border: none;
    border-top: 1px solid rgba(255,255,255,0.1);
    margin: 30px 0 20px;
}

.footer .text-center {
    text-align: center;
}

/* Redes sociais */
.footer .social-links {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.footer .social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    color: var(--branco, #ffffff);
    transition: var(--transicao);
}

.footer .social-links a:hover {
    background: var(--roxo, #6f42c1);
    transform: translateY(-3px);
}

/* Grid para o footer (sem Bootstrap) */
.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Responsividade */
@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .footer h5::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer .social-links {
        justify-content: center;
    }
    
    .footer ul li i {
        width: auto;
        margin-right: 5px;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 40px 0 20px;
    }
    
    .footer-grid {
        gap: 25px;
    }
}

/* =====================================================
   CONTATO — contato.php
   ===================================================== */
.contato-page {
    --roxo: #9849ffff;
    --laranja: #5b0296ff;
    padding: 100px 0 60px;
    background: #f8f9fa;
}

.contato-page .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.contato-page .section-title {
    text-align: center;
    margin-bottom: 50px;
}

.contato-page .section-title h2 {
    color: var(--roxo);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.contato-page .section-title p {
    color: #666;
    font-size: 1.1rem;
}

.contato-page .row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.contato-page .col-lg-4,
.contato-page .col-lg-8 {
    padding: 0 15px;
    box-sizing: border-box;
}

.contato-page .col-lg-4 {
    flex: 0 0 auto;
    width: 33.33%;
}

.contato-page .col-lg-8 {
    flex: 0 0 auto;
    width: 66.67%;
}

.contato-page .col-md-6 {
    flex: 0 0 auto;
    width: 50%;
    padding: 0 15px;
    box-sizing: border-box;
}

/* Cards de informação */
.contato-page .info-card {
    background: white;
    border-radius: var(--raio);
    padding: 25px;
    margin-bottom: 20px;
    box-shadow: var(--sombra);
    border-left: 4px solid var(--roxo);
    transition: var(--transicao);
}

.contato-page .info-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(111,66,193,.2);
}

.contato-page .info-card i {
    color: var(--laranja);
    font-size: 1.5rem;
    margin-right: 15px;
    width: 30px;
}

.contato-page .info-card h4 {
    color: var(--roxo);
    font-size: 1.1rem;
    margin: 0 0 5px 0;
    font-weight: 600;
}

.contato-page .info-card p {
    color: var(--cinza);
    margin: 0;
    line-height: 1.5;
}

.contato-page .info-card a {
    color: var(--cinza);
    text-decoration: none;
}

.contato-page .info-card a:hover {
    color: var(--laranja);
}

/* Card de Redes Sociais */
.contato-page .social-card {
    background: linear-gradient(135deg, var(--roxo), var(--laranja));
    border-radius: var(--raio);
    padding: 25px;
    margin-top: 20px;
    color: white;
    border-left: 4px solid white;
    transition: var(--transicao);
}

.contato-page .social-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.25);
}

.contato-page .social-card h4 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    font-weight: 600;
    text-align: center;
}

.contato-page .social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.contato-page .social-link {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    transition: var(--transicao);
    text-decoration: none;
    backdrop-filter: blur(5px);
}

.contato-page .social-link:hover {
    background: white;
    transform: translateY(-5px) scale(1.1);
}

/* Cores específicas para cada rede no hover */
.contato-page .social-link.instagram:hover { 
    background: linear-gradient(45deg, #f09433, #d62976, #962fbf, #4f5bd5);
    color: white;
}
.contato-page .social-link.tiktok:hover { 
    background: #000000;
    color: white;
    box-shadow: 0 0 15px #69c9d0;
}
.contato-page .social-link.youtube:hover { 
    background: #ff0000;
    color: white;
}
.contato-page .social-link.facebook:hover { 
    background: #1877f2;
    color: white;
}
.contato-page .social-link.linkedin:hover { 
    background: #0a66c2;
    color: white;
}

.contato-page .social-link.tiktok {
    position: relative;
    overflow: hidden;
}

.contato-page .social-link.tiktok::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left .6s ease;
}

.contato-page .social-link.tiktok:hover::before {
    left: 100%;
}

.contato-page .social-link.tiktok i {
    color: white;
}

.contato-page .d-flex {
    display: flex;
    align-items: flex-start;
}

/* Formulário */
.contato-page .contato-form {
    background: white;
    border-radius: var(--raio);
    padding: 30px;
    box-shadow: var(--sombra);
    transition: var(--transicao);
}

.contato-page .contato-form:hover {
    box-shadow: 0 20px 50px rgba(111,66,193,.2);
    transform: translateY(-4px);
}

.contato-page .form-row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.contato-page .form-group {
    margin-bottom: 20px;
    padding: 0 15px;
    box-sizing: border-box;
}

.contato-page .form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    transition: var(--transicao);
    box-sizing: border-box;
}

.contato-page .form-control:focus {
    outline: none;
    border-color: var(--roxo);
    box-shadow: 0 0 0 3px rgba(111, 66, 193, 0.1);
}

.contato-page textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

.contato-page .btn {
    background: var(--roxo);
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transicao);
    width: 100%;
}

.contato-page .btn:hover {
    background: var(--laranja);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(111,66,193,.35);
}

.contato-page .btn:hover {
    background: var(--laranja);
    transform: translateY(-2px);
}

.contato-page .alert {
    padding: 15px 20px;
    border-radius: 5px;
    margin-bottom: 30px;
    animation: slideIn 0.5s ease;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.alert-success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.alert-danger {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Card Flutuante do WhatsApp */
.floating-whatsapp {
    position: fixed;
    right: 30px;
    bottom: 30px;
    background: linear-gradient(135deg, #25d366, #128C7E);
    color: white;
    text-decoration: none;
    border-radius: 60px;
    padding: 12px 25px 12px 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
    border: 2px solid white;
    transition: var(--transicao), transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    max-width: 280px;
    animation: floatWhatsapp 3s ease-in-out infinite;
}

.floating-whatsapp-content {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
}

.floating-whatsapp-icon {
    background: white;
    color: #25d366;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 5px 10px rgba(0,0,0,0.2);
    transition: var(--transicao);
}

.floating-whatsapp-text {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.floating-whatsapp-title {
    font-weight: 800;
    font-size: 1rem;
    line-height: 1.3;
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.floating-whatsapp-subtitle {
    font-size: 0.75rem;
    opacity: 0.9;
    color: white;
    font-weight: 500;
}

.floating-whatsapp-arrow {
    background: rgba(255, 255, 255, 0.2);
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transicao);
    color: white;
}

.floating-whatsapp:hover {
    transform: scale(1.05) translateY(-5px);
    box-shadow: 0 20px 30px rgba(37, 211, 102, 0.5);
    background: linear-gradient(135deg, #128C7E, #25d366);
}

.floating-whatsapp:hover .floating-whatsapp-icon {
    background: #25d366;
    color: white;
    transform: rotate(10deg);
}

.floating-whatsapp:hover .floating-whatsapp-arrow {
    background: white;
    color: #25d366;
    transform: translateX(5px);
}

.floating-whatsapp-badge {
    position: absolute;
    top: -8px;
    right: -5px;
    background: #4CAF50;
    color: white;
    font-size: 0.6rem;
    font-weight: 800;
    padding: 3px 8px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 3px 8px rgba(76, 175, 80, 0.4);
    border: 2px solid white;
    animation: pulseBadge 1.5s infinite;
}

@keyframes floatWhatsapp {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

@keyframes pulseBadge {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

.floating-whatsapp.scrolled {
    background: linear-gradient(135deg, #128C7E, #075E54);
    box-shadow: 0 10px 25px rgba(18, 140, 126, 0.4);
}

/* Responsividade contato */
@media (max-width: 768px) {
    .contato-page .col-lg-4,
    .contato-page .col-lg-8,
    .contato-page .col-md-6 { width: 100%; }
    .contato-page { padding: 80px 0 40px; }
    .contato-page .section-title h2 { font-size: 2rem; }
    .floating-whatsapp { right: 15px; bottom: 20px; padding: 10px 20px 10px 12px; max-width: 240px; }
    .floating-whatsapp-icon { width: 35px; height: 35px; font-size: 1.3rem; }
    .floating-whatsapp-title { font-size: 0.9rem; }
    .floating-whatsapp-subtitle { font-size: 0.65rem; }
    .contato-page .social-links { gap: 10px; }
    .social-link { width: 45px; height: 45px; font-size: 1.3rem; }
}

@media (max-width: 480px) {
    .floating-whatsapp { width: 60px; height: 60px; border-radius: 50%; padding: 0; justify-content: center; bottom: 20px; }
    .floating-whatsapp-content { justify-content: center; padding: 0; }
    .floating-whatsapp-text, .floating-whatsapp-arrow, .floating-whatsapp-badge { display: none; }
    .floating-whatsapp-icon { width: 50px; height: 50px; font-size: 1.8rem; margin: 0; }
}

/* === LGPD Cookie Banner === */
.lgpd-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    color: #e0e0e0;
    padding: 14px 24px;
    transform: translateY(100%);
    transition: transform 0.4s ease;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.3);
}
.lgpd-banner.mostrar {
    transform: translateY(0);
}
.lgpd-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}
.lgpd-texto {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    line-height: 1.5;
}
.lgpd-texto i {
    font-size: 1.4rem;
    color: var(--laranja-vivo, #ff6b35);
    flex-shrink: 0;
}
.lgpd-texto a {
    color: var(--laranja-vivo, #ff6b35);
    text-decoration: underline;
}
.lgpd-btn {
    background: var(--laranja-vivo, #ff6b35);
    border: none;
    color: white;
    padding: 10px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s;
    white-space: nowrap;
    flex-shrink: 0;
}
.lgpd-btn:hover {
    background: #e85d2a;
    transform: translateY(-2px);
}
@media (max-width: 600px) {
    .lgpd-content { flex-direction: column; text-align: center; }
    .lgpd-texto { flex-direction: column; }
}
