:root {
    --ink: #0f172a;
    /* texto principal */
    --muted: #64748b;
    --muted-strong: #4a4a4a;
    /* texto secundario */
    --bg: #f7fafc;
    /* fondo claro */
    --card: #ffffff;
    /* fondo card */
    --brand: #e95142;
    /* naranja Etikalys */
    --brand-2: #f74a3a;
    /* acento */
    --navy: #0b1220;
    /* fondo oscuro */
    --navy-2: #101a2d;
    --ring: rgba(22, 163, 74, .25);
    --shadow: 0 20px 60px rgba(2, 6, 23, .08);
    --shadow-sm: 0 10px 25px rgba(2, 6, 23, .08);
    --radius: .5rem;
}

* {
    box-sizing: border-box;
}

html,
body {
    height: 100%;
}

body {
    font-family:
        ui-sans-serif,
        system-ui,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        Roboto,
        Helvetica,
        Arial,
        sans-serif,
        "Apple Color Emoji",
        "Segoe UI Emoji",
        "Segoe UI Symbol",
        "Noto Color Emoji";

    font-feature-settings: normal;
    font-variation-settings: normal;

    color: var(--ink);
    background: var(--bg);
    display: flex;
    flex-direction: column;
}

h1,
h2,
h3,
h4,
h5 {
    letter-spacing: -0.02em;
}

p {
    line-height: 1.55;
}

.text-emerald-600 {
    --tw-text-opacity: 1;
    color: rgb(5 150 105 / var(--tw-text-opacity, 1));
}

.text-orange-600 {
    --tw-text-opacity: 1;
    color: rgb(233 81 66 / var(--tw-text-opacity, 1));
}

.bg-emerald-100 {
    --tw-bg-opacity: 1;
    background-color: rgb(209 250 229 / var(--tw-bg-opacity, 1));
}

.bg-orange-100 {
    --tw-bg-opacity: 1;
    background-color: rgb(245 239 226 / var(--tw-bg-opacity, 1));
}

.font-bold {
    font-weight: 700;
}

.font-semibold {
    font-weight: 600;
}

.font-medium {
    font-weight: 500;
}

.leading-relaxed {
    line-height: 1.625;
}

.text-sm {
    font-size: .875rem;
    line-height: 1.25rem;
}

.text-lg {
    font-size: 1.125rem;
}

.text-xl {
    font-size: 1.25rem;
    line-height: 1.75rem;
}

.fs-14 {
    font-size: 14px !important;
}

.fs-15 {
    font-size: 15px !important;
}

.fs-16 {
    font-size: 16px !important;
}

.fs-17 {
    font-size: 17px !important;
}

.fs-18 {
    font-size: 18px !important;
}

.text-brand {
    color: var(--brand) !important;
}

.rounded-full {
    border-radius: 9999px;
}

.rounded-xl {
    border-radius: .75rem;
}

.rounded-3xl {
    border-radius: 1.5rem;
}

@media (min-width: 768px) {
    .md\:text-4xl {
        font-size: 2.25rem !important;
        line-height: 2.5rem;
    }
}

@media (min-width: 1200px) {

    .h2,
    h2 {
        font-size: 2.25rem;
        line-height: 2.5rem;
    }
}

@media (min-width: 1536px) {
    .container {
        max-width: 1536px;
    }
}

/* Fondo grid suave (como en la primera captura) */
.page-grid {
    background:
        radial-gradient(circle at 1px 1px, rgba(15, 23, 42, .04) 1px, transparent 1px);
    background-size: 28px 28px;
}

/* Navbar */
.navbar {
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, .85) !important;
    border-bottom: 1px solid rgba(2, 6, 23, .06);
}

.brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.brand-badge {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(22, 163, 74, .10);
    color: var(--brand);
}

.hero .badge {
    font-size: .8rem;
    padding: .45rem .8rem;
    font-weight: 600;
}

.nav-link {
    color: var(--ink);
    font-weight: 500;
}

.nav-link:hover {
    color: var(--brand);
}

.btn-pill {
    border-radius: calc(var(--radius) - 2px);
    padding: .65rem 1.05rem;
    font-weight: 600;
}

.btn-brand {
    background: var(--brand);
    border: none;
    box-shadow: 0 10px 25px rgba(204, 131, 22, 0.18);
}

.btn-brand:hover {
    background-color: var(--brand-2) !important;
}

.btn-soft {
    background: rgba(15, 23, 42, .04);
    border: 2px solid rgba(15, 23, 42, .08);
    color: var(--ink);
}

.btn-soft:hover {
    color: black;
    background-color: rgb(233 81 66 / 5%) !important;
    border-color: #e95142;
    border: 2px solid #e95142;
}

