* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: #f5f9ff;
    color: #102a43;
    overflow-x: hidden;
}


/* =========================
   BOLHAS ANIMADAS
========================= */

.bolhas span {
    position: fixed;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background: rgba(0, 119, 255, 0.12);
    animation: subir 12s linear infinite;
    bottom: -50px;
    z-index: -1;
}

.bolhas span:nth-child(1) {
    left: 10%;
    animation-duration: 9s;
}

.bolhas span:nth-child(2) {
    left: 30%;
    width: 45px;
    height: 45px;
    animation-duration: 13s;
}

.bolhas span:nth-child(3) {
    left: 55%;
    width: 20px;
    height: 20px;
    animation-duration: 8s;
}

.bolhas span:nth-child(4) {
    left: 75%;
    width: 60px;
    height: 60px;
    animation-duration: 15s;
}

.bolhas span:nth-child(5) {
    left: 90%;
    width: 30px;
    height: 30px;
    animation-duration: 11s;
}

@keyframes subir {

    0% {
        transform: translateY(0) rotate(0deg);
        opacity: 0;
    }

    20% {
        opacity: 1;
    }

    100% {
        transform: translateY(-110vh) rotate(360deg);
        opacity: 0;
    }
}


/* =========================
   HEADER
========================= */

header {
    height: 75px;
    padding: 0 7%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: white;
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
    position: relative;
    z-index: 10;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 21px;
    font-weight: bold;
    color: #0757b5;
}

.logo i {
    font-size: 28px;
}

.logo strong {
    color: #00a9ff;
}

.menu-btn {
    text-decoration: none;
    background: #0757b5;
    color: white;
    padding: 11px 20px;
    border-radius: 25px;
    font-weight: bold;
}


/* =========================
   HERO
========================= */

.hero {
    min-height: 650px;
    padding: 80px 7%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;

    background:
        radial-gradient(circle at 90% 10%, #d9efff 0, transparent 30%),
        linear-gradient(135deg, #ffffff, #edf6ff);
}

.hero-text {
    max-width: 650px;
}

.tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #e1f1ff;
    color: #0757b5;
    padding: 8px 15px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 20px;
}

.hero h1 {
    font-size: 54px;
    line-height: 1.08;
    margin-bottom: 25px;
    color: #092b4c;
}

.hero h1 span {
    color: #0077ff;
}

.hero-text p {
    font-size: 19px;
    line-height: 1.7;
    color: #526777;
    max-width: 580px;
    margin-bottom: 30px;
}


/* =========================
   WHATSAPP BUTTON
========================= */

.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    background: #16c172;
    color: white;
    text-decoration: none;
    padding: 15px 25px;
    border-radius: 12px;
    font-weight: bold;
    box-shadow: 0 10px 30px rgba(22,193,114,0.25);
    transition: 0.3s;
}

.whatsapp-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(22,193,114,0.35);
}

.whatsapp-btn i {
    font-size: 35px;
}

.whatsapp-btn small {
    display: block;
    font-size: 11px;
    opacity: .9;
}

.whatsapp-btn span {
    font-size: 18px;
}

.seguranca {
    margin-top: 20px;
    color: #718096;
    font-size: 13px;
}

.seguranca i {
    color: #16a36a;
    margin-right: 5px;
}


/* =========================
   CARD
========================= */

.hero-card {
    width: 390px;
    background: white;
    padding: 32px;
    border-radius: 25px;
    box-shadow: 0 25px 70px rgba(0,60,130,.13);
    border: 1px solid #e1edf8;
    animation: flutuar 4s ease-in-out infinite;
}

@keyframes flutuar {

    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }
}

.card-top {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #0757b5;
    font-weight: bold;
    margin-bottom: 25px;
}

.icon-card {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: #e5f2ff;
    color: #0077ff;
    font-size: 22px;
}

.hero-card h2 {
    font-size: 28px;
    margin-bottom: 12px;
}

.hero-card p {
    font-size: 14px;
    line-height: 1.6;
    color: #667788;
}

.linha {
    height: 1px;
    background: #e7edf3;
    margin: 22px 0;
}

.beneficio {
    margin: 14px 0;
    font-size: 14px;
    color: #34495e;
}

.beneficio i {
    color: #16c172;
    margin-right: 8px;
}

.card-whatsapp {
    display: block;
    text-align: center;
    background: #0757b5;
    color: white;
    text-decoration: none;
    padding: 14px;
    border-radius: 10px;
    margin-top: 25px;
    font-weight: bold;
    transition: .3s;
}

