/* ============================================
   ANIMAÇÕES DE SCROLL
   ============================================ */

.contato-conteiner-contato {
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 0;
}

.conhecer-section-contato {
    max-width: 1200px;
    width: 100%;
    padding: 0 20px;
    margin-top: 80px;
}

.conhecer-title-contato {
    text-align: center;
    font-size: 32px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 10px;
    position: relative;
    display: block;
    width: 100%;
}



.conhecer-title-contato::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: #ff6600;
}

.conhecer-content-contato {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 20px;
    position: relative;
}

/* Barras verticais decorativas */
.conhecer-content-contato::before,
.conhecer-content-contato::after {
    content: '';
    position: absolute;
    width: 3px;
    height: 100%;
    background-color: #ff660033;
    top: 0;
}

.conhecer-content-contato::before {
    left: -20px;
}

.conhecer-content-contato::after {
    right: -20px;
}

/* Barra vertical central */
.conhecer-horario-contato {
    position: relative;
}


.conhecer-horario-contato::after {
    content: '';
    position: absolute;
    right: -20px;
    top: 0;
    width: 1px;
    height: 100%;
    background-color: #ff660033;
}

.conhecer-horario-contato,
.conhecer-localizacao-contato {
    padding: 30px;
}




.conhecer-header-contato {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 25px;
}

.conhecer-header-contato h3 {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin: 0;
}

.conhecer-icon-clock-contato,
.conhecer-icon-location-contato {
    width: 24px;
    height: 24px;
    position: relative;
    flex-shrink: 0;
}

.conhecer-icon-clock-contato::before {
    content: '';
    position: absolute;
    width: 24px;
    height: 24px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ff6600' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='10'%3E%3C/circle%3E%3Cpolyline points='12 6 12 12 16 14'%3E%3C/polyline%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
}

.conhecer-icon-location-contato::before {
    content: '';
    position: absolute;
    width: 24px;
    height: 24px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ff6600' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M21 10c0 7-9 13-9 13s-9-6-9-13a9 9 0 0 1 18 0z'%3E%3C/path%3E%3Ccircle cx='12' cy='10' r='3'%3E%3C/circle%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
}

.horario-lista-contato {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.horario-item-contato {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
}

.horario-item-contato:last-child {
    border-bottom: none;
}

.dia-contato {
    font-size: 14px;
    color: #666;
    font-weight: 400;
}

.hora-contato {
    font-size: 14px;
    color: #333;
    font-weight: 500;
}

.mapa-container-contato {
    position: relative;
}

.iframe-mapa-contato {
    border-radius: 8px 8px 0 0;
    margin-bottom: 0;
}

.endereco-info-contato {
    text-align: center;
    padding: 15px 20px;
    background-color: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border-radius: 0 0 8px 8px;
    margin-top: -5px;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.endereco-info-contato p {
    font-size: 14px;
    color: #666;
    margin: 0;
}

.btn-rotas-contato {
    display: block;
    width: 100%;
    text-align: center;
    background-color: #ff6600;
    color: white;
    padding: 12px 24px;
    border-radius: 10px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.btn-rotas-contato:hover {
    background-color: #e65c00;
}

/* Adaptação para telas grandes */
@media (min-width: 1400px) {
    .conhecer-section-contato {
        max-width: 1400px;
    }
    
    .conhecer-content-contato {
        gap: 60px;
        margin-top: 30px;
    }
    
    .conhecer-horario-contato,
    .conhecer-localizacao-contato {
        padding: 40px;
    }
    
    .iframe-mapa-contato {
        height: 320px !important;
        border-radius: 10px 10px 0 0;
    }
}

/* Responsivo */
@media (max-width: 768px) {
    .contato-conteiner-contato {
        min-height: auto;
        padding: 60px 0;
    }
    
    .conhecer-content-contato {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    /* Esconde as barras laterais no mobile */
    .conhecer-content-contato::before,
    .conhecer-content-contato::after {
        display: none;
    }
    
    /* Esconde a barra central no mobile */
    .conhecer-horario-contato::after {
        display: none;
    }
    
    .conhecer-title-contato {
        font-size: 26px;
    }
    
    .conhecer-horario-contato,
    .conhecer-localizacao-contato {
        padding: 20px;
    }
}