/**
 * CidadeTur BR - Estilos do Bloco 1 (Card de Página)
 */

/* ============================================
   CONTAINER PRINCIPAL
   ============================================ */

.bloco-1-container {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 15px 0 3px 0;
}

/* ============================================
   CARD PRINCIPAL
   ============================================ */

.bloco-1-card {
    background-color: #9DB4CD;
    border-radius: 8px;
    border-bottom-right-radius: 0px;
    border-bottom-left-radius: 0px;
    overflow: hidden;
    padding: 15px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    position: relative;
}

/* ============================================
   LAYOUT PRINCIPAL (LOGO + CONTEÚDO)
   ============================================ */

.bloco-1-main {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 40px;
}

/* ============================================
   IMAGEM (à esquerda)
   ============================================ */

.bloco-1-img {
    flex-shrink: 0;
}

.bloco-1-img img {
    width: 85px;
    height: 85px;
    background-color: #C0C0C0;
    object-fit: cover;
    display: block;
}

/* ============================================
   CONTEÚDO (à direita)
   ============================================ */

.bloco-1-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.bloco-1-title {
    color: #1E4D7B;
    font-size: 18px;
    font-weight: bold;
    margin: 0;
    text-align: left;
}

.bloco-1-info,
.bloco-1-contact {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.bloco-1-info, .bloco-1-contact {
    color: #1E3A5F;
    font-size: 12px;
    margin: 0;
    line-height: 1.4;
}

.bloco-1-contact {
    color: #000000;
}

.bloco-1-info p strong,
.bloco-1-contact p strong {
    font-weight: bold;
}

/* ============================================
   FOOTER (REDES SOCIAIS + NAVEGAÇÃO)
   ============================================ */

.bloco-1-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

/* Redes Sociais */
.bloco-1-social {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    align-items: center;
}

.bloco-1-social-link {
    width: 28px;
    height: 28px;
    background-color: #FFFFFF;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #5A7B9F;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s;
}

.bloco-1-social-link:hover {
    background-color: #E8F0F8;
    transform: scale(1.05);
}

.bloco-1-placeholder {
    width: 28px;
    height: 28px;
    background-color: #FFFFFF;
    border-radius: 4px;
}

/* Navegação (arrows) */
.bloco-1-navigation {
    position: absolute;
    right: 15px;
    bottom: 15px;
    display: flex;
    gap: 8px;
}

.bloco-1-nav-btn {
    width: 35px;
    height: 25px;
    background-color: rgba(224, 224, 224, 0.5);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    color: #333;
    font-size: 14px;
    padding: 0;
}

.bloco-1-nav-btn:hover {
    background-color: rgba(224, 224, 224, 0.8);
}

/* Seções do Menu */
.menu-section.mudar-de-pagina .menu-section-title {
    background-color: var(--light-blue);
    border-top-right-radius: 0px;
    border-top-left-radius: 0px;
    border-bottom-right-radius: 10px;
    border-bottom-left-radius: 10px;
    margin-bottom: 15px;
}

/* ============================================
   RESPONSIVIDADE
   ============================================ */

@media (max-width: 320px) {
    .bloco-1-social {
        flex-wrap: wrap;
        max-width: 100%;
    }
    
    .bloco-1-footer {
        flex-wrap: wrap;
    }
}