/* Hero */
.hero {
    padding: 110px 0 40px;
}

.hero h1 {
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    line-height: 1.05;
    letter-spacing: -0.03em;
    font-weight: 700;
}

.hero .accent {
    color: var(--brand);
}

.hero p {
    color: var(--muted-strong);
    font-size: 1.05rem;
    max-width: 640px;
}

.chip {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .45rem .75rem;
    border-radius: 999px;
    border: 1px solid rgb(163 81 22 / 18%);
    background: rgb(163 87 22 / 8%);
    color: var(--brand);
    font-weight: 600;
    font-size: .9rem;
}

/* Cards */
.card-soft {
    background: var(--card);
    border: 1px solid rgba(2, 6, 23, .06);
    box-shadow: var(--shadow-sm);
    transition: box-shadow .25s ease, transform .25s ease;
}

.card-soft:hover {
    transform: translateY(-4px);
    transition: .2s ease;
    box-shadow: var(--shadow);
}

.card-feature {
    padding: 28px;
    height: 100%;
}

.card-feature h5 {
    font-size: 1.05rem;
    margin-bottom: .35rem;
}

.card-feature p {
    font-size: .95rem;
    line-height: 1.5;
}

.icon-tile {
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--brand);
    color: white;
    font-size: 1.25rem;
}

.icon-tile-contact {
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

/* Bloques / secciones */
.section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 42px;
}

.section-title .kicker {
    color: var(--brand);
    font-weight: 700;
    letter-spacing: .14em;
    font-size: .75rem;
}

.kicker {
    color: var(--brand);
    font-weight: 700;
    letter-spacing: .14em;
    font-size: .75rem;
}

.section-title h2 {
    font-weight: 700;
    letter-spacing: 0.02em;
}

.section-title p {
    color: var(--muted-strong);
    max-width: 720px;
    margin: 0 auto;
}

/* Sección oscura (Cumplimiento) */
.section-dark {
    background: linear-gradient(180deg, var(--navy), var(--navy-2));
    color: #e5e7eb;
}

.section-dark p {
    color: rgba(229, 231, 235, .75);
}

.dark-card {
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .10);
    border-radius: var(--radius);
    padding: 20px;
}

.dark-pill {
    border-radius: 16px;
    padding: 18px 18px;
    background: rgb(185 141 16 / 10%);
    border: 1px solid rgb(185 110 16 / 18%);
}

/* Form */
.form-control,
.form-select {
    border-radius: 14px;
    padding: .8rem .9rem;
    border: 1px solid rgba(2, 6, 23, .12);
}

.form-control:focus,
.form-select:focus {
    border-color: rgba(22, 163, 74, .45);
    box-shadow: 0 0 0 .25rem var(--ring);
}

.form-card {
    border-radius: 22px;
    box-shadow: var(--shadow);
    border: 1px solid rgba(2, 6, 23, .06);
}

/* WhatsApp floating */
.wa-float {
    position: fixed;
    right: 22px;
    bottom: 22px;
    width: 62px;
    height: 62px;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #25D366;
    color: #fff;
    font-size: 28px;
    box-shadow: 0 20px 45px rgba(0, 0, 0, .18);
    z-index: 9999;
}

.wa-float:hover {
    filter: brightness(.95);
    color: #fff;
}

/* Footer */
.footer {
    background: linear-gradient(180deg, #0b1220, #0a1020);
    color: rgba(229, 231, 235, .85);
}

.footer a {
    color: rgba(229, 231, 235, .75);
    text-decoration: none;
}

.footer a:hover {
    color: #fff;
    text-decoration: underline;
}

.hr-soft {
    border-color: rgba(255, 255, 255, .10);
}

/* Helpers */
.text-muted2 {
    color: var(--muted-strong) !important;
}

/* HERO CARD (pixel-perfect Base44) */
.hero-card {
    background: #fff;
    border-radius: 28px;
    padding: 40px;
    box-shadow: 0 40px 90px rgba(15, 23, 42, .12);
    position: relative;
}

/* Estados */
.hero-status {
    background: #f8fafc;
    border-radius: 999px;
    padding: 14px 20px;
    font-size: .95rem;
    display: flex;
    align-items: center;
}

/* Badges flotantes */
.hero-badge {
    position: absolute;
    background: #fff;
    border-radius: 18px;
    padding: 14px 18px;
    box-shadow: 0 25px 60px rgba(15, 23, 42, .15);
    text-align: center;
    line-height: 1.1;
}

.hero-badge-top {
    top: -22px;
    right: -22px;
    background: linear-gradient(180deg, #0f172a, #020617);
    color: #fff;
    border-radius: 20px;
    padding: 16px 18px;
}

.hero-badge-bottom {
    bottom: -22px;
    left: -22px;
}