/* Estilos personalizados para a Tenda Boiadeiro 7 Laços */

/* Scroll suave para navegação */
html {
    scroll-behavior: smooth;
}

/* Animações personalizadas */
@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes glow {
    0%, 100% {
        box-shadow: 0 0 5px rgba(198, 40, 40, 0.3);
    }
    50% {
        box-shadow: 0 0 20px rgba(198, 40, 40, 0.6);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Classes de animação personalizadas */
.animate-float {
    animation: float 3s ease-in-out infinite;
}

.animate-glow {
    animation: glow 2s ease-in-out infinite;
}

.fade-in-up {
    animation: fadeInUp 0.8s ease-out;
}

/* Estilos para elementos espirituais */
.spiritual-bg {
    background: linear-gradient(135deg, #f5f5dc 0%, #f8f9fa 100%);
    position: relative;
}

.spiritual-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="1" fill="%23c62828" opacity="0.1"/><circle cx="80" cy="40" r="1" fill="%234e342e" opacity="0.1"/><circle cx="40" cy="80" r="1" fill="%23c62828" opacity="0.1"/></svg>');
    pointer-events: none;
}

/* Estilos para botões espirituais */
.btn-spiritual {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.btn-spiritual::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: left 0.5s;
}

.btn-spiritual:hover::before {
    left: 100%;
}

/* Estilos para cards */
.card-spiritual {
    transition: all 0.3s ease;
    border: 1px solid rgba(78, 52, 46, 0.1);
}

.card-spiritual:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(78, 52, 46, 0.15);
}

/* Estilos para imagens */
.img-spiritual {
    transition: all 0.3s ease;
}

.img-spiritual:hover {
    transform: scale(1.02);
}

/* Estilos para o header */
.header-transparent {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

/* Estilos para elementos de destaque */
.highlight-text {
    background: linear-gradient(45deg, #4e342e, #c62828);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Estilos para ícones espirituais */
.icon-spiritual {
    transition: all 0.3s ease;
}

.icon-spiritual:hover {
    transform: scale(1.1) rotate(5deg);
}

/* Estilos para o botão WhatsApp */
.whatsapp-btn {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(34, 197, 94, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(34, 197, 94, 0);
    }
}

/* Estilos para responsividade */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
        line-height: 1.2;
    }
    
    .section-padding {
        padding: 3rem 0;
    }
}

/* Estilos para loading */
.loading {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.loading.loaded {
    opacity: 1;
    transform: translateY(0);
}

/* Estilos para elementos decorativos */
.decorative-line {
    height: 2px;
    background: linear-gradient(90deg, transparent, #c62828, transparent);
    margin: 2rem auto;
    width: 100px;
}

/* Estilos para textos espirituais */
.quote-spiritual {
    font-style: italic;
    position: relative;
    padding: 1rem 2rem;
}

.quote-spiritual::before,
.quote-spiritual::after {
    content: '"';
    font-size: 3rem;
    color: #c62828;
    position: absolute;
    opacity: 0.3;
}

.quote-spiritual::before {
    top: -10px;
    left: 0;
}

.quote-spiritual::after {
    bottom: -20px;
    right: 0;
}

/* Estilos para o mapa */
.map-container {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Estilos para links de navegação */
.nav-link {
    position: relative;
    transition: all 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #c62828;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

/* Estilos para seções alternadas */
.section-alt {
    background: linear-gradient(135deg, #f8f9fa 0%, #f5f5dc 100%);
}

/* Estilos para elementos de destaque */
.feature-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(78, 52, 46, 0.05);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

/* Estilos para o logo */
.logo-container {
    transition: all 0.3s ease;
}

.logo-container:hover {
    transform: scale(1.05);
}

/* Estilos para elementos de fundo */
.bg-pattern {
    background-image: 
        radial-gradient(circle at 25% 25%, rgba(198, 40, 40, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(78, 52, 46, 0.03) 0%, transparent 50%);
}

/* Estilos para botões de ação */
.cta-button {
    background: linear-gradient(45deg, #c62828, #d32f2f);
    border: none;
    color: white;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(198, 40, 40, 0.3);
}

.cta-button::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: left 0.5s;
}

.cta-button:hover::before {
    left: 100%;
}

/* Estilos para depoimentos */
.testimonial-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 4rem;
    color: #c62828;
    opacity: 0.2;
    font-family: serif;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

/* Estilos para galeria */
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.gallery-item img {
    transition: all 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(198, 40, 40, 0.1), rgba(78, 52, 46, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover::after {
    opacity: 1;
}

/* Estilos para loading da página */
.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: white;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
}

.page-loader.fade-out {
    opacity: 0;
    pointer-events: none;
}

/* Estilos para elementos de destaque */
.highlight-box {
    background: linear-gradient(135deg, rgba(198, 40, 40, 0.05), rgba(78, 52, 46, 0.05));
    border-left: 4px solid #c62828;
    padding: 1.5rem;
    border-radius: 0 8px 8px 0;
    margin: 2rem 0;
}

/* Estilos para ícones de serviço */
.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #c62828, #d32f2f);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 2rem;
    color: white;
    transition: all 0.3s ease;
}

.service-icon:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 25px rgba(198, 40, 40, 0.3);
}

