/* css/FooterStyle.css */
 
/* --- ESTADOS DE REVEAL --- */
.reveal-footer-col {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}
 
.active-reveal {
    opacity: 1;
    transform: translateY(0);
}
 
/* --- MAIN FOOTER REESTRUTURADO --- */
.main-footer-salon-layout {
    padding: 100px 0 40px;
    background: #080808; 
    margin-top: 100px;
    position: relative; /* Necessário para ancorar a linha no topo */
}

/* Criando a linha com gradiente no topo */
.main-footer-salon-layout::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px; /* A espessura da sua linha */
    background: var(--accent-gradient);
}
/* Grid com proporções idênticas ao do Salão */
.footer-grid-salon {
    display: grid;
    grid-template-columns: 1.3fr 0.8fr 1.1fr 1.3fr;
    gap: 40px;
    margin-bottom: 80px;
}
 
/* Linhas Divisórias Verticais do Salão */
.col-divider {
    border-left: 1px solid rgba(255, 255, 255, 0.08);
    padding-left: 40px;
}
 
/* --- COLUNA 1: BRAND & ICONES REDONDOS --- */
.footer-logo h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    line-height: 1.2;
    margin-bottom: 20px;
}
 
.footer-description {
    color: #777;
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 25px;
}
 
.social-title-label {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 15px;
    letter-spacing: 0.5px;
}
 
.footer-social-icons-circle {
    display: flex;
    gap: 12px;
}
 
/* Ícones 100% Circulares como os do Salão */
.social-icon-round {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #aaa;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}
 
.social-icon-round:hover {
    background: var(--accent-gradient);
    color: #fff;
    transform: translateY(-3px);
}
 
/* --- COLUNA 2: LINKS RÁPIDOS / NAVEGAÇÃO --- */
.footer-title {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 30px;
    letter-spacing: 1.5px;
}
 
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}
 
.footer-links li {
    margin-bottom: 14px;
}
 
.footer-links a {
    color: #777;
    font-size: 0.9rem;
    transition: 0.3s ease;
    display: inline-block;
    text-decoration: none;
}
 
.footer-links a:hover {
    color: var(--accent-color);
    padding-left: 6px;
}
 
/* --- COLUNA 3: LISTA DE CONTATOS E HORÁRIOS --- */
.footer-salon-contact-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
 
.contact-row-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    color: #777;
    font-size: 0.9rem;
    text-decoration: none;
    transition: color 0.3s;
}
 
.contact-row-item i {
    color: var(--accent-color); /* Ícones com a cor da Culinária */
    font-size: 1rem;
    margin-top: 3px;
    width: 16px;
    text-align: center;
}
 
.contact-row-item span {
    color: #aaa;
}
 
.hours-row {
    margin-top: 5px;
}
 
.hours-block {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
 
.hours-block span {
    color: #777;
}
 
/* --- COLUNA 4: LOCALIZAÇÃO & MINI MAPA COMPACTO --- */
.footer-salon-location {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
 
.location-text-inline {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #777;
    display: flex;
    gap: 12px;
    margin: 0;
}
 
.location-text-inline i {
    color: var(--accent-color);
    font-size: 1.1rem;
    margin-top: 3px;
}
 
/* Container do Mini Mapa idêntico ao tamanho do Salão */
.map-wrapper-compact {
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.3);
    border: 1px solid rgba(255, 255, 255, 0.05);
}
 
.map-container-abstract-compact {
    display: block;
    width: 100%;
    height: 160px; /* Altura reduzida para caber perfeitamente na coluna */
    background-color: #e4ece7;
    position: relative;
    text-decoration: none;
}
 
.map-card-abstract-bg {
    width: 100%;
    height: 100%;
    position: relative;
}
 
/* Linhas simuladoras do mapa urbano */
.map-line-trace {
    position: absolute;
    background-color: #ffffff;
}
 
.map-line-trace.lane-1 {
    width: 100%;
    height: 6px;
    top: 45%;
    left: 0;
    transform: rotate(-3deg);
}
 
.map-line-trace.lane-2 {
    width: 6px;
    height: 100%;
    left: 45%;
    top: 0;
}
 
.map-line-trace.lane-3 {
    width: 100%;
    height: 4px;
    bottom: 25%;
    left: 0;
}
 
.map-pin-center {
    position: absolute;
    top: 35%;
    left: 42%;
    color: var(--accent-color);
    font-size: 1.8rem;
    animation: bouncePin 2s infinite ease-in-out;
    z-index: 2;
}
 
/* Botão "COMO CHEGAR" flutuando sobre o mini mapa */
.map-btn-overlay {
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-gradient);
    color: #fff;
    font-weight: 700;
    font-size: 0.75rem;
    letter-spacing: 1px;
    padding: 10px 24px;
    border-radius: 30px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.25);
    white-space: nowrap;
    transition: 0.3s;
    z-index: 3;
}
 
.map-container-abstract-compact:hover .map-btn-overlay {
    transform: translateX(-50%) scale(1.05);
}
 
/* --- FOOTER BOTTOM --- */
.footer-bottom-salon {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 40px;
    text-align: center;
    width: 100%;
}
 
.footer-bottom-content p {
    color: #555;
    font-size: 0.85rem;
    line-height: 1.6;
}
 
.footer-bottom-content .disclaimer {
    margin-top: 10px;
    font-size: 0.75rem;
}
 
/* --- WHATSAPP FLOAT --- */
.whatsapp-float-premium {
    position: fixed;
    bottom: 30px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    z-index: 9999;
}
 
.wa-pulse {
    position: absolute;
    width: 100%;
    height: 100%;
    background: #25d366;
    border-radius: 50%;
    animation: wa-pulse 2s infinite;
}
 
/* --- ANIMATIONS KEYFRAMES --- */
@keyframes bouncePin {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}
 
@keyframes wa-pulse {
    0% { transform: scale(1); opacity: 0.5; }
    100% { transform: scale(1.6); opacity: 0; }
}
 
/* ========================= */
/* 🔥 RESPONSIVIDADE MOBILE   */
/* ========================= */
@media (max-width: 992px) {
    .footer-grid-salon {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
    .col-divider {
        border-left: none;
        padding-left: 0;
    }
}
 
@media (max-width: 768px) {
    .main-footer-salon-layout {
        padding: 60px 0 30px;
    }
    .footer-grid-salon {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    .footer-social-icons-circle,
    .contact-row-item {
        justify-content: center;
    }
    .location-text-inline {
        justify-content: center;
        text-align: center;
    }
    .map-wrapper-compact {
        max-width: 320px;
        margin: 0 auto;
    }
}