/*
Theme Name: Brincando de Ser Feliz
Theme URI: https://brincandodeserfeliz.org
Author: Seu Nome
Author URI: https://seusite.com
Description: Tema personalizado para o projeto Brincando de Ser Feliz
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: brincando-de-ser-feliz
*/


/* Estilos Gerais */
:root {
    --verde-vidro: #6fab71;
    --azul-papel: #2196F3;
    --amarelo-metal: #FFC107;
    --vermelho-plastico: #f6752f;
    --marrom-organico: #795548;
    --azul-claro: #E3F2FD;
    --branco: #FFFFFF;
    --cinza-claro: #F5F5F5;
    --cinza: #9E9E9E;
    --cinza-escuro: #424242;
    --preto: #212121;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Comic Neue', Arial, sans-serif;
}

body {
    background-color: var(--branco);
    color: var(--preto);
    line-height: 1.6;
}

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

h1, h2, h3, h4 {
    color: var(--cinza-escuro);
    margin-bottom: 20px;
}

p {
    margin-bottom: 15px;
}

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

/* Botões */
.cta-button {
    display: inline-block;
    background-color: var(--vermelho-plastico);
    color: var(--branco);
    padding: 12px 25px;
    border-radius: 30px;
    font-weight: bold;
    text-transform: uppercase;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-align: center;
    margin-top: 15px;
}

.cta-button:hover {
    background-color: var(--amarelo-metal);
    color: var(--preto);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.cta-button.secundario {
    background-color: var(--azul-papel);
}

.cta-button.secundario:hover {
    background-color: var(--verde-vidro);
}

/* Cabeçalho */
.header {
    background-color: #74bfe1;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

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

.logo img {
    height: 120px;           /* Altura fixa */
    object-fit: cover;      /* Garante que a imagem preencha o círculo sem distorcer */
    display: block;         /* Remove espaços extras (opcional) */
    filter: drop-shadow(0 0 15px white); /* Sombra branca difusa */
}

.nav-menu ul {
    display: flex;
    list-style: none;
}

.nav-menu li {
    margin-left: 25px;
}

.nav-menu a {
    color: var(--branco);
    font-weight: bold;
    display: flex;
    align-items: center;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: var(--amarelo-metal);
}

.nav-menu i {
    margin-right: 8px;
    font-size: 16px;
}

/* Hero Section */
.hero {
    background: 
        linear-gradient(to right, rgba(247, 6, 6, 0.5), rgba(246, 246, 247, 0.418)),
        url(assets/images/bg01.jpg) #333;
    background-size: cover;
    background-position: center center;
    background-attachment: fixed; /* Opcional: efeito parallax */
    color: var(--branco);
    padding: 40px 0;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8); /* Melhora legibilidade */
}

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

.hero-content {
    flex: 1;
    padding-right: 30px;
}

.hero h1 {
    font-size: 2.3rem;
    color: var(--branco);
    margin-bottom: 15px;
    line-height: 1.3;
}

.slogan {
    font-size: 1.2rem;
    margin-bottom: 25px;
    opacity: 0.9;
}

.hero-image {
    flex: 1;
    text-align: center;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

/* Seção Sobre Nós */
.sobre-nos {
    padding: 80px 0;
    background-color: var(--branco);
}

.sobre-content {
    display: flex;
    gap: 40px;
    align-items: center;
}

.sobre-texto {
    flex: 1;
}

.sobre-ilustracao {
    flex: 1;
    text-align: center;
}

.sobre-ilustracao img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    margin-bottom: 20px;
}

.pilares {
    display: flex;
    justify-content: space-around;
    margin-top: 20px;
}

.pilar {
    text-align: center;
}

.pilar i {
    font-size: 2rem;
    color: var(--verde-vidro);
    margin-bottom: 10px;
}

.pilar span {
    font-weight: bold;
    display: block;
}

/* Seção Nossas Aventuras */
.aventuras {
    padding: 80px 0;
    background-color: var(--azul-claro);
}

.aventuras-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.aventura-card {
    background-color: var(--cinza-claro);
    border-radius: 10px;
    padding: 25px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.aventura-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.aventura-card:nth-child(1) {
    border-top: 5px solid var(--verde-vidro);
}

.aventura-card:nth-child(2) {
    border-top: 5px solid var(--azul-papel);
}

.aventura-card:nth-child(3) {
    border-top: 5px solid var(--amarelo-metal);
}

.aventura-card small{
    margin-left: 15px;
    padding: 3px 10px;
    font-size: 0.6em;
    border-radius: 5px;
}

.aventura-card:nth-child(1) small {
    background-color: var(--verde-vidro);
}

.aventura-card:nth-child(2) small {
    background-color: var(--azul-papel);
}

.aventura-card:nth-child(3) small {
    background-color: var(--amarelo-metal);
}

.horarios small{
    margin-left: 5px;
    padding: 3px 10px;
    font-size: 0.6em;
    border-radius: 5px;
    background-color: var(--cinza) !important;
    color: var(--branco);
}

.card-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--cinza-escuro);
}

