/* ===== CONFIGURAÇÕES BÁSICAS ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

/* Importa fonte bonita do Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Great+Vibes&family=Poppins:wght@400;600&display=swap');

/* Estilo do cabeçalho */
.header .logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-shadow: 0px 2px  rgb(185, 184, 184);
}

.church-name h4 {
    align-items: center;
    text-shadow: 0px 2px  rgb(185, 184, 184);
    font-size: 16px;
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
    padding: 0px 60px 0px 0px;
}

.church-name:hover {
    color: var(--primary-color);
}
.church-name:hover::after {
    width: 100%;
}

/* Efeito de brilho 
  from {
    text-shadow: 25px #030303;
  }
  to {
    text-shadow: 40px #030303;
  }
}

h4 {
     color:#197194fd;
     font-size: 0.8rem;
    flex-direction: column;
    text-align: center;
       font-family: 'Playfair Display', serif;
     font-weight: 700;
     line-height: 1.2;
    padding: 0px 0px 0px 10px;
 
}*/
body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    background: #ffffff;
}

/* Garantir que todas as imagens sejam responsivas */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ===== VARIÁVEIS CSS ===== */
:root {
    /* Cores principais */
    --primary-color: #09d41afd;         /* Roxo principal */
    --secondary-color: #76198d;       /* Roxo secundário */
    --accent-color: #078807;          /* Verde de destaque */
    --text-dark: #1f2937;             /* Texto escuro */
    --text-light: #6d806b;            /* Texto claro */
    --white: #ffffff;
    --light-bg: #f8fafc;
    --border-color: #e5e7eb;
    --dark-bg: #111827;
    
    /* Gradientes */
    --gradient-primary: linear-gradient(135deg, #23cbf5 0%, #86ec8b 100%);
    --gradient-secondary: linear-gradient(135deg, #8de79c 0%, #f03c69 100%);   
    --gradient-accent: linear-gradient(135deg, #309db1 0%, #78fa8d 100%);
    
    /* Sombras */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    
    /* Transições */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.15s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== CLASSES UTILITÁRIAS ===== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Botões */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border: none;
    border-radius: 15px;
    text-decoration: none;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    font-size: 16px;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: var(--transition);
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
}

.btn-secondary {
    font-size: 16px;
    background: transparent;
    color: var(--primary-color);
    border: 6px solid var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
}

/* Cabeçalhos de seção */
.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-tag {
    display: inline-block;
    background: var(--gradient-primary);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
}

.section-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
    line-height: 1.2;
}

.section-header p {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* ===== CABEÇALHO DO SITE ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
   /* background-image: url("background3.png");*/
    background: rgba(249, 248, 252, 0.95);
    backdrop-filter: blur(20px);
    z-index: 1000;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

/*.header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-md);
}*/

.navbar {
    padding: 15px 0;
}

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

/* Logo */
.logo {
   flex-direction: column;
    display: flex;
    align-items: center;
    flex-shrink: 0;
   
}

.logo img {
    height: 80px;
    width: auto;
    max-width: 120px;
    object-fit: contain;
}
.logo2 {
    display: flex;
    padding: 0px;   
}
/* Player de Rádio no Cabeçalho */
.header-radio {
     align-items: center;
   flex-direction: column;
    display: flex;
     flex-shrink: 0;
    margin: 0px;
    
}

/*.header-radio iframe {
  
    border-radius: 8px;
    box-shadow: 0 5px 8px rgba(0, 0, 0, 0.1);
}*/

/* Menu de Navegação */
.nav-menu {
    display: flex;
    list-style: none;
    gap: 20px;
    margin: 0;
    padding: 0;
}

.nav-menu a {
    text-shadow: 0px 2px  rgb(172, 171, 171);
    font-size: 20px;
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
    padding: 8px 0;
}

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

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: var(--transition);
    border-radius: 2px;
}

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

/* Menu Hamburger para Mobile */
.hamburger {
    
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
    padding: 10px;
    z-index: 1001;
}

.hamburger span {
    background-color: #111827;
    width: 25px;
    height: 3px;
    /*background: var(--primary-color);
    transition: var(--transition);*/
    border-radius: 3px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* ===== SEÇÃO HERO ===== */
.hero {
    background-image: url("background.png");
    width: 100%;
    height: 100%;
    height: 100vh;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-overlay {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-content {
    
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 0 20px;
    animation: fadeInUp 1s ease-out;
}

.hero-buttons {
    
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}
.btn, .btn-secondary{
 font-size: 0.8rem;
}
.hero-scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--white);
    font-size: 1.5rem;
    animation: bounce 2s infinite;
    cursor: pointer;
}

/* ===== SEÇÃO SOBRE ===== */
.about {
    padding: 120px 0;
    background: var(--white);
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 80px;
    align-items: start;
}

.about-item {
    display: flex;
    gap: 24px;
    margin-bottom: 40px;
    padding: 30px;
    border-radius: 16px;
    transition: var(--transition);
}

.about-item:hover {
    background: var(--light-bg);
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.about-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.about-info h3 {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 12px;
    font-weight: 600;
}

.about-info p {
    color: var(--text-light);
    line-height: 1.6;
}

.about-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.stat-item {
    text-align: center;
    padding: 30px 20px;
    background: var(--light-bg);
    border-radius: 16px;
    transition: var(--transition);
}

.stat-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.stat-label {
    color: var(--text-light);
    font-weight: 500;
}

/* ===== GALERIA DE IMAGENS - CARROSSEL ===== */
.image-gallery {
    margin-top: 60px;
}

.image-gallery h3 {
    text-align: center;
    font-size: 2rem;
    color: var(--text-dark);
    margin-bottom: 40px;
    font-weight: 600;
}

/* Container do carrossel */
.carousel-container {
    position: relative;
    max-width: 100%;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

/* Wrapper das imagens */
.carousel-wrapper {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
}

/* Item individual do carrossel */
.carousel-item {
    min-width: 100%;
    position: relative;
    cursor: pointer;
    aspect-ratio: 16/9;
}

.carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

/* Overlay com informações */
.carousel-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    color: white;
    padding: 30px;
    transform: translateY(100%);
    transition: var(--transition);
}

.carousel-item:hover .carousel-overlay {
    transform: translateY(0);
}

.carousel-overlay h4 {
    font-size: 1.2rem;
    margin-bottom: 8px;
}

.carousel-overlay p {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Botões de navegação */
.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    z-index: 10;
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-md);
}

.carousel-nav:hover {
    background: rgba(255, 255, 255, 1);
    transform: translateY(-50%) scale(1.1);
}

.carousel-nav.prev {
    left: 20px;
}

.carousel-nav.next {
    right: 20px;
}

.carousel-nav i {
    font-size: 1.2rem;
    color: var(--primary-color);
}

/* Indicadores */
.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.carousel-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.3);
    cursor: pointer;
    transition: var(--transition);
}

.carousel-indicator.active {
    background: var(--primary-color);
    transform: scale(1.2);
}

/* Thumbnails */
.carousel-thumbnails {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
    gap: 10px;
    margin-top: 20px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.carousel-thumbnail {
    aspect-ratio: 4/3;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
}

.carousel-thumbnail:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.carousel-thumbnail.active {
    border-color: var(--primary-color);
}

.carousel-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Modal de ampliação */
.image-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(5px);
}

.image-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content-image {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    margin: auto;
}

.modal-content-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 12px;
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    background: rgba(0, 0, 0, 0.5);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.modal-close:hover {
    background: rgba(0, 0, 0, 0.8);
    transform: scale(1.1);
}

/* Controles do modal */
.modal-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    border: none;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    color: white;
    font-size: 1.5rem;
}

