﻿/* ============================================
   RESET & BASE
============================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    --color-primary:     #032E59;
    --color-primary-dk:  #021e3d;
    --color-accent:      #FFA100;
    --color-cta-green:   #28a745;
    --color-cta-green-h: #1e8035;
    --color-cta-orange:  #FFA100;
    --color-cta-orange-h:#FF8500;
    --color-text:        #7A7A7A;
    --color-text-light:  #818A91;
    --color-bg:          #ffffff;
    --color-bg-alt:      #f5f7fa;
    --color-bg-dark:     #032E59;
    --color-border:      #dde1e7;
    --color-white:       #ffffff;
    --ff-base:           'Poppins', 'DM Sans', system-ui, -apple-system, sans-serif;
    --ff-heading:        'Roboto Slab', serif;
    --radius-sm:         6px;
    --radius-md:         12px;
    --shadow-card:       0 4px 20px rgba(0,0,0,0.08);
    --shadow-btn:        0 4px 14px rgba(0,0,0,0.18);
    --transition:        0.22s ease;
}

html { scroll-behavior: smooth; }

body {
    font-family: var(--ff-base);
    color: var(--color-text);
    background: var(--color-bg-alt);
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 { font-family: var(--ff-heading); }

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; font-family: inherit; }

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-title {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 800;
    color: var(--color-primary);
    line-height: 1.2;
}

.section-sub {
    font-size: 1rem;
    color: var(--color-text-light);
    margin-top: 10px;
}

/* ============================================
   BOTÃƒâ€¢ES
============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
    box-shadow: var(--shadow-btn);
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-primary { background: var(--color-cta-green); color: var(--color-white); }
.btn-primary:hover { background: var(--color-cta-green-h); }

.btn-orange { background: var(--color-cta-orange); color: var(--color-white); }
.btn-orange:hover { background: var(--color-cta-orange-h); }

.btn-outline-white { background: transparent; color: var(--color-white); border: 2px solid var(--color-white); }
.btn-outline-white:hover { background: var(--color-white); color: var(--color-primary); }

.btn-whatsapp { background: #25d366; color: var(--color-white); }
.btn-whatsapp:hover { background: #1bb855; }

/* ============================================
   LANDING: NAO COMPRE RELOGIO DE PONTO
============================================ */
.lp-app-hero {
    background: #003366;
    color: #ffffff;
    overflow: hidden;
}

.lp-app-hero__container {
    width: min(100%, 1200px);
    min-height: 680px;
    margin: 0 auto;
    padding: 42px 24px 0;
    display: grid;
    grid-template-columns: minmax(0, 560px) minmax(360px, 1fr);
    align-items: end;
    gap: 40px;
}

.lp-app-hero__content {
    align-self: center;
    padding-bottom: 48px;
    position: relative;
    z-index: 2;
}

.lp-app-hero__badge {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 8px 20px;
    border-radius: 999px;
    background: #8f9ba6;
    color: #ffffff;
    font-size: 14px;
    font-weight: 600 !important;
    line-height: 1.2;
    text-transform: uppercase;
}

.lp-app-hero__title {
    font-family: 'poppins', sans-serif;
    margin: 28px 0 20px;
    color: #ffffff;
    font-size: clamp(46px, 5.4vw, 76px);
    font-weight: 600 !important;
    line-height: 1.02;
    letter-spacing: 0;
}

.lp-app-hero__subtitle {
    max-width: 540px;
    margin: 0 0 26px;
    color: #ffffff;
    font-size: clamp(19px, 2vw, 24px);
    font-weight: 400;
    line-height: 1.42;
}

.lp-app-hero__form {
    width: min(100%, 560px);
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.lp-app-hero__field {
    min-width: 0;
}

.lp-app-hero__field--full,
.lp-app-hero__actions {
    grid-column: 1 / -1;
}

.lp-app-hero__input,
.lp-app-hero__textarea {
    width: 100%;
    border: 1px solid #d8dde3;
    border-radius: 8px;
    background: #ffffff;
    color: #1c2f42;
    font: inherit;
    font-size: 15px;
    line-height: 1.4;
    outline: none;
}

.lp-app-hero__input {
    min-height: 40px;
    padding: 9px 15px;
}

.lp-app-hero__textarea {
    min-height: 74px;
    padding: 10px 15px;
    resize: vertical;
}

.lp-app-hero__input::placeholder,
.lp-app-hero__textarea::placeholder {
    color: #a8adb4;
}

.lp-app-hero__input:focus,
.lp-app-hero__textarea:focus {
    border-color: #ff9900;
    box-shadow: 0 0 0 3px rgba(255, 153, 0, 0.2);
}

.lp-app-hero__input--error {
    border-color: #e53935;
    box-shadow: 0 0 0 3px rgba(229, 57, 53, 0.18);
}

.lp-app-hero__actions {
    display: flex;
    justify-content: center;
    padding-top: 2px;
}

.lp-app-hero__submit {
    min-height: 42px;
    border: 0;
    border-radius: 999px;
    padding: 11px 22px;
    background: #ff9900;
    color: #ffffff;
    cursor: pointer;
    font-size: 15px;
    font-weight: 800;
    line-height: 1.2;
    text-transform: uppercase;
    transition: transform 0.2s ease, background-color 0.2s ease;
}

.lp-app-hero__submit:hover {
    background: #e98c00;
    transform: translateY(-1px);
}

.lp-app-hero__media {
    align-self: end;
    display: flex;
    justify-content: center;
}

.lp-app-hero__image {
    display: block;
    width: min(100%, 620px);
    height: auto;
    object-fit: contain;
}

@media (max-width: 1024px) {
    .lp-app-hero__container {
        min-height: auto;
        grid-template-columns: 1fr;
        padding-top: 48px;
        gap: 20px;
    }

    .lp-app-hero__content {
        max-width: 680px;
        padding-bottom: 18px;
    }

    .lp-app-hero__media {
        justify-content: flex-end;
    }

    .lp-app-hero__image {
        max-width: 480px;
    }
}

@media (max-width: 640px) {
    .lp-app-hero__container {
        padding: 34px 18px 42px;
    }

    .lp-app-hero__badge {
        max-width: 100%;
        font-size: 12px;
        text-align: center;
    }

    .lp-app-hero__title {
        margin-top: 24px;
        font-size: clamp(40px, 13vw, 54px);
    }

    .lp-app-hero__subtitle {
        font-size: 18px;
    }

    .lp-app-hero__form {
        grid-template-columns: 1fr;
        gap: 9px;
    }

    .lp-app-hero__actions {
        justify-content: stretch;
    }

    .lp-app-hero__submit {
        width: 100%;
        padding-inline: 18px;
        font-size: 13px;
    }

    .lp-app-hero__media {
        display: none;
    }
}

/* ============================================
   TOP BAR
============================================ */
#topbar {
    background: var(--color-white);
    color: var(--color-text);
    font-size: 0.82rem;
    font-weight: 500;
    padding: 8px 0;
    border-bottom: 1px solid var(--color-border);
}

#topbar .topbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}

#topbar a { transition: opacity var(--transition); }
#topbar a:hover { opacity: 0.8; }

.topbar-phone {
    display: inline-flex;
    align-items: center;
    color: #111111;
    font-size: 0.92rem;
    font-weight: 700;
    line-height: 1.2;
}
.topbar-phone strong a { color: #111111; font-weight: 700; text-decoration: none; }
.topbar-phone svg {
    width: 22px;
    height: 22px;
    color: #000000;
    flex-shrink: 0;
}
.topbar-indicate {
    font-weight: 700;
background: linear-gradient(90deg, #019ffe, #01c4fc 50%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.topbar-rh-btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: var(--color-primary-dk);
    color: var(--color-white) !important;
    padding: 2px 11px;
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: 0.8rem;
    white-space: nowrap;
    box-shadow: 0 1px 3px rgba(0,0,0,0.18);
    transition: opacity 0.18s;
}
.topbar-rh-btn:hover { opacity: 0.88; }

.rh-circle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #5a8db5;
    color: #ffffff;
    font-size: 0.54rem;
    font-weight: 500;
    flex-shrink: 0;
    letter-spacing: 0.5px;
}

/* ============================================
   HEADER / NAV
============================================ */
#header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--color-white);
    box-shadow: 0 2px 12px rgba(0,0,0,0.10);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
    gap: 16px;
}

