/* ============================================
   CONTATOS PREMIUM - SOLNER
   Versão Final com Hero Imagem + Filtro
============================================ */


.contato-premium-page {
    background: var(--white);
    overflow-x: hidden;
}


/* ============================================
   HERO COM IMAGEM DE FUNDO + FILTRO PRETO 75%
============================================ */
.hero-contato {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-top: 140px;
    padding-bottom: 140px;
    margin-top: 0;
}

/* Imagem de Fundo */
.hero-background-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/hero-contatos.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}

/* Filtro Preto 75% Opacidade */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.75);
    z-index: 2;
}

.hero-gradient-mesh {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 20%, rgba(255, 182, 0, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(220, 88, 42, 0.12) 0%, transparent 50%);
    opacity: 0.8;
    z-index: 3;
}

.hero-grid-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.5;
    z-index: 4;
}

.hero-content {
    position: relative;
    z-index: 10;
    width: 100%;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.hero-badge-cinema {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 10px 24px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 100px;
    color: var(--white);
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 24px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1),
                inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.badge-pulse {
    position: relative;
    width: 8px;
    height: 8px;
    background: linear-gradient(135deg, var(--accent-orange) 0%, var(--accent-yellow) 100%);
    border-radius: 50%;
    animation: pulse-glow 2s ease-in-out infinite;
    box-shadow: 0 0 8px rgba(220, 88, 42, 0.8),
                0 0 16px rgba(220, 88, 42, 0.4);
}

.badge-pulse::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(220, 88, 42, 0.6) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: radar-ping 2s ease-out infinite;
}

.badge-pulse::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 182, 0, 0.5) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: radar-ping 2s ease-out infinite 1s;
}

@keyframes pulse-glow {
    0%, 100% { 
        transform: scale(1);
        opacity: 1;
        box-shadow: 0 0 8px rgba(220, 88, 42, 0.8),
                    0 0 16px rgba(220, 88, 42, 0.4);
    }
    50% { 
        transform: scale(1.1);
        opacity: 0.9;
        box-shadow: 0 0 12px rgba(220, 88, 42, 1),
                    0 0 24px rgba(220, 88, 42, 0.6),
                    0 0 32px rgba(255, 182, 0, 0.3);
    }
}

@keyframes radar-ping {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.8;
    }
    80% {
        transform: translate(-50%, -50%) scale(3.5);
        opacity: 0;
    }
    100% {
        transform: translate(-50%, -50%) scale(4);
        opacity: 0;
    }
}

.hero-title {
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 500;
    line-height: 1.2;
    color: var(--white);
    margin: 0 0 20px;
    letter-spacing: -0.02em;
}

.title-gradient {
    background: linear-gradient(135deg, var(--accent-yellow) 0%, var(--accent-orange) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 18px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 20;
    cursor: pointer;
    transition: var(--transition-base);
    text-decoration: none;
}

.scroll-indicator:hover {
    transform: translateX(-50%) translateY(-5px);
}

.scroll-arrows {
    display: flex;
    flex-direction: column;
    gap: -8px;
}

.arrow {
    opacity: 0;
    animation: arrow-float 2s ease-in-out infinite;
}

.arrow-1 {
    animation-delay: 0s;
}

.arrow-2 {
    animation-delay: 0.3s;
}

.arrow-3 {
    animation-delay: 0.6s;
}

@keyframes arrow-float {
    0% {
        opacity: 0;
        transform: translateY(-10px);
    }
    50% {
        opacity: 1;
        transform: translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateY(10px);
    }
}

/* ============================================
   CANAIS DE ATENDIMENTO - PADRÃO NEUTRO
============================================ */
.canais-section {
    padding: 100px 0;
    background: var(--white);
}

.canais-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto 60px;
}

.canal-card {
    position: relative;
    background: var(--white);
    border: 2px solid var(--gray-300);
    border-radius: 20px;
    padding: 32px;
    text-align: center;
    transition: var(--transition-smooth);
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    box-shadow: var(--shadow-md);
}

.canal-icon {
    width: 72px;
    height: 72px;
    border-radius: 16px;
    background: var(--gray-50);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
    transition: var(--transition-base);
    position: relative;
    z-index: 2;
}