.aventura-card h3 {
    margin-bottom: 15px;
    color: var(--cinza-escuro);
    font-size: 1.4em;
}

/* Seção Galeria da Alegria */
.galeria {
    padding: 80px 0;
    background-color: var(--cinza-claro);
}

.galeria-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-top: 40px;
}

.galeria-item {
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.galeria-item:hover {
    transform: scale(1.03);
}

.galeria-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.galeria-item:hover img {
    transform: scale(1.1);
}

/* Seção Como Ajudar */
.ajudar {
    padding: 80px 0;
    background-color: var(--marrom-organico);
    color: var(--branco);
}

.ajudar h2 {
    color: var(--branco);
}

.ajudar-content {
    display: flex;
    gap: 40px;
    margin-top: 40px;
}

.ajudar-texto {
    flex: 1;
}

.ajudar-contato {
    flex: 1;
}

.contato-form input,
.contato-form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border-radius: 5px;
    border: none;
    font-size: 1rem;
}

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

.parceiros {
    margin-top: 40px;
}

.parceiros h3 {
    color: var(--branco);
    margin-bottom: 20px;
}

.parceiros-logos {
    display: flex;
    gap: 20px;
    align-items: center;
    flex-wrap: wrap;
}

.parceiros-logos img {
    height: 60px;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.parceiros-logos img:hover {
    opacity: 1;
}

/* Rodapé */
.footer {
    background-color: var(--verde-vidro);
    color: var(--branco);
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo img {
    height: 80px;
    margin-bottom: 15px;
}

.footer-links h4,
.footer-redes h4,
.footer-contato h4 {
    color: var(--branco);
    margin-bottom: 20px;
    font-size: 1.2rem;
}

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

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    transition: color 0.3s ease;
}

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

.redes-sociais {
    display: flex;
    gap: 15px;
}

.redes-sociais a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.redes-sociais a:hover {
    background-color: var(--amarelo-metal);
    color: var(--preto);
    transform: translateY(-3px);
}

.footer-contato i {
    margin-right: 10px;
    width: 20px;
    text-align: center;
}

.footer-realizacao {
    text-align: center;
    padding-top: 20px;
}

.logos-oficiais {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 20px;
}

.logos-oficiais img {
    height: 100px;
    opacity: 0.95;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    margin-top: 20px;
}

.footer-copyright,
.footer-desenvolvido {
    font-size: 0.9rem;
    opacity: 0.8;
    padding-right: 20px;
}

.footer-desenvolvido a {
    color: var(--branco);
    transition: color 0.3s ease;
}

.footer-desenvolvido a:hover {
    color: var(--amarelo-metal);
}


/* Responsividade - Versão Mobile */
@media (max-width: 992px) {
    .aventuras-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .galeria-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-copyright {
        width: 50%;
    }

}

@media (max-width: 768px) {
    .hero .container {
        flex-direction: column;
    }
    
    .hero-content {
        padding-right: 0;
        margin-bottom: 30px;
        text-align: center;
    }
    
    .sobre-content {
        flex-direction: column;
    }
    
    .ajudar-content {
        flex-direction: column;
    }
    
    .nav-menu {
        display: none;
    }
    
    .menu-hamburguer {
        display: block;
    }
}

@media (max-width: 576px) {
    .aventuras-grid {
        grid-template-columns: 1fr;
    }
    
    .galeria-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    .hero h1 {
        font-size: 1.8rem;
    }
}

.ct-back-to-top[data-alignment=right] {
    right: calc(var(--theme-frame-size, 0px) + 40px); /* antes 25px */
}

.ct-back-to-top {
    --top-button-background-color: var(--vermelho-plastico); /* Exemplo com sua paleta */
    --theme-icon-color: var(--branco);
    --theme-icon-hover-color: var(--amarelo-metal);
    --theme-border-radius: 8px; /* Mais arredondado */
}

.ct-back-to-top.ct-show {
    --opacity: 1;
    --visibility: visible;
    --transform: translate3d(0, 0, 0);
}
.ct-back-to-top {
    position: fixed;
    z-index: 110;
    bottom: calc(var(--theme-frame-size, 0px) + var(--back-top-bottom-offset, 25px));
    display: flex
;
    align-items: center;
    justify-content: center;
    padding: 12px;
    opacity: var(--opacity, 0);
    visibility: var(--visibility, hidden);
    transform: var(--transform, translate3d(0, 15px, 0));
    background: var(--top-button-background-color, var(--theme-palette-color-3));
    box-shadow: var(--theme-box-shadow);
    border-radius: var(--theme-border-radius, 2px);
    transition: opacity .3s ease, color .3s ease, background .3s ease, transform .3s ease, visibility .3s ease;
    --theme-icon-size: 12px;
}
.ct-back-to-top {
    --theme-icon-color: #ffffff;
    --theme-icon-hover-color: #ffffff;
    --theme-border-radius: 2px;
}

.ct-back-to-top.ct-show {
    animation: fadeInUp 0.3s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate3d(0, 15px, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

.footer-apoio, .footer-patrocinio {
    text-align: center;
}

.footer-apoio img,
.footer-patrocinio img {
    max-height: 60px;
    margin: 10px;
    display: inline-block;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.footer-patrocinio .patrocinadores-logos {
    display: inline-block;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-apoio img:hover,
.footer-patrocinio img:hover {
    opacity: 1;
}

.logodev {
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
}

.devbr{
    color: #000;
}

.footer-support {
    display: flex;
    justify-content: space-around;
    align-items: center;
    text-align: center;
}

.entry-title{
    margin-top: 20px;
}

/* CSS para alinhar Patrocínio à esquerda e Realização à direita no desktop */

.footer-support {
    width: 100%;
    padding: 20px 0;
}

.footer-bottom-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    gap: 40px;
}

.footer-patrocinio {
    text-align: center;
    width: 60%;
}

.footer-patrocinio h4 {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 15px;
    color: #333;
}

.patrocinadores-logos {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: flex-start;
}

.patrocinadores-logos img {
    height: 60px;
    width: auto;
    object-fit: contain;
}

.footer-realizacao {
    text-align: center;
    width: 40%;
}

.footer-realizacao h4 {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 15px;
    color: #333;
}

.realizacao-logos img {
    height: 80px;
    width: auto;
    object-fit: contain;
}


/* Responsividade para tablets e mobiles */
@media (max-width: 768px) {
    .footer-bottom-container {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }
    
    .footer-patrocinio,
    .footer-realizacao {
        text-align: center;
        flex: none;
    }
    
    .patrocinadores-logos {
        align-items: center;
    }
    
    .realizacao-logos {
        justify-content: center;
    }
    
    .ministerio-cultura {
        justify-content: center;
    }
}

/* ============================================
   CSS MODERNO PARA PÁGINA FALE CONOSCO
   solucoes.dev.br/fale-conosco/
   ============================================ */

/* Reset e configurações base */
.page-fale-conosco,
.page-contato {
    font-family: 'Inter', 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: #2d3748;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    padding: 60px 0;
}

/* Container principal */
.contato-container,
.entry-content,
.page-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ============================================
   CABEÇALHO DA PÁGINA
   ============================================ */

.page-title,
.entry-title,
h1 {
    text-align: center;
    font-size: 3.5rem;
    font-weight: 800;
    color: #0079ab;
    margin-bottom: 20px;
    text-shadow: 0 4px 15px rgba(0,0,0,0.3);
    letter-spacing: -0.02em;
}

.page-subtitle {
    text-align: center;
    font-size: 1.3rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 60px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ============================================
   LAYOUT PRINCIPAL - GRID RESPONSIVO
   ============================================ */

.contato-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-top: 40px;
}

/* ============================================
   FORMULÁRIO DE CONTATO
   ============================================ */

.wpcf7,
.contact-form,
.formulario-contato {
    background: white;
    padding: 50px;
    border-radius: 25px;
    box-shadow: 0 25px 60px rgba(0,0,0,0.15);
    position: relative;
    overflow: hidden;
}

.wpcf7::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #667eea, #764ba2, #f093fb);
}

.wpcf7 h2,
.contact-form h2 {
    font-size: 2.2rem;
    color: #2d3748;
    margin-bottom: 30px;
    text-align: center;
    position: relative;
}

.wpcf7 h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: #667eea;
    border-radius: 2px;
}

/* Campos do formulário */
.wpcf7-form-control-wrap {
    position: relative;
    margin-bottom: 25px;
}

.wpcf7-form-control,
input[type="text"],
input[type="email"],
input[type="tel"],
textarea,
select {
    width: 100%;
    padding: 18px 20px;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-size: 16px;
    font-family: inherit;
    background: #f8fafc;
    transition: all 0.3s ease;
    outline: none;
}

.wpcf7-form-control:focus,
input:focus,
textarea:focus {
    border-color: #667eea;
    background: white;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
    transform: translateY(-2px);
}

/* Labels/Placeholders melhorados */
.wpcf7-form-control::placeholder {
    color: #a0aec0;
    font-weight: 500;
}

/* Textarea específico */
textarea.wpcf7-textarea {
    min-height: 140px;
    resize: vertical;
    font-family: inherit;
}

/* Botão de envio */
.wpcf7-submit,
input[type="submit"],
.btn-enviar {
    background: linear-gradient(45deg, #667eea, #764ba2);
    color: white;
    border: none;
    padding: 18px 40px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
    width: 100%;
    margin-top: 20px;
}

.wpcf7-submit:hover,
input[type="submit"]:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(102, 126, 234, 0.4);
}

.wpcf7-submit:active {
    transform: translateY(-1px);
}

/* Mensagens de validação */
.wpcf7-not-valid-tip {
    color: #e53e3e;
    font-size: 14px;
    margin-top: 5px;
    display: block;
}

.wpcf7-response-output {
    border-radius: 10px;
    padding: 15px;
    margin-top: 20px;
    font-weight: 500;
}

.wpcf7-mail-sent-ok {
    background: #c6f6d5;
    color: #22543d;
    border: 1px solid #9ae6b4;
}

.wpcf7-validation-errors {
    background: #fed7d7;
    color: #742a2a;
    border: 1px solid #fc8181;
}

/* ============================================
   REDES SOCIAIS
   ============================================ */

.redes-sociais,
.social-media,
.midias-sociais {
    background: white;
    padding: 50px;
    border-radius: 25px;
    box-shadow: 0 25px 60px rgba(0,0,0,0.15);
    text-align: center;
}

.redes-sociais h2,
.social-media h2 {
    font-size: 2.2rem;
    color: #2d3748;
    margin-bottom: 30px;
    position: relative;
}

.redes-sociais h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: #667eea;
    border-radius: 2px;
}

.social-links,
.redes-lista {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 30px;
}

.social-link,
.rede-social {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    color: white;
    text-decoration: none;
    font-size: 24px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

/* Cores específicas das redes sociais */
.social-link.facebook,
.rede-social.facebook {
    background: linear-gradient(45deg, #3b5998, #4c70ba);
}

.social-link.instagram,
.rede-social.instagram {
    background: linear-gradient(45deg, #e4405f, #f093fb, #fccc63);
}

.social-link.whatsapp,
.rede-social.whatsapp {
    background: linear-gradient(45deg, #25d366, #128c7e);
}

.social-link.linkedin,
.rede-social.linkedin {
    background: linear-gradient(45deg, #0077b5, #00a0dc);
}

.social-link.youtube,
.rede-social.youtube {
    background: linear-gradient(45deg, #ff0000, #cc0000);
}

.social-link.email,
.rede-social.email {
    background: linear-gradient(45deg, #ea4335, #fbbc05);
}

/* Efeitos hover para redes sociais */
.social-link:hover,
.rede-social:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

.social-link::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 0.5s;
}

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

/* ============================================
   INFORMAÇÕES ADICIONAIS
   ============================================ */

.info-adicional {
    grid-column: 1 / -1;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    padding: 40px;
    border-radius: 20px;
    color: white;
    text-align: center;
    margin-top: 40px;
}

.info-adicional h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.info-adicional p {
    font-size: 1.1rem;
    opacity: 0.9;
    line-height: 1.8;
}

/* ============================================
   RESPONSIVIDADE
   ============================================ */

@media (max-width: 768px) {
    .page-title,
    .entry-title,
    h1 {
        font-size: 2.5rem;
    }
    
    .contato-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .wpcf7,
    .redes-sociais {
        padding: 30px 25px;
    }
    
    .social-links {
        gap: 15px;
    }
    
    .social-link,
    .rede-social {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .page-fale-conosco,
    .page-contato {
        padding: 30px 0;
    }
    
    .contato-container,
    .entry-content {
        padding: 0 15px;
    }
    
    .page-title,
    h1 {
        font-size: 2rem;
    }
    
    .wpcf7,
    .redes-sociais {
        padding: 25px 20px;
    }
    
    .wpcf7 h2,
    .redes-sociais h2 {
        font-size: 1.8rem;
    }
}

/* ============================================
   ANIMAÇÕES E TRANSIÇÕES
   ============================================ */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.wpcf7,
.redes-sociais {
    animation: fadeInUp 0.8s ease-out;
}

.wpcf7 {
    animation-delay: 0.2s;
}

.redes-sociais {
    animation-delay: 0.4s;
}

/* Loading states */
.wpcf7 form.submitting .wpcf7-submit {
    background: #a0aec0;
    cursor: not-allowed;
    transform: none;
}

.wpcf7 form.submitting .wpcf7-submit::after {
    content: '';
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid white;
    border-radius: 50%;
    border-top-color: transparent;
    animation: spin 1s linear infinite;
    margin-left: 10px;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* ============================================
   MELHORIAS ESPECÍFICAS PARA TEMA ATUAL
   ============================================ */

/* Se estiver usando tema específico, adicione: */
.site-main .page-contato,
.content-area .page-fale-conosco {
    background: none;
    padding: 0;
}

/* Override para estilos conflitantes do tema */
.page-contato .entry-content,
.page-fale-conosco .entry-content {
    max-width: none;
    padding: 0;
}

/* Garante que o formulário não herde estilos indesejados */
.wpcf7 * {
    box-sizing: border-box;
}

/* ============================================
   ACESSIBILIDADE
   ============================================ */

.wpcf7-form-control:focus,
.social-link:focus {
    outline: 3px solid rgba(102, 126, 234, 0.5);
    outline-offset: 2px;
}

/* ============================================
   VERSÃO PARA IMPRESSÃO
   ============================================ */

@media print {
    .page-fale-conosco {
        background: white;
        color: black;
    }
    
    .social-links {
        display: none;
    }
}

.has-text-align-center{
    margin-top: 30px;
}

.ministerio-apresenta h2 {
    text-align: center;
    margin: 0 auto;
    text-transform: uppercase;
    color: white;
    padding-bottom: 30px;
}