﻿
html {
    scroll-behavior: smooth;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-dark: #0A2240;
    --primary-light: #F4F7FA;
    --accent-cyan: #00BFFF;
    --white: #FFFFFF;
    --text-dark: #1a1a1a;
    --text-gray: #666666;
    --font-title: 'Montserrat', sans-serif;
    --font-body: 'Inter', sans-serif;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}


.page {
    min-height: 100vh;
    width: 100%;
    padding: 60px 80px;
    display: flex;
    flex-direction: column;
    position: relative;
}

.page-1 {
    background: linear-gradient(135deg, var(--primary-dark) 0%, #1a3a5c 100%);
    color: var(--white);
}

.page-2 {
    background: var(--white);
}

.page-3 {
    background: var(--primary-light);
}

.page-4 {
    background: var(--primary-dark);
    color: var(--white);
}

.page-2,
.page-3,
.page-4 {
    padding: 60px 80px;
    padding-top: 160px;
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 80px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-text {
    font-family: var(--font-title);
    font-size: 24px;
    font-weight: 700;
    color: var(--white);
}

.logo-img {
    height: 50px;
    width: auto;
}

.footer-logo-img {
    height: 40px;
    width: auto;
}

.nav {
    display: flex;
    align-items: center;
    gap: 40px;
}

    .nav a {
        color: var(--white);
        text-decoration: none;
        font-weight: 500;
        font-size: 14px;
        letter-spacing: 0.5px;
        transition: color 0.3s ease;
    }

        .nav a:hover {
            color: var(--accent-cyan);
        }

.btn-login {
    background: transparent;
    border: 2px solid var(--white);
    color: var(--white);
    padding: 10px 30px;
    border-radius: 25px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
}

    .btn-login:hover {
        background: var(--white);
        color: var(--primary-dark);
    }


.hero-content {
    flex: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.hero-title {
    font-family: var(--font-title);
    font-size: 64px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 30px;
}

.title-line {
    display: block;
}

    .title-line.highlight {
        color: var(--accent-cyan);
    }

.hero-description {
    font-size: 18px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    max-width: 600px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
}

.btn {
    padding: 16px 40px;
    border-radius: 30px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    letter-spacing: 0.5px;
}

.btn-primary {
    background: var(--accent-cyan);
    color: var(--white);
}

    .btn-primary:hover {
        background: #0099cc;
        transform: translateY(-2px);
        box-shadow: 0 10px 25px rgba(0, 191, 255, 0.3);
    }

.btn-secondary {
    background: transparent;
    border: 2px solid var(--white);
    color: var(--white);
}

    .btn-secondary:hover {
        background: var(--white);
        color: var(--primary-dark);
    }


.hero-visual {
    position: relative;
    height: 500px;
}


.floating-card {
    position: absolute;
    width: 320px; 
    padding: 20px 22px;
    background: rgba(255,255,255,0.06);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 14px;
    display: flex;
    align-items: center;
    gap: 14px;
    animation: none !important;
    transition: none;
    box-shadow: 0 8px 30px rgba(2,8,30,0.45);
}


.card-1 {
    top: 12px; 
    right: 120px; 
}

.card-2 {
    top: calc(12px + 96px);
    right: 120px;
}

.card-3 {
    top: calc(12px + 96px*2); 
    right: 120px;
}

.card-icon {
    font-size: 36px;
    line-height: 1;
}

.card-text {
    font-weight: 700;
    font-size: 16px;
    color: rgba(255,255,255,0.95);
}


@media (max-width: 900px) {
    .floating-card {
        width: 260px;
        padding: 16px;
        border-radius: 12px;
    }

    .card-1, .card-2, .card-3 {
        right: 20px; 
        top: auto;
    }

    .card-1 {
        top: 140px;
    }

    .card-2 {
        top: 220px;
    }

    .card-3 {
        top: 300px;
    }
}


@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
    }

    50% {
        transform: translateX(-50%) translateY(10px);
    }
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-family: var(--font-title);
    font-size: 48px;
    font-weight: 800;
    color: var(--primary-dark);
    position: relative;
    display: inline-block;
}

    .section-title::after {
        content: '';
        position: absolute;
        bottom: -10px;
        left: 50%;
        transform: translateX(-50%);
        width: 100px;
        height: 4px;
        background: var(--accent-cyan);
    }

.about-content {
    max-width: 900px;
    margin: 0 auto 80px;
    text-align: center;
}

.about-text {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-gray);
    margin-bottom: 20px;
}