.modal-nav:hover {
    background: rgba(0, 0, 0, 0.8);
    transform: translateY(-50%) scale(1.1);
}

.modal-nav.prev {
    left: 20px;
}

.modal-nav.next {
    right: 20px;
}

/* ===== SEÇÃO EVENTOS ===== */
.events {
    padding: 120px 0;
    background: var(--light-bg);
}

.event-highlight {
    margin-bottom: 80px;
}

.event-content {
    display: flex;
    align-items: center;
    justify-content: center;
}

.event-image {
    max-width: 400px;
    border-radius: 20px;
    overflow: hidden;
}

.event-img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.weekly-services h3 {
    text-align: center;
    font-size: 2rem;
    color: var(--text-dark);
    margin-bottom: 40px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-2xl);
}

.service-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.service-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.service-card:hover .service-img {
    transform: scale(1.05);
}

.service-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: white;
    padding: 20px;
}

.service-overlay h4 {
    font-size: 1.2rem;
    margin: 0;
}

.service-info {
    padding: 24px;
}

.service-info h5 {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.service-schedule {
    display: flex;
    gap: 20px;
    margin-bottom: 12px;
}

.schedule-item {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.9rem;
    color: var(--text-light);
}

.schedule-item i {
    color: var(--primary-color);
}

.service-info p {
    color: var(--text-light);
    line-height: 1.5;
}

/* ===== SEÇÃO VÍDEOS ===== */
.videos {
    padding: 120px 0;
    background: var(--white);
}

.live-stream {
    margin-bottom: 60px;
}

.live-stream h3 {
    text-align: center;
    font-size: 2rem;
    color: var(--text-dark);
    margin-bottom: 30px;
}

.live-container {
    max-width: 800px;
    margin: 0 auto;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.live-container iframe {
    width: 100%;
    height: 450px;
}

.video-loading {
    text-align: center;
    padding: 80px 20px;
    color: var(--text-light);
}

.video-loading i {
    font-size: 4rem;
    color: #ff0000;
    margin-bottom: 20px;
    display: block;
}

.videos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.video-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    cursor: pointer;
}

.video-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-2xl);
}