.nav-logo { padding: 0 0px; flex-shrink: 0; }
.nav-logo img { height: 48px; width: auto; }


.nav-logo-text {
    font-size: 1.3rem;
    font-weight: 900;
    color: var(--color-primary);
    line-height: 1.1;
}
.nav-logo-text span { display: block; font-size: 0.65rem; font-weight: 600; color: var(--color-text-light); letter-spacing: 1px; }

.nav-menu {
    display: flex;
    align-items: center;
    align-self: stretch;
    gap: 4px;
}

.nav-menu > li {
    position: relative;
    align-self: stretch;
    display: flex;
    align-items: center;
}

.nav-menu > li::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background-color: #e56500;
    border-radius: 3px 3px 0 0;
    transition: width var(--transition), left var(--transition);
    transform: translateX(-50%);
}

.nav-menu > li:hover::after {
    width: 60%;
}

.nav-menu > li > a {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 8px 12px;
    font-size: 0.98rem;
    font-weight: 400;
    color: #3a3a3a;
    text-decoration: none;
    transition: color var(--transition);
    white-space: nowrap;
}

.nav-menu > li > a:hover {
    color: #e56500;
}

.has-submenu > a::after { content: 'Ã¢â€“Â¾'; font-size: 0.7rem; }

.submenu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-card);
    min-width: 220px;
    z-index: 100;
    padding: 6px 0;
}
.has-submenu:hover .submenu { display: block; }

.submenu li a {
    display: block;
    padding: 10px 18px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--color-text);
    transition: background var(--transition), color var(--transition);
}
.submenu li a:hover,
.submenu li a.is-active {
    background: var(--color-bg-alt);
    color: #e56500;
}

.nav-actions { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }

.nav-actions .btn-rh {
    font-size: 0.78rem;
    padding: 8px 14px;
    background: var(--color-primary-dk);
    color: var(--color-white);
    border-radius: var(--radius-sm);
    font-weight: 700;
    border: 1px solid var(--color-primary-dk);
    transition: background var(--transition);
}
.nav-actions .btn-rh:hover { background: #001040; }

.nav-actions .btn-indicate {
    font-size: 0.78rem;
    padding: 8px 14px;
    background: var(--color-accent);
    color: var(--color-white);
    border-radius: var(--radius-sm);
    font-weight: 700;
    transition: opacity var(--transition);
}
.nav-actions .btn-indicate:hover { opacity: 0.88; }

.nav-actions .btn-trial {
    font-size: 0.9rem;
    padding: 12px 26px;
    background: var(--color-accent);
    color: var(--color-white);
    border-radius: 40px;
    font-weight: 800;
    letter-spacing: 0.5px;
    transition: background var(--transition), transform var(--transition);
    box-shadow: 0 4px 14px rgba(232, 160, 0, 0.35);
}
.nav-actions .btn-trial:hover { background: #c98b00; transform: translateY(-1px); }

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    padding: 4px;
}
.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--color-primary);
    border-radius: 2px;
    transition: transform var(--transition), opacity var(--transition);
}

/* ============================================
   NAVBAR ENTRANCE ANIMATIONS (primeira visita)
============================================ */
@keyframes navbarFadeDown {
    from { opacity: 0; transform: translateY(-14px); }
    to   { opacity: 1; transform: translateY(0); }
}

@keyframes navbarFadeUp {
    from { opacity: 0; transform: translateY(10px); }
    to   { opacity: 1; transform: translateY(0); }
}

.nav-first-visit #topbar {
    animation: navbarFadeDown 0.35s ease both;
}

.nav-first-visit .nav-logo {
    animation: navbarFadeUp 0.4s ease 0.1s both;
}

.nav-first-visit .nav-menu > li:nth-child(1) { animation: navbarFadeUp 0.35s ease 0.18s both; }
.nav-first-visit .nav-menu > li:nth-child(2) { animation: navbarFadeUp 0.35s ease 0.25s both; }
.nav-first-visit .nav-menu > li:nth-child(3) { animation: navbarFadeUp 0.35s ease 0.32s both; }
.nav-first-visit .nav-menu > li:nth-child(4) { animation: navbarFadeUp 0.35s ease 0.39s both; }
.nav-first-visit .nav-menu > li:nth-child(5) { animation: navbarFadeUp 0.35s ease 0.46s both; }
.nav-first-visit .nav-menu > li:nth-child(6) { animation: navbarFadeUp 0.35s ease 0.53s both; }

.nav-first-visit .nav-actions {
    animation: navbarFadeUp 0.4s ease 0.58s both;
}

/* ============================================
   PAGE ENTRANCE ANIMATION
============================================ */
@keyframes pageEnter {
    from { opacity: 0; transform: translateY(16px); }
    to   { opacity: 1; transform: translateY(0); }
}

.page-content {
    animation: pageEnter 0.45s ease-out;
}

@media (prefers-reduced-motion: reduce) {
    .nav-first-visit #topbar,
    .nav-first-visit .nav-logo,
    .nav-first-visit .nav-menu > li,
    .nav-first-visit .nav-actions,
    .page-content {
        animation: none;
    }
}

/* Central do RH: navbar focada nas ferramentas */
#header.crh-nav-header {
    background: #ffffff;
    border-bottom: 1px solid #e4e9f2;
    box-shadow: 0 2px 18px rgba(0, 48, 135, 0.07);
}

.crh-nav {
    display: flex;
    align-items: center;
    min-height: 68px;
    gap: 34px;
}

.crh-nav-brand {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    color: var(--color-primary);
    flex-shrink: 0;
    text-decoration: none;
}

.crh-nav-brand img {
    width: 112px;
    height: auto;
}

.crh-nav-brand__divider {
    width: 2px;
    height: 28px;
    background: linear-gradient(to bottom, var(--color-accent), #f59e00);
    border-radius: 2px;
    flex-shrink: 0;
}

.crh-nav-brand strong {
    color: var(--color-primary);
    font-size: 1.4rem;
    font-weight: 900;
    line-height: 1;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    white-space: nowrap;
}

.crh-nav-menu {
    display: flex;
    align-items: center;
    align-self: stretch;
    justify-content: center;
    gap: 28px;
    margin-left: auto;
}

.crh-nav-item {
    position: relative;
    display: flex;
    align-items: center;
    align-self: stretch;
}

.crh-nav-item > a {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    min-height: 34px;
    padding: 7px 0;
    border-radius: 0;
    color: #5d626a;
    font-size: 0.78rem;
    font-weight: 800;
    line-height: 1;
    text-transform: uppercase;
    text-decoration: none;
    white-space: nowrap;
    transition: color var(--transition), background var(--transition);
}

.crh-nav-item > a:hover,
.crh-nav-item > a.is-active {
    color: var(--color-primary);
    background: transparent;
}

.crh-nav-item::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--color-primary);
    border-radius: 2px 2px 0 0;
    transform: translateX(-50%);
    transition: width var(--transition), left var(--transition);
}

.crh-nav-item:hover::after,
.crh-nav-item:has(a.is-active)::after {
    left: 0;
    width: 100%;
    transform: none;
}

.crh-nav-dropdown > a::after {
    content: none;
}

.crh-nav-caret {
    color: #848a94;
    font-size: 1rem;
    line-height: 1;
    transition: transform var(--transition), color var(--transition);
    display: inline-block;
}

.crh-nav-dropdown:hover .crh-nav-caret,
.crh-nav-dropdown:focus-within .crh-nav-caret {
    transform: rotate(180deg);
    color: var(--color-primary);
}

.crh-nav-submenu {
    display: block;
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    min-width: 240px;
    padding: 8px;
    border: 1px solid #e2e7ee;
    border-radius: 12px;
    background: #ffffff;
    box-shadow: 0 8px 32px rgba(0, 48, 135, 0.12), 0 2px 8px rgba(0,0,0,0.06);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    pointer-events: none;
    transition: opacity var(--transition), transform var(--transition), visibility var(--transition);
    z-index: 1001;
}

.crh-nav-dropdown:hover .crh-nav-submenu,
.crh-nav-dropdown:focus-within .crh-nav-submenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.crh-nav-submenu a {
    display: block;
    padding: 9px 14px;
    border-radius: 8px;
    color: #4f5560;
    font-size: 0.82rem;
    font-weight: 700;
    line-height: 1.25;
    text-decoration: none;
    transition: color var(--transition), background var(--transition);
}