.benefits-section {
    margin-top: 60px;
}

.benefits-title {
    font-family: var(--font-title);
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-dark);
    text-align: center;
    margin-bottom: 50px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.benefit-card {
    background: var(--white);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

    .benefit-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    }

.benefit-icon {
    margin-bottom: 25px;
}

.benefit-title {
    font-family: var(--font-title);
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 15px;
}

.benefit-description {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-gray);
}


.benefits-grid-2 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto 80px;
}

.page-3 .benefit-card {
    background: var(--white);
}

.why-section {
    max-width: 1000px;
    margin: 0 auto;
    margin-top: 70px;
    text-align: center;
}

.why-title {
    font-family: var(--font-title);
    font-size: 42px;
    font-weight: 800;
    color: var(--primary-dark);
    margin-bottom: 15px;
}

.why-subtitle {
    font-size: 20px;
    color: var(--accent-cyan);
    font-weight: 600;
    margin-bottom: 40px;
}

.why-content {
    background: var(--white);
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.why-text {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-gray);
    margin-bottom: 20px;
}


.highlights-section {
    max-width: 800px;
    margin: 0 auto 80px;
}

.highlights-title {
    font-family: var(--font-title);
    font-size: 48px;
    font-weight: 800;
    color: var(--white);
    text-align: center;
    margin-bottom: 50px;
}

.highlights-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 25px 30px;
}

.highlight-check {
    width: 40px;
    height: 40px;
    background: var(--accent-cyan);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    color: var(--white);
    flex-shrink: 0;
}

.highlight-text {
    font-size: 18px;
    font-weight: 600;
    color: var(--white);
}

.cta-section {
    text-align: center;
    padding: 80px 0;
}

.cta-title {
    font-family: var(--font-title);
    font-size: 48px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 20px;
    line-height: 1.2;
}

.cta-subtitle {
    font-size: 18px;
    color: var(--accent-cyan);
    font-weight: 600;
    margin-bottom: 40px;
    letter-spacing: 0.5px;
}

.btn-cta {
    background: var(--accent-cyan);
    color: var(--white);
    padding: 20px 60px;
    border-radius: 35px;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}

    .btn-cta:hover {
        background: #0099cc;
        transform: translateY(-3px);
        box-shadow: 0 15px 35px rgba(0, 191, 255, 0.4);
    }


.footer {
    margin-top: auto;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    font-family: var(--font-title);
    font-weight: 700;
    font-size: 18px;
}

.footer-text {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}


@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
    }

    .hero-visual {
        display: none;
    }

    .benefits-grid,
    .benefits-grid-2 {
        grid-template-columns: 1fr;
    }

    .highlights-list {
        grid-template-columns: 1fr;
    }
}

@media print {
    .page {
        page-break-after: always;
    }
}

.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: none; 
    padding: 0;
}


.whatsapp-icon {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover; 
    background: none;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.35);
    transition: transform 0.2s ease;
}

    .whatsapp-icon:hover {
        transform: scale(1.08);
    }

@media (max-width: 768px) {
    .whatsapp-icon {
        width: 60px;
        height: 60px;
    }
}


.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    background: rgba(26, 58, 92, 0.8);
    backdrop-filter: blur(6px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 18px 40px;
    z-index: 1000;
}


.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}


.logo-link,
.logo-text-link {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    color: inherit;
    padding: 0;
    margin: 0;
    border: 0;
    background: transparent;
}

.logo-img {
    height: 42px; 
    width: auto;
    display: block;
}


.logo-text {
    font-size: 20px;
    font-weight: 700;
    color: var(--white);
    line-height: 1;
    display: inline-block;
}