.video-thumbnail {
    position: relative;
    width: 100%;
    height: 220px;
    overflow: hidden;
}

.video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.video-card:hover .video-thumbnail img {
    transform: scale(1.05);
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    background: rgba(255, 0, 0, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

.video-card:hover .play-button {
    transform: translate(-50%, -50%) scale(1.1);
    background: rgba(255, 0, 0, 1);
}

.video-info {
    padding: 24px;
}

.video-info h4 {
    font-size: 1.2rem;
    color: var(--text-dark);
    line-height: 1.4;
    margin-bottom: 8px;
    font-weight: 600;
}

.video-meta {
    color: var(--text-light);
    font-size: 0.9rem;
}

.videos-link {
    text-align: center;
}

/* ===== SEÇÃO CURSOS ===== */
.courses {
    padding: 120px 0;
    background: var(--light-bg);
}

.payment-info {
    margin-bottom: 80px;
}

.payment-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
}

.step {
    text-align: center;
    padding: 30px 20px;
    background: var(--white);
    border-radius: 16px;
    position: relative;
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    margin: 0 auto 16px;
}

.step-text {
    color: var(--text-dark);
    font-weight: 500;
}

.courses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.course-card {
    background: var(--white);
    border-radius: 24px;
    padding: 40px;
    text-align: center;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.course-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
}

.course-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-2xl);
}

.course-image {
    width: 100px;
    height: 100px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    position: relative;
}

.course-image::after {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: var(--gradient-primary);
    border-radius: 50%;
    opacity: 0.1;
    z-index: -1;
}

.course-image i {
    font-size: 2.5rem;
    color: var(--white);
}

.course-content h3 {
    font-size: 1.6rem;
    color: var(--text-dark);
    margin-bottom: 16px;
    font-weight: 600;
}

.course-content p {
    color: var(--text-light);
    margin-bottom: 24px;
    line-height: 1.6;
}

.course-features {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 24px;
}

.course-features span {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: var(--text-light);
    font-size: 0.9rem;
}

.course-features i {
    color: var(--accent-color);
}

.course-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 30px;
}

.course-buy-btn {
    width: 100%;
    justify-content: center;
    font-size: 1.1rem;
    padding: 16px 32px;
    margin-bottom: 15px;
}

.course-preview-btn {
    width: 100%;
    justify-content: center;
    font-size: 0.9rem;
    padding: 12px 24px;
}

