@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@500;600;700&family=Inter:wght@400;500&display=swap');

/* ===============================
   VARIÁVEIS
   =============================== */

:root {
    --blue-dark: #1F3A5F;
    --blue-main: #2F80ED; /* CORRIGIDO */
    --orange: #F2994A;
    --gray-bg: #F5F7FA;
    --gray-text: #4F4F4F;
    --white: #FFFFFF;
}


/* ===============================
   RESET / BASE (ORIGINAL)
   =============================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    body {
    background: var(--white);
}

}

body {
    font-family: 'Inter', sans-serif;
    color: var(--gray-text);
    background: var(--white);
    line-height: 1.6;
}

h1,
h2,
h3 {
    font-family: 'Poppins', sans-serif;
}

/* ===============================
   HEADER (ORIGINAL)
   =============================== */

.header {
    background: var(--white);
    padding: 20px;
    border-bottom: 1px solid #eee;
}

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

.header img {
    height: 80px;
    filter:
        drop-shadow(0 8px 18px rgba(31, 58, 95, 0.25))
        drop-shadow(0 0 10px rgba(47, 128, 237, 0.25));
}

.header a {
    text-decoration: none;
    font-weight: 600;
    color: var(--blue-main);
}

/* ===============================
   HERO – AJUSTADO (MÍNIMO NECESSÁRIO)
   =============================== */

.hero {
    position: relative;
    background: linear-gradient(
        135deg,
        #1F3A5F 0%,
        #244f8f 45%,
        #2F80ED 100%
    );
    padding: 120px 20px 200px;
    overflow: hidden;
}

.hero-container {
    max-width: 1100px;
    margin: auto;
    display: flex;
    align-items: center;
    gap: 60px;
    position: relative;
    z-index: 5;
}

.hero-left {
    flex: 1;
}

.hero-eyebrow {
    font-size: 14px;
    font-weight: 600;
    color: var(--blue-main);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.hero-left h1 {
    font-size: 48px;
    line-height: 1.15;
    margin: 20px 0;
    color: var(--white);
}

.hero-left p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    max-width: 480px;
}


.hero-actions {
    margin-top: 32px;
    display: flex;
    align-items: center;
    gap: 20px;
}

/* BOTÕES DO HERO */
.hero .btn {
    padding: 14px 32px;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
}

.hero .btn-primary {
    background: var(--blue-main);
    color: var(--white);
}

.hero .btn-secondary {
    background: transparent;
    color: var(--white);
    opacity: 0.9;
}

/* IMAGEM */
.hero-right {
    flex: 1;
    text-align: right;
}

.hero-right img {
    max-width: 100%;
    height: auto;
}

/* ===============================
   ONDULAÇÃO (WAVE) – CURVA SUAVE
   =============================== */

.hero::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 190px;
    background: url("data:image/svg+xml,%3Csvg viewBox='0 0 1440 160' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='%23f5f7fa' fill-opacity='0.55' d='M0,80 C180,140 360,140 540,110 720,80 900,20 1080,30 1260,40 1350,80 1440,90 L1440,160 L0,160 Z'/%3E%3C/svg%3E");
    background-size: cover;
    background-repeat: no-repeat;
    z-index: 1;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 160px;
    background: url("data:image/svg+xml,%3Csvg viewBox='0 0 1440 150' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='%23ffffff' d='M0,60 C200,120 400,120 600,90 800,60 1000,20 1200,30 1320,40 1380,60 1440,70 L1440,150 L0,150 Z'/%3E%3C/svg%3E");
    background-size: cover;
    background-repeat: no-repeat;
    z-index: 3;
}


.hero + .container.section {
    position: relative;
    margin-top: -30px;
    padding-top: 80px;
    background: var(--white);

    border-radius: 28px;

    box-shadow:
        0 10px 30px rgba(31, 58, 95, 0.08),
        0 2px 6px rgba(31, 58, 95, 0.04);

        
}





/* ===============================
   CONTAINERS / SECTIONS (ORIGINAL)
   =============================== */

.container {
    max-width: 1100px;
    margin: auto;
    padding: 60px 20px;
}

.container.section:first-of-type {
    background: transparent;
}



.section-header {
    background: transparent;
    margin-top: -80px;
    padding: 120px 20px 60px;
    text-align: center;
    position: relative;
    z-index: 2;
}



.section-eyebrow {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--blue-main);
    margin-bottom: 8px;
}

.section {
    background: var(--white);
    margin-bottom: 30px;
    border-radius: 8px;
}

.section h2 {
    margin-bottom: 20px;
    font-size: 32px;
    color: var(--blue-dark);
}