.main-nav ul {
    display: flex;
    gap: 28px;
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: center;
}


    .main-nav ul li a {
        display: inline-block;
        text-decoration: none;
        color: rgba(255,255,255,0.95);
        font-weight: 600;
        padding: 8px 6px;
        border-radius: 6px;
        transition: background 0.15s, color 0.15s;
    }

        .main-nav ul li a:hover {
            background: rgba(255,255,255,0.03);
            color: #fff;
        }


a {
    outline: none;
}

    a img {
        border: none;
    }

@media (max-width: 900px) {
    .header {
        padding: 12px 18px;
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .main-nav ul {
        gap: 12px;
        flex-wrap: wrap;
    }
}


.btn-primary,
.btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    border-radius: 40px;
    padding: 14px 32px;
    cursor: pointer;
    transition: all 0.25s ease;
    white-space: nowrap;
}


.btn-primary {
    background: #00AEEF;
    color: #fff;
    border: none;
}

    .btn-primary:hover {
        background: #0095D1;
        transform: translateY(-2px);
    }


.btn-outline {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255,255,255,0.6);
}

    .btn-outline:hover {
        border-color: #00AEEF;
        color: #00AEEF;
        background: rgba(0,174,239,0.08);
        transform: translateY(-2px);
    }


    .btn-primary:link,
    .btn-primary:visited,
    .btn-outline:link,
    .btn-outline:visited {
        text-decoration: none;
        color: inherit;
    }


html, body {
    margin: 0;
    padding: 0;
}


.footer-info {
    background: linear-gradient(180deg, #071B31 0%, #0B2A46 100%); 
    padding: 12px 40px 8px 40px; 
    border-top: 1px solid rgba(255,255,255,0.04);
    box-sizing: border-box;
}

.footer-container {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: nowrap;
    max-width: 1180px;
    margin: 0 auto;
    padding: 18px 0 8px 0;
}


.footer-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    min-width: 0;
    flex: 1 1 0; 
}


.footer-logo-block {
    align-items: center;
    gap: 14px;
    flex: 1.2 1 0;
}


.footer-logo-img {
    height: 40px;
    width: auto;
    display: block;
}

.footer-company-name {
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.1;
}

.footer-icon {
    flex: 0 0 34px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    margin-top: 2px;
}

.footer-text {
    color: rgba(255,255,255,0.9);
    font-size: 13.5px;
    line-height: 1.32;
    font-weight: 400;
}

.footer-item .footer-text {
    display: block;
}


.footer-bottom {
    width: 100%;
    text-align: center;
    padding: 10px 0 6px 0;
    border-top: 1px solid rgba(255,255,255,0.03);
    margin-top: 0px;
}

    .footer-bottom span {
        color: rgba(255,255,255,0.75);
        font-size: 13px;
        display: inline-block;
    }


body > footer.footer-info:last-child {
    margin-bottom: 0;
}


@media (max-width: 1024px) {
    .footer-container {
        gap: 18px;
        padding: 12px 0;
    }

    .footer-company-name {
        font-size: 16px;
    }

    .footer-text {
        font-size: 13px;
    }
}

