/* Configurações Gerais */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Playfair Display', 'Didot', 'Georgia', serif;
}

.logo-redonda {
  margin-top: 20px;
  margin-left: 20px;  
  width: 320px;
  height: 180px;
  border: 4px solid #8c5866; /* Borda rosa antigo */
  border-radius: 50%;
  object-fit: cover; /* Garante que a imagem não fique distorcida */
}


body {
    background-image: url(/borb4.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    min-height: 100vh;
    background-color: #f7e6e8; /* Rosa leve de segurança */
    color: #3a2d30; /* Cinza grafite rosado para contraste e leitura elegante */
    overflow-x: hidden;
}

/* Tela Principal */
.conteudo-principal {
    height: 75vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    max-width: 650px;
    margin: 0 auto;
    padding: auto;
}

/* Logo e Slogan */
.logo {
    font-size: 7rem;
    letter-spacing: 5px;
    text-transform: uppercase;
    font-weight: 400;
    color: #e22356; /* Vinho escuro sofisticado */
    margin-bottom: 45px;
    line-height: 1;
}

.logo span {
    display: block;
    font-size: 13px;
    letter-spacing: 7px;
    text-transform: uppercase;
    font-family: sans-serif;
    color: #c4365c; /* Rosa antigo médio */
    margin-top: 14px;
    font-weight: 400;
}

/* Textos */
.boas-vindas h1 {
    font-size: 35px;
    top: 20px;
    line-height: 1.3;
    margin-bottom: 22px;
    font-weight: 300;
    color: #2b161c;
}

.boas-vindas p {
    font-family: sans-serif;
    font-size: 20px;
    line-height: 1.8;
    color: #544145;
    margin-bottom: 40px;
    letter-spacing: 0.5px;
}

 .btn-whatsapp {
        position: fixed;
        width: 60px;
        height: 60px;
        bottom: 40px;
        right: 40px;
        background-color: #25d366;
        color: #fff !important;
        border-radius: 50px;
        text-align: center;
        font-size: 30px;
        box-shadow: 2px 2px 5px rgba(0,0,0,0.3);
        z-index: 10000;
        display: flex;
        justify-content: center;
        align-items: center;
        text-decoration: none;
        transition: 0.3s;
    }

    /* Efeito ao passar o mouse */
    .btn-whatsapp:hover {
        background-color: #e272ec;
        transform: scale(1.1);
    }

/* Botão Principal Rosa Marcante */
.btn-principal {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background-color: #3cc943; /* Rosa antigo para destacar no fundo claro */
    color: #050505;
    border: none;
    padding: 16px 45px;
    font-size: 14px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(140, 88, 102, 0.25);
}

.btn-principal:hover {
    background-color: #41f319;
    transform: scale(1.03);
    box-shadow: 0 6px 20px rgba(74, 40, 49, 0.3);
}

/* Link do Instagram */
.instagram-container {
    margin-top: 10px;
    text-align: right;

    position: fixed;
        width: 40px;
        height: 40px;
        bottom: 40px;
        top: 60px;
        right: 40px;
        border-radius: 50px;
        text-align: center;
        font-size: 30px;
        z-index: 10000;
        display: flex;
        justify-content: center;
        align-items: center;
        text-decoration: none;
        transition: 0.3s;
}

.lnk-instagram {
    font-family: sans-serif;
    color: #030303;
    text-decoration: none;
    font-size: 14px;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s;
}

.lnk-instagram:hover {
    color: #4a2831;
}

/* Seta Indicadora de Descida */
.indicador-scroll {
    position: absolute;
    bottom: 30px;
    font-size: 24px;
    color: #8c5866;
    animation: flutuar 1.5s infinite ease-in-out;
}

@keyframes flutuar {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(10px); }
}

/* Nova Seção de Informações (Fundo Rosa Sólido Leve) */
.secao-info {
    background-color: #fdf6f7; 
    padding: 70px 5%;
    border-top: 1px solid rgba(140, 88, 102, 0.15);
}

.container-info {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.secao-info h2 {
    font-size: 24px;
    color: #4a2831;
    margin-bottom: 25px;
    font-weight: 400;
    letter-spacing: 1px;
}

.secao-info h2 i {
    color: #8c5866;
    margin-right: 10px;
}

/* Layout do Horário */
.lista-horarios {
    list-style: none;
}

.lista-horarios li {
    font-family: sans-serif;
    display: flex;
    justify-content: space-between;
    padding: 16px 0;
    border-bottom: 1px solid rgba(140, 88, 102, 0.15);
    font-size: 15px;
    color: #544145;
}

.aviso-atendimento {
    font-family: sans-serif;
    font-size: 13px;
    color: #8c5866;
    margin-top: 20px;
    font-style: italic;
}

/* Caixa e Elemento do Mapa */
.mapa-iframe {
    width: 100%;
    height: 320px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(140, 88, 102, 0.12);
}

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

/* Rodapé */
footer {
    text-align: center;
    margin-top: 70px;
    padding-top: 25px;
    border-top: 1px solid rgba(140, 88, 102, 0.1);
}

footer p {
    font-family: sans-serif;
    font-size: 12px;
    color: #a38d92;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Botão Flutuante do WhatsApp */
.btn-whatsapp-flutuante {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: white;
    border: none;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 30px;
    cursor: pointer;
    box-shadow: 0px 4px 15px rgba(37, 211, 102, 0.3);
    z-index: 10;
    animation: pulsar 2s infinite;
}

@keyframes pulsar {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6); }
    70% { transform: scale(1.05); box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}



/* Ajustes específicos para celulares (telas até 768px) */
@media (max-width: 768px) {
  .coluna {
    width: 100%; /* Empilha as colunas verticalmente */
  }
}
