:root {
    --primary: #0e2a38;   /* azul petróleo */
    --secondary: #c9a34f; /* dourado */
    --dark: #071219;
    --light: #f5f5f5;
    --text: #222;
    --accent: #1e4f64;
    --danger: #c0392b;
    --radius: 8px;
    --shadow-soft: 0 10px 25px rgba(0, 0, 0, 0.15);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
html{
    scroll-behavior: smooth;
}

body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--text);
    background: #ffffff;
    line-height: 1.6;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    display: block;
}

/* HEADER */
header {
    background: radial-gradient(circle at top left, #163549, var(--primary));
    color: #fff;
    padding: 18px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.container {
    width: 100%;
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 16px;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.logo {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.logo-main {
    font-size: 1.4rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.logo-main span {
    color: var(--secondary);
}

.logo-sub {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    opacity: 0.85;
}

nav {
    display: flex;
    gap: 18px;
    font-size: 0.95rem;
}

nav a {
    position: relative;
    padding-bottom: 3px;
    opacity: 0.85;
}

nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background: var(--secondary);
    transition: width 0.2s ease;
}

nav a:hover::after {
    width: 100%;
}

.btn-header {
    background: var(--secondary);
    color: var(--dark);
    padding: 8px 18px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 4px 12px #C9A34F;
    border: none;
    cursor: pointer;

    animation: pulse 2s ease-in-out infinite;
}

/* HERO */
.hero {
    background: linear-gradient(135deg, #0a1c26 0%, #102b3b 40%, #050b10 100%);
    color: #fff;
    padding: 72px 0 64px;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    align-items: center;
}

.hero-kicker {
    text-transform: uppercase;
    letter-spacing: 0.25em;
    font-size: 0.75rem;
    color: var(--secondary);
    margin-bottom: 12px;
}

.hero-title {
    font-size: 2.4rem;
    line-height: 1.15;
    margin-bottom: 16px;
}

.hero-title strong {
    color: var(--secondary);
}

.hero-subtitle {
    font-size: 1.02rem;
    max-width: 520px;
    opacity: 0.9;
    margin-bottom: 24px;
}

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 24px;
}

.badge {
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.18);
    padding: 6px 12px;
    font-size: 0.8rem;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    backdrop-filter: blur(6px);
    background: rgba(0,0,0,0.25);
}

.badge-dot {
    width: 7px;
    height: 7px;
    border-radius: 999px;
    background: var(--secondary);
}

.hero-ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 18px;
}

.btn-primary {
    background: var(--secondary);
    color: var(--dark);
    padding: 12px 22px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 0.98rem;
    border: none;
    cursor: pointer;
    box-shadow: 0 0 0 5px #C9A34F;

    animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0% {
      box-shadow: 0 0 0 0 #C9A34F;
  }
  70% {
      box-shadow: 0 0 0 10px rgba(0, 188, 212, 0); 
  }
  100% {
      box-shadow: 0 0 0 0 rgba(0, 188, 212, 0);
  }
}
.btn-outline {
    background: transparent;
    color: #fff;
    padding: 11px 20px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.95rem;
    border: 1px solid rgba(255,255,255,0.35);
    cursor: pointer;

    
}

.hero-note {
    font-size: 0.8rem;
    opacity: 0.8;
}

.hero-card {
    background: rgba(5,10,14,0.9);
    border-radius: 16px;
    padding: 20px 20px 18px;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(255,255,255,0.05);
}

.hero-card-title {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: var(--secondary);
    margin-bottom: 10px;
}

.hero-card-metric {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 6px;
}

.hero-card-metric span {
    font-size: 0.85rem;
    font-weight: 500;
    opacity: 0.8;
    margin-left: 6px;
}

.hero-card-text {
    font-size: 0.86rem;
    opacity: 0.85;
    margin-bottom: 10px;
}

.hero-card-list {
    list-style: none;
    font-size: 0.8rem;
    opacity: 0.9;
}

.hero-card-list li::before {
    content: "• ";
    color: var(--secondary);
}

/* SECTION GENERIC */
section {
    padding: 56px 0;
}

.section-title {
    font-size: 1.7rem;
    margin-bottom: 10px;
    text-align: center;
    color: var(--primary);
}

.section-subtitle {
    font-size: 0.98rem;
    text-align: center;
    max-width: 620px;
    margin: 0 auto 30px;
    color: #555;
}

/* BENEFITS */
.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, minmax(0,1fr));
    gap: 22px;
}

.card {
    background: var(--light);
    border-radius: var(--radius);
    padding: 18px 18px 20px;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.122);
    border: 1px solid #e2e2e2;

    cursor: pointer;
    transition: all .3s ease-in-out;
}
.card:hover {
    box-shadow: none;
}

.card h3 {
    font-size: 1rem;
    margin-bottom: 6px;
    color: var(--primary);
}

.card p {
    font-size: 0.92rem;
    color: #555;
}

.card-tag {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--secondary);
    margin-bottom: 4px;
}

/* PROCESS */
.process-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 26px;
    align-items: flex-start;
}

.steps {
    display: grid;
    gap: 12px;
}

.step {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px dashed #ddd;
}

.step-number {
    width: 26px;
    height: 26px;
    border-radius: 999px;
    border: 1px solid var(--secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--secondary);
}

.step h3 {
    font-size: 0.98rem;
    margin-bottom: 2px;
    color: var(--primary);
}

.step p {
    font-size: 0.9rem;
    color: #555;
}