/* ===== SEÇÃO CONTATO ===== */
.contact {
    padding: 120px 0;
    background: var(--white);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}

.contact-item {
    display: flex;
    gap: 24px;
    margin-bottom: 40px;
    padding: 30px;
    background: var(--light-bg);
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.contact-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.contact-details h4 {
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-bottom: 8px;
    font-weight: 600;
}

.contact-details p {
    color: var(--text-light);
    line-height: 1.6;
}

.contact-form {
    background: var(--light-bg);
    padding: 50px;
    border-radius: 24px;
    box-shadow: var(--shadow-lg);
}

.form-group {
    margin-bottom: 24px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 18px 20px;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    font-size: 16px;
    transition: var(--transition);
    font-family: inherit;
    background: var(--white);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

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

/* ===== RODAPÉ ===== */
.footer {
    background: var(--dark-bg);
    color: var(--white);
    padding: 80px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 50px;
    margin-bottom: 50px;
}

.footer-section h4 {
    font-size: 1.3rem;
    margin-bottom: 24px;
    font-weight: 600;
    color: var(--white);
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 12px;
}

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

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
}

.footer-section ul li a:hover {
    color: var(--white);
}

.footer-logo img {
    padding-left: 60px;
    display: flex;
    text-align: center;
    height: 60px;
    width: auto;
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
}

.social-links a {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
    transition: var(--transition);
}

.social-links a:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

/* ===== MODAL PIX ===== */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: var(--white);
    margin: 5% auto;
    padding: 40px;
    border-radius: 20px;
    width: 90%;
    max-width: 600px;
    position: relative;
    box-shadow: var(--shadow-2xl);
}

.close {
    position: absolute;
    right: 20px;
    top: 20px;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    color: var(--text-light);
    transition: var(--transition);
}

.close:hover {
    color: var(--text-dark);
}

/* ===== BOTÕES FLUTUANTES ===== */
.floating-buttons {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 999;
}

.floating-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    text-decoration: none;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
}

.floating-btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
}

.youtube-btn {
    background: #ff0000;
}

.instagram-btn {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

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

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

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

/* Tablets */
@media (max-width: 1024px) {
    .container {
        padding: 0 15px;
    }
    
    .section-header h2 {
        font-size: 2.5rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .courses-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 30px;
    }
    
    .videos-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 25px;
    }
    
    /* Ajustar player de rádio no cabeçalho */
    .header-radio {
        margin:0px;
    }
    .header-radio {
   
    display: flex;
    align-items: center;
    flex-shrink: 0;
    /*margin: 0 20px;*/
    
}
    .header-radio iframe {
        width: 240px;
        height: 50px;
    }
}