.crh-nav-submenu a:hover,
.crh-nav-submenu a.is-active {
    color: var(--color-primary);
    background: #eef4ff;
}

.crh-nav-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.crh-nav-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    min-height: 36px;
    padding: 9px 18px;
    border-radius: 8px;
    background: linear-gradient(135deg, #f4a800, #e8a000);
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 700;
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    text-decoration: none;
    white-space: nowrap;
    box-shadow: 0 2px 10px rgba(232, 160, 0, 0.28);
    transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}

.crh-nav-action:hover {
    background: linear-gradient(135deg, #e8a000, #d49100);
    transform: translateY(-2px);
    box-shadow: 0 5px 16px rgba(232, 160, 0, 0.38);
}

.crh-nav-action--site {
    background: transparent;
    color: var(--color-primary);
    box-shadow: inset 0 0 0 1.5px #c9d6ec;
}

.crh-nav-action--site:hover {
    background: #eef4ff;
    box-shadow: inset 0 0 0 1.5px var(--color-primary);
    transform: none;
}

.crh-nav-action--login {
    background: linear-gradient(135deg, #1a2f94 0%, #1e3bb8 100%);
    color: #fff;
    box-shadow: 0 4px 14px rgba(26, 47, 148, 0.35);
    border: none;
    cursor: pointer;
}

.crh-nav-action--login:hover {
    background: linear-gradient(135deg, #162780 0%, #1a34a8 100%);
    box-shadow: 0 6px 18px rgba(26, 47, 148, 0.45);
    transform: translateY(-2px);
}

.crh-nav-toggle {
    margin-left: 0;
}


/* ============================================
   FORM
============================================ */
.form-group { margin-bottom: 14px; }

.form-group label {
    display: block;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--color-text-light);
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 11px 14px;
    border: 1.5px solid var(--color-border);
    border-radius: 20px;
    font-family: var(--ff-base);
    font-size: 0.9rem;
    color: var(--color-text);
    background: var(--color-bg);
    transition: border-color var(--transition), box-shadow var(--transition);
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(0,48,135,0.1);
}

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M0 0l6 8 6-8z' fill='%23555'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 32px;
}

.form-submit-btn {
    width: 100%;
    padding: 15px;
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: 0.5px;
    border-radius: var(--radius-sm);
    background: var(--color-cta-green);
    color: var(--color-white);
    border: none;
    cursor: pointer;
    margin-top: 6px;
    transition: background var(--transition), transform var(--transition);
    box-shadow: var(--shadow-btn);
}
.form-submit-btn:hover { background: var(--color-cta-green-h); transform: translateY(-1px); }

.form-feedback-toast {
    position: fixed;
    top: 92px;
    right: 22px;
    z-index: 9999;
    width: min(360px, calc(100vw - 32px));
    display: grid;
    gap: 4px;
    border: 1px solid rgba(239, 68, 68, 0.22);
    border-left: 5px solid #ef4444;
    border-radius: 12px;
    padding: 14px 16px;
    background: #ffffff;
    color: #233143;
    box-shadow: 0 18px 42px rgba(10, 25, 45, 0.22);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.form-feedback-toast.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.form-feedback-toast strong {
    color: #082f57;
    font-size: 0.95rem;
    font-weight: 900;
    line-height: 1.2;
}

.form-feedback-toast span {
    color: #596575;
    font-size: 0.88rem;
    font-weight: 600;
    line-height: 1.45;
}

.form-feedback-toast--success {
    border-color: rgba(34, 197, 94, 0.22);
    border-left-color: #22c55e;
}

.field-feedback-error {
    border-color: #ef4444 !important;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.18) !important;
}

.field-feedback-bubble {
    position: absolute;
    z-index: 10000;
    display: grid;
    gap: 3px;
    border: 1px solid rgba(239, 68, 68, 0.22);
    border-left: 5px solid #ef4444;
    border-radius: 12px;
    padding: 12px 14px;
    background: #ffffff;
    color: #233143;
    box-shadow: 0 16px 36px rgba(10, 25, 45, 0.22);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.18s ease, transform 0.18s ease;
}

.field-feedback-bubble::after {
    content: '';
    position: absolute;
    width: 12px;
    height: 12px;
    background: #ffffff;
    border: 1px solid rgba(239, 68, 68, 0.22);
    transform: rotate(45deg);
}

.field-feedback-bubble--left {
    transform: translateY(-50%) translateX(-6px);
}

.field-feedback-bubble--left::after {
    right: -7px;
    top: 50%;
    border-left: 0;
    border-bottom: 0;
    transform: translateY(-50%) rotate(45deg);
}

.field-feedback-bubble--right {
    transform: translateY(-50%) translateX(6px);
}

.field-feedback-bubble--right::after {
    left: -7px;
    top: 50%;
    border-right: 0;
    border-top: 0;
    transform: translateY(-50%) rotate(45deg);
}

.field-feedback-bubble--bottom {
    transform: translateY(6px);
}

.field-feedback-bubble--bottom::after {
    left: 24px;
    top: -7px;
    border-right: 0;
    border-bottom: 0;
}

.field-feedback-bubble.is-visible {
    opacity: 1;
}

.field-feedback-bubble--left.is-visible,
.field-feedback-bubble--right.is-visible {
    transform: translateY(-50%) translateX(0);
}

.field-feedback-bubble--bottom.is-visible {
    transform: translateY(0);
}

.field-feedback-bubble strong {
    color: #082f57;
    font-size: 0.88rem;
    font-weight: 900;
    line-height: 1.2;
}

.field-feedback-bubble span {
    color: #596575;
    font-size: 0.82rem;
    font-weight: 600;
    line-height: 1.4;
}

.form-privacy {
    font-size: 0.75rem;
    color: var(--color-text-light);
    text-align: center;
    margin-top: 12px;
    line-height: 1.5;
}
.form-privacy a { color: var(--color-primary); text-decoration: underline; }

/* ============================================
   SUPORTE / CONTATO
============================================ */
#suporte { padding: 8px 0; background: var(--color-white); }

.suporte-top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    margin-bottom: 64px;
}

.suporte-top__text h2 {
    font-family: 'poppins', sans-serif;
    font-size: 2.2rem;
    font-weight: 400;
    color: var(--color-text-light);
    line-height: 1.25;
    margin-bottom: 18px;
}

.suporte-top__text h2 strong {
    font-weight: 800;   
    color: #2b4e74;
}

.suporte-top__text p {
    font-size: 1rem;
    color: #7a7a7a;
    max-width: 490px;
    line-height: 1.65;
    margin-bottom: 10px;
}

.suporte-top__btns {
    display: flex;
    flex-direction: column;
    gap: 14px;
    max-width: 380px;
}

.suporte-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 18px 28px !important;
    border-radius: 999px;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition: opacity 0.2s, background 0.2s;
    font-family: var(--ff-base);
}

.suporte-btn--wa {
    background: var(--color-accent);
    color: #fff;
}
.suporte-btn--wa:hover { opacity: 0.88; }