@media (max-width: 760px) {
    .footer-container {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .footer-item {
        width: 100%;
    }

    .footer-logo-block {
        gap: 10px;
    }

    .footer-bottom {
        padding-top: 18px;
    }
}

a.cta-btn.cta-whatsapp {
    display: inline-block;
    text-decoration: none;
    color: #ffffff;
    background: #00AEEF;
    padding: 14px 32px;
    border-radius: 40px;
    font-weight: 600;
    font-size: 16px;
    line-height: 1;
    white-space: nowrap;
    transition: transform .18s ease, background .18s ease;
}

    a.cta-btn.cta-whatsapp:hover {
        background: #0095D1;
        transform: translateY(-2px);
    }


@media (max-width: 1024px) {

    .page {
        padding: 100px 40px;
    }

    .hero-content {
        display: block;
        text-align: center;
    }

    .hero-title {
        font-size: 42px;
    }

    .hero-description {
        max-width: 100%;
        font-size: 16px;
    }

    .hero-visual {
        display: none;
    }

    .benefits-grid {
        grid-template-columns: 1fr 1fr;
    }

    .highlights-list {
        grid-template-columns: 1fr;
    }
}

/* ======== MOBILE MÉDIO (≤ 760px) ======== */
@media (max-width: 760px) {

    .page {
        padding: 90px 30px;
        padding-top: 130px; 
    }

    .header {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        padding: 16px 0;
        margin-bottom: 40px;
    }


    .main-nav ul {
        flex-wrap: wrap;
        gap: 18px;
    }

    .logo-text {
        font-size: 18px;
        padding: 8px 20px;
    }

    .btn-login {
        padding: 8px 20px;
        font-size: 14px;
    }

    .hero-title {
        font-size: 36px;
        line-height: 1.15;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 14px;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .why-content {
        padding: 30px;
    }

    .cta-title {
        font-size: 36px;
    }
}

@media (max-width: 500px) {

    .page {
        padding: 80px 20px;
        padding-top: 120px;
    }

    .hero-title {
        font-size: 30px;
    }

    .hero-description {
        font-size: 15px;
    }

    .benefits-title,
    .highlights-title {
        font-size: 28px;
    }

    .benefit-card {
        padding: 28px 20px;
    }

    .benefit-title {
        font-size: 16px;
    }

    .why-title {
        font-size: 28px;
    }

    .why-content {
        padding: 24px 18px;
    }

    .footer-container {
        flex-direction: column;
        gap: 18px;
        text-align: left;
    }

    /* botão whatsapp menor */
    .whatsapp-float {
        width: 58px;
        height: 58px;
        bottom: 18px;
        right: 18px;
    }

    .whatsapp-icon {
        width: 58px;
        height: 58px;
    }
}

@media (max-width: 1024px) {
    .hero-title {
        font-size: 40px;
    }
    .hero-description {
        font-size: 16px;
    }
    .section-title {
        font-size: 40px;
    }
    .benefits-title {
        font-size: 30px;
    }
    .highlight-text {
        font-size: 16px;
    }
    .cta-title {
        font-size: 40px;
    }
}

@media (max-width: 760px) {
    .hero-title {
        font-size: 32px;
        line-height: 1.15;
    }
    .title-line {
        margin-bottom: 2px;
    }
    .hero-description {
        font-size: 15px;
    }

    .section-title {
        font-size: 34px;
    }

    .benefit-title {
        font-size: 15px;
    }
    .benefit-description {
        font-size: 14px;
    }

    .why-title {
        font-size: 30px;
    }
    .why-text {
        font-size: 15px;
    }

    .highlights-title {
        font-size: 34px;
    }
    .highlight-text {
        font-size: 15px;
    }

    .cta-title {
        font-size: 34px;
    }
    .cta-subtitle {
        font-size: 15px;
    }

    .footer-text {
        font-size: 13px;
    }
}

@media (max-width: 500px) {
    .hero-title {
        font-size: 28px;
    }
    .hero-description {
        font-size: 14px;
    }

    .benefit-card {
        padding: 24px 20px;
    }
    .benefit-title {
        font-size: 15px;
    }
    .benefit-description {
        font-size: 13.5px;
    }

    .section-title {
        font-size: 28px;
    }
    .why-title {
        font-size: 26px;
    }

    .cta-title {
        font-size: 28px;
    }

    .footer-company-name {
        font-size: 16px;
    }
}

@media (max-width: 760px) {

    .page-1 {
        padding-top: 40px !important;
    }

    .hero-content {
        margin-top: 100px;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 30px;
    }

    .hero-text {
        margin-top: 10px;
        text-align: center;
        align-items: center;
        width: 100%;
    }

    .hero-title {
        text-align: center;
        width: 100%;
        font-size: 32px;
        margin-bottom: 20px;
    }

    .title-line {
        display: block;
        text-align: center;
        width: 100%;
    }


    .hero-description {
        text-align: center;
        margin: 0 auto 30px auto;
        width: 90%;
        font-size: 15px;
        line-height: 1.6;
    }

   
    .hero-buttons {
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 14px;
        justify-content: center;
        align-items: center;
    }

    .btn-primary,
    .btn-outline {
        width: 80%;
        max-width: 320px;
        text-align: center;
        padding: 14px 0;
    }
}