/* ===============================
   CARDS (ORIGINAL)
   =============================== */

.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.card {
   
    padding: 25px;
    border-radius: 6px;
}

/* ===============================
   FORM (ORIGINAL)
   =============================== */

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

input,
textarea {
    padding: 14px;
    border-radius: 6px;
    border: 1px solid #ccc;
    font-family: 'Inter', sans-serif;
}

textarea {
    resize: vertical;
    min-height: 120px;
}

/* ===============================
   FOOTER (ORIGINAL)
   =============================== */

.footer {
    text-align: center;
    padding: 40px 20px;
    font-size: 0.9rem;
}

/* ===============================
   PRICING (ORIGINAL)
   =============================== */

.pricing-cards {
    gap: 24px;
}

.pricing-card {
    text-align: center;
    padding: 24px;
    border: 2px solid transparent;
    border-radius: 6px;
    transition:
        border-color 0.3s ease,
        box-shadow 0.3s ease,
        transform 0.3s ease;
}

.pricing-card h3 {
    font-size: 20px;
    margin-bottom: 8px;
}

.price {
    font-size: 28px;
    font-weight: 700;
    margin: 16px 0;
}

.pricing-card ul {
    list-style: none;
    margin: 16px 0 24px;
}

.pricing-card ul li {
    margin-bottom: 8px;
    font-size: 14px;
}

.btn-cta {
    display: inline-block;
    padding: 12px 24px;
    background-color: #FF7A00;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
}

.btn-cta:hover {
    opacity: 0.9;
}

/* HOVER DESKTOP */
@media (hover: hover) and (pointer: fine) {
    .pricing-card:hover {
        border-color: var(--orange);
        box-shadow: 0 10px 30px rgba(242, 153, 74, 0.25);
        transform: translateY(-6px);
    }
}

/* ATIVO MOBILE */
.pricing-card.active {
    border-color: var(--orange);
    box-shadow: 0 10px 30px rgba(242, 153, 74, 0.25);
    transform: translateY(-6px);
}

/* ===============================
   RESPONSIVO (AJUSTE DA WAVE)
   =============================== */

@media (max-width: 768px) {

    .container {
        padding: 40px 16px;
    }

    .hero {
        padding: 80px 20px 160px;
    }

    .hero::after {
        height: 80px;
    }

    .hero + .container.section {
        margin-top: -15px;
        padding-top: 40px;
    }

    .hero-container {
        flex-direction: column;
        text-align: center;
    }

    .hero-right {
        margin-top: 40px;
        text-align: center;
    }

    .hero-left h1 {
        font-size: 32px;
    }

    .hero-actions {
        justify-content: center;
    }

    .btn-cta {
        width: 100%;
    }
}


/* ===============================
   SERVIÇOS – BUSINESS STYLE
   =============================== */

.section-title {
    margin-bottom: 40px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}

.service-card {
    position: relative;
    background: var(--white);
    border-radius: 20px;
    padding: 40px 32px;
    text-align: left;

    box-shadow:
        0 12px 30px rgba(31, 58, 95, 0.08),
        0 4px 10px rgba(31, 58, 95, 0.04);

    transition: transform 0.3s ease, box-shadow 0.3s ease;
}


.service-card img {
    width: 64px;
    margin-bottom: 20px;
}

.service-card h3 {
    margin-bottom: 12px;
    font-size: 18px;
}

.service-card p {
    font-size: 15px;
    line-height: 1.6;
}

.service-card::before {
    content: attr(data-step);
    position: absolute;
    top: -14px;
    right: 24px;

    font-size: 46px;
    font-weight: 700;
    color: rgba(47, 128, 237, 0.15);
}


/* card em destaque (igual ao azul do exemplo) */
.service-card.highlight {
    background: linear-gradient(135deg, #2F80ED, #1F3A5F);
}

.service-card.highlight h3,
.service-card.highlight p {
    color: #fff;
}

.service-card.highlight::before {
    color: rgba(255, 255, 255, 0.25);
}


.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(31, 58, 95, 0.15);
}

.service-card img {
    width: 56px;
    margin-bottom: 20px;
}

form button.btn {
    width: 100%;
    max-width: 320px;
    margin-top: 16px;
    padding: 14px 24px;

    background: #ff7a00; /* ou o azul principal da marca */
    color: #fff;

    font-size: 16px;
    font-weight: 600;

    border: none;
    border-radius: 10px;

    cursor: pointer;
    transition: all 0.2s ease;
}

form button.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.form-note {
  margin-top: 10px;
  font-size: 13px;
  color: rgba(79, 79, 79, 0.75);
}