.suporte-btn--gray {
    background: #ebebeb;
    color: #00345f;
}
.suporte-btn--gray:hover { background: #dcdcdc; }

.suporte-canais {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
}

.suporte-canal h3 {
    font-family: 'poppins', sans-serif;
    font-size: 1.65rem;
    font-weight: 400;
    color: var(--color-text);
    margin-bottom: 18px;
    line-height: 1.3;
    display: flex;
    align-items: center;
    gap: 9px;
}

.suporte-canal h3::before {
    content: '';
    width: 79px;
    height: 15px;
    background: #e9922b;
    flex: 0 0 79px;
}

.suporte-canal p {
    font-size: 0.93rem;
    color: var(--color-text);
    line-height: 2;
    margin: 0;
}

.suporte-canal p strong { font-weight: 700; color: #2b4e74; }

.suporte-canal a { color: var(--color-primary); }
.suporte-canal a:hover { text-decoration: underline; }

/* ============================================
   FOOTER
============================================ */
#footer { background: #032e59; color: rgba(255,255,255,0.8); padding: 56px 0 0; }

.footer-main {
    display: grid;
    grid-template-columns: 1.45fr 1.05fr 1.05fr 1.05fr 1.15fr;
    gap: 28px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

/* --- Títulos de seção (Localização, Acesse, Sobre, Utilidade, Autorizadas) --- */
.footer-section-title {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--color-white);
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.footer-section-title::before {
    content: '';
    display: inline-block;
    width: 32px;
    height: 4px;
    background: var(--color-accent);
    flex-shrink: 0;
}
.footer-section-title--gap { margin-top: 22px; }

/* --- Col 1: contact, nav, social --- */
.footer-logo-link { display: block; margin-bottom: 22px; }
.footer-logo-link img { max-width: 165px; filter: brightness(0) invert(1); }

.footer-fale { margin-bottom: 14px; }
.footer-fale__label {
    display: block;
    font-size: 0.65rem;
    font-weight: 700;
    color: rgba(255,255,255,0.5);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 7px;
}
.footer-fale__row { display: flex; align-items: center; gap: 10px; }
.footer-wa-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #25d366;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background var(--transition);
}
.footer-wa-icon:hover { background: #1eb856; }
.footer-fale__phone {
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-white);
    transition: color var(--transition);
}
.footer-fale__phone:hover { color: var(--color-accent); }

.footer-ligamos-btn {
    display: inline-block;
    background: var(--color-cta-orange);
    color: var(--color-white);
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    padding: 10px 22px;
    border-radius: 50px;
    margin-bottom: 22px;
    transition: background var(--transition);
}
.footer-ligamos-btn:hover { background: var(--color-cta-orange-h); color: var(--color-white); }

.footer-acesse-nav { display: flex; flex-direction: column; gap: 7px; margin-bottom: 22px; }
.footer-acesse-nav a { font-size: 0.82rem; color: var(--color-accent); transition: opacity var(--transition); }
.footer-acesse-nav a:hover { opacity: 0.72; }

.footer-social { display: flex; gap: 9px; }
.footer-social-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background var(--transition);
}
.footer-social-icon:hover { background: var(--color-primary); }

/* --- City address blocks --- */
.footer-city { margin-bottom: 15px; }
.footer-city:last-child { margin-bottom: 0; }
.footer-city--first { margin-top: 30px; }
.footer-city strong { display: block; font-size: 0.95rem; font-weight: 700; color: var(--color-white); margin-bottom: 2px; }
.footer-city a { display: block; font-size: 0.95rem; font-weight: 700; color: var(--color-white); margin-bottom: 3px; transition: color var(--transition); }
.footer-city a:hover { color: var(--color-accent); }
.footer-city span { display: block; font-size: 0.85rem; color: rgba(255, 255, 255, 0.897); line-height: 1.55; }

/* --- Col 5: Sobre, Utilidade, Autorizadas --- */
.footer-sobre-nav { display: flex; flex-direction: column; gap: 8px; margin-bottom: 4px; }
.footer-sobre-nav a { font-size: 0.82rem; color: rgba(255,255,255,0.75); transition: color var(--transition); }
.footer-sobre-nav a:hover { color: var(--color-white); }

.footer-badge-link { display: block; margin-bottom: 8px; }
.footer-badge-link img { border-radius: 4px; }
.footer-badges { display: flex; flex-direction: column; gap: 8px; }

/* --- Bottom bar --- */
.footer-bottom {
    padding: 18px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    font-size: 0.76rem;
    color: rgba(255,255,255,0.45);
    text-align: center;
}
.footer-bottom a { color: rgba(255,255,255,0.6); transition: color var(--transition); }
.footer-bottom a:hover { color: var(--color-white); }

/* ============================================
   CENTRAL RH FOOTER
============================================ */
.crh-footer {
    background:
        radial-gradient(circle at 80% 10%, rgba(62, 38, 105, 0.55), transparent 34%),
        linear-gradient(135deg, #201634 0%, #281b3d 54%, #211732 100%);
    color: #ffffff;
    padding: 30px 0;
    overflow: hidden;
}

.crh-footer__inner {
    display: grid;
    grid-template-columns: minmax(260px, 1.15fr) minmax(190px, 0.7fr) minmax(280px, 0.95fr);
    gap: clamp(28px, 6vw, 84px);
    align-items: center;
    max-width: 1160px;
}

.crh-footer__brand {
    min-height: 278px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
}

.crh-footer__title {
    display: inline-flex;
    flex-direction: column;
    color: rgba(255, 255, 255, 0.72);
    font-family: 'Roboto Slab', serif;
    font-size: clamp(2rem, 3.4vw, 2.45rem);
    font-weight: 800;
    line-height: 1;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.crh-footer__title::after {
    content: '';
    width: 100%;
    height: 4px;
    margin-top: 7px;
    background: #ffb000;
}

.crh-footer__title:hover {
    color: #ffffff;
}

.crh-footer__support {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.crh-footer__support img {
    width: 112px;
    height: auto;
    filter: brightness(0) invert(1);
    opacity: 0.34;
    transition: opacity var(--transition), transform var(--transition);
}

.crh-footer__support a:hover img {
    opacity: 0.8;
    transform: translateY(-1px);
}

.crh-footer__privacy {
    color: #ffffff;
    font-size: 1rem;
    font-weight: 500;
    transition: color var(--transition);
}

.crh-footer__privacy:hover {
    color: #ffb000;
}

.crh-footer__nav {
    display: flex;
    flex-direction: column;
    gap: 11px;
    align-self: center;
}

.crh-footer__nav h2 {
    margin: 0 0 4px;
    color: #ffffff;
    font-family: var(--ff-base);
    font-size: 1.35rem;
    font-weight: 800;
    line-height: 1.2;
}

.crh-footer__nav a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: fit-content;
    color: #ffffff;
    font-size: 1rem;
    font-weight: 400;
    transition: color var(--transition), transform var(--transition);
}

.crh-footer__nav a:hover {
    color: #ffb000;
    transform: translateX(3px);
}

.crh-footer__nav span {
    font-size: 0.72rem;
    transform: translateY(1px);
}

.crh-footer__ad {
    display: block;
    justify-self: end;
    width: min(100%, 312px);
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.06);
    box-shadow: 0 20px 42px rgba(0, 0, 0, 0.24);
    transition: transform var(--transition), box-shadow var(--transition);
}

.crh-footer__ad:hover {
    transform: translateY(-4px);
    box-shadow: 0 26px 54px rgba(0, 0, 0, 0.3);
}

.crh-footer__ad img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ============================================
   FLOATING WHATSAPP
============================================ */
.whatsapp-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 9999;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: #25d366;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.22);
    transition: transform var(--transition), box-shadow var(--transition);
    animation: waPulse 2.5s ease-in-out infinite;
}
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 8px 28px rgba(0,0,0,0.28); animation: none; }

@keyframes waPulse {
    0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.4); }
    50% { box-shadow: 0 4px 32px rgba(37,211,102,0.7); }
}

/* ============================================
   MODAIS
============================================ */
.modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.65);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    padding: 20px;
}
.modal-overlay.active { display: flex; }

.modal-box {
    background: var(--color-white);
    border-radius: var(--radius-md);
    padding: 40px 36px;
    width: 100%;
    max-width: 480px;
    position: relative;
    animation: modalIn 0.25s ease;
}

@keyframes modalIn {
    from { opacity: 0; transform: scale(0.93) translateY(16px); }
    to   { opacity: 1; transform: scale(1) translateY(0); }
}

.modal-close {
    position: absolute;
    top: 14px;
    right: 18px;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--color-text-light);
    cursor: pointer;
    line-height: 1;
    transition: color var(--transition);
}
.modal-close:hover { color: var(--color-text); }

.modal-box h3 { font-size: 1.3rem; font-weight: 800; color: var(--color-primary); margin-bottom: 24px; text-align: center; }
.modal-box .form-submit-btn { margin-top: 10px; }

.modal-box--contact {
    max-width: 680px;
    max-height: calc(100vh - 40px);
    overflow-y: auto;
    padding: 30px 30px 28px;
    border-radius: 18px;
    box-shadow: 0 28px 90px rgba(0, 0, 0, 0.28);
}

.modal-box--contact .modal-close {
    top: 14px;
    right: 16px;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #f1f4f8;
    color: #1f486f;
    font-size: 1.3rem;
}

.modal-contact__header {
    display: block;
    margin-bottom: 26px;
    padding-right: 28px;
}

.modal-contact__header h3 {
    color: #5d626a;
    font-size: 1.45rem;
    font-weight: 500;
    line-height: 1.35;
    text-align: left;
    margin: 0;
}