.card-whatsapp:hover {
    background: #0077ff;
}

.card-whatsapp i {
    margin-right: 8px;
}


/* =========================
   BENEFÍCIOS
========================= */

.beneficios {
    padding: 90px 7%;
    background: white;
}

.titulo {
    text-align: center;
    margin-bottom: 45px;
}

.titulo span {
    color: #0077ff;
    font-size: 13px;
    font-weight: bold;
}

.titulo h2 {
    font-size: 36px;
    margin-top: 10px;
}

.cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    max-width: 1100px;
    margin: auto;
}

.info-card {
    padding: 30px;
    border-radius: 18px;
    border: 1px solid #e6eef7;
    transition: .3s;
}

.info-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,80,160,.10);
}

.info-icon {
    width: 55px;
    height: 55px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #e7f3ff;
    color: #0077ff;
    font-size: 24px;
    margin-bottom: 18px;
}

.info-card h3 {
    margin-bottom: 10px;
}

.info-card p {
    color: #687989;
    line-height: 1.6;
    font-size: 14px;
}


/* =========================
   CONTATO
========================= */

.contato {
    padding: 80px 7%;
}

.contato-box {
    max-width: 1100px;
    margin: auto;
    padding: 45px;
    border-radius: 25px;

    background: linear-gradient(
        135deg,
        #0757b5,
        #008cff
    );

    color: white;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.contato-box span {
    font-size: 12px;
    font-weight: bold;
    opacity: .8;
}

.contato-box h2 {
    font-size: 35px;
    margin: 8px 0;
}

.contato-box p {
    opacity: .9;
}

.whatsapp-final {
    background: white;
    color: #0757b5;
    text-decoration: none;
    padding: 16px 25px;
    border-radius: 10px;
    font-weight: bold;
    white-space: nowrap;
}

.whatsapp-final i {
    margin-right: 8px;
    color: #16c172;
    font-size: 20px;
}


/* =========================
   FOOTER
========================= */

footer {
    background: #06284a;
    color: white;
    text-align: center;
    padding: 40px 20px;
}

.footer-logo {
    font-size: 21px;
    font-weight: bold;
    margin-bottom: 20px;
}

.footer-logo i {
    color: #00a9ff;
}

.footer-logo strong {
    color: #00a9ff;
}

footer p {
    margin: 8px;
    color: #c9d8e8;
    font-size: 14px;
}

footer small {
    display: block;
    margin-top: 25px;
    color: #8da5bb;
}


/* =========================
   WHATSAPP FLUTUANTE
========================= */

.whatsapp-flutuante {
    position: fixed;
    right: 22px;
    bottom: 22px;

    display: flex;
    align-items: center;
    gap: 10px;

    background: #16c172;
    color: white;

    text-decoration: none;

    padding: 13px 18px;
    border-radius: 50px;

    font-weight: bold;

    box-shadow: 0 8px 25px rgba(0,0,0,.2);

    z-index: 100;

    animation: pulsar 2s infinite;
}

.whatsapp-flutuante i {
    font-size: 25px;
}

@keyframes pulsar {

    0% {
        box-shadow: 0 0 0 0 rgba(22,193,114,.5);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(22,193,114,0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(22,193,114,0);
    }
}


/* =========================
   CELULAR
========================= */

@media (max-width: 850px) {

    header {
        padding: 0 5%;
    }

    .menu-btn {
        display: none;
    }

    .hero {
        flex-direction: column;
        padding: 60px 6%;
        text-align: center;
    }

    .hero h1 {
        font-size: 40px;
    }

    .hero-text p {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-card {
        width: 100%;
        max-width: 400px;
    }

    .cards {
        grid-template-columns: 1fr;
        max-width: 450px;
    }

    .contato-box {
        flex-direction: column;
        text-align: center;
    }

    .whatsapp-flutuante span {
        display: none;
    }

    .whatsapp-flutuante {
        width: 58px;
        height: 58px;
        justify-content: center;
        padding: 0;
        right: 18px;
        bottom: 18px;
    }

    .whatsapp-flutuante i {
        font-size: 29px;
    }
}


@media (max-width: 450px) {

    .logo {
        font-size: 18px;
    }

    .hero h1 {
        font-size: 34px;
    }

    .hero-card {
        padding: 25px;
    }

    .contato-box {
        padding: 30px 20px;
    }

    .contato-box h2 {
        font-size: 28px;
    }

    .whatsapp-btn {
        width: 100%;
        justify-content: center;
    }
}