.canal-icon img {
    width: 32px;
    height: 32px;
    filter: brightness(0) saturate(100%) invert(42%) sepia(76%) saturate(1447%) hue-rotate(347deg) brightness(92%) contrast(92%);
    transition: var(--transition-base);
}

.canal-card:hover .canal-icon {
    background: var(--gradient-orange);
    transform: scale(1.1);
}

.canal-card:hover .canal-icon img {
    filter: brightness(0) invert(1);
}

.canal-card h3 {
    font-size: 20px;
    font-weight: 500;
    color: var(--gray-900);
    margin: 0;
    position: relative;
    z-index: 2;
}

.canal-number,
.canal-email-text,
.canal-instagram-user,
.canal-local-text {
    font-size: 16px;
    color: var(--gray-700);
    font-weight: 500;
    margin: 0;
    position: relative;
    z-index: 2;
}

.canal-badge {
    display: inline-block;
    padding: 6px 16px;
    background: var(--gray-50);
    color: var(--accent-orange);
    font-size: 12px;
    font-weight: 500;
    border-radius: 20px;
    border: 1px solid var(--gray-200);
    margin-top: auto;
    position: relative;
    z-index: 2;
}

.canal-card:hover .canal-badge {
    background: linear-gradient(135deg, rgba(220, 88, 42, 0.15) 0%, rgba(220, 88, 42, 0.08) 100%);
    border-color: var(--accent-orange);
}

/* ============================================
   LOCALIZAÇÃO E MAPA - DENTRO DA SEÇÃO CANAIS
============================================ */
.localizacao-content {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 40px;
    align-items: start;
    max-width: 1100px;
    margin: 0 auto;
}

.localizacao-info {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

/* HORÁRIO PREMIUM */
.horario-premium {
    background: var(--white);
    border: 2px solid var(--gray-200);
    border-radius: 20px;
    padding: 24px 28px;
    box-shadow: var(--shadow-md);
}

.horario-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.horario-header-icon {
    width: 42px;
    height: 42px;
    background: rgba(220, 88, 42, 0.08);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.horario-header h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--gray-900);
    margin: 0;
}

.horario-rows {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.horario-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    background: var(--gray-50);
    border-radius: 12px;
}

.horario-dia {
    font-size: 15px;
    color: var(--gray-600);
    font-weight: 500;
}

.horario-hora {
    font-size: 15px;
    font-weight: 700;
    color: var(--accent-orange);
    background: rgba(220, 88, 42, 0.08);
    padding: 4px 14px;
    border-radius: 100px;
}

.localizacao-mapa {
    width: 100%;
    height: 500px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 2px solid var(--gray-300);
}

/* ============================================
   BOTÃO PADRÃO - EFEITO DO MENU
============================================ */
.btn-direcoes {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px 32px;
    background: var(--gradient-orange);
    color: var(--white);
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 500;
    font-family: var(--font-main);
    cursor: pointer;
    transition: var(--transition-base);
    box-shadow: 0 4px 12px rgba(220, 88, 42, 0.25);
    position: relative;
    overflow: hidden;
    text-decoration: none;
}

.btn-direcoes::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-direcoes:hover::before {
    left: 100%;
}

.btn-direcoes:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(220, 88, 42, 0.4);
}

.btn-direcoes:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(220, 88, 42, 0.3);
}

.btn-direcoes img {
    width: 20px;
    height: 20px;
    filter: brightness(0) invert(1);
    transition: var(--transition-base);
}

.btn-direcoes:hover img {
    transform: translateX(4px);
}

/* ============================================
   RESPONSIVO
============================================ */
@media (max-width: 1024px) {
    .canais-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .localizacao-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hero-contato {
        padding-top: 80px;
        padding-bottom: 100px;
    }
    
    .hero-title {
        font-size: 32px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .scroll-indicator {
        bottom: 24px;
    }
    
    .canais-section {
        padding: 60px 0;
    }
    
    .canais-grid {
        grid-template-columns: 1fr;
        margin-bottom: 40px;
    }
    
    .localizacao-mapa {
        height: 350px;
    }
    
    /* HORÁRIO - MOBILE CENTRALIZADO + FONTES MAIORES */
    .horario-simples {
        text-align: center;
    }
    
    .horario-simples h4 {
        font-size: 19px;
    }
    
    .horario-simples p {
        font-size: 17px;
    }
}