.modal-contact__header h3 strong {
    color: #082f57;
    font-weight: 900;
}

.modal-contact__header p {
    color: #686d74;
    font-size: 1.06rem;
    line-height: 1.55;
    margin: 0;
}

.modal-contact__icon {
    color: #082f57;
    margin-top: -4px;
}

.modal-contact__form {
    display: grid;
    grid-template-columns: minmax(190px, 0.95fr) minmax(0, 2.05fr);
    gap: 12px;
    align-items: start;
}

.modal-contact__full,
.modal-box--contact .form-submit-btn,
.modal-box--contact .modal-contact__submit {
    grid-column: 1 / -1;
}

.modal-box--contact .form-group {
    margin: 0;
}

.modal-box--contact .form-group label {
    min-height: 40px;
    display: flex;
    align-items: flex-end;
    color: #000000;
    font-size: 1.03rem;
    font-weight: 500;
    line-height: 1.2;
    text-transform: none;
    letter-spacing: 0;
    margin-bottom: 5px;
}

.modal-box--contact .form-group label span {
    color: #ff2200;
}

.modal-box--contact .form-group input,
.modal-box--contact .form-group select,
.modal-box--contact .form-group textarea {
    border: 1px solid #aeb6c1;
    border-radius: 8px;
    min-height: 42px;
    padding: 10px 12px;
    font-size: 0.92rem;
    box-shadow: none;
}

.modal-box--contact .form-group select {
    appearance: none;
    cursor: pointer;
    background-color: #ffffff;
    background-position: right 12px center;
    color: #5f6672;
}

.modal-contact__select-group {
    position: relative;
    z-index: 2;
}

