/* ===== HOME DEFINITIVO - SEGUINDO LAYOUT EXATO ===== */

/* Slider funcionando */
.hero-slider {
    margin-top: 80px;
    height: 600px;
    position: relative;
    overflow: hidden;
}

.hero-slider .slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease;
}

.hero-slider .slide.active {
    opacity: 1;
    z-index: 1;
}

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

/* Botões menos arredondados (tipo WhatsApp) */
.btn,
a.btn,
button.btn {
    border-radius: 6px !important;
    padding: 14px 28px !important;
    font-weight: 700 !important;
    font-size: 1rem !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
}

/* Cards "Por que escolher" com ícones gradiente */
.why-card {
    background: rgba(26, 26, 46, 0.6);
    border: 1px solid rgba(139, 0, 255, 0.2);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s;
}

.why-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #FF006E, #8B00FF, #00D9FF);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2.5rem;
}

/* Agenda cards - ícone relógio outline */
.agenda-card {
    background: rgba(26, 26, 46, 0.8);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 15px;
    padding: 35px 20px;
    text-align: center;
}

.agenda-card.gradient {
    background: linear-gradient(135deg, #FF006E, #8B00FF, #00D9FF);
}

.agenda-card .clock-icon {
    width: 60px;
    height: 60px;
    border: 3px solid currentColor;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    position: relative;
}

.agenda-card .clock-icon::before {
    content: '';
    position: absolute;
    width: 2px;
    height: 18px;
    background: currentColor;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
}

.agenda-card .clock-icon::after {
    content: '';
    position: absolute;
    width: 12px;
    height: 2px;
    background: currentColor;
    top: 28px;
    left: 50%;
}

/* Banners - títulos em branco */
.cta-banner h2 {
    color: white !important;
    background: none !important;
    -webkit-text-fill-color: white !important;
    text-shadow: none !important;
}

.cta-banner .btn-white {
    background: white;
    color: #0a0a0a;
    border-radius: 6px;
}

.cta-banner .btn-outline {
    background: transparent;
    color: white;
    border: 2px solid white;
    border-radius: 6px;
}

/* Footer - 2 COLUNAS */
.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-left {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.footer-right {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

/* Footer - Logo */
.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.footer-logo-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #8B00FF, #FF006E);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

/* Footer - Ícones em linha simples rosa */
.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 0.95rem;
    line-height: 1.6;
}

.footer-icon {
    width: 20px;
    height: 20px;
    color: #FF006E;
    flex-shrink: 0;
    margin-top: 2px;
}

/* Menu mobile - texto visível */
.nav-list a {
    color: white !important;
}

.nav-list a.active {
    color: #FF006E !important;
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}
