body {
    margin: 0;
    font-family: Georgia, serif;
    background-color: #f4f1ea;
    color: #2b2b2b;
}

/* TOPO BRANCO */
.topo {
    background: white;
    border-bottom: 1px solid #e0d8c8;
    padding: 18px 20px 40px;
    position: relative;
}

.topo-container {
    max-width: 900px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.topo-texto strong {
    font-size: 30px;
}

.topo-texto {
    font-size: 18px;
    line-height: 1.4;
}

/* LOGO FLUTUANTE */
.logo {
    position: absolute;
    right: 20px;
    bottom: -140px;
    background: white;
    padding: 12px;
    border-radius: 120px;
    box-shadow: 0 8px 18px rgba(0,0,0,0.15);
}

.logo img {
    width: 200px;
    max-width: 100%;
    height: auto;
}

/* FAIXA AZUL */
header {
    background-color: #013d5a;
    color: white;
    text-align: center;
    padding: 70px 15px 25px;
    border-bottom: 4px solid #cbb38a;
    font-size: 15px;
}

/* CONTEÚDO */
section {
    padding: 35px 18px;
    max-width: 768px;
    margin: auto;
}

h2 {
    text-align: center;
    color: #0e3b4a;
    margin-bottom: 18px;
}

p {
    text-align: center;
    line-height: 1.6;
}

/* BOTÕES */
.contato {
    margin-top: 25px;
}

.link-contato {
    text-decoration: none;
    color: #0e3b4a;
    font-size: 16px;
    border-bottom: 1px solid #cbb38a;
    padding-bottom: 3px;
}

.link-contato:hover {
    opacity: 0.7;
}

.icone {
    font-size: 18px;
    vertical-align: top;
}

/* LAYOUT EM DUAS COLUNAS */
.bloco-barco {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: start;
    margin-top: 25px;
}

/* MAPA */
.mapa iframe {
    width: 100%;
    height: 300px;
    border: 0;
    border-radius: 10px;
}

/* GALERIA */
.galeria {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 12px;
    margin-top: 20px;
}

.galeria img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 10px;
    transition: 0.3s;
}

.galeria img:hover {
    transform: scale(1.03);
}

/* TABELA */
.tabela-especificacoes {
    width: 100%;
    border-collapse: collapse;
    font-size: 15px;
}

.tabela-especificacoes td {
    border-bottom: 1px solid #d8cfc0;
    padding: 12px 8px;
}

/* VALOR */
.valor {
    margin-left: auto;
    font-weight: bold;
    color: #0e3b4a;
}

/* RODAPÉ */
footer {
    background: url("footer-bg.jpg") center/cover no-repeat;
    color: rgb(0, 0, 0);
    text-align: center;
    padding: 30px 10px;
    font-size: 15px;
    margin-top: 20px;
    position: relative;
}

/* camada escura suave para legibilidade */
footer::before {
    content: "";
    position: absolute;
    inset: 0;
}

footer * {
    position: relative;
}
.botao-principal {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 26px;
    background-color: #cbb38a;
    color: #013d5a;
    font-weight: bold;
    text-decoration: none;
    border-radius: 30px;
    transition: 0.3s;
    font-size: 15px;
}

.botao-principal:hover {
    background-color: #b79c70;
    transform: translateY(-2px);
}

/* MOBILE */
@media (max-width: 768px) {

     .bloco-barco {
        grid-template-columns: 1fr;
    }

    .topo {
        padding: 15px 15px 80px;
    }

    .topo-texto strong {
        font-size: 22px;
    }

    .topo-texto {
        font-size: 14px;
    }

    .logo {
        right: 15%;
        transform: translateX(15%);
        bottom: 10px;
        padding: 3px;
    }

    .logo img {
        width: 120px;
    }

    header {
        padding: 25px 15px 25px;
        font-size: 14px;
    }

    section {
        padding: 25px 15px;
    }

    h2 {
        font-size: 20px;
    }

    p {
        font-size: 15px;
    }

    .botao-principal {
        font-size: 14px;
        padding: 10px 20px;
    }
    
     /* TEXTO */
    .texto-barco {
        font-size: 15px;
        text-align: justify;
    }

    /* BLOCO EM COLUNA (reforço do que você já tem) */
    .bloco-barco {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    /* GALERIA MAIS CONFORTÁVEL NO CELULAR */
    .galeria {
        grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
        gap: 10px;
    }

    .galeria img {
        height: 140px;
    }

    footer {
        font-size: 13px;
    }
}
