/* =============================================================
COVIL V4 — components.css
Propósito: Navbar, footer, formulários, componentes visuais
============================================================= */

/* Navbar */
.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: .9rem 0;
}

.navbar__logo {
    display: flex;
    align-items: center;
    gap: .6rem;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

.navbar__menu {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.navbar a:hover {
    color: var(--dourado);
}


/* Footer */
.footer {
    padding: 2rem 0;
    color: #cfcfcf;
    border-top: 1px solid rgba(255, 255, 255, .08);
    text-align: center;
}

.footer small {
    color: #9b9b9b;
}


/* Formulários */
.form {
    display: grid;
    gap: 12px;
}

.input,
.select,
.textarea {
    width: 100%;
    background: rgba(255, 255, 255, .03);
    color: var(--branco);
    border: 1px solid rgba(255, 255, 255, .15);
    border-radius: 12px;
    padding: .9rem 1rem;
}

.input::placeholder {
    color: #8d8d8d;
}

/* Destaques visuais */
.highlight {
    color: var(--dourado);
    text-shadow: 0 0 18px rgba(212, 175, 55, .2);
}


/* Mensagens/Alertas */
.alert {
    padding: 1rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, .12);
}

.alert--success {
    background: rgba(50, 205, 50, .1);
    border-color: rgba(50, 205, 50, .35);
}

.alert--error {
    background: rgba(220, 20, 60, .1);
    border-color: rgba(220, 20, 60, .35);
}

/* =========================================================
   PROVA SOCIAL - Depoimentos ⚜️
========================================================= */
.section#prova {
    background: #000;
    color: #f5f5f5;
    text-align: center;
    padding: 4rem 1.5rem;
}

.swiper-depoimentos {
    margin-top: 2rem;
}

.swiper-depoimentos .swiper-slide {
    display: flex;
    justify-content: center;
}

.swiper-depoimentos .card {
    background: linear-gradient(180deg, rgba(255, 215, 0, 0.1), rgba(255, 215, 0, 0.05));
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 12px;
    padding: 1.8rem;
    font-size: 1rem;
    line-height: 1.6;
    max-width: 500px;
    width: 90%;
    box-shadow: 0 0 12px rgba(255, 215, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.swiper-depoimentos .card:hover {
    transform: scale(1.03);
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.25);
}

/* =========================================================
   BOTÕES FLUTUANTES - COVIL DO PAI HIAGO ⚜️ (com ícones SVG)
========================================================= */

.btn-flutuante {
    position: fixed;
    bottom: 40px;
    right: 30px;
    background: linear-gradient(135deg, #d4af37, #f8e28b);
    color: #000;
    border: none;
    border-radius: 50%;
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.3);
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
    z-index: 9999;
    animation: glowPulseFlutuante 3s ease-in-out infinite;
}

.btn-flutuante svg {
    width: 24px;
    height: 24px;
    pointer-events: none;
}

.btn-flutuante.visivel {
    opacity: 1;
    visibility: visible;
}

.btn-flutuante:hover {
    transform: scale(1.1);
    animation-duration: 1.8s;
    box-shadow: 0 0 25px rgba(255, 215, 0, 0.6);
}

/* SETA PARA PLANOS */
.seta-planos {
    right: 100px;
    background: linear-gradient(135deg, #0a0a0a, #1a1a1a);
    color: #ffd700;
    border: 1px solid rgba(255, 215, 0, 0.4);
    animation: glowPulseFlutuante 4s ease-in-out infinite;
}

/* Animação de pulso ritualístico */
@keyframes glowPulseFlutuante {
  0% {
    box-shadow: 0 0 8px rgba(255, 215, 0, 0.25),
                0 0 20px rgba(255, 215, 0, 0.1);
    transform: scale(1);
  }
  50% {
    box-shadow: 0 0 16px rgba(255, 215, 0, 0.55),
                0 0 30px rgba(255, 215, 0, 0.25);
    transform: scale(1.05);
  }
  100% {
    box-shadow: 0 0 8px rgba(255, 215, 0, 0.25),
                0 0 20px rgba(255, 215, 0, 0.1);
    transform: scale(1);
  }
}