/*
Theme Name: AEROJR Theme
Author: Equipe AEROJR
Description: Tema oficial da AEROJR convertido a partir de HTML estático.
Version: 1.0
*/

/* Cole todo o seu CSS original a partir desta linha... */
/* =========================================================
       0. RESET & BASE
       ========================================================= */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    @media (prefers-reduced-motion: reduce) {
      html { scroll-behavior: auto; }
      *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
    }
    img, svg { display: block; max-width: 100%; }
    a { text-decoration: none; color: inherit; cursor: pointer; }
    button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
    ul { list-style: none; }
    input, textarea, select { font: inherit; color: inherit; }

    /* =========================================================
       1. DESIGN TOKENS
       ========================================================= */
    :root {
      /* Blues */
      --blue-900: #1d457f;
      --blue-800: #173868;
      --blue-700: #2f5f9d;
      --blue-600: #4a78b3;
      --blue-500: #5e87bd;
      --blue-400: #79a1d3;
      --blue-300: #83aadb;
      --blue-grad-start: #5689ca;

      /* Reds */
      --red-800: #9e272b;
      --red-700: #a81810;
      --red-600: #bd211b;
      --red-500: #c73630;
      --red-400: #cf4540;
      --red-300: #d6534c;

      /* Maroon (footer / CTA gradients) */
      --maroon-800: #5d0f0d;
      --maroon-900: #340908;

      /* Neutrals */
      --gray-100: #f7f8fa;
      --gray-150: #eef1f5;
      --gray-200: #e6e6e6;
      --gray-500: #7c8593;
      --ink: #1c2430;
      --white: #ffffff;

      /* Type */
      --font-heading: 'League Spartan', 'Arial Narrow', Arial, sans-serif;
      --font-body: 'Montserrat', Arial, Helvetica, sans-serif;

      /* Layout */
      --container: 1220px;
      --radius-sm: 8px;
      --radius-md: 18px;
      --radius-lg: 28px;
      --radius-pill: 60px;
      --shadow-card: 0 20px 45px -18px rgba(29,69,127,0.35);
      --shadow-soft: 0 10px 25px -12px rgba(29,69,127,0.25);
      --ease: cubic-bezier(.4,0,.2,1);
    }

    /* =========================================================
       2. BASE TYPOGRAPHY
       ========================================================= */
    body { font-family: var(--font-body); color: var(--ink); line-height: 1.7; font-size: 16px; background: var(--white); -webkit-font-smoothing: antialiased; overflow-x: hidden; }
    h1, h2, h3, h4 { font-family: var(--font-heading); line-height: 1.08; font-weight: 700; }
    p { color: #4c5566; }

    .container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: 32px; }

    .eyebrow { display: inline-block; font-family: var(--font-body); font-weight: 600; font-size: 13px; letter-spacing: .16em; text-transform: uppercase; margin-bottom: 14px; }
    .eyebrow-line { display: inline-flex; align-items: center; gap: 8px; font-weight: 700; font-size: 13px; letter-spacing: .14em; text-transform: uppercase; margin-bottom: 16px; color: var(--red-600); }
    .eyebrow-line::before { content: ""; width: 22px; height: 2px; background: var(--red-600); display: inline-block; }

    .text-red { color: var(--red-600); }
    .text-blue { color: var(--blue-700); }
    .text-white { color: #fff; }

    .section-head { max-width: 680px; margin-bottom: 64px; }
    .section-head.center { margin-inline: auto; text-align: center; }
    .section-head h2 { font-size: clamp(26px, 3.2vw, 38px); text-transform: uppercase; color: var(--blue-900); margin-bottom: 18px; }
    .section-head p { font-size: 15.5px; }

    .sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
    .skip-link { position: absolute; left: 12px; top: -60px; background: var(--red-600); color: #fff; padding: 10px 18px; border-radius: 6px; z-index: 999; transition: top .25s var(--ease); font-weight: 600; font-size: 14px; }
    .skip-link:focus { top: 12px; }
    :focus-visible { outline: 3px solid var(--blue-400); outline-offset: 3px; }

    /* =========================================================
       3. BUTTONS
       ========================================================= */
    .btn { display: inline-flex; align-items: center; gap: 10px; font-family: var(--font-body); font-weight: 600; font-size: 15px; padding: 15px 30px; border-radius: var(--radius-pill); white-space: nowrap; transition: transform .25s var(--ease), box-shadow .25s var(--ease), background-color .25s var(--ease); }
    .btn .arrow { transition: transform .25s var(--ease); display: inline-block; }
    .btn:hover .arrow { transform: translateX(5px); }
    .btn:hover { transform: translateY(-3px); }
    .btn:active { transform: translateY(-1px); }

    .btn-primary { background: var(--red-600); color: #fff; box-shadow: 0 12px 25px -10px rgba(189,33,27,.55); }
    .btn-primary:hover { background: #a51b16; box-shadow: 0 16px 30px -10px rgba(189,33,27,.65); }

    .btn-secondary { background: var(--blue-700); color: #fff; box-shadow: 0 12px 25px -10px rgba(47,95,157,.5); }
    .btn-secondary:hover { background: var(--blue-900); box-shadow: 0 16px 30px -10px rgba(47,95,157,.6); }

    .btn-outline { background: transparent; border: 2px solid rgba(255,255,255,.7); color: #fff; }
    .btn-outline:hover { background: rgba(255,255,255,.12); }
    .btn-outline-light { background: transparent; border: 2px solid rgba(255,255,255,.55); color: #fff; }
    .btn-outline-light:hover { background: rgba(255,255,255,.12); border-color: #fff; }
    .btn-block { width: 100%; justify-content: center; }

    /* =========================================================
       4. HEADER (SPA NAV)
       ========================================================= */
    .site-header { position: sticky; top: 0; left: 0; right: 0; z-index: 500; background: #fff; box-shadow: 0 10px 15px rgba(0, 0, 0, 0.15); }
    .site-header.is-scrolled { box-shadow: 0 50px 30px -18px rgba(20,30,50,.35); }
    .header-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding-block: 18px; }
    .logo { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
    .logo-icon { width: 34px; height: 34px; }
    .logo-text { font-family: var(--font-heading); font-size: 22px; font-weight: 800; letter-spacing: .02em; color: var(--blue-900); }
    .logo-text strong { color: var(--red-600); font-weight: 800; }

    .main-nav ul { display: flex; align-items: center; gap: 34px; }
    .main-nav > ul > li > a { display: inline-flex; align-items: center; gap: 6px; font-weight: 600; font-size: 15px; color: var(--ink); padding: 8px 2px; position: relative; }
    .main-nav > ul > li > a::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 2px; background: var(--red-600); transform: scaleX(0); transform-origin: left; transition: transform .25s var(--ease); }
    .main-nav a:hover { color: var(--blue-700); }
    .main-nav a:hover::after, .main-nav a.active-link::after { transform: scaleX(1); }
    .main-nav .caret { opacity: .6; }

    /* Ocultar botão CTA Mobile no Desktop */
    .nav-cta-mobile { display: none; }

    /* Dropdown */
    .dropdown { position: relative; }
    .dropdown-menu { position: absolute; top: 100%; left: 0; background-color: var(--white); box-shadow: var(--shadow-soft); border-radius: 8px; min-width: 250px; opacity: 0; visibility: hidden; transform: translateY(10px); transition: var(--ease) 0.3s; padding: 10px 0; z-index: 100; border: 1px solid rgba(0,0,0,0.05); }
    .dropdown:hover .dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
    .dropdown-menu a { display: block; padding: 12px 20px; font-weight: 600; font-size: 14px; color: var(--ink); }
    .dropdown-menu a:hover { background-color: var(--gray-100); color: var(--red-600); }

    .header-cta { flex-shrink: 0; }
    .menu-toggle { display: none; flex-direction: column; justify-content: center; align-items: center; gap: 5px; width: 44px; height: 44px; border-radius: 10px; flex-shrink: 0; }
    .menu-toggle span { width: 22px; height: 2px; background: var(--blue-900); border-radius: 2px; transition: transform .3s var(--ease), opacity .3s var(--ease); }
    .menu-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .menu-toggle.is-open span:nth-child(2) { opacity: 0; }
    .menu-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
    .nav-backdrop { display: none; }

    /* =========================================================
       5. SPA CONFIGURATION
       ========================================================= */
    .spa-page { display: none; animation: fadeIn 0.4s var(--ease); }
    .spa-page.active { display: block; }
    @keyframes fadeIn { from { opacity: 0; transform: translateY(15px); } to { opacity: 1; transform: translateY(0); } }

    /* =========================================================
       6. HOME: HERO & SECTIONS
       ========================================================= */
    .hero {
      position: relative;
      background: linear-gradient(160deg, rgba(178, 24, 19, 0.5) 0%, rgba(29, 69, 127, 0.85) 100%),
                  url(https://i.imgur.com/M047gfD.png);
      background-size: cover;
      background-position: center;
      background-attachment: fixed;
      padding-top: 96px;
      padding-bottom: 150px;
      overflow: hidden;
      isolation: isolate;
      text-align: center;
    }
    .hero__shape { position: absolute; z-index: -1; border-radius: 50%; }
    .hero__shape--one { width: 520px; height: 520px; top: -220px; right: -140px; background: rgba(255,255,255,.05); }
    .hero__shape--two { width: 340px; height: 340px; bottom: -160px; left: -120px; border: 2px solid rgba(255,255,255,.18); background: transparent; }
    .hero__shape--three { width: 70px; height: 70px; top: 120px; left: 8%; border: 2px solid rgba(255,255,255,.3); transform: rotate(20deg); border-radius: 14px; }
    .hero__inner { text-align: center; max-width: 900px; margin-inline: auto; padding-top: 20px; position: relative; }
    .hero__title { color: #fff; font-size: clamp(34px, 5.4vw, 62px); text-transform: uppercase; letter-spacing: .01em; font-weight: 800; }
    .hero__title span.line { display: block; }
    .hero__title .accent { color: var(--red-300); }
    .hero__subtitle { color: rgba(255,255,255,.88); font-family: var(--font-heading); font-weight: 500; font-size: clamp(18px,2.2vw,24px); margin-top: 22px; letter-spacing: .02em; }
    .hero__cta { margin-top: 38px; }
    .hero__stats { margin-top: 76px; display: flex; justify-content: center; gap: 0; flex-wrap: wrap; }
    .stat { padding-inline: 44px; text-align: center; border-right: 1px solid rgba(255,255,255,.25); }
    .stat:last-child { border-right: none; }
    .stat__number { display: block; font-family: var(--font-heading); font-weight: 800; font-size: clamp(32px,4vw,46px); color: #fff; }
    .stat__label { display: block; margin-top: 6px; font-size: 13px; font-weight: 500; letter-spacing: .04em; color: rgba(255,255,255,.78); }
    .hero__divider { position: absolute; bottom: -1px; left: 50%; transform: translate(-50%, 50%); width: 130px; z-index: 5; filter: drop-shadow(0 10px 18px rgba(20,30,60,.25)); }

    .about { padding-block: 150px 130px; background: #fff; position: relative; }
    .about-intro { display: grid; grid-template-columns: 1fr 0.86fr; gap: 70px; align-items: center; margin-bottom: 110px; }
    .about-intro__text h2 { font-size: clamp(28px,3.4vw,40px); text-transform: uppercase; color: var(--blue-900); margin-bottom: 22px; }
    .about-intro__text p { font-size: 15.5px; margin-bottom: 32px; max-width: 52ch; }
    .about-intro__media { position: relative; display: flex; justify-content: center; }
    .about-photo-frame svg { width: 60%; height: 60%; }
    .about-gallery { display: grid; grid-template-columns: 0.92fr 1.28fr 0.92fr; grid-template-rows: auto auto auto; grid-template-areas: "qualidade placeholder impacto1" "qualidade placeholder impacto2" "renome renome renome"; gap: 26px; position: relative; }
    .about-card { background: #fff; border-radius: var(--radius-md); padding: 30px 28px; box-shadow: var(--shadow-soft); border: 1px solid rgba(29,69,127,.06); }
    .about-card h3 { font-size: 19px; color: var(--blue-900); margin-bottom: 12px; }
    .about-card p { font-size: 14px; line-height: 1.65; }
    .about-card--qualidade { grid-area: qualidade; align-self: start; background: var(--blue-300); }
    .about-card--qualidade h3, .about-card--qualidade p { color: #fff; }

    .nps-badge { margin-top: 22px; display: flex; align-items: baseline; gap: 8px; }
    .nps-badge .nps-number { font-family: var(--font-heading); font-size: 46px; font-weight: 800; color: #fff; }
    .nps-badge .nps-label { font-size: 13px; font-weight: 700; letter-spacing: .08em; color: rgba(255,255,255,.85); }
    .about-placeholder { grid-area: placeholder; position: relative; border-radius: var(--radius-lg); background: repeating-linear-gradient(135deg, var(--gray-200), var(--gray-200) 12px, #eef0f3 12px, #eef0f3 24px); border: 2px dashed #c7cdd6; min-height: 100%; display: flex; align-items: center; justify-content: center; overflow: hidden; }
    .about-placeholder__label { font-family: var(--font-heading); font-weight: 700; letter-spacing: .14em; color: #8a93a3; font-size: 15px; display: flex; flex-direction: column; align-items: center; gap: 10px; }
    .about-placeholder__label svg { width: 38px; height: 38px; opacity: .55; }
    .about-card--impacto1 { grid-area: impacto1; background: var(--red-600); }
    .about-card--impacto2 { grid-area: impacto2; background: var(--blue-800); }
    .about-card--impacto1 h3, .about-card--impacto1 p, .about-card--impacto2 h3, .about-card--impacto2 p { color: #fff; }

    .badge-historia { position: absolute; width: 150px; height: 150px; border-radius: 50%; right: -20%; top: 55%; background: linear-gradient(135deg, var(--blue-grad-start) 0%, var(--blue-700) 73%); color: #fff; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; box-shadow: 0 20px 35px -12px rgba(29,69,127,.55); border: 5px solid #fff; z-index: 3; }
    .badge-historia__number { font-family: var(--font-heading); font-weight: 800; font-size: 40px; }
    .badge-historia__label { font-size: 15px; font-weight: 700; letter-spacing: .06em; max-width: 90px; margin-top: 0; }
    .about-badge { position: absolute; width: 150px; height: 150px; border-radius: 50%; right: -8%; top: 64%; background: linear-gradient(135deg, var(--red-400) 0%, var(--red-600) 73%); color: #fff; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; box-shadow: 0 20px 35px -12px rgba(189,33,27,.55); border: 5px solid #fff; z-index: 3; }
    .about-badge__number { font-family: var(--font-heading); font-weight: 800; font-size: 40px; }
    .about-badge__label { font-size: 10px; font-weight: 700; letter-spacing: .04em; max-width: 90px; margin-top: 0; }

    .about-card--renome { grid-area: renome; background: var(--gray-100); display: flex; align-items: center; gap: 26px; }
    .about-card--renome .renome-icon { flex-shrink: 0; width: 56px; height: 56px; border-radius: 50%; background: var(--red-600); display: flex; align-items: center; justify-content: center; }
    .about-card--renome .renome-icon svg { width: 26px; height: 26px; }
    .about-card--renome p { font-size: 14.5px; }

    .solutions { background: var(--gray-100); padding-block: 130px; }
    .solutions-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
    .solution-card { --card-color: #bd211b; background: var(--card-color); border-radius: var(--radius-md); padding: 38px 34px 84px; position: relative; min-height: 250px; overflow: hidden; box-shadow: 0 22px 40px -20px rgba(0,0,0,.35); transition: transform .3s var(--ease); cursor: pointer; }
    .solution-card:hover { transform: translateY(-8px); }
    .solution-card::after { content: ""; position: absolute; width: 220px; height: 220px; border-radius: 50%; background: rgba(255,255,255,.06); right: -90px; bottom: -90px; }
    .solution-card__icon { width: 56px; height: 56px; border-radius: 14px; background: rgba(255,255,255,.16); display: flex; align-items: center; justify-content: center; margin-bottom: 26px; }
    .solution-card__icon svg { width: 30px; height: 30px; }
    .solution-card h3 { color: #fff; font-size: 22px; text-transform: uppercase; margin-bottom: 14px; letter-spacing: .01em; }
    .solution-card p { color: rgba(255,255,255,.9); font-size: 14px; line-height: 1.65; max-width: 34ch; }
    .solution-card__arrow { position: absolute; left: 34px; bottom: 32px; width: 44px; height: 44px; border-radius: 50%; background: #fff; color: var(--card-color); display: flex; align-items: center; justify-content: center; transition: transform .3s var(--ease), background .3s var(--ease); z-index: 2; }
    .solution-card__arrow svg { width: 18px; height: 18px; }
    .solution-card__arrow:hover { transform: translateX(4px) scale(1.06); }
    .solutions-intro { border-radius: var(--radius-md); background: #fff; padding: 38px 34px; display: flex; flex-direction: column; justify-content: center; border: 1px solid rgba(29,69,127,.08); }
    .solutions-intro h2 { color: var(--red-600); font-size: clamp(24px,2.6vw,30px); text-transform: uppercase; margin-bottom: 16px; }
    .solutions-intro p { font-size: 14.5px; }

    .testimonials { background: linear-gradient(165deg, var(--blue-700), var(--blue-900)); padding-block: 130px; text-align: center; position: relative; overflow: hidden; }
    .testimonials h2 { color: #fff; font-size: clamp(26px,3.4vw,38px); text-transform: uppercase; max-width: 820px; margin-inline: auto; margin-bottom: 70px; }
    .testimonial-carousel { display: flex; align-items: center; justify-content: center; gap: 22px; max-width: 1120px; margin-inline: auto; }
    .carousel-arrow { flex-shrink: 0; width: 52px; height: 52px; border-radius: 50%; background: rgba(255,255,255,.12); color: #fff; font-size: 26px; display: flex; align-items: center; justify-content: center; transition: background .25s var(--ease), transform .25s var(--ease); }
    .carousel-arrow:hover { background: var(--red-600); transform: scale(1.06); }
    .testimonial-track { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; flex: 1; }
    .testimonial-card { background: #fff; border-radius: var(--radius-md); padding: 38px 30px; text-align: left; opacity: .55; transform: scale(.92); transition: opacity .35s var(--ease), transform .35s var(--ease); }
    .testimonial-card.is-active { opacity: 1; transform: scale(1.04); box-shadow: 0 30px 55px -20px rgba(10,20,45,.45); position: relative; z-index: 2; }
    .quote-mark { font-family: var(--font-heading); font-size: 52px; font-weight: 800; color: var(--red-600); line-height: 1; display: block; margin-bottom: 6px; }
    .testimonial-card p { font-size: 13.5px; color: #4c5566; min-height: 150px; display: -webkit-box; line-clamp: 7; -webkit-line-clamp: 7; -webkit-box-orient: vertical; overflow: hidden; }
    .testimonial-author { display: flex; align-items: center; gap: 14px; margin-top: 24px; padding-top: 20px; border-top: 1px solid #eceff3; }
    .testimonial-author .avatar { width: 46px; height: 46px; border-radius: 50%; background: var(--blue-300); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
    .testimonial-author .avatar svg { width: 22px; height: 22px; }
    .testimonial-author strong { display: block; font-size: 14.5px; color: var(--ink); }
    .testimonial-author span { display: block; font-size: 12px; color: var(--gray-500); margin-top: 2px; }
    .carousel-dots { display: flex; justify-content: center; gap: 10px; margin-top: 36px; }
    .carousel-dots button { width: 9px; height: 9px; border-radius: 50%; background: rgba(255,255,255,.35); transition: background .25s var(--ease), transform .25s var(--ease); }
    .carousel-dots button.is-active { background: var(--red-400); transform: scale(1.3); }
    .testimonials-closing { color: #fff; max-width: 640px; margin: 56px auto 30px; font-size: 16px; opacity: .92; }

    .blog { padding-block: 130px; background: #fff; }
    .blog-header { max-width: 640px; margin-bottom: 56px; }
    .blog-header h2 { color: var(--blue-900); font-size: clamp(26px,3vw,36px); text-transform: uppercase; margin-bottom: 18px; }
    .blog-header p { margin-bottom: 28px; font-size: 15px; }
    .blog-grid { display: grid; grid-template-columns: 1.5fr 1fr; gap: 28px; }
    .blog-post { border-radius: var(--radius-md); overflow: hidden; background: #fff; border: 1px solid rgba(29,69,127,.08); box-shadow: var(--shadow-soft); display: flex; flex-direction: column; transition: transform .3s var(--ease); }
    .blog-post:hover { transform: translateY(-6px); }
    .blog-post__image { aspect-ratio: 16/10; background: linear-gradient(135deg, var(--blue-400), var(--blue-900)); position: relative; display: flex; align-items: center; justify-content: center; }
    .blog-post__image svg { width: 64px; height: 64px; opacity: .85; }
    .blog-post--featured .blog-post__image { aspect-ratio: 16/11; }
    .blog-post__content { padding: 26px 28px 30px; flex: 1; display: flex; flex-direction: column; }
    .blog-post__tag { display: inline-block; font-family: var(--font-heading); font-weight: 600; color: var(--blue-700); text-transform: uppercase; letter-spacing: .06em; font-size: 13px; margin-bottom: 10px; }
    .blog-post__content p { font-size: 14.5px; margin-bottom: 16px; flex: 1; }
    .read-more { display: inline-flex; align-items: center; gap: 6px; font-weight: 700; font-size: 14px; color: var(--red-600); align-self: flex-start; }
    .read-more svg { width: 14px; height: 14px; transition: transform .25s var(--ease); }
    .read-more:hover svg { transform: translateX(4px); }
    .blog-side { display: flex; flex-direction: column; gap: 28px; }
    .blog-post--small { flex-direction: row; }
    .blog-post--small .blog-post__image { width: 120px; aspect-ratio: 1/1; flex-shrink: 0; }
    .blog-post--small .blog-post__image svg { width: 34px; height: 34px; }
    .blog-post--small .blog-post__content { padding: 16px 20px; }
    .blog-post--small p { font-size: 13.5px; margin-bottom: 10px; }

    /* =========================================================
       7. ESTRUTURA GLOBAL DAS PÁGINAS INTERNAS
       ========================================================= */
    .page-hero { position: relative; background: linear-gradient(160deg, var(--blue-grad-start) 0%, var(--blue-700) 45%, var(--blue-900) 100%); padding-top: 110px; padding-bottom: 110px; overflow: hidden; isolation: isolate; }
    .page-hero.red-theme { background: linear-gradient(160deg, var(--red-500) 0%, var(--red-700) 45%, var(--maroon-900) 100%); }
    .page-hero.dark-theme { background: linear-gradient(160deg, var(--blue-600) 0%, var(--blue-900) 45%, var(--ink) 100%); }

    .page-hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 64px; align-items: center; }
    .page-hero-badge { display: inline-flex; align-items: center; gap: 9px; background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.28); padding: 9px 20px; border-radius: var(--radius-pill); font-size: 12.5px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: #fff; margin-bottom: 26px; }
    .page-hero-badge svg { width: 15px; height: 15px; }

    .page-hero-content h1 { color: #fff; font-size: clamp(30px,4vw,50px); text-transform: uppercase; letter-spacing: .01em; margin-bottom: 24px; }
    .page-hero-content h1 .accent { color: var(--red-300); }
    .page-hero.red-theme .page-hero-content h1 .accent { color: var(--gray-200); }

    .page-hero-content p.lead { color: rgba(255,255,255,.86); font-size: 16.5px; max-width: 54ch; margin-bottom: 38px; }
    .page-hero-cta-group { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 60px; }

    .page-hero-stats { display: flex; gap: 0; flex-wrap: wrap; }
    .page-hero-stat { padding-right: 40px; margin-right: 40px; border-right: 1px solid rgba(255,255,255,.25); }
    .page-hero-stat:last-child { border-right: none; margin-right: 0; padding-right: 0; }
    .page-hero-stat__number { display: block; font-family: var(--font-heading); font-weight: 800; font-size: clamp(24px,2.6vw,32px); color: #fff; }
    .page-hero-stat__label { display: block; margin-top: 4px; font-size: 12.5px; font-weight: 500; color: rgba(255,255,255,.75); max-width: 14ch; }

    .page-hero-visual { position: relative; }
    .page-hero-visual__frame { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.18); border-radius: var(--radius-lg); padding: 20px; position: relative; }
    .page-hero-visual__svg { width: 100%; height: auto; border-radius: var(--radius-md); }
    .page-hero-visual__badge { position: absolute; right: -18px; bottom: -22px; background: #fff; border-radius: var(--radius-md); padding: 18px 24px; box-shadow: 0 25px 50px -18px rgba(10,20,45,.55); display: flex; flex-direction: column; align-items: flex-start; min-width: 150px; }
    .page-hero-visual__badge-number { font-family: var(--font-heading); font-weight: 800; font-size: 26px; color: var(--red-600); }
    .page-hero-visual__badge-label { font-size: 12px; font-weight: 600; color: var(--blue-900); margin-top: 2px; }

    /* SEÇÕES INTERNAS COMPARTILHADAS */
    .how-it-works { padding-block: 130px; background: #fff; }
    .steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 34px; position: relative; }
    .steps::before { content: ""; position: absolute; top: 38px; left: 12.5%; right: 12.5%; height: 0; border-top: 2px dashed var(--blue-300); z-index: 0; }
    .step { position: relative; z-index: 1; text-align: center; }
    .step__badge { position: relative; width: 78px; height: 78px; border-radius: 50%; background: linear-gradient(135deg, var(--blue-400), var(--blue-900)); display: flex; align-items: center; justify-content: center; margin: 0 auto 26px; box-shadow: var(--shadow-soft); color: #fff; }
    .red-theme-section .step__badge { background: linear-gradient(135deg, var(--red-400), var(--red-700)); }
    .step__badge svg { width: 32px; height: 32px; }
    .step__index { position: absolute; top: -6px; right: -6px; width: 28px; height: 28px; border-radius: 50%; background: var(--red-600); color: #fff; display: flex; align-items: center; justify-content: center; font-family: var(--font-heading); font-weight: 800; font-size: 13px; border: 3px solid #fff; }
    .step h3 { font-size: 18px; color: var(--blue-900); margin-bottom: 12px; }
    .step p { font-size: 14px; max-width: 30ch; margin-inline: auto; }

    /* VANTAGENS */
    .benefits { padding-block: 130px; background: var(--gray-100); }
    .benefits-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; }
    .benefit-card { background: #fff; border-radius: var(--radius-md); padding: 36px 30px; border: 1px solid rgba(29,69,127,.08); box-shadow: var(--shadow-soft); transition: transform .3s var(--ease), box-shadow .3s var(--ease); }
    .benefit-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-card); }
    .benefit-card__icon { width: 58px; height: 58px; border-radius: 16px; background: linear-gradient(135deg, var(--blue-400), var(--blue-700)); display: flex; align-items: center; justify-content: center; margin-bottom: 24px; color: #fff; }
    .red-theme-section .benefit-card__icon { background: linear-gradient(135deg, var(--red-400), var(--red-700)); }
    .benefit-card__icon svg { width: 27px; height: 27px; }
    .benefit-card h3 { font-size: 18.5px; color: var(--blue-900); margin-bottom: 12px; }
    .benefit-card p { font-size: 14px; }

    /* APLICAÇÕES */
    .applications { padding-block: 130px; background: #fff; }
    .applications-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; }
    .application-card { --accent: var(--blue-700); background: #fff; border-radius: var(--radius-md); overflow: hidden; border: 1px solid rgba(29,69,127,.08); box-shadow: var(--shadow-soft); transition: transform .3s var(--ease), box-shadow .3s var(--ease); }
    .application-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-card); }
    .application-card__top { height: 7px; background: var(--accent); }
    .application-card__body { padding: 32px 26px; }
    .application-card__icon { width: 54px; height: 54px; border-radius: 50%; background: color-mix(in srgb, var(--accent) 12%, white); display: flex; align-items: center; justify-content: center; margin-bottom: 22px; color: var(--accent); }
    .application-card__icon svg { width: 26px; height: 26px; }
    .application-card h3 { font-size: 18px; color: var(--ink); margin-bottom: 10px; }
    .application-card p { font-size: 13.8px; }

    /* ENTREGÁVEIS */
    .deliverables { background: linear-gradient(160deg, var(--blue-900) 0%, #0f2749 100%); padding-block: 130px; position: relative; overflow: hidden; }
    .deliverables.red-theme-section { background: linear-gradient(160deg, var(--maroon-800) 0%, var(--maroon-900) 100%); }
    .deliverables::before { content: ""; position: absolute; width: 520px; height: 520px; border-radius: 50%; border: 1px solid rgba(255,255,255,.08); top: -260px; left: -140px; }
    .deliverables .section-head h2, .deliverables .eyebrow-line { color: #fff; }
    .deliverables .eyebrow-line { color: var(--red-300); }
    .deliverables .eyebrow-line::before { background: var(--red-300); }
    .deliverables .section-head p { color: rgba(255,255,255,.72); }
    .deliverables-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; position: relative; z-index: 1; }
    .deliverable-card { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.14); border-radius: var(--radius-md); padding: 34px 28px; transition: transform .3s var(--ease), background .3s var(--ease); }
    .deliverable-card:hover { transform: translateY(-8px); background: rgba(255,255,255,.1); }
    .deliverable-card__icon { width: 54px; height: 54px; border-radius: 14px; background: rgba(255,255,255,.12); display: flex; align-items: center; justify-content: center; margin-bottom: 22px; color: #fff; }
    .deliverable-card__icon svg { width: 26px; height: 26px; }
    .deliverable-card h3 { color: #fff; font-size: 17px; margin-bottom: 10px; }
    .deliverable-card p { color: rgba(255,255,255,.68); font-size: 13.5px; }

    /* ORÇAMENTO (QUOTE) */
    .quote-section { background: linear-gradient(150deg, var(--red-600) 0%, var(--red-700) 55%, var(--maroon-800) 130%); padding-block: 130px; }
    .quote-section.blue-theme { background: linear-gradient(150deg, var(--blue-600) 0%, var(--blue-800) 55%, var(--blue-900) 130%); }
    .quote-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 60px; align-items: start; }
    .quote-info .eyebrow-line { color: #fff; }
    .quote-info .eyebrow-line::before { background: #fff; }
    .quote-info h2 { color: #fff; font-size: clamp(26px,3.2vw,38px); text-transform: uppercase; margin-bottom: 20px; max-width: 16ch; }
    .quote-info p { color: rgba(255,255,255,.86); margin-bottom: 34px; font-size: 15.5px; max-width: 42ch; }
    .trust-list { display: flex; flex-direction: column; gap: 18px; }
    .trust-list li { display: flex; align-items: flex-start; gap: 13px; color: #fff; font-size: 14.5px; }
    .trust-list li svg { width: 22px; height: 22px; flex-shrink: 0; margin-top: 1px; }

    .quote-form-card { background: #fff; border-radius: var(--radius-lg); padding: 44px; box-shadow: 0 35px 70px -22px rgba(0,0,0,.4); }
    .quote-form-card h3 { color: var(--blue-900); font-size: 21px; margin-bottom: 6px; }
    .quote-form-card > p { font-size: 14px; color: var(--gray-500); margin-bottom: 28px; }
    .quote-form { display: flex; flex-direction: column; gap: 18px; }
    .quote-form .form-row--split { display: flex; gap: 18px; }
    .quote-form .form-row--split > div { flex: 1; }
    .quote-form label { display: block; font-size: 12.5px; font-weight: 700; letter-spacing: .03em; color: var(--ink); margin-bottom: 7px; text-transform: uppercase; }
    .quote-form input, .quote-form select, .quote-form textarea { width: 100%; border: 1.5px solid #e2e6ec; border-radius: 10px; padding: 13px 16px; font-size: 14.5px; color: var(--ink); background: #f9fafc; transition: border-color .2s var(--ease), background .2s var(--ease); }
    .quote-form input::placeholder, .quote-form textarea::placeholder { color: #a7adb8; }
    .quote-form input:focus, .quote-form select:focus, .quote-form textarea:focus { border-color: var(--blue-700); background: #fff; outline: none; }
    .quote-form input.is-invalid, .quote-form select.is-invalid { border-color: var(--red-600); background: #fff5f5; }
    .quote-form textarea { resize: vertical; min-height: 100px; }
    .quote-form select { appearance: none; -webkit-appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%231d457f' stroke-width='1.6' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; padding-right: 40px; }
    .form-footer-note { font-size: 12.5px; color: var(--gray-500); margin-top: 4px; }
    .form-feedback-spa { font-size: 14px; font-weight: 600; min-height: 20px; margin-top: 4px; }
    .form-feedback-spa.is-error { color: var(--red-600); }
    .form-feedback-spa.is-success { color: #1e7d4b; }

    /* Home Contact Form (from index.html) */
    .cta-contact { background: linear-gradient(150deg, var(--red-600) 0%, var(--red-700) 60%, var(--maroon-800) 130%); padding-block: 130px; position: relative; overflow: hidden; }
    .cta-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 60px; align-items: center; }
    .cta-media { border-radius: var(--radius-lg); min-height: 460px; background: repeating-linear-gradient(135deg, rgba(0,0,0,.18), rgba(0,0,0,.18) 12px, rgba(0,0,0,.28) 12px, rgba(0,0,0,.28) 24px); border: 2px dashed rgba(255,255,255,.35); display: flex; align-items: center; justify-content: center; font-family: var(--font-heading); font-weight: 700; letter-spacing: .14em; color: rgba(255,255,255,.75); font-size: 16px; flex-direction: column; gap: 14px; }
    .cta-media svg { width: 44px; height: 44px; opacity: .6; }
    .cta-form-wrap h2 { color: #fff; font-size: clamp(26px,3vw,36px); text-transform: uppercase; margin-bottom: 34px; max-width: 16ch; }
    .contact-form { display: flex; flex-direction: column; gap: 16px; }
    .form-row { display: flex; flex-direction: column; }
    .form-row--split { flex-direction: row; gap: 16px; }
    .form-row--split > div { flex: 1; display: flex; flex-direction: column; }
    .contact-form input, .contact-form textarea { width: 100%; background: rgba(255,255,255,.15); border: 1px solid rgba(255,255,255,.35); border-radius: 12px; padding: 16px 20px; color: #fff; font-size: 14.5px; transition: background .25s var(--ease), border-color .25s var(--ease); }
    .contact-form input::placeholder, .contact-form textarea::placeholder { color: rgba(255,255,255,.75); }
    .contact-form input:focus, .contact-form textarea:focus { background: rgba(255,255,255,.24); border-color: #fff; outline: none; }
    .contact-form input.is-invalid, .contact-form textarea.is-invalid { border-color: #ffd7d5; background: rgba(255,255,255,.1); }
    .contact-form textarea { resize: vertical; min-height: 120px; }
    .contact-form .btn-primary { align-self: flex-start; background: #fff; color: var(--red-600); margin-top: 8px; box-shadow: 0 15px 30px -12px rgba(0,0,0,.35); }
    .contact-form .btn-primary:hover { background: #fbe9e8; }
    .form-feedback { margin-top: 6px; font-size: 14px; font-weight: 600; color: #fff; min-height: 20px; }
    .form-feedback.is-error { color: #ffe3e1; }
    .form-feedback.is-success { color: #e4ffe9; }

    /* =========================================================
       11. FOOTER
       ========================================================= */
    .site-footer { background: linear-gradient(160deg, var(--maroon-800) 0%, var(--maroon-900) 100%); color: rgba(255,255,255,.85); padding-top: 90px; }
    .footer-grid { display: grid; grid-template-columns: 1.3fr 0.85fr 0.85fr 1fr; gap: 40px; padding-bottom: 60px; border-bottom: 1px solid rgba(255,255,255,.12); }
    .footer-brand .logo-text { color: #fff; }
    .footer-brand .logo-text strong { color: var(--red-300); }
    .footer-brand p { margin-top: 18px; color: rgba(255,255,255,.65); font-size: 14px; max-width: 28ch; }
    .footer-links h4, .footer-contact h4 { font-family: var(--font-heading); color: #fff; font-size: 16px; margin-bottom: 20px; letter-spacing: .02em; }
    .footer-links ul { display: flex; flex-direction: column; gap: 12px; }
    .footer-links a { font-size: 14px; color: rgba(255,255,255,.68); transition: color .2s var(--ease), padding-left .2s var(--ease); }
    .footer-links a:hover { color: #fff; padding-left: 4px; }
    .footer-contact ul { display: flex; flex-direction: column; gap: 14px; margin-bottom: 24px; }
    .footer-contact li { display: flex; align-items: center; gap: 12px; font-size: 14px; color: rgba(255,255,255,.68); }
    .footer-contact li svg { width: 18px; height: 18px; flex-shrink: 0; color: var(--red-300); }
    .social-icons { display: flex; gap: 12px; }
    .social-icons a { width: 38px; height: 38px; border-radius: 50%; background: rgba(255,255,255,.08); display: flex; align-items: center; justify-content: center; transition: background .25s var(--ease), transform .25s var(--ease); }
    .social-icons a svg { width: 17px; height: 17px; }
    .social-icons a:hover { background: var(--red-600); transform: translateY(-3px); }
    .footer-bottom { padding-block: 26px; text-align: center; font-size: 13px; color: rgba(255,255,255,.5); }

    /* =========================================================
       12. SCROLL REVEAL
       ========================================================= */
    [data-reveal] { opacity: 0; transform: translateY(28px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
    [data-reveal].is-visible { opacity: 1; transform: translateY(0); }
    [data-reveal="stagger"] > * { opacity: 0; transform: translateY(24px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
    [data-reveal="stagger"].is-visible > * { opacity: 1; transform: translateY(0); }
    [data-reveal="stagger"].is-visible > *:nth-child(1) { transition-delay: .05s; }
    [data-reveal="stagger"].is-visible > *:nth-child(2) { transition-delay: .15s; }
    [data-reveal="stagger"].is-visible > *:nth-child(3) { transition-delay: .25s; }
    [data-reveal="stagger"].is-visible > *:nth-child(4) { transition-delay: .35s; }

    /* =========================================================
       13. RESPONSIVO
       ========================================================= */
    @media (max-width: 1080px) {
      .about-intro { grid-template-columns: 1fr; gap: 50px; }
      .about-intro__media { order: -1; }
      .about-gallery { grid-template-columns: 1fr 1fr; grid-template-areas: "qualidade impacto1" "placeholder placeholder" "impacto2 impacto2" "renome renome"; }
      .about-badge { right: 6%; top: auto; bottom: -40px; }
      .solutions-grid { grid-template-columns: repeat(2, 1fr); }
      .cta-grid { grid-template-columns: 1fr; }
      .cta-media { min-height: 260px; order: 2; }
      .blog-grid { grid-template-columns: 1fr; }
      .footer-grid { grid-template-columns: 1fr 1fr; row-gap: 44px; }

      .page-hero-grid { grid-template-columns: 1fr; gap: 56px; }
      .page-hero-visual { max-width: 460px; margin-inline: auto; }
      .steps { grid-template-columns: repeat(2, 1fr); row-gap: 56px; }
      .steps::before { display: none; }
      .benefits-grid, .applications-grid, .deliverables-grid { grid-template-columns: repeat(2, 1fr); }
      .quote-grid { grid-template-columns: 1fr; }
    }

    @media (max-width: 860px) {
      .main-nav { position: fixed; inset: 0 0 0 28%; background: #fff; z-index: 600; padding: 110px 32px 40px; transform: translateX(100%); transition: transform .35s var(--ease); overflow-y: auto; }
      .main-nav.is-open { transform: translateX(0); box-shadow: -15px 0 40px rgba(0,0,0,.15); }
      .main-nav ul { flex-direction: column; align-items: flex-start; gap: 8px; }
      .main-nav ul li { width: 100%; }
      .main-nav > ul > li > a { width: 100%; padding: 14px 4px; font-size: 17px; }
      .main-nav > ul > li > a::after { display: none; }
      .main-nav .nav-cta-mobile { margin-top: 18px; display: flex; width: 100%; justify-content: center; }

      .dropdown-menu { position: static; box-shadow: none; padding-left: 20px; opacity: 1; visibility: visible; display: none; transform: none; border: none; }
      .dropdown:hover .dropdown-menu { display: block; }

      .nav-backdrop { display: block; position: fixed; inset: 0; background: rgba(15,20,35,.45); opacity: 0; pointer-events: none; transition: opacity .3s var(--ease); z-index: 550; }
      .nav-backdrop.is-open { opacity: 1; pointer-events: auto; }

      .header-cta { display: none; }
      .menu-toggle { display: flex; }

      .hero { padding-top: 64px; padding-bottom: 120px; }
      .hero__stats { gap: 0; margin-top: 56px; }
      .stat { padding-inline: 22px; }

      .testimonial-track { grid-template-columns: 1fr; }
      .testimonial-card { display: none; }
      .testimonial-card.is-active { display: block; transform: scale(1); }

      .page-hero { padding-top: 56px; padding-bottom: 90px; }
      .page-hero-stats { flex-wrap: wrap; row-gap: 20px; }
      .quote-form-card { padding: 32px 26px; }
    }

    @media (max-width: 680px) {
      .container { padding-inline: 22px; }
      .about, .solutions, .testimonials, .blog, .cta-contact { padding-block: 80px; }
      .about-intro { text-align: center; }
      .about-intro__text p { margin-inline: auto; }
      .about-gallery { grid-template-columns: 1fr; grid-template-areas: "qualidade" "placeholder" "impacto1" "impacto2" "renome"; }
      .about-badge { position: static; margin-top: -40px; margin-inline: auto; }
      .about-card--renome { flex-direction: column; text-align: center; }
      .solutions-grid { grid-template-columns: 1fr; }
      .footer-grid { grid-template-columns: 1fr; text-align: center; }
      .footer-contact li { justify-content: center; }
      .social-icons { justify-content: center; }
      .footer-links ul { align-items: center; }
      .form-row--split { flex-direction: column; }

      .how-it-works, .benefits, .applications, .deliverables, .quote-section { padding-block: 84px; }
      .steps { grid-template-columns: 1fr; }
      .benefits-grid, .applications-grid, .deliverables-grid { grid-template-columns: 1fr; }
      .page-hero-cta-group { flex-direction: column; align-items: stretch; }
      .page-hero-cta-group .btn { justify-content: center; }
      .quote-form .form-row--split { flex-direction: column; }
      .section-head { text-align: center; margin-inline: auto; }
      .eyebrow-line { justify-content: center; }
    }
    

    @media (max-width: 480px) {
      .hero__title { font-size: 30px; }
      .stat { padding-inline: 16px; border-right: none; }
      .stat__number { font-size: 30px; }
      .cta-media { min-height: 180px; }
      .testimonial-card { padding: 28px 22px; }
      .btn { padding: 14px 24px; font-size: 14px; }

      .page-hero-content h1 { font-size: 28px; }
      .page-hero-visual__badge { right: 8px; bottom: -18px; padding: 14px 18px; }
      .quote-form-card { padding: 26px 20px; }
    }
    
/* Estilo para o campo Select do formulário da Home */

.contact-form select {
  width: 100%;
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.35);
  border-radius: 12px;
  padding: 16px 20px;
  color: #fff;
  font-size: 14.5px;
  transition: background .25s var(--ease), border-color .25s var(--ease);
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23ffffff' stroke-width='1.6' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 20px center;
}

.contact-form select:focus {
  background: rgba(255,255,255,.24);
  border-color: #fff;
  outline: none;
}

/* Força a caixa flutuante (options) a ter um fundo escuro e texto branco */
.contact-form select option {
  background-color: #1c2430; /* Fundo azul muito escuro (cor --ink do seu tema) */
  color: #ffffff; /* Texto branco */
  font-weight: 500;
  padding: 12px; /* O Firefox aceita este espaçamento, o Chrome ignora */
}

/* Garante legibilidade em alguns navegadores específicos quando a opção é selecionada */
.contact-form select option:checked {
  background-color: #bd211b; /* Vermelho AEROJR para a opção ativa */
  color: #ffffff;
}