/* ================= RESET ================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* ================= RESET ================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* ================= FUNDO ÁGUA ANIMADA ================= */

body {
    font-family: "Montserrat", sans-serif;
    background: linear-gradient(180deg, #e0f7ff 0%, #cceeff 100%);
    color: #333;
    overflow-x: hidden;
    position: relative;
}

/* Camada 1 da água */
body::before {
    content: "";
    position: fixed;
    bottom: 0;
    left: 0;
    width: 200%;
    height: 250px;
    background: rgba(0, 180, 216, 0.15);
    border-radius: 45%;
    animation: wave1 12s infinite linear;
    z-index: -2;
}

/* Camada 2 da água */
body::after {
    content: "";
    position: fixed;
    bottom: 0;
    left: 0;
    width: 200%;
    height: 300px;
    background: rgba(0, 119, 182, 0.12);
    border-radius: 40%;
    animation: wave2 18s infinite linear;
    z-index: -3;
}

/* Animação 1 */
@keyframes wave1 {
    0% {
        transform: translateX(0) translateY(0);
    }
    50% {
        transform: translateX(-25%) translateY(-15px);
    }
    100% {
        transform: translateX(-50%) translateY(0);
    }
}

/* Animação 2 */
@keyframes wave2 {
    0% {
        transform: translateX(0) translateY(0);
    }
    50% {
        transform: translateX(-30%) translateY(-25px);
    }
    100% {
        transform: translateX(-60%) translateY(0);
    }
}

/* ================= TOPO ================= */

.topo {
    background: linear-gradient(90deg, #0077B6, #00B4D8);
    color: white;
    text-align: center;
    padding: 60px 20px;
}

.logo {
    width: 400px;
    margin-bottom: 15px;
}

.topo h1 {
    font-size: 40px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.slogan {
    margin-top: 10px;
    font-size: 18px;
    opacity: 0.95;
}

/* ================= SEÇÕES MODERNAS ================= */

.sobre,
.processo,
.localizacao {
    background: #ffffff;
    border-radius: 30px;
    margin: 80px 20px;
    padding: 70px 40px;
    box-shadow: 
        0 20px 60px rgba(0, 119, 182, 0.15),
        0 5px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 180, 216, 0.15);
    transition: all 0.4s ease;
}

.sobre:hover,
.processo:hover,
.localizacao:hover {
    transform: translateY(-6px);
    box-shadow: 
        0 30px 80px rgba(0, 119, 182, 0.25),
        0 10px 30px rgba(0, 0, 0, 0.08);
}

/* ================= TÍTULOS MODERNOS ================= */

.sobre h2,
.processo h2,
.localizacao h2 {
    font-size: 32px;
    margin-bottom: 30px;
    color: #0077B6;
    position: relative;
    display: inline-block;
}

.sobre h2::after,
.processo h2::after,
.localizacao h2::after {
    content: "";
    width: 60%;
    height: 4px;
    background: linear-gradient(90deg, #0077B6, #00B4D8);
    position: absolute;
    left: 20%;
    bottom: -10px;
    border-radius: 10px;
}

/* ================= SOBRE ================= */

.sobre {
    text-align: center;
}

.sobre p {
    max-width: 800px;
    margin: auto;
    line-height: 1.6;
    font-size: 18px;
}

/* ================= SERVIÇOS ================= */

.processo {
    text-align: center;
}

.itens {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.item {
    background: white;
    padding: 25px;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 119, 182, 0.20);
}

.item img {
    width: 100%;
    max-width: 180px;
    height: 220px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 15px;
}

.item p {
    font-size: 17px;
    font-weight: 500;
    color: #000;
}

/* ================= LOCALIZAÇÃO ================= */

.localizacao {
    text-align: center;
}

.info-local p {
    font-size: 18px;
    margin: 10px 0;
}

.info-local a {
    color: #0077B6;
    text-decoration: none;
    font-weight: bold;
}

.info-local a:hover {
    text-decoration: underline;
}

.horario {
    margin-top: 15px;
}

.btn-rota {
    display: inline-block;
    margin-top: 20px;
    padding: 14px 30px;
    background: linear-gradient(90deg, #0077B6, #00B4D8);
    color: white !important;
    border-radius: 40px;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
}

.btn-rota:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.mapa {
    max-width: 1000px;
    margin: 40px auto 0;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

/* ================= WHATSAPP ================= */

.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background: #25D366;
    color: white;
    font-size: 28px;
    padding: 15px 18px;
    border-radius: 50%;
    text-decoration: none;
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
    transition: 0.3s;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

/* ================= RODAPÉ ================= */

footer {
    text-align: center;
    padding: 25px;
    background: #0077B6;
    color: white;
    margin-top: 80px;
}