.modal-contact__select {
    position: relative;
    width: 100%;
    min-height: 42px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 1px solid #aeb6c1;
    border-radius: 8px;
    padding: 10px 38px 10px 12px;
    background: #ffffff;
    color: #6b7280;
    font: inherit;
    font-size: 0.92rem;
    text-align: left;
    box-shadow: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.modal-contact__select::after {
    content: '';
    position: absolute;
    right: 14px;
    top: 50%;
    width: 8px;
    height: 8px;
    border-right: 2px solid #64748b;
    border-bottom: 2px solid #64748b;
    transform: translateY(-65%) rotate(45deg);
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.modal-contact__select[aria-expanded="true"] {
    border-color: #2f80ed;
    box-shadow: 0 0 0 3px rgba(47, 128, 237, 0.14);
}

.modal-contact__select[aria-expanded="true"]::after {
    border-color: #2f80ed;
    transform: translateY(-35%) rotate(225deg);
}

.modal-contact__select-menu {
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    right: 0;
    z-index: 30;
    display: none;
    overflow: hidden;
    border: 1px solid #b9d4fb;
    border-radius: 10px;
    background: #ffffff;
    box-shadow: 0 18px 40px rgba(15, 35, 70, 0.18);
}

.modal-contact__select-menu.is-open {
    display: block;
    animation: modalSelectIn 0.16s ease both;
}

@keyframes modalSelectIn {
    from {
        opacity: 0;
        transform: translateY(-4px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-contact__select-menu button {
    width: 100%;
    min-height: 38px;
    display: flex;
    align-items: center;
    border: 0;
    border-bottom: 1px solid #eef3f8;
    padding: 9px 12px;
    background: #ffffff;
    color: #26384a;
    font: inherit;
    font-size: 0.9rem;
    line-height: 1.25;
    text-align: left;
    transition: background 0.18s ease, color 0.18s ease;
}

.modal-contact__select-menu button:last-child {
    border-bottom: 0;
}

.modal-contact__select-menu button:hover,
.modal-contact__select-menu button.is-selected {
    background: #eaf3ff;
    color: #003c73;
}

.modal-box--contact .form-group textarea {
    min-height: 106px;
    resize: vertical;
}

/* Dropdown de faixa dentro do modal Teste Grátis (inputs arredondados) */
#modal-trial .modal-contact__select {
    border-radius: 20px;
    border: 1.5px solid var(--color-border);
    min-height: 44px;
    font-size: 0.9rem;
    color: var(--color-text);
    background: var(--color-bg);
}
#modal-trial .modal-contact__select[aria-expanded="true"] {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(0,48,135,0.1);
}
#modal-trial .modal-contact__select-menu {
    border-radius: 12px;
}

.modal-box--contact .form-submit-btn,
.modal-box--contact .modal-contact__submit {
    min-height: 48px;
    margin-top: 0;
    border-radius: 8px;
    background: var(--color-cta-orange);
    color: #ffffff;
    box-shadow: none;
}

.modal-box--contact .form-submit-btn:hover,
.modal-box--contact .modal-contact__submit:hover {
    background: var(--color-cta-orange-h);
}

.modal-box--contact .form-privacy {
    grid-column: 1 / -1;
    display: block;
    margin-top: 0;
    color: #6b6f76;
    font-size: 0.84rem;
    line-height: 1.45;
    text-align: left;
}

.modal-plan-notice {
    grid-column: 1 / -1;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    background: #eef5ff;
    border: 1px solid #b6d4fe;
    border-radius: 10px;
    padding: 14px 16px;
    font-size: 0.93rem;
    color: #1e3a5f;
    line-height: 1.5;
    margin-bottom: 4px;
}
.modal-plan-notice svg {
    flex-shrink: 0;
    margin-top: 1px;
    color: #2563eb;
}
.modal-plan-notice strong {
    color: #1e40af;
    font-weight: 800;
}

@media (max-width: 700px) {
    .modal-box--contact {
        padding: 24px 18px;
    }

    .modal-contact__header {
        grid-template-columns: 1fr;
        gap: 12px;
        padding-right: 26px;
    }

    .modal-contact__icon {
        display: none;
    }

    .modal-contact__header h3 {
        font-size: 1.25rem;
        margin-bottom: 14px;
    }

    .modal-contact__header p {
        font-size: 0.98rem;
    }

    .modal-contact__form {
        grid-template-columns: minmax(0, 1fr);
    }

    .modal-box--contact .form-group,
    .modal-box--contact .form-submit-btn,
    .modal-box--contact .form-privacy {
        grid-column: 1 / -1;
    }

    .modal-box--contact .form-group label {
        min-height: 0;
    }
}

/* ============================================
   ANIMAÃƒâ€¡Ãƒâ€¢ES DE ENTRADA
============================================ */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.55s ease, transform 0.55s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

.counter-animated { display: inline-block; }

.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;
}

.nav-menu > li > a.is-active {
    color: #e56500;
}

.nav-menu > li:has(a.is-active)::after {
    left: 50%;
    width: 60%;
}

/* ============================================
   RESPONSIVIDADE GLOBAL
============================================ */
body {
    min-width: 320px;
}

main,
section,
header,
footer {
    max-width: 100%;
}

p,
li,
h1,
h2,
h3,
h4,
h5,
h6,
a,
span,
button,
label,
div,
td,
th {
    overflow-wrap: break-word;
}

@media (max-width: 1180px) {
    .container {
        max-width: 100%;
    }

    .nav-inner {
        gap: 10px;
    }

    .nav-menu > li > a {
        padding-inline: 8px;
        font-size: 0.9rem;
    }

    .nav-actions .btn-trial {
        padding-inline: 18px;
        font-size: 0.82rem;
    }

    .crh-nav {
        gap: 22px;
    }

    .crh-nav-brand {
        gap: 12px;
    }

    .crh-nav-brand img {
        width: 108px;
        height: auto;
    }

    .crh-nav-brand strong {
        font-size: 1.2rem;
    }

    .crh-nav-menu {
        gap: 18px;
    }

    .crh-nav-item > a {
        font-size: 0.78rem;
    }

    .crh-nav-action {
        min-height: 34px;
        padding: 8px 14px;
        font-size: 0.72rem;
    }
}

@media (max-width: 1024px) {
    .footer-main {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .footer-col--right {
        grid-column: span 3;
    }
}

@media (max-width: 900px) {
    #topbar {
        font-size: 0.84rem;
    }

    #topbar .topbar-inner {
        justify-content: center;
        text-align: center;
    }

    .topbar-phone {
        font-size: 0.96rem;
    }

    .topbar-phone svg {
        width: 20px;
        height: 20px;
    }

    .nav-inner {
        height: 70px;
    }

    .nav-logo {
        min-width: 0;
        flex: 0 1 auto;
    }

    .nav-logo img {
        max-width: min(48vw, 180px);
        max-height: 62px !important;
        object-fit: contain;
    }

    .nav-menu {
        display: none;
    }

    .nav-menu.open {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        width: 100%;
        max-height: calc(100vh - 70px);
        overflow-y: auto;
        padding: 14px 22px 22px;
        background: var(--color-white);
        box-shadow: 0 12px 28px rgba(0,0,0,0.14);
        gap: 2px;
        z-index: 999;
    }

    .nav-menu > li,
    .nav-menu > li > a {
        width: 100%;
    }

    .nav-menu > li > a {
        justify-content: space-between;
        padding: 12px 4px;
        white-space: normal;
    }

    .nav-menu > li::after,
    .nav-menu > li:has(a.is-active)::after {
        content: none;
    }

    .has-submenu:hover .submenu,
    .submenu {
        display: block;
        position: static;
        min-width: 0;
        margin-top: 0;
        padding: 4px 0 8px 14px;
        border: 0;
        border-top: 1px solid var(--color-border);
        border-radius: 0;
        box-shadow: none;
    }

    .submenu li a {
        padding: 9px 6px;
    }

    .nav-actions {
        margin-left: auto;
    }

    .nav-actions .btn-rh,
    .nav-actions .btn-indicate {
        display: none;
    }

    .nav-actions .btn-trial {
        padding: 10px 16px;
        font-size: 0.76rem;
        white-space: nowrap;
    }

    .nav-toggle {
        display: flex;
        flex-shrink: 0;
    }

    .crh-nav {
        min-height: 62px;
        gap: 12px;
    }

    .crh-nav-brand img {
        width: 104px;
        height: auto;
    }

    .crh-nav-brand strong {
        font-size: 1.05rem;
    }

    .crh-nav-menu {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        position: fixed;
        top: 62px;
        left: 0;
        right: 0;
        width: 100%;
        max-height: calc(100vh - 62px);
        overflow-y: auto;
        margin-left: 0;
        padding: 14px 22px 22px;
        background: #ffffff;
        box-shadow: 0 12px 28px rgba(0,0,0,0.14);
        gap: 2px;
        z-index: 999;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transform: translateY(-14px);
        transition: opacity 0.24s ease, transform 0.24s ease, visibility 0.24s ease;
    }

    .crh-nav-menu.open {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translateY(0);
    }

    .crh-nav-item,
    .crh-nav-item > a {
        width: 100%;
    }

    .crh-nav-item > a {
        justify-content: space-between;
        min-height: 44px;
        padding: 12px 4px;
        border-radius: 0;
        background: transparent;
        font-size: 0.9rem;
        white-space: normal;
        box-shadow: none !important;
    }

    .crh-nav-submenu {
        position: static;
        min-width: 0;
        max-height: 0;
        margin: 0;
        padding: 0 0 0 14px;
        border: 0;
        border-top: 1px solid transparent;
        border-radius: 0;
        box-shadow: none;
        opacity: 0;
        visibility: visible;
        transform: none;
        overflow: hidden;
        pointer-events: auto;
        transition: max-height 0.24s ease, opacity 0.18s ease, padding 0.24s ease;
    }

    .crh-nav-dropdown:hover .crh-nav-submenu,
    .crh-nav-dropdown:focus-within .crh-nav-submenu {
        opacity: 0;
    }

    .crh-nav-dropdown.submenu-open .crh-nav-submenu,
    .crh-nav-dropdown.submenu-open:hover .crh-nav-submenu,
    .crh-nav-dropdown.submenu-open:focus-within .crh-nav-submenu {
        max-height: 340px;
        padding-top: 8px;
        padding-bottom: 8px;
        border-top-color: var(--color-border);
        opacity: 1;
    }

    .crh-nav-submenu a {
        padding: 9px 6px;
    }

    .crh-nav-actions {
        margin-left: auto;
        gap: 8px;
    }

    .crh-nav-action {
        min-height: 34px;
        padding: 8px 12px;
        font-size: 0.7rem;
    }

    .suporte-top,
    .suporte-canais {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .suporte-canal h3::before {
        width: 54px;
        flex-basis: 54px;
    }

    .footer-main {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 30px 22px;
    }

    .footer-col--contact,
    .footer-col--right {
        grid-column: 1 / -1;
    }

    .footer-city--first {
        margin-top: 0;
    }

    .crh-footer {
        padding: 34px 0;
    }

    .crh-footer__inner {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
        align-items: start;
    }

    .crh-footer__brand {
        min-height: 230px;
    }

    .crh-footer__ad {
        grid-column: 1 / -1;
        justify-self: center;
        width: min(100%, 340px);
    }
}

@media (max-width: 640px) {
    .container {
        padding-inline: 18px;
    }

    .btn,
    .suporte-btn {
        width: 100%;
        padding-inline: 18px;
        text-align: center;
    }

    .nav-inner {
        height: auto;
        min-height: 68px;
    }

    .nav-logo img {
        max-width: min(44vw, 150px);
        max-height: 56px !important;
    }

    .nav-actions .btn-trial {
        padding: 9px 12px;
        font-size: 0.68rem;
        letter-spacing: 0;
    }

    .nav-menu.open {
        top: 68px;
        max-height: calc(100vh - 68px);
    }

    .crh-nav {
        min-height: 60px;
    }

    .crh-nav-brand {
        gap: 8px;
    }

    .crh-nav-brand img {
        width: 96px;
        height: auto;
    }

    .crh-nav-brand__divider {
        height: 24px;
    }

    .crh-nav-brand strong {
        max-width: 122px;
        font-size: 0.9rem;
        line-height: 1.08;
        white-space: normal;
    }

    .crh-nav-menu {
        top: 62px;
        max-height: calc(100vh - 62px);
    }

    .crh-nav-action--site {
        display: none;
    }

    .footer-main {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-section-title,
    .footer-fale__row,
    .footer-social {
        justify-content: center;
    }

    .footer-badge-link img,
    .footer-logo-link img {
        margin-inline: auto;
    }

    .footer-ligamos-btn {
        width: 100%;
        max-width: 260px;
    }

    .crh-footer {
        padding: 38px 0 34px;
        text-align: center;
    }

    .crh-footer__inner {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .crh-footer__brand {
        min-height: 0;
        gap: 22px;
        align-items: center;
    }

    .crh-footer__support {
        justify-content: center;
    }

    .crh-footer__nav {
        align-items: center;
    }

    .crh-footer__ad {
        width: min(100%, 300px);
    }

    .whatsapp-float {
        right: 16px;
        bottom: 16px;
        width: 52px;
        height: 52px;
    }

    .modal-overlay {
        padding: 14px;
        align-items: flex-start;
        overflow-y: auto;
    }

    .modal-box {
        max-height: calc(100vh - 28px);
        overflow-y: auto;
        padding: 32px 18px 24px;
    }

    .modal-box form > div[style*="grid-template-columns"] {
        display: grid !important;
        grid-template-columns: 1fr !important;
    }
}

@media (max-width: 420px) {
    .container {
        padding-inline: 14px;
    }

    .topbar-rh-btn {
        width: 100%;
        justify-content: center;
    }

    .nav-actions .btn-trial {
        display: none;
    }

    .nav-logo img {
        max-width: 178px;
    }

    .crh-nav-brand img {
        width: 88px;
        height: auto;
    }

    .crh-nav-brand strong {
        max-width: 94px;
        font-size: 0.78rem;
    }

    .crh-nav-action {
        display: none;
    }
}

/* Ajustes finos solicitados: menu mobile e dropdown */
.has-submenu > a::after {
    content: '';
}

@keyframes mobileMenuIn {
    from {
        opacity: 0;
        transform: translateY(-14px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 900px) {
    .has-submenu > a::after {
        content: none;
    }

    .nav-menu {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        width: 100%;
        max-height: calc(100vh - 70px);
        overflow-y: auto;
        padding: 14px 22px 22px;
        background: var(--color-white);
        box-shadow: 0 12px 28px rgba(0,0,0,0.14);
        gap: 2px;
        z-index: 999;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transform: translateY(-14px);
        transition: opacity 0.24s ease, transform 0.24s ease, visibility 0.24s ease;
    }

    .nav-menu.open {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translateY(0);
        animation: mobileMenuIn 0.26s ease both;
    }

    .nav-toggle[aria-expanded="true"] span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .nav-toggle[aria-expanded="true"] span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle[aria-expanded="true"] span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    .has-submenu:hover .submenu,
    .submenu {
        display: block;
        position: static;
        max-height: 0;
        opacity: 0;
        overflow: hidden;
        border-top-color: transparent;
        padding-top: 0;
        padding-bottom: 0;
        transition: max-height 0.24s ease, opacity 0.18s ease, padding 0.24s ease;
    }

    .has-submenu.submenu-open .submenu,
    .has-submenu.submenu-open:hover .submenu {
        max-height: 260px;
        opacity: 1;
        border-top-color: var(--color-border);
        padding-top: 8px;
        padding-bottom: 8px;
    }
}

@media (max-width: 640px) {
    .nav-menu {
        top: 68px;
        max-height: calc(100vh - 68px);
    }
}

/* ============================================
   RECIBOS E NOTAS PROMISSORIAS
============================================ */
.lp-receipts {
    background: #f4f7fb;
    color: #1f2937;
    overflow: hidden;
}

/* Hero */
.lp-receipts-hero {
    position: relative;
    background: linear-gradient(135deg, #003087 0%, #0a5a8a 100%);
    color: #fff;
    padding: 72px 0 64px;
    overflow: hidden;
}

.lp-receipts-hero__deco {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.lp-receipts-hero__deco-circle {
    position: absolute;
    border-radius: 50%;
}

.lp-receipts-hero__deco-circle--a {
    width: 520px;
    height: 520px;
    background: radial-gradient(circle, rgba(31, 208, 191, 0.22), transparent 65%);
    top: -160px;
    right: -80px;
}

.lp-receipts-hero__deco-circle--b {
    width: 340px;
    height: 340px;
    background: radial-gradient(circle, rgba(109, 156, 248, 0.18), transparent 65%);
    bottom: -100px;
    left: 6%;
}

.lp-receipts-hero__inner,
.lp-receipts-app__inner,
.lp-receipts-features__inner {
    position: relative;
    width: min(100% - 32px, 1120px);
    margin: 0 auto;
}

.lp-receipts-hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    min-height: 30px;
    padding: 5px 12px;
    border-radius: 6px;
    background: #1fd0bf;
    color: #002750;
    font-size: 0.78rem;
    font-weight: 800;
    line-height: 1;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: .04em;
    transition: background var(--transition, .18s ease);
}

.lp-receipts-hero__eyebrow:hover,
.lp-receipts-hero__eyebrow:focus {
    background: #17b8a9;
    color: #002750;
}

.lp-receipts-hero__content {
    max-width: 820px;
    margin-top: 28px;
}

.lp-receipts-hero__title {
    max-width: 760px;
    margin: 0;
    color: #fff;
    font-size: clamp(2.1rem, 4.5vw, 3.5rem);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -0.01em;
}

.lp-receipts-hero__subtitle {
    max-width: 640px;
    margin: 18px 0 0;
    color: rgba(255, 255, 255, 0.84);
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.65;
}

.lp-receipts-hero__chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 28px;
}

.lp-receipts-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 13px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.92);
    font-size: 0.82rem;
    font-weight: 600;
    line-height: 1;
}

/* App */
.lp-receipts-app {
    padding: 42px 0 52px;
    background: #f4f7fb;
}

.lp-receipts-app__card {
    display: grid;
    grid-template-columns: 1fr;
    border: 1px solid #dce4ef;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 20px 48px rgba(10, 30, 60, 0.1);
    overflow: hidden;
}

.lp-receipts-app__menu {
    padding: 22px 18px;
    border-bottom: 1px solid #e2e8f0;
    background: #f9fbfd;
}

.lp-receipts-app__menu-title {
    margin: 0 0 16px;
    color: #0f2f5f;
    font-size: 1.45rem;
    font-weight: 900;
    line-height: 1.1;
}

.lp-receipts-app__menu-button {
    width: 100%;
    min-height: 48px;
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0 0 8px;
    padding: 9px 10px;
    border: 0;
    border-radius: 6px;
    background: transparent;
    color: #111827;
    font: inherit;
    font-size: 0.95rem;
    font-weight: 700;
    text-align: left;
    cursor: pointer;
    transition: background .18s ease, color .18s ease;
}

.lp-receipts-app__menu-button:hover,
.lp-receipts-app__menu-button.is-active {
    background: #ffe381;
    color: #111827;
}

.lp-receipts-app__menu-icon {
    width: 42px;
    height: 34px;
    display: grid;
    place-items: center;
    flex-shrink: 0;
    border: 1px solid #97c7de;
    border-radius: 4px;
    background: #effcff;
    color: #0f6f97;
    font-size: 0.72rem;
    font-weight: 900;
}

.lp-receipts-app__mini-window {
    display: none;
    margin-top: 22px;
    border: 1px solid #dbe5f2;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 18px 34px rgba(15, 47, 95, 0.13);
    overflow: hidden;
}

.lp-receipts-app__mini-top {
    display: flex;
    gap: 6px;
    padding: 10px 12px;
    border-bottom: 1px solid #edf2f7;
    background: #f7f9fc;
}

.lp-receipts-app__mini-top span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #d2dce9;
}

.lp-receipts-app__mini-top span:nth-child(1) { background: #ff6b5f; }
.lp-receipts-app__mini-top span:nth-child(2) { background: #ffbf3f; }
.lp-receipts-app__mini-top span:nth-child(3) { background: #28c884; }

.lp-receipts-app__mini-body {
    min-height: 260px;
    padding: 18px 16px 20px;
    background:
        linear-gradient(180deg, rgba(255,255,255,0.94), rgba(255,255,255,0.98)),
        repeating-linear-gradient(0deg, #fff 0 28px, #f3f6fa 29px 30px);
}

.lp-receipts-app__mini-body strong {
    display: block;
    color: #0f2f5f;
    font-size: 0.95rem;
    font-weight: 900;
    line-height: 1.25;
}

.lp-receipts-app__mini-body p {
    margin: 8px 0 18px;
    color: #607083;
    font-size: 0.76rem;
    font-weight: 600;
    line-height: 1.5;
}

.lp-receipts-app__mini-line {
    height: 9px;
    width: 68%;
    margin-bottom: 10px;
    border-radius: 999px;
    background: #e6edf5;
}

.lp-receipts-app__mini-line--wide {
    width: 92%;
}

.lp-receipts-app__mini-total {
    display: inline-flex;
    margin-top: 16px;
    padding: 8px 12px;
    border-radius: 999px;
    background: #fff4d6;
    color: #9a6400;
    font-size: 0.78rem;
    font-weight: 900;
}

.lp-receipts-app__workspace {
    padding: 22px 18px 24px;
}

.lp-receipts-form {
    display: none;
}

.lp-receipts-form.is-active {
    display: block;
}

.lp-receipts-form__header {
    margin-bottom: 18px;
}

.lp-receipts-form__title {
    margin: 0;
    color: #0f2f5f;
    font-size: 1.45rem;
    font-weight: 900;
    line-height: 1.18;
}

.lp-receipts-form__text {
    margin: 6px 0 0;
    color: #5f6b7b;
    font-size: 0.9rem;
    font-weight: 500;
    line-height: 1.55;
}

.lp-receipts-form__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
}

.lp-receipts-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
    color: #243247;
    font-size: 0.82rem;
    font-weight: 800;
}

.lp-receipts-field input,
.lp-receipts-field select,
.lp-receipts-field textarea {
    width: 100%;
    min-height: 42px;
    border: 1px solid #cfdae8;
    border-radius: 6px;
    background: #fff;
    color: #111827;
    font: inherit;
    font-size: 0.92rem;
    font-weight: 500;
    padding: 10px 12px;
    outline: none;
    transition: border-color .18s ease, box-shadow .18s ease;
}

.lp-receipts-field input {
    overflow: hidden;
    text-overflow: ellipsis;
}

.lp-receipts-field textarea {
    resize: vertical;
}

.lp-receipts-field input:focus,
.lp-receipts-field select:focus,
.lp-receipts-field textarea:focus {
    border-color: #0a86b7;
    box-shadow: 0 0 0 3px rgba(10, 134, 183, 0.13);
}

.lp-receipts-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 20px 0;
}

.lp-receipts-actions__button {
    min-height: 42px;
    padding: 10px 18px;
    border: 0;
    border-radius: 6px;
    background: #e8a000;
    color: #fff;
    font: inherit;
    font-size: 0.82rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .04em;
    cursor: pointer;
}

.lp-receipts-actions__button--light {
    background: #eef3f8;
    color: #0f2f5f;
}

.lp-receipts-preview {
    margin-top: 18px;
    padding: 24px 20px 32px;
    border: 1px solid #d7dee9;
    border-radius: 8px;
    background: #fff;
    color: #111827;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.6);
}

.lp-receipts-preview__title {
    margin: 0 0 18px;
    color: #0f2f5f;
    font-size: 1.35rem;
    font-weight: 900;
    line-height: 1.2;
    text-align: center;
    text-transform: uppercase;
}

.lp-receipts-preview__body {
    color: #1f2937;
    font-size: 0.98rem;
    line-height: 1.85;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.lp-receipts-preview__signature {
    width: min(100%, 340px);
    margin: 48px auto 0;
    padding-top: 10px;
    border-top: 1px solid #111827;
    color: #1f2937;
    font-size: 0.86rem;
    font-weight: 700;
    text-align: center;
    overflow-wrap: anywhere;
    word-break: break-word;
}

/* Features */
.lp-receipts-features {
    background: #fff;
    padding: 48px 0 58px;
}

.lp-receipts-features__title {
    margin: 0;
    color: #003087;
    font-size: clamp(1.4rem, 2.5vw, 1.9rem);
    font-weight: 900;
    line-height: 1.18;
    text-align: center;
}

.lp-receipts-features__lead {
    max-width: 680px;
    margin: 14px auto 0;
    color: #566173;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.72;
    text-align: center;
}

@media (min-width: 720px) {
    .lp-receipts-hero {
        padding: 92px 0 84px;
    }

    .lp-receipts-hero__inner,
    .lp-receipts-app__inner,
    .lp-receipts-features__inner {
        width: min(100% - 64px, 1120px);
    }

    .lp-receipts-app {
        padding: 52px 0 64px;
    }

    .lp-receipts-app__card {
        grid-template-columns: minmax(220px, 280px) minmax(0, 1fr);
        align-items: start;
        border: 0;
        border-radius: 0;
        background: transparent;
        box-shadow: none;
        overflow: visible;
        column-gap: 0;
    }

    .lp-receipts-app__menu {
        border-right: 0;
        border-bottom: 0;
        padding: 28px 24px;
        align-self: start;
        background: #f9fbfd;
        border: 1px solid #dce4ef;
        border-right: 0;
        border-radius: 12px 0 0 12px;
        box-shadow: -12px 18px 34px rgba(10, 30, 60, 0.07);
    }

    .lp-receipts-app__mini-window {
        display: block;
    }

    .lp-receipts-app__workspace {
        padding: 28px;
        border: 1px solid #dce4ef;
        border-radius: 0 12px 12px 0;
        background: #fff;
        box-shadow: 16px 20px 48px rgba(10, 30, 60, 0.1);
    }

    .lp-receipts-form__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .lp-receipts-field--full {
        grid-column: 1 / -1;
    }
}

@media (min-width: 1100px) {
    .lp-receipts-hero {
        padding: 108px 0 96px;
    }

    .lp-receipts-app {
        padding: 64px 0 76px;
    }

    .lp-receipts-app__workspace {
        padding: 34px 36px 38px;
    }
}

@media print {
    #header,
    #footer,
    .lp-receipts > :not(.lp-receipts-app),
    .lp-receipts-app__menu,
    .lp-receipts-form,
    .lp-receipts-actions {
        display: none !important;
    }

    .lp-receipts,
    .lp-receipts-app,
    .lp-receipts-app__inner,
    .lp-receipts-app__card,
    .lp-receipts-app__workspace {
        width: auto !important;
        max-width: none !important;
        margin: 0 !important;
        padding: 0 !important;
        border: 0 !important;
        background: transparent !important;
        box-shadow: none !important;
        overflow: visible !important;
    }

    .lp-receipts-preview {
        display: block !important;
        position: fixed;
        inset: 24px;
        margin: 0;
        box-shadow: none;
    }
}

/* ============================================
   FEATURE CARDS COMPARTILHADOS (lp-features)
============================================ */
.lp-features__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.lp-features__card {
    background: #e8eef7;
    border-radius: var(--radius-md);
    padding: 3px 12px 12px;
    box-shadow: 0 14px 32px rgba(0,51,102,0.06);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: transform var(--transition), box-shadow var(--transition);
    max-width: 335px;
    margin: 0 auto;
    width: 100%;
}
.lp-features__card:hover { transform: translateY(-5px); box-shadow: 0 18px 50px rgba(0,51,102,0.12); }

.lp-features__icon-wrap {
    width: 90px; height: 90px;
    border-radius: 50%; background: transparent;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 10px; flex-shrink: 0; overflow: visible; padding: 0;
}
.lp-features__icon-wrap img { width: 100%; height: 100%; object-fit: contain; }

.lp-features__card-title {
    font-family: "Poppins", Sans-serif;
    font-size: clamp(1.6rem, 2.7vw, 1.95rem);
    font-weight: 800; color: #003366;
    margin-bottom: 10px; text-transform: uppercase;
    line-height: 1.15; letter-spacing: 0.01em;
}
.lp-features__card-title:has(strong) { color: #768ea8; }
.lp-features__card-title strong { color: #003366; font-weight: 900; }

.lp-features__card-desc {
    font-size: 0.90rem; font-family: "Poppins", Sans-serif;
    color: #5f7897; font-weight: 500; line-height: 1.6;
}
.lp-features__card-desc strong { color: #032e62; font-weight: 600; }
.lp-features__card-desc em { font-size: 0.72rem; }

@media (max-width: 900px) {
    .lp-features__grid { grid-template-columns: 1fr; gap: 20px; }
}

/* ============================================
   CALCULADORA DE HORAS EXTRAS
============================================ */
.lp-calc {
    background: #f4f7fb;
    color: #1f2937;
    overflow: hidden;
}

.lp-calc-hero {
    background: #003366;
    color: #fff;
    padding: 72px 0 64px;
}

.lp-calc-hero__inner,
.lp-calc-app__inner {
    width: min(100% - 32px, 1120px);
    margin: 0 auto;
}

.lp-calc-hero__eyebrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 32px;
    padding: 7px 13px;
    border: 1px solid rgba(255, 255, 255, 0.26);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    font-size: 0.78rem;
    font-weight: 900;
    line-height: 1;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: .04em;
    transition: background var(--transition, .18s ease), border-color var(--transition, .18s ease);
}

.lp-calc-hero__eyebrow:hover,
.lp-calc-hero__eyebrow:focus {
    background: rgba(255, 255, 255, 0.18);
    border-color: rgba(255, 255, 255, 0.48);
    color: #fff;
}

.lp-calc-hero__content {
    max-width: 860px;
    margin-top: 28px;
}

.lp-calc-hero__title {
    max-width: 760px;
    margin: 0;
    color: #fff;
    font-size: clamp(2.05rem, 4.4vw, 3.55rem);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: 0;
}

.lp-calc-hero__text {
    max-width: 820px;
    margin: 18px 0 0;
    color: rgba(255, 255, 255, 0.84);
    font-size: 0.98rem;
    font-weight: 500;
    line-height: 1.72;
}

.lp-calc-app {
    padding: 42px 0 60px;
    background: #f4f7fb;
}

.lp-calc-app__shell {
    border: 1px solid #dce4ef;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 20px 48px rgba(10, 30, 60, 0.1);
    overflow: hidden;
}

.lp-calc-app__shell iframe {
    display: block;
    width: 100%;
    min-height: 610px;
    border: 0;
    background: #fff;
}

@media (min-width: 720px) {
    .lp-calc-hero {
        padding: 92px 0 84px;
    }

    .lp-calc-hero__inner,
    .lp-calc-app__inner {
        width: min(100% - 64px, 1120px);
    }

    .lp-calc-hero__text {
        font-size: 1.05rem;
    }

    .lp-calc-app {
        padding: 56px 0 72px;
    }
}

@media (min-width: 1100px) {
    .lp-calc-hero {
        padding: 104px 0 96px;
    }

    .lp-calc-app {
        padding: 64px 0 82px;
    }
}