/* Smartphones */
@media (max-width: 768px) {
    /* Cabeçalho mobile */
    .navbar {
        padding: 10px 0;
    }
    
    .navbar .container {
        gap: 10px;
        position: relative;
    }
   /* h4 {
     color:#197194fd;
     font-size: 0.7rem;
    flex-direction: column;
    text-align: center;
    text-decoration-color: #5b8bf3;
     font-family: 'Playfair Display', serif;
     font-weight: 700;
     line-height: 1.2;
    padding: 0px 0px 0px 10px; 
    }*/

    .logo img {
        height: 60px;
        max-width: 80px;
    }
    
    /* Esconder player de rádio no mobile 
    .header-radio {
        display: none !important;
    }*/
      /* Ajustar player de rádio no cabeçalho */
    .header-radio {
        margin:0px;
    }
    .header-radio {
  
    display: flex;
    align-items: center;
    flex-shrink: 0;
    margin: 0px;
    
}
    .header-radio iframe {
        width: 40px;
        height: 45px;
    }
    /* Menu mobile - ESCONDER MENU DESKTOP */
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 50px;
        transition: var(--transition);
        box-shadow: var(--shadow-lg);
        z-index: 999;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        margin: 15px 0;
    }
    
    .nav-menu a {
        font-size: 1.2rem;
        padding: 15px 30px;
        border-radius: 12px;
        transition: var(--transition);
        display: block;
        width: 200px;
        text-align: center;
    }
    
    .nav-menu a:hover {
        background: var(--light-bg);
    }
    
    /* MOSTRAR HAMBURGER NO MOBILE */
    .hamburger {
        display: flex !important;
        position: relative;
        z-index: 1001;
    }
    
    /* Hero mobile */
    .hero {
        height: 100vh;
        background-attachment: scroll;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    /*.btn, .btn-secondary{
 font-size: 2rem;
}*/

    .btn-primary{
        font-size: 1rem;
    }
    .btn {
        padding: 12px 24px;
        font-size: 1rem;
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
    
    /* Seções mobile */
    .section-header {
        margin-bottom: 60px;
    }
    
    .section-header h2 {
        font-size: 2rem;
        line-height: 1.3;
    }
    
    .section-header p {
        font-size: 1rem;
    }
    
    /* Carrossel mobile */
    .carousel-nav {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .carousel-nav.prev {
        left: 10px;
    }
    
    .carousel-nav.next {
        right: 10px;
    }
    
    .carousel-overlay {
        padding: 20px;
    }
    
    .carousel-thumbnails {
        grid-template-columns: repeat(auto-fit, minmax(60px, 1fr));
        gap: 8px;
        margin-top: 15px;
    }
    
    .modal-nav {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .modal-nav.prev {
        left: 10px;
    }
    
    .modal-nav.next {
        right: 10px;
    }
    
    .modal-close {
        top: 10px;
        right: 10px;
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }
    
    .image-gallery h3 {
        font-size: 1.5rem;
        margin-bottom: 30px;
    }
    
    /* About mobile */
    .about-item {
        flex-direction: column;
        text-align: center;
        padding: 25px 20px;
    }
    
    .about-icon {
        margin: 0 auto 20px;
    }
    
    .about-stats {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }
    
    .stat-item {
        padding: 25px 15px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    /* Events mobile */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    /* Videos mobile */
    .videos-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .video-thumbnail {
        height: 200px;
    }
    
    .live-container iframe {
        height: 250px;
    }
    
    /* Courses mobile */
    .payment-steps {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .courses-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .course-card {
        padding: 30px 25px;
    }
    
    /* Contact mobile */
    .contact-item {
        flex-direction: column;
        text-align: center;
        padding: 25px 20px;
    }
    
    .contact-icon {
        margin: 0 auto 15px;
    }
    
    .contact-form {
        padding: 30px 25px;
    }
    
    /* Footer mobile */
    .footer {
        padding: 60px 0 20px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    .footer-logo img {
        padding: 0px 0px 0px 190px;
    flex-direction: column;
    display: flex;
    text-align: center;
    /*height: 40px;
    width: 40px;*/
    margin-bottom: 20px;
}
    /* Botões flutuantes mobile - CORRIGIR POSICIONAMENTO */
    .floating-buttons {
        bottom: 20px;
        right: 20px;
        gap: 15px;
        position: fixed;
        z-index: 998;
    }
    
    .floating-btn {
        width: 55px;
        height: 55px;
        font-size: 1.3rem;
        box-shadow: var(--shadow-lg);
    }
}

/* Smartphones pequenos */
@media (max-width: 480px) {
    .container {
        padding: 0 10px;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 13px;
    }
    
    .about-stats {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .stat-item {
        padding: 20px 10px;
    }
    
    .contact-form {
        padding: 20px 15px;
    }
    
    .modal-content {
        padding: 20px;
        margin: 10% auto;
    }
    
    /* Botões flutuantes ainda menores */
    .floating-buttons {
        bottom: 15px;
        right: 15px;
        gap: 10px;
    }
    
    .floating-btn {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    .footer-logo img {
    padding-left: 60px;
    display: flex;
    text-align: center;
    height: 60px;
    width: auto;
    margin-bottom: 20px;
}
}
/* Otimizações para dispositivos touch */
@media (hover: none) and (pointer: coarse) {
    .btn:hover,
    .about-item:hover,
    .contact-item:hover,
    .service-card:hover,
    .video-card:hover,
    .course-card:hover {
        transform: none;
    }
    
    .btn:active {
        transform: scale(0.98);
    }
}

