/* ========== BANNER ========== */
.page-banner-contato {
    background: linear-gradient(135deg, #e8f4f8 0%, #d4efdf 50%, #fef9e7 100%);
    padding: clamp(60px, 10vw, 100px) 0 clamp(50px, 8vw, 80px);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-banner-contato::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -15%;
    width: clamp(200px, 40vw, 400px);
    height: clamp(200px, 40vw, 400px);
    background: radial-gradient(circle, rgba(52, 152, 219, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.page-banner-contato::after {
    content: '';
    position: absolute;
    bottom: -20%;
    left: -10%;
    width: clamp(150px, 30vw, 300px);
    height: clamp(150px, 30vw, 300px);
    background: radial-gradient(circle, rgba(46, 204, 113, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.banner-etiqueta-contato {
    display: inline-block;
    background: white;
    color: #2c3e50;
    padding: clamp(8px, 1.5vw, 10px) clamp(20px, 3vw, 25px);
    border-radius: 30px;
    font-size: clamp(0.8rem, 1.2vw, 0.9rem);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: clamp(1px, 0.2vw, 2px);
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.page-banner-contato h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    color: #2c3e50;
    font-weight: 800;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
    padding: 0 20px;
}

.page-banner-contato p {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: #555;
    position: relative;
    z-index: 1;
    padding: 0 20px;
}

/* ========== SEÇÃO PRINCIPAL ========== */
.contato-principal {
    padding: clamp(40px, 6vw, 80px) 0;
    background: #ffffff;
}

.contato-wrapper {
    display: flex;
    gap: clamp(30px, 5vw, 60px);
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 clamp(15px, 3vw, 20px);
}

/* ========== LADO ESQUERDO - CONTATOS ========== */
.contato-info {
    flex: 1;
    min-width: 0;
}

.contato-info h2 {
    font-size: clamp(1.6rem, 3vw, 2rem);
    color: #2c3e50;
    margin-bottom: 15px;
    font-weight: 800;
}

.contato-info > p {
    font-size: clamp(0.95rem, 1.5vw, 1.05rem);
    color: #777;
    line-height: 1.6;
    margin-bottom: clamp(25px, 4vw, 35px);
}

.contato-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: clamp(15px, 2vw, 20px);
}

.contato-card {
    display: flex;
    align-items: center;
    gap: clamp(12px, 2vw, 18px);
    padding: clamp(20px, 2.5vw, 25px);
    background: white;
    border-radius: 18px;
    border: 1px solid #f0f0f0;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.contato-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border-color: transparent;
}

.contato-whatsapp:hover {
    background: #f0faf5;
}

.contato-card-icone {
    flex-shrink: 0;
}

.contato-card-texto {
    flex: 1;
    min-width: 0;
}

.contato-card-texto h3 {
    font-size: clamp(0.75rem, 1.1vw, 0.85rem);
    color: #999;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
    font-weight: 600;
}

.contato-card-texto span {
    font-size: clamp(0.95rem, 1.3vw, 1.05rem);
    color: #2c3e50;
    font-weight: 700;
    display: block;
    margin-bottom: 3px;
    word-break: break-all;
}

.contato-card-texto small {
    font-size: clamp(0.75rem, 1vw, 0.8rem);
    color: #aaa;
}

/* ========== LADO DIREITO - ENDEREÇO ========== */
.contato-endereco {
    flex: 0.9;
    min-width: 0;
}

.contato-endereco h2 {
    font-size: clamp(1.6rem, 3vw, 2rem);
    color: #2c3e50;
    margin-bottom: 25px;
    font-weight: 800;
}

.endereco-box {
    display: flex;
    gap: clamp(12px, 2vw, 15px);
    align-items: flex-start;
    background: #faf9f7;
    padding: clamp(20px, 2.5vw, 25px);
    border-radius: 18px;
    margin-bottom: clamp(20px, 3vw, 30px);
}

.endereco-icone {
    flex-shrink: 0;
    margin-top: 3px;
}

.endereco-texto {
    flex: 1;
    min-width: 0;
}

.endereco-texto p {
    font-size: clamp(0.95rem, 1.3vw, 1.1rem);
    color: #555;
    line-height: 1.7;
}

.mapa-container {
    width: 100%;
    height: clamp(200px, 40vw, 300px);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    margin-bottom: clamp(15px, 2vw, 20px);
}

.mapa-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.btn-como-chegar {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #2c3e50;
    color: white;
    padding: clamp(12px, 1.8vw, 15px) clamp(25px, 3.5vw, 30px);
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: clamp(0.9rem, 1.3vw, 1rem);
    transition: all 0.3s ease;
    width: auto;
}

.btn-como-chegar:hover {
    background: #e74c3c;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(231, 76, 60, 0.3);
}

/* ========== HORÁRIOS ========== */
.horarios-contato {
    padding: clamp(40px, 6vw, 60px) 0;
    background: #faf9f7;
}

.horarios-wrapper {
    text-align: center;
    max-width: min(600px, 90vw);
    margin: 0 auto;
    padding: 0 clamp(15px, 3vw, 20px);
}

.horarios-wrapper h2 {
    font-size: clamp(1.6rem, 3vw, 2rem);
    color: #2c3e50;
    margin-bottom: 35px;
    font-weight: 800;
    position: relative;
}

.horarios-wrapper h2::after {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background: #3498db;
    margin: 12px auto 0;
    border-radius: 2px;
}

.horarios-grid {
    display: flex;
    flex-direction: column;
    gap: clamp(10px, 1.5vw, 12px);
}

.horario-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: clamp(15px, 2vw, 18px) clamp(18px, 2.5vw, 25px);
    background: white;
    border-radius: 12px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.04);
    flex-wrap: wrap;
    gap: 10px;
}

.dia {
    font-size: clamp(0.9rem, 1.3vw, 1.05rem);
    color: #2c3e50;
    font-weight: 600;
}

.horario {
    font-size: clamp(0.9rem, 1.3vw, 1.05rem);
    color: #27ae60;
    font-weight: 700;
}

.horario.fechado {
    color: #e74c3c;
}

/* ========== RESPONSIVO ========== */
@media (max-width: 1024px) {
    .page-banner-contato::before {
        top: -25%;
        right: -10%;
    }
    
    .page-banner-contato::after {
        bottom: -15%;
        left: -5%;
    }
    
    .contato-wrapper {
        gap: 40px;
    }
    
    .contato-cards {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    }
}

@media (max-width: 768px) {
    .page-banner-contato::before {
        top: -20%;
        right: -20%;
    }
    
    .page-banner-contato::after {
        bottom: -15%;
        left: -15%;
    }
    
    .contato-wrapper {
        flex-direction: column;
        gap: 40px;
    }
    
    .contato-info {
        order: 1;
    }
    
    .contato-endereco {
        order: 2;
    }
    
    .contato-info h2,
    .contato-endereco h2,
    .horarios-wrapper h2 {
        text-align: center;
    }
    
    .contato-info > p {
        text-align: center;
    }
    
    .contato-cards {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        max-width: 600px;
        margin: 0 auto;
    }
    
    .contato-card {
        justify-content: flex-start;
    }
    
    .btn-como-chegar {
        width: 100%;
        justify-content: center;
        max-width: 400px;
        display: flex;
        margin: 0 auto;
    }
    
    .endereco-box {
        justify-content: flex-start;
    }
}

@media (max-width: 480px) {
    .page-banner-contato::before {
        width: 150px;
        height: 150px;
        top: -15%;
        right: -25%;
    }
    
    .page-banner-contato::after {
        width: 120px;
        height: 120px;
        bottom: -10%;
        left: -20%;
    }
    
    .contato-cards {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .contato-card {
        padding: 20px;
        gap: 15px;
    }
    
    .contato-card-texto span {
        font-size: 0.95rem;
    }
    
    .endereco-box {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 15px;
    }
    
    .endereco-icone {
        margin-top: 0;
        margin-bottom: 5px;
    }
    
    .mapa-container {
        height: 220px;
    }
    
    .horario-item {
        padding: 15px 20px;
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }
    
    .dia,
    .horario {
        font-size: 0.95rem;
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 350px) {
    .contato-card {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .contato-card-icone {
        margin-bottom: 5px;
    }
    
    .contato-card-texto span {
        word-break: break-all;
    }
    
    .mapa-container {
        height: 180px;
    }
    
    .btn-como-chegar {
        padding: 12px 20px;
        font-size: 0.85rem;
    }
}

/* ========== ANIMAÇÕES DE TOQUE PARA DISPOSITIVOS MÓVEIS ========== */
@media (hover: none) {
    .contato-card:active {
        transform: translateY(-3px);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
        border-color: transparent;
    }
    
    .contato-whatsapp:active {
        background: #f0faf5;
    }
    
    .btn-como-chegar:active {
        background: #e74c3c;
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(231, 76, 60, 0.3);
    }
    
    .horario-item:active {
        background: #f9f9f9;
    }
}

/* ========== MELHORIAS DE ACESSIBILIDADE ========== */
.contato-card:focus-visible,
.btn-como-chegar:focus-visible {
    outline: 3px solid #3498db;
    outline-offset: 3px;
}

/* ========== SUPORTE PARA TELAS MUITO GRANDES ========== */
@media (min-width: 1600px) {
    .contato-wrapper {
        gap: 80px;
    }
    
    .mapa-container {
        height: 350px;
    }
    
    .contato-cards {
        gap: 25px;
    }
}