* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background: #fff;
    color: #333;
}

a {
    text-decoration: none;
}

/* HEADER */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 5%;
    border-bottom: 1px solid #eaeaea;
}

header h1 {
    color: #0a3c78;
    font-size: 24px;
}

nav a {
    margin-left: 20px;
    color: #0a3c78;
    font-weight: 500;
}

/* HERO */
.welcome {
    background: #f3f7fc;
    padding: 30px 20px;
    text-align: center;
}

.welcome h2 {
    color: #0a3c78;
    font-size: 32px;
}

.welcome p {
    max-width: 700px;
    margin: 5px auto;
    font-size: 18px;
}

/* SLIDER */
.slider {
    position: relative;
    width: 100%;
    height: 420px;
    overflow: hidden;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* BANNER */
.banner {
    background: linear-gradient(90deg, #0a3c78, #1565c0);
    color: #fff;
    text-align: center;
    padding: 50px 20px;
}

.banner a {
    display: inline-block;
    background: #fff;
    color: #0a3c78;
    padding: 14px 35px;
    border-radius: 30px;
    font-weight: bold;
    margin-top: 20px;
}

/* CONTATO */
.contact {
    max-width: 900px;
    margin: auto;
    padding: 60px 20px;
}

.contact h3 {
    text-align: center;
    color: #0a3c78;
    font-size: 28px;
    margin-bottom: 30px;
}

.contact form {
    display: grid;
    gap: 15px;
}

.contact input,
.contact textarea {
    padding: 12px;
    font-size: 16px;
    border-radius: 6px;
    border: 1px solid #ccc;
}

.contact button {
    background: #0a3c78;
    color: #fff;
    border: none;
    padding: 15px;
    border-radius: 6px;
    font-size: 16px;
    cursor: pointer;
}

/* MAPA */
.map iframe {
    width: 100%;
    height: 400px;
    border: 0;
}

/* FOOTER */
footer {
    background: #0a3c78;
    color: #fff;
    text-align: center;
    padding: 30px 20px;
}

/* WHATSAPP */
.whatsapp {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #fff;
    color: #fff;
    padding: 15px 18px;
    border-radius: 50%;
    font-size: 26px;
    z-index: 1000;
}

/* RESPONSIVO */
@media (max-width: 768px) {
    nav {
        display: none;
    }

    .slider {
        height: 260px;
    }
}
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    z-index: 9999;
    transition: transform 0.3s ease;
}

.whatsapp-float img {
    width: 100%;
    height: 100%;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

/* Mobile */
@media (max-width: 768px) {
    .whatsapp-float {
        width: 55px;
        height: 55px;
        bottom: 15px;
        right: 15px;
    }
}
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    padding: 10px 15px;
    border-radius: 50px;
    box-shadow: 0 0 0 rgba(37, 211, 102, 0.7);
    animation: pulse 2s infinite;
    z-index: 9999;
}

.whatsapp-float img {
    width: 36px;
    height: 36px;
}

/* TEXTO */
.whatsapp-text {
    color: #fff;
    font-weight: 600;
    font-size: 14px;
    white-space: nowrap;
    animation: slideText 4s infinite;
}

/* ANIMAÇÕES */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

@keyframes slideText {
    0% { opacity: 0; transform: translateX(10px); }
    20% { opacity: 1; transform: translateX(0); }
    80% { opacity: 1; }
    100% { opacity: 0; transform: translateX(10px); }
}

/* MOBILE */
@media (max-width: 768px) {
    .whatsapp-text {
        display: none;
    }

    .whatsapp-float {
        padding: 12px;
        border-radius: 50%;
    }

    .whatsapp-float img {
        width: 40px;
        height: 40px;
    }
}

.footer-social {
    margin-bottom: 15px;
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    margin: 0 6px;
    border-radius: 50%;
    background: #ffffff;
    color: #0a3c78;
    font-size: 18px;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: #1565c0;
    color: #ffffff;
    transform: translateY(-3px);
}

/* Mobile */
@media (max-width: 768px) {
    .footer-social a {
        width: 38px;
        height: 38px;
        font-size: 16px;
    }
}