.process-highlight {
    background: #0f2635;
    color: #fff;
    border-radius: 14px;
    padding: 18px 18px 16px;
    box-shadow: var(--shadow-soft);
}

.process-highlight h3 {
    font-size: 1.02rem;
    margin-bottom: 6px;
    color: var(--secondary);
}

.process-highlight p {
    font-size: 0.9rem;
    margin-bottom: 8px;
    opacity: 0.9;
}

.process-highlight ul {
    list-style: none;
    font-size: 0.86rem;
    opacity: 0.9;
}

.process-highlight ul li {
    margin-bottom: 4px;
}

.process-highlight ul li::before {
    content: "✔ ";
    color: var(--secondary);
    font-weight: 700;
}

/* NICHOS */
.pill-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 4px;
}

.pill {
    border-radius: 999px;
    border: 1px solid #ddd;
    padding: 6px 12px;
    font-size: 0.8rem;
    background: #fff;
}

/* FORM SECTION */
.section-cta {
    background: #f7f5f0;
    border-top: 1px solid #eee2c0;
    border-bottom: 1px solid #eee2c0;
}

.cta-grid {
    display: grid;
    grid-template-columns: 1.1fr 1.1fr;
    gap: 28px;
    align-items: flex-start;
}

.cta-text h2 {
    font-size: 1.6rem;
    margin-bottom: 10px;
    color: var(--primary);
}

.cta-text p {
    font-size: 0.96rem;
    color: #555;
    margin-bottom: 12px;
}

.cta-bullets {
    list-style: none;
    font-size: 0.9rem;
    color: #444;
}

.cta-bullets li {
    margin-bottom: 6px;
}

.cta-bullets li::before {
    content: "• ";
    color: var(--secondary);
    font-weight: 800;
}

.form-card {
    background: #fff;
    border-radius: 14px;
    padding: 18px 18px 16px;
    box-shadow: var(--shadow-soft);
    border: 1px solid #ecd9a6;
}

.form-card h3 {
    font-size: 1.1rem;
    margin-bottom: 6px;
    color: var(--primary);
}

.form-card p {
    font-size: 0.85rem;
    color: #555;
    margin-bottom: 14px;
}

form {
    display: grid;
    gap: 10px;
}

label {
    font-size: 0.8rem;
    font-weight: 600;
    color: #333;
    display: block;
    margin-bottom: 3px;
}

input[type="text"],
input[type="email"],
input[type="tel"],
select,
textarea {
    width: 100%;
    border-radius: 6px;
    border: 1px solid #d0d0d0;
    padding: 8px 9px;
    font-size: 0.9rem;
    font-family: inherit;
    transition: border 0.15s ease, box-shadow 0.15s ease;
    background: #fafafa;
}

input:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: var(--secondary);
    box-shadow: 0 0 0 1px rgba(201,163,79,0.5);
    background: #fff;
}

textarea {
    resize: vertical;
    min-height: 80px;
}

.form-row-inline {
    display: grid;
    grid-template-columns: repeat(2, minmax(0,1fr));
    gap: 10px;
}

.form-footer {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 4px;
}

.form-note {
    font-size: 0.75rem;
    color: #777;
}

.form-checkbox {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.75rem;
    color: #555;
}

.form-checkbox input {
    width: 14px;
    height: 14px;
}

.btn-submit {
    background: var(--secondary);
    color: var(--dark);
    border: none;
    border-radius: 999px;
    padding: 10px 16px;
    font-size: 0.9rem;
    font-weight: 700;
    cursor: pointer;
    margin-top: 4px;
    box-shadow: 0 6px 16px rgba(0,0,0,0.2);
}

/* FAQ */
.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0,1fr));
    gap: 16px;
}

.faq-item {
    border-radius: 8px;
    border: 1px solid #ececec;
    padding: 12px 12px 10px;
    background: #fff;
}

.faq-item h3 {
    font-size: 0.96rem;
    margin-bottom: 4px;
    color: var(--primary);
}

.faq-item p {
    font-size: 0.88rem;
    color: #555;
}

/* FOOTER */
footer {
    background: var(--dark);
    color: #fff;
    padding: 22px 0 18px;
    font-size: 0.8rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 16px;
    align-items: center;
}

.footer-logo {
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.footer-logo span {
    color: var(--secondary);
}

.footer-meta {
    opacity: 0.8;
}

.footer-contact {
    text-align: right;
    opacity: 0.9;
}

.footer-contact div {
    margin-bottom: 2px;
}

.footer-contact a {
    text-decoration: underline;
}

/* RESPONSIVE */
@media (max-width: 880px) {
    .hero-grid,
    .process-grid,
    .cta-grid,
    .faq-grid,
    .footer-grid {
    grid-template-columns: 1fr;
    }

    header {
    position: static;
    }

    nav {
    display: none;
    }

    .hero {
    padding-top: 48px;
    }

    .hero-title {
    font-size: 2rem;
    }

    .hero-card {
    margin-top: 10px;
    }

    .grid-3 {
    grid-template-columns: 1fr;
    }

    .footer-contact {
    text-align: left;
    }
}



nav a {
  position: relative;
  padding-bottom: 3px;
  font-weight: 500;
}

nav a.active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 2px;
  background: #fff; /* cor do sublinhado */
  border-radius: 2px;
  transform: scaleX(1);
  opacity: 1;
}

nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: 0.25s ease;
}

nav a:hover::after {
  transform: scaleX(1);
}
