/* ════════════════════════════════════════════════
   RESET & ROOT
   ════════════════════════════════════════════════ */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
:root {
    --peach:     #FEECE9;
    --navy:      #2F3A8F;
    --orange:    #e6796d;;
    --teal:      #187f99;
    --dark:      #1a1a2e;
    --white:     #fff;
    --gray:      #555;
    --radius-md: 16px;
    --radius-lg: 24px;
}
html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; background: var(--peach); color: var(--dark); overflow-x: hidden; }
a { text-decoration: none; }
img { display: block; max-width: 100%; }

/* ════════════════════════════════════════════════
   BUTTONS (compartidos)
   ════════════════════════════════════════════════ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    border: none;
    transition: transform 0.18s, opacity 0.18s;
    text-decoration: none;
}
.btn-orange  { background: var(--orange); color: #fff; }
.btn-outline {
    background: transparent;
    color: #fff;
    border: 1.5px solid rgba(255,255,255,0.5);
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background: #e6796d;
    border-color: #e6796d;
    color: #fff;
}
.btn-navy    { background: var(--navy); color: #fff; }
.btn-teal    { background: var(--teal); color: #fff; }
.btn-white   { background: var(--orange); color: #fff; font-weight: 800; }
.btn-glass   { background: rgba(255,255,255,0.08); color: #fff; border: 1px solid rgba(255,255,255,0.2); backdrop-filter: blur(8px); }
/* ════════════════════════════════════════════════
   SHARED LAYOUT
   ════════════════════════════════════════════════ */
.section { padding: 5rem 2rem; }
.inner   { max-width: 1060px; margin: 0 auto; }

.tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--navy);
    background: rgba(47,58,143,0.1);
    border: 1px solid rgba(47,58,143,0.2);
    padding: 5px 14px;
    border-radius: 40px;
    margin-bottom: 1rem;
}
.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.9rem, 3.5vw, 2.8rem);
    font-weight: 700;
    color: var(--dark);
    line-height: 1.2;
    margin-bottom: 0.75rem;
}
.section-title em { color: var(--navy); font-style: italic; }

/* ════════════════════════════════════════════════
   HEADER
   ════════════════════════════════════════════════ */
.main-header {
    background-color: #ffffff;
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.03);
    width: 100%;
    position: sticky;
    top: 0;
    z-index: 1000;
}
.header-container {
    max-width: 100%;
    padding: 0 clamp(15px, 5vw, 120px);
    margin: 0 auto;
}
.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.header-logo-img {
    height: 65px;
    width: auto;
    display: block;
    transition: all 0.3s ease;
}
.nav-menu {
    display: flex;
    list-style: none;
    gap: 35px;
    margin: 0;
    padding: 0;
    align-items: center;
}
.nav-link {
    font-family: 'Inter', sans-serif;
    text-decoration: none;
    color: #e6796d !important;
    font-weight: 700;
    font-size: 1.15rem;
    transition: color 0.3s ease, transform 0.2s ease;
}
.nav-link:hover {
    color: #187f99 !important;
    transform: translateY(-1px);
}
.header-right {
    display: flex;
    align-items: center;
    gap: 15px;
}
.btn-header {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    background-color: #187f99;
    color: #fff !important;
    white-space: nowrap;
    transition: all 0.3s ease;
}
.btn-header:hover {
    background-color: #146a80;
    box-shadow: 0 4px 15px rgba(24, 127, 153, 0.3);
}
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}
.menu-toggle .bar {
    width: 28px;
    height: 3px;
    background-color: #e6796d;
    border-radius: 2px;
    transition: 0.3s;
}

/* Header Responsive */
@media (max-width: 768px) {

    /* Header base */
    .navbar {
        position: relative !important;
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
    }

    /* MENÚ */
    .nav-menu {
        position: absolute !important;
        top: 100% !important;
        left: 0 !important;
        width: 100% !important;

        display: none !important;
        flex-direction: column !important;

        background: #fff !important;
        padding: 20px !important;

        z-index: 9999 !important;

        box-shadow: 0 10px 25px rgba(0,0,0,0.12) !important;
    }

    /* ACTIVO */
    .nav-menu.active {
        display: flex !important;
    }

    /* BOTÓN HAMBURGUESA */
    .menu-toggle {
        display: flex !important;
        flex-direction: column !important;
        gap: 5px !important;
        background: none !important;
        border: none !important;
        cursor: pointer !important;

        position: relative !important;
        z-index: 10000 !important;
    }

    .menu-toggle .bar {
        width: 25px !important;
        height: 3px !important;
        background: #000 !important;
        transition: 0.3s ease !important;
    }

    /* LOGO NO SE MUEVE */
    .header-logo-link {
        display: flex !important;
        align-items: center !important;
        z-index: 10000 !important;
    }

    .header-logo-img {
        max-height: 50px !important;
        display: block !important;
    }
}
@media (max-width: 1024px) {
    .menu-toggle { display: flex; }
    .header-logo-img { height: 55px; }
    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        position: relative;
        background-color: #fff;
        flex-direction: column;
        gap: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 0 10px 15px rgba(0,0,0,0.05);
    }
    .nav-menu.active { max-height: 500px; padding: 20px 0; }
    .nav-menu li { width: 100%; text-align: center; }
    .nav-link { display: block; padding: 18px; font-size: 1.25rem; border-bottom: 1px solid #f5f5f5; }
    .header-right .btn-header { display: none; }
    .mobile-only-btn { display: block !important; }
}

/* ════════════════════════════════════════════════
   HOME — HERO
   ════════════════════════════════════════════════ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    overflow: hidden;
}
.hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        rgba(15, 23, 42, 0.65),
        rgba(15, 23, 42, 0.78)
    );
    z-index: 1;
}
.hero__content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 0 20px;
}

.hero__eyebrow {
    display: inline-block;
    font-size: 11px;
    font-weight: 800; /* más gruesa */
    letter-spacing: 0.18em;
    text-transform: uppercase;

    color: #ffffff; /* blanco puro */

    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.35);

    padding: 6px 18px;
    border-radius: 40px;
    margin-bottom: 2rem;

    text-shadow: 0 1px 6px rgba(0,0,0,0.45); 
}

.hero__title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.8rem, 6.5vw, 4.8rem);
    font-weight: 700;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 1.25rem;
    text-shadow: 0 18px 60px rgba(0,0,0,0.85);
}
.hero__title em {
    color: var(--orange);
    font-style: italic;

    font-size: 1.15em; 
    font-weight: 800;   

    text-shadow: 0 2px 10px rgba(0,0,0,0.35);
}

.hero__lead {
    font-size: 1.28rem; 
    font-weight: 600; 

    color: #ffffff;
    max-width: 540px;
    margin: 0 auto 2.8rem;
    line-height: 1.7;

    text-shadow: 0 2px 8px rgba(0,0,0,0.35);
}

.hero__btns {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}
/* ════════════════════════════════════════════════
   HOME — MARQUEE
   ════════════════════════════════════════════════ */
.marquee-wrap {
    background: var(--navy);
    padding: 18px 0;
    overflow: hidden;
    display: flex;
    user-select: none;
}
.marquee-inner {
    display: flex;
    flex-shrink: 0;
    align-items: center;
    min-width: 100%;
    animation: marquee-scroll 30s linear infinite;
}
.marquee-inner span {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.13em;
    text-transform: uppercase;
    color: var(--peach);
    padding: 0 40px;
    flex-shrink: 0;
}
.marquee-inner span::before {
    content: '✦';
    margin-right: 15px;
    color: var(--orange);
}
@keyframes marquee-scroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-100%); }
}
.marquee-wrap:hover .marquee-inner { animation-play-state: paused; }

/* ════════════════════════════════════════════════
   HOME — WHY
   ════════════════════════════════════════════════ */
.hm-why { background: #fff; }
.why-header { text-align: center; margin-bottom: 3.5rem; }
.why-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 24px; }
.why-card {
    background: var(--peach);
    border-radius: var(--radius-lg);
    padding: 2.2rem 1.8rem;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(239,122,13,0.15);
}
.why-card::before {
    content: '';
    position: absolute;
    top: -40px;
    right: -40px;
    width: 120px;
    height: 120px;
    background: rgba(239,122,13,0.08);
    border-radius: 50%;
}
.why-icon {
    width: 52px;
    height: 52px;
    background: var(--navy);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    font-size: 20px;
    color: var(--peach);
}
.why-card h3 { font-size: 1.05rem; font-weight: 700; color: var(--dark); margin-bottom: 0.6rem; }
.why-card p  { font-size: 0.88rem; color: var(--gray); line-height: 1.7; }

/* ════════════════════════════════════════════════
   HOME — SERVICES
   ════════════════════════════════════════════════ */
.hm-services { background: var(--peach); }
.services-header { margin-bottom: 3rem; }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 20px; margin-bottom: 2.5rem; }
.svc-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 1.8rem 1.5rem;
    border: 1px solid rgba(47,58,143,0.1);
    transition: transform 0.18s;
}
.svc-card:hover { transform: translateY(-4px); }
.svc-icon {
    width: 48px;
    height: 48px;
    background: rgba(47,58,143,0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    font-size: 20px;
    color: var(--navy);
}
.svc-card h4 { font-size: 0.95rem; font-weight: 700; color: var(--dark); margin-bottom: 0.5rem; }
.svc-card p  { font-size: 0.82rem; color: #666; line-height: 1.65; }



/* ════════════════════════════════════════════════
   HOME — STATS
   ════════════════════════════════════════════════ */
.hm-stats { background: var(--navy); padding: 3.5rem 2rem; }
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 24px;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}
.stat-num {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.4rem, 4vw, 3.2rem);
    font-weight: 700;
    color: var(--peach);
    line-height: 1;
}
.stat-label {
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(254,236,233,0.6);
    margin-top: 0.4rem;
}

/* ════════════════════════════════════════════════
   HOME — COMMUNITY
   ════════════════════════════════════════════════ */
.hm-community { background: var(--white); padding: 4rem 2rem; }
.community-card {
    background: var(--peach);
    border-radius: var(--radius-lg);
    padding: 3rem 2.5rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    max-width: 900px;
    margin: 0 auto;
    border: 1px solid rgba(239,122,13,0.12);
}
.comm-avatars { display: flex; align-items: center; margin-bottom: 12px; }
.comm-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--navy);
    border: 3px solid var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
    color: var(--peach);
    margin-left: -10px;
}
.comm-avatar:first-child { margin-left: 0; }
.comm-avatar.alt  { background: var(--orange); }
.comm-avatar.alt2 { background: var(--teal); }
.comm-count { font-size: 12px; color: #888; margin-left: 10px; }
.comm-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--white);
    border-radius: 40px;
    padding: 8px 14px;
    font-size: 12px;
    font-weight: 600;
    color: var(--navy);
    border: 1px solid rgba(47,58,143,0.15);
    margin-bottom: 12px;
}
.comm-dot { width: 8px; height: 8px; border-radius: 50%; background: #22c55e; flex-shrink: 0; }

/* ════════════════════════════════════════════════
   HOME — CTA
   ════════════════════════════════════════════════ */
.hm-cta {
    background: #fff;
    padding: 5rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(0,0,0,0.05);
}
.hm-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(0,0,0,0.04) 1px, transparent 1px);
    background-size: 30px 30px;
}
.hm-cta .tag { color: var(--navy); background: rgba(47,58,143,0.08); border-color: rgba(47,58,143,0.15); }
.hm-cta .section-title { color: var(--dark); }
.hm-cta .section-title em { color: var(--orange); }
.hm-cta p { color: #555; max-width: 540px; margin: 0 auto 2.5rem; line-height: 1.7; font-size: 1rem; }

/* ════════════════════════════════════════════════
   HOME — REVEAL ANIMATION
   ════════════════════════════════════════════════ */
.hm-reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.55s ease, transform 0.55s ease; }
.hm-reveal.hm-visible { opacity: 1; transform: translateY(0); }

/* ════════════════════════════════════════════════
   HOME — RESPONSIVE
   ════════════════════════════════════════════════ */
@media (max-width: 640px) {
    .community-card { grid-template-columns: 1fr; }
    .hero__btns { flex-direction: column; align-items: center; }
    .section { padding: 3.5rem 1.25rem; }
}

/* ════════════════════════════════════════════════
   ABOUT — HERO
   ════════════════════════════════════════════════ */
.ab-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background-color: #0f0f1a;
    margin: 0;
    padding: 0;
}
.ab-hero__bg-img {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0.5;
    z-index: 1;
    display: block;
}
.ab-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.8) 100%);
    z-index: 2;
}
.ab-hero__content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 900px;
    padding: 0 20px;
}
.ab-hero__eyebrow {
    display: block;
    color: #e6796d;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 800;
    margin-bottom: 15px;
    font-size: 14px;
}
.ab-hero__title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(3.5rem, 8vw, 6rem);
    color: #ffffff;
    line-height: 1;
    margin-bottom: 20px;
    text-shadow: 0 10px 30px rgba(0,0,0,0.5);
}
.ab-hero__title span {
    color: transparent;
    -webkit-text-stroke: 1.5px #e6796d;
    font-style: italic;
}
.ab-hero__sub {
    color: rgba(255,255,255,0.8);
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 40px;
}
.ab-hero__btns { display: flex; gap: 15px; justify-content: center; flex-wrap: wrap; }
.ab-btn-solid {
    background: #e6796d;
    color: #fff;
    padding: 16px 35px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    display: inline-block;
}
.ab-btn-glass {
    background: rgba(255,255,255,0.1);
    color: #fff;
    padding: 16px 35px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    display: inline-block;
    border: 1px solid rgba(255,255,255,0.3);
    backdrop-filter: blur(10px);
}

/* ════════════════════════════════════════════════
   ABOUT — MARQUEE
   ════════════════════════════════════════════════ */
.ab-marquee-wrap { background: #e6796d; padding: 12px 0; overflow: hidden; white-space: nowrap; }
.ab-marquee-inner { display: inline-block; animation: abMarquee 20s linear infinite; }
.ab-marquee-inner span {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #fff;
    margin: 0 32px;
}
.ab-marquee-inner span::before { content: '◆'; margin-right: 14px; font-size: 8px; }
@keyframes abMarquee { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }

/* ════════════════════════════════════════════════
   ABOUT — TAG (override with dot)
   ════════════════════════════════════════════════ */
.ab-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--navy);
    background: rgba(47,58,143,0.08);
    border: 1px solid rgba(47,58,143,0.18);
    padding: 5px 14px 5px 10px;
    border-radius: 40px;
    margin-bottom: 1.25rem;
}
.ab-tag::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--navy); }

/* ════════════════════════════════════════════════
   ABOUT — STORY
   ════════════════════════════════════════════════ */
.ab-story { background: var(--peach); }
.ab-story__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.ab-story__text p { font-size: 0.9rem; color: #000000; line-height: 1.85; margin-bottom: 1rem; }
.ab-story__btns { display: flex; gap: 12px; margin-top: 2rem; flex-wrap: wrap; }
.ab-stats-mosaic { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.ab-stat-block { border-radius: 20px; padding: 1.8rem 1.5rem; position: relative; overflow: hidden; }
.ab-stat-block:nth-child(1) { background: var(--navy); }
.ab-stat-block:nth-child(2) { background: #e6796d; }
.ab-stat-block:nth-child(3) { background: var(--orange); border: 1px solid rgba(47,58,143,0.15); }
.ab-stat-block:nth-child(4) { background: var(--navy); }
.ab-stat-num  { font-family: 'Playfair Display', serif; font-size: 2.6rem; font-weight: 900; color: #fff; line-height: 1; }
.ab-stat-block:nth-child(3) .ab-stat-num { color: var(--ce-bg-soft); }
.ab-stat-lbl  { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,255); margin-top: 0.4rem; }
.ab-stat-block:nth-child(3) .ab-stat-lbl { color: #ffffff; }

/* ════════════════════════════════════════════════
   ABOUT — WHY
   ════════════════════════════════════════════════ */
.ab-why { background: #fff; position: relative; overflow: hidden; }
.ab-why::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 30%, rgba(47,58,143,0.06), transparent 40%),
                radial-gradient(circle at 80% 70%, rgba(230,121,109,0.08), transparent 40%);
    pointer-events: none;
}
.ab-why-header { text-align: center; max-width: 620px; margin: 0 auto 4.5rem; position: relative; z-index: 1; }
.ab-why-header p { font-size: 0.95rem; color: #666; line-height: 1.8; }
.ab-bento { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 22px; position: relative; z-index: 1; }
.ab-f-card {
    border-radius: 22px;
    padding: 2.2rem 1.8rem;
    position: relative;
    overflow: hidden;
    background: #fff;
    border: 1px solid rgba(47,58,143,0.08);
    transition: all 0.3s ease;
}
.ab-f-card:hover { transform: translateY(-8px) scale(1.01); box-shadow: 0 30px 80px rgba(0,0,0,0.08); }
.ab-f-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(230,121,109,0.12), transparent 50%);
    opacity: 0;
    transition: opacity 0.3s;
}
.ab-f-card:hover::after { opacity: 1; }
.ab-feat-num {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: 900;
    color: rgba(47,58,143,0.06);
    position: absolute;
    top: 10px;
    right: 16px;
}
.ab-feat-icon {
    width: 52px;
    height: 52px;
    border-radius: 16px;

    background: #ffffff; 
    color: var(--navy);

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 19px;
    margin-bottom: 1.2rem;

    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}
.ab-f-card h3 {
    font-size: 1.05rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 8px rgba(0,0,0,0.30);
}

.ab-f-card p {
    font-size: 0.88rem;
    font-weight: 600;
    color: #ffffff;
    line-height: 1.75;
    text-shadow: 0 2px 8px rgba(0,0,0,0.25);
}

/* Card 2 */
.ab-f-card:nth-child(2) {
    background: linear-gradient(135deg, #ffffff, #ffffff);
}

.ab-f-card:nth-child(2) h3,
.ab-f-card:nth-child(2) p {
    color: #ffffff;
}

.ab-f-card:nth-child(2) .ab-feat-icon {
    background: rgba(255,255,255,1);
    color: var(--navy); /* emoji azul */
}

/* Card 3 */
.ab-f-card:nth-child(3) {
    background: linear-gradient(135deg, #FA8072, #e6796d);
}

.ab-f-card:nth-child(3) h3,
.ab-f-card:nth-child(3) p {
    color: #ffffff;
}

.ab-f-card:nth-child(3) .ab-feat-icon {
    background: rgba(255,255,255,1);
    color: var(--navy); /* emoji azul */
}
/* ════════════════════════════════════════════════
   ABOUT — MISSION
   ════════════════════════════════════════════════ */
.ab-mission { background: var(--peach); padding: 6rem 2rem; }
.ab-mission-inner {
    max-width: 820px;
    margin: 0 auto;
    background: #fff;
    border-radius: 28px;
    padding: 3.5rem 3rem;
    text-align: center;
    border: 1px solid rgba(47,58,143,0.08);
    box-shadow: 0 25px 70px rgba(0,0,0,0.05);
}
.ab-mission .section-title { color: #1a1a2e; }
.ab-mission .section-title em { color: #e6796d; }
.ab-mission-divider { display: flex; align-items: center; gap: 16px; justify-content: center; margin: 2rem 0; }
.ab-mission-divider span { height: 1px; width: 60px; background: rgba(47,58,143,0.15); }
.ab-mission-divider i { color: #e6796d; }
.ab-mission p { font-size: 0.95rem; color: #555; line-height: 1.8; margin-bottom: 1rem; }
.ab-mission-tagline { font-family: 'Playfair Display', serif; font-size: 1.3rem; font-style: italic; color: var(--navy); margin-top: 2rem; display: block; }
.ab-mission-author { display: block; font-size: 0.75rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: #999; margin-top: 0.8rem; }

/* ════════════════════════════════════════════════
   ABOUT — CTA
   ════════════════════════════════════════════════ */
.ab-cta-section { background: var(--peach); padding: 6rem 2rem; }
.ab-cta-box {
    background: var(--white);
    border-radius: 28px;
    padding: 4rem 3rem;
    text-align: center;
    max-width: 780px;
    margin: 0 auto;
    border: 1px solid rgba(47,58,143,0.1);
    position: relative;
    overflow: hidden;
}
.ab-cta-box::before {
    content: '';
    position: absolute;
    top: -80px; right: -80px;
    width: 220px; height: 220px;
    background: rgba(254,236,233,0.8);
    border-radius: 50%;
}
.ab-cta-box::after {
    content: '';
    position: absolute;
    bottom: -60px; left: -60px;
    width: 180px; height: 180px;
    background: rgba(47,58,143,0.05);
    border-radius: 50%;
}
.ab-cta-inner { position: relative; z-index: 1; }
.ab-cta-inner h3 { font-family: 'Playfair Display', serif; font-size: 2.2rem; font-weight: 700; color: #1a1a2e; margin-bottom: 0.75rem; }
.ab-cta-inner p  { font-size: 0.92rem; color: #666; line-height: 1.75; max-width: 440px; margin: 0 auto 2rem; }

/* ════════════════════════════════════════════════
   ABOUT — REVEAL
   ════════════════════════════════════════════════ */
.ab-reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease, transform 0.6s ease; }
.ab-reveal.ab-visible { opacity: 1; transform: translateY(0); }

/* ════════════════════════════════════════════════
   ABOUT — RESPONSIVE
   ════════════════════════════════════════════════ */
@media (max-width: 700px) {
    .ab-story__grid { grid-template-columns: 1fr; }
    .ab-bento { grid-template-columns: 1fr 1fr; }
    .ab-hero__btns { flex-direction: column; align-items: center; }
    .ab-cta-box { padding: 2.5rem 1.5rem; }
}

/* ════════════════════════════════════════════════
   LICENSING — HERO
   ════════════════════════════════════════════════ */
:root {
    --li-peach:  #FFF0EB;
    --li-navy:   #1E2A5E;
    --li-orange: #e6796d;;
    --li-dark:   #0F172A;
}
.li-hero {
    min-height: 100vh;
    background: linear-gradient(rgba(15, 23, 42, 0.85), rgba(15, 23, 42, 0.95)),
                #0f172a;
    display: flex;
    align-items: center;
    position: relative;
}
.li-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 35% 30%, rgba(255,107,53,0.20), transparent 65%);
}
.li-hero__content {
    position: relative;
    z-index: 2;
    max-width: 920px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
    color: white;
}
.li-hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--li-orange);
    margin-bottom: 1.6rem;
}
.li-hero__eyebrow::before,
.li-hero__eyebrow::after {
    content: '';
    height: 1px;
    width: 70px;
    background: rgba(255,255,255,0.45);
}
.li-hero__title {
    font-size: clamp(3.6rem, 7.5vw, 5.8rem);
    line-height: 1.05;
    margin-bottom: 1.4rem;
    text-shadow: 0 12px 35px rgba(0,0,0,0.5);
    font-family: 'Playfair Display', serif;
    font-weight: 900;
}
.li-hero__title span {
    -webkit-text-stroke: 2.5px var(--li-orange);
    color: transparent;
    font-style: italic;
}
.li-hero__sub {
    font-size: 1.28rem;
    max-width: 680px;
    margin: 0 auto 3.2rem;
    opacity: 0.93;
}
.li-hero__btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.btn-li-orange {
    background: linear-gradient(135deg, var(--li-orange), #FF8A5C);
    color: white;
    padding: 16px 38px;
    border-radius: 60px;
    font-weight: 600;
    font-size: 1.05rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
}
.btn-li-orange:hover { transform: translateY(-6px); }
.btn-li-glass {
    background: rgba(255,255,255,0.12);
    color: white;
    border: 1px solid rgba(255,255,255,0.4);
    backdrop-filter: blur(10px);
    padding: 16px 38px;
    border-radius: 60px;
    font-weight: 600;
    font-size: 1.05rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
}
.btn-li-glass:hover { background: rgba(255,255,255,0.25); }

/* ════════════════════════════════════════════════
   LICENSING — MARQUEE
   ════════════════════════════════════════════════ */
.sv-marquee-wrap {
    background: linear-gradient(90deg, var(--li-navy), #2C3E8C);
    padding: 18px 0;
    overflow: hidden;
}
.sv-marquee-inner {
    display: inline-flex;
    animation: marquee 38s linear infinite;
    white-space: nowrap;
}
.sv-marquee-inner span {
    color: white;
    font-weight: 600;
    font-size: 15px;
    margin: 0 45px;
    text-transform: uppercase;
    letter-spacing: 1.2px;
}
@keyframes marquee {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

/* ════════════════════════════════════════════════
   LICENSING — SECTION / CARDS
   ════════════════════════════════════════════════ */
.li-section { padding: 7.5rem 2rem; }
.li-inner { max-width: 1280px; margin: 0 auto; }
.section-header { text-align: center; max-width: 720px; margin: 0 auto 4rem; }
.li-tag {
    background: #FFF0EB;
    color: var(--li-orange);
    padding: 9px 24px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 13px;
    display: inline-block;
}
.li-section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.8rem, 5.5vw, 4.2rem);
    font-weight: 900;
    margin-top: 1rem;
    color: var(--li-dark);
    line-height: 1.1;
}
.li-section-title em { color: var(--li-orange); font-style: italic; }

.sv-grid { display: grid; gap: 28px; margin-top: 2rem; }
.sv-grid--2 { grid-template-columns: repeat(auto-fit, minmax(480px, 1fr)); }

.sv-card {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    transition: all 0.4s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}
.sv-card:hover { transform: translateY(-15px); box-shadow: 0 30px 65px rgba(0,0,0,0.16); }
.sv-card-image { height: 200px; background-size: cover; background-position: center; }
.sv-card-content { padding: 2rem; flex: 1; display: flex; flex-direction: column; }
.sv-card-icon {
    width: 58px; height: 58px;
    background: var(--li-peach);
    color: #e6796d;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin-bottom: 1.3rem;
}
.sv-card h3 { font-family: 'Playfair Display', serif; font-size: 1.55rem; margin-bottom: 1rem; color: var(--li-dark); }
.sv-card p  { color: #64748B; margin-bottom: 1.6rem; }
.sv-list { list-style: none; margin-bottom: 2rem; }
.sv-list li { padding: 7px 0 7px 28px; position: relative; }
.sv-list li::before {
    content: '';
    position: absolute;
    left: 6px; top: 12px;
    width: 7px; height: 7px;
    background: #e6796d;
    border-radius: 50%;
}
.sv-btn {
    margin-top: auto;
    padding: 14px 32px;
    background: var(--li-navy);
    color: white;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: background 0.2s;
}
.sv-btn:hover { background: var(--li-orange); }

/* Licensing final CTA */
.li-final-cta { background: white; padding: 5rem 2rem; text-align: center; }
.li-final-cta h2 { font-family: 'Playfair Display', serif; font-size: 3rem; color: var(--li-orange); margin-bottom: 1.5rem; font-weight: 900; }
.li-final-cta p  { font-size: 1.25rem; color: #475569; max-width: 620px; margin: 0 auto 2.5rem; }

/* ════════════════════════════════════════════════
   RESPONSIVE — LICENSING
   ════════════════════════════════════════════════ */
@media (max-width: 600px) {
    .sv-grid--2 { grid-template-columns: 1fr; }
    .li-hero__btns { flex-direction: column; align-items: center; }
}

/* ════════════════════════════════════════════════
   SERVICES — HERO
   ════════════════════════════════════════════════ */
/* ════════════════════════════════════════════════
   SERVICES — HERO (Estilo similar a Licensing)
   ════════════════════════════════════════════════ */
.sv-hero {
    min-height: 100vh;
    background: linear-gradient(rgba(15, 23, 42, 0.85), rgba(15, 23, 42, 0.95)),
                #0f172a;
    display: flex;
    align-items: center;
    position: relative;
}

.sv-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 35% 30%, rgba(255,107,53,0.20), transparent 65%);
}

.sv-hero__content {
    position: relative;
    z-index: 2;
    max-width: 920px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
    color: white;
}

.sv-hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #e6796d;         
    margin-bottom: 1.6rem;
}

.sv-hero__eyebrow::before,
.sv-hero__eyebrow::after {
    content: '';
    height: 1px;
    width: 70px;
    background: rgba(255,255,255,0.45);
}

.sv-hero__title {
    font-size: clamp(3.6rem, 7.5vw, 5.8rem);
    line-height: 1.05;
    margin-bottom: 1.4rem;
    text-shadow: 0 12px 35px rgba(0,0,0,0.5);
    font-family: 'Playfair Display', serif;
    font-weight: 900;
}

.sv-hero__title span {
    -webkit-text-stroke: 2.5px #e6796d;
    color: transparent;
    font-style: italic;
}

.sv-hero__sub {
    font-size: 1.28rem;
    max-width: 680px;
    margin: 0 auto 3.2rem;
    opacity: 0.93;
}

.sv-hero__btns { 
    display: flex; 
    gap: 14px; 
    justify-content: center; 
    flex-wrap: wrap; 
}
/* ════════════════════════════════════════════════
   SERVICES — SHARED OVERRIDES
   (section/inner más anchos que el global 1060px)
   ════════════════════════════════════════════════ */
.sv-section { padding: 7.5rem 2rem; }
.sv-inner { max-width: 1280px; margin: 0 auto; }

.tag-orange {
    background: #FFF0EB;
    color: #e6796d;
    padding: 9px 24px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 13px;
    display: inline-block;
    margin-bottom: 0.8rem;
}

.sv-section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}
.sv-section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.7rem, 5vw, 4rem);
    font-weight: 900;
    margin-top: 0.8rem;
    color: var(--li-dark);
    line-height: 1.1;
}
.sv-section-title em { color: #e6796d; font-style: italic; }

/* ════════════════════════════════════════════════
   SERVICES — GRIDS & CARDS
   ════════════════════════════════════════════════ */
.sv-grid--3 { grid-template-columns: repeat(auto-fit, minmax(360px, 1fr)); }

/* sv-card ya existe, ampliamos variantes */
.sv-card-image {
    position: relative;          
    overflow: hidden;        
}

.sv-card-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent, rgba(0,0,0,0.25));
    pointer-events: none;         /* ← Esto evita que bloquee clics */
    z-index: 1;
}

.sv-card-content {
    position: relative;
    z-index: 2;
}
.sv-card-content { padding: 1.8rem 2rem 2rem; flex: 1; display: flex; flex-direction: column; }
.sv-card h3 { font-size: 1.45rem; margin-bottom: 0.9rem; color: var(--li-dark); }
.sv-card p  { color: #64748B; margin-bottom: 1.4rem; flex: 1; }
.sv-list li { color: #475569; font-size: 0.97rem; }

/* ════════════════════════════════════════════════
   SERVICES — PRICING (mini planes)
   ════════════════════════════════════════════════ */
.pricing-section { padding: 5rem 2rem; background: #fdf6f3; }
.mini-pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    max-width: 1100px;
    margin: 0 auto;
}
.mini-plan {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid #eee;
    text-align: center;
    transition: 0.3s;
}
.mini-plan:hover { border-color: var(--li-orange); transform: translateY(-5px); }
.mini-plan h3 { font-size: 1.2rem; color: var(--li-navy); margin-bottom: 0.5rem; }
.mini-price { font-size: 2.2rem; font-weight: 900; color: var(--li-dark); margin-bottom: 1.5rem; }
.mini-price span { font-size: 0.9rem; opacity: 0.6; }
.mini-list { list-style: none; text-align: left; margin-bottom: 2rem; }
.mini-list li { font-size: 0.85rem; color: #64748B; margin-bottom: 8px; display: flex; gap: 8px; align-items: center; }
.mini-list i { color: #10B981; font-size: 0.8rem; }
.mini-btn {
    display: block;
    padding: 10px;
    background: var(--li-navy);
    color: white;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
}
.mini-btn:hover { background: var(--li-orange); }

/* ════════════════════════════════════════════════
   SERVICES — FINAL CTA
   ════════════════════════════════════════════════ */
.sv-final-cta {
    background: white;
    padding: 8rem 2rem;
    text-align: center;
}
.sv-final-cta h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3.2rem;
    font-weight: 900;
    color: var(--li-dark);
    margin-bottom: 1.5rem;
}
.sv-final-cta p {
    font-size: 1.25rem;
    color: #475569;
    max-width: 620px;
    margin: 0 auto 2.5rem;
}

/* ════════════════════════════════════════════════
   SERVICES — RESPONSIVE
   ════════════════════════════════════════════════ */
@media (max-width: 600px) {
    .sv-grid--3 { grid-template-columns: 1fr; }
    .sv-hero__btns { flex-direction: column; align-items: center; }
}

/* ════════════════════════════════════════════════
   CONTACT — HERO
   ════════════════════════════════════════════════ */
.co-hero {
    min-height: 100vh;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    display: flex;
    align-items: center;
}
.co-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(10, 15, 30, 0.75), rgba(10, 15, 30, 0.85));
    z-index: 1;
}
.co-hero__content {
    position: relative;
    z-index: 2;
    max-width: 960px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
    color: white;
}
.co-hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--li-orange);
    margin-bottom: 2rem;
}
.co-hero__eyebrow::before,
.co-hero__eyebrow::after {
    content: '';
    height: 2px;
    width: 90px;
    background: rgba(255,255,255,0.75);
}
.co-hero__title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(4.2rem, 9vw, 7rem);
    font-weight: 900;
    line-height: 1.05;
    margin-bottom: 1.6rem;
    text-shadow: 0 20px 60px rgba(0,0,0,0.75);
}
.co-hero__title span {
    -webkit-text-stroke: 4px var(--li-orange);
    color: transparent;
    font-style: italic;
}
.co-hero__sub {
    font-size: 1.45rem;
    max-width: 720px;
    margin: 0 auto 4.5rem;
    opacity: 0.97;
}
.co-hero__btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* Botones específicos de Contact (más grandes) */
.btn-co {
    padding: 18px 46px;
    border-radius: 60px;
    font-weight: 600;
    font-size: 1.12rem;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.4s ease;
    text-decoration: none;
}
.btn-co-orange {
    background: linear-gradient(135deg, var(--li-orange), #FF8A5C);
    color: white;
    box-shadow: 0 15px 40px rgba(255,107,53,0.45);
}
.btn-co-orange:hover { transform: translateY(-8px); }
.btn-co-outline {
    background: transparent;
    color: white;
    border: 2px solid rgba(255,255,255,0.9);
}
.btn-co-outline:hover { background: white; color: var(--li-navy); }

/* ════════════════════════════════════════════════
   CONTACT — FORM SECTION
   ════════════════════════════════════════════════ */
.co-checkboxes {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px 20px;
    justify-items: start;
}
.co-checkbox {
    display: flex;
    align-items: center;
    justify-content: flex-start; 
    gap: 10px;
    width: fit-content;
}
.co-checkboxes label {
    justify-self: start;
}
.co-checkbox__box {
    width: 18px;
    height: 18px;
    display: inline-block;
    flex-shrink: 0;
}

@media (max-width: 600px) {
    .co-checkboxes {
        grid-template-columns: 1fr;
    }
}
.co-section { padding: 9rem 2rem; }
.co-inner { max-width: 1280px; margin: 0 auto; }
.co-contact__grid {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 80px;
}
.co-info__card,
.co-form__card {
    background: white;
    border-radius: 28px;
    padding: 3rem;
    box-shadow: 0 20px 60px rgba(0,0,0,0.12);
}
.co-info__card h3,
.co-form__card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.85rem;
    font-weight: 900;
    margin-bottom: 2.2rem;
    color: var(--li-orange);
}
.co-info__item { display: flex; gap: 20px; margin-bottom: 2rem; }
.co-info__item strong { display: block; font-weight: 700; color: var(--li-dark); margin-bottom: 4px; }
.co-info__item a,
.co-info__item span { color: #64748B; font-size: 0.95rem; }
.co-info__icon {
    width: 56px;
    height: 56px;
    background: #FFF0EB;
    color: #e6796d;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}
.co-form__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 26px;
}
.co-form__field { margin-bottom: 2.2rem; }
.co-form__field label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    color: var(--li-dark);
}
.co-form__field input,
.co-form__field select,
.co-form__field textarea {
    width: 100%;
    padding: 16px 22px;
    border: 2px solid #e2e8f0;
    border-radius: 16px;
    font-size: 1.05rem;
    font-family: 'Inter', sans-serif;
    transition: border-color 0.2s;
    outline: none;
}
.co-form__field input:focus,
.co-form__field select:focus,
.co-form__field textarea:focus { border-color: #e6796d;}
.co-submit {
    background: var(--li-navy);
    color: white;
    border: none;
    padding: 18px 50px;
    border-radius: 60px;
    font-weight: 600;
    font-size: 1.12rem;
    width: 100%;
    cursor: pointer;
    margin-top: 1rem;
    transition: background 0.2s;
    font-family: 'Inter', sans-serif;
}
.co-submit:hover { background:#e6796d;}

/* ════════════════════════════════════════════════
   CONTACT — RESPONSIVE (fix completo)
   ════════════════════════════════════════════════ */
@media (max-width: 900px) {
    .co-contact__grid { 
        grid-template-columns: 1fr; 
        gap: 30px; 
    }
    .co-hero__btns { 
        flex-direction: column; 
        align-items: center; 
    }
}

@media (max-width: 600px) {
    #contact-form { 
        scroll-margin-top: 80px; 
    }

    .co-section { 
        padding: 2.5rem 1rem; 
    }

    .co-inner { 
        width: 100%; 
        padding: 0; 
    }

    .co-contact__grid { 
        gap: 20px; 
    }
.co-info__badge {
    display: flex !important;
    align-items: flex-start;
    gap: 12px;
    padding: 15px;
    border: 2px solid #FA8072 !important;
    border-radius: 12px;
    background: #ffffff !important;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.co-info__badge i {
    color: #FA8072 !important;
    font-size: 18px;
    margin-top: 3px;
}

.co-info__badge strong {
    font-size: 18px;
    display: block;
    margin-bottom: 6px;
    color: #1f2937;
}

.co-info__badge p {
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
    color: #4b5563;
}
.co-info__badge {
    border: 3px solid red !important;
}
    .co-info__card,
    .co-form__card { 
        padding: 1.5rem 1.2rem;
        border-radius: 16px;
        width: 100%;
        box-sizing: border-box;
    }

    .co-form__row { 
        display: flex;
        flex-direction: column;
        gap: 0;
    }

    .co-form__field { 
        margin-bottom: 1rem; 
        width: 100%;
    }

    .co-form__field input,
    .co-form__field select,
    .co-form__field textarea { 
        font-size: 16px; /* evita zoom en iOS */
        padding: 13px 14px;
        width: 100%;
        box-sizing: border-box;
        border-radius: 12px;
    }

    .co-form__card h3,
    .co-info__card h3 {
        font-size: 1.4rem;
        margin-bottom: 1.5rem;
    }

    .co-submit { 
        padding: 16px;
        font-size: 1rem;
        width: 100%;
        border-radius: 40px;
    }

    /* Hero móvil */
    .co-hero__content {
        padding: 0 1rem;
    }
    .co-hero__title { 
        font-size: clamp(2.4rem, 9vw, 3.2rem); 
    }
    .co-hero__sub { 
        font-size: 1rem; 
        margin-bottom: 2rem;
    }
    .co-hero__btns { 
        flex-direction: column; 
        align-items: center; 
        gap: 12px;
    }
    .btn-co { 
        width: 100%; 
        max-width: 300px; 
        justify-content: center; 
        padding: 15px 20px; 
        font-size: 1rem;
    }
}
/* ════════════════════════════════════════════════
   BUSINESS TAX RECEIPT — VARIABLES & BASE
   ════════════════════════════════════════════════ */
:root {
    --ce-navy:      #0f172a;
    --ce-salmon:    #e6796d;
    --ce-gold:      #c5a059;
    --ce-white:     #ffffff;
    --ce-text:      #334155;
    --ce-bg-soft:   #fcfaf9;
    --ce-transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}
/* body override para páginas BTR (fondo blanco) */
body.page-btr { background-color: var(--ce-white); color: var(--ce-text); line-height: 1.6; }
body.page-btr em { font-style: italic; color: var(--ce-salmon); font-family: 'Playfair Display', serif; }
body.page-btr h1,
body.page-btr h2,
body.page-btr h3 { font-family: 'Playfair Display', serif; font-weight: 900; line-height: 1.1; }

/* ════════════════════════════════════════════════
   BTR — HERO
   ════════════════════════════════════════════════ */
.ce-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(rgba(15,23,42,0.85), rgba(15,23,42,0.95)),
                url('https://images.unsplash.com/photo-1450101499163-c8848c66ca85?auto=format&fit=crop&w=1545&q=80') center/cover no-repeat fixed;
    color: var(--ce-white);
    text-align: center;
    padding: 100px 20px;
}
.ce-hero__content { position: relative; z-index: 5; max-width: 950px; margin: 0 auto; }
.ce-breadcrumb {
    color: var(--ce-white);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.7;
    display: inline-block;
    margin-bottom: 20px;
    text-decoration: none;
    transition: 0.3s;
}
.ce-breadcrumb:hover { opacity: 1; color: var(--ce-salmon); }
.ce-eyebrow {
    display: block;
    color: var(--ce-salmon);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 6px;
    font-size: 0.85rem;
    margin-bottom: 15px;
}
.ce-hero__title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(3rem, 8vw, 5.5rem);
    font-weight: 900;
    line-height: 1.05;
    margin-bottom: 30px;
}
.ce-hero__title span { color: transparent; -webkit-text-stroke: 1px var(--ce-white); opacity: 0.8; }
.ce-hero__sub {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    max-width: 800px;
    margin: 0 auto 40px;
    font-weight: 300;
    opacity: 0.9;
}
.ce-hero__cta { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ════════════════════════════════════════════════
   BTR — BUTTONS
   ════════════════════════════════════════════════ */
.ce-btn {
    display: inline-flex;
    padding: 18px 45px;
    border-radius: 100px;
    font-weight: 700;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--ce-transition);
    text-decoration: none;
    align-items: center;
    gap: 10px;
    border: none;
    cursor: pointer;
}
.ce-btn--white {
    background: var(--ce-white);
    color: var(--ce-navy);
    border: 2px solid #e6796d;
}
.ce-btn--white:hover { transform: translateY(-5px); background: var(--ce-salmon); color: var(--ce-white); }
.ce-btn--outline-white { border: 1px solid rgba(255,255,255,0.4); color: var(--ce-white); }
.ce-btn--primary { background: var(--ce-navy); color: var(--ce-white); }
.ce-btn--primary:hover { background: var(--ce-salmon); transform: translateY(-3px); box-shadow: 0 15px 30px rgba(230,121,109,0.3); }

/* ════════════════════════════════════════════════
   BTR — SECTIONS
   ════════════════════════════════════════════════ */
.ce-section { padding: 120px 20px; position: relative; }
.ce-inner { max-width: 1200px; margin: 0 auto; }
.ce-tag {
    color: var(--ce-salmon);
    font-weight: 800;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    display: block;
    margin-bottom: 15px;
}
.ce-section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    color: var(--ce-navy);
    line-height: 1.1;
    margin-bottom: 35px;
}

/* ════════════════════════════════════════════════
   BTR — INTRO GRID
   ════════════════════════════════════════════════ */
.ce-intro__grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 80px; align-items: center; }
.ce-intro__img-wrap {
    position: relative;
    border-radius: 20px;
    padding: 20px;
    background: #f8fafc;
}
.ce-intro__img-wrap img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.1);
    display: block;
}
.ce-intro__img-badge {
    position: absolute;
    bottom: -20px;
    left: -20px;
    background: var(--ce-navy);
    color: #fff;
    padding: 25px;
    border-radius: 20px;
    font-weight: 800;
    font-size: 0.8rem;
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
    text-align: center;
}
.ce-intro__img-badge i { color: var(--ce-salmon); margin-bottom: 10px; font-size: 1.5rem; display: block; }

/* ════════════════════════════════════════════════
   BTR — WHY GRID
   ════════════════════════════════════════════════ */
.ce-why { background: var(--ce-bg-soft); }
.ce-why__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; margin-top: 60px; }
.ce-why__item {
    background: var(--ce-white);
    padding: 50px 40px;
    border-radius: 30px;
    transition: var(--ce-transition);
    border: 1px solid #e2e8f0;
}
.ce-why__item:hover { border-color: var(--ce-salmon); transform: translateY(-10px); }
.ce-why__icon { font-size: 2.5rem; color: var(--ce-salmon); margin-bottom: 25px; }
.ce-why__item strong { display: block; font-size: 1.4rem; margin-bottom: 15px; color: var(--ce-navy); font-family: 'Playfair Display', serif; }

/* ════════════════════════════════════════════════
   BTR — SERVICES GRID
   ════════════════════════════════════════════════ */
.ce-services__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px; margin-top: 60px; }
.ce-service-card {
    align-items: center;
    text-align: center;
    justify-content: center;
    width: 260px;
    height: 260px;
    margin: 0 0 0 37px; 
}
.ce-service-cards-container { 
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}
.ce-service-card:hover { border-color: var(--ce-navy); box-shadow: 0 20px 40px rgba(15,23,42,0.05); }
.ce-service-card h3 {
    display: flex;
    align-items: center;
    gap: 15px;
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--ce-navy);
}
.ce-service-card h3 i { color: var(--ce-gold); }

@media (max-width: 992px) {
    .ce-services__grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media (max-width: 600px) {
    .ce-services__grid {
        grid-template-columns: 1fr !important;
    }
}
/* ════════════════════════════════════════════════
   BTR — WHO IT'S FOR (dark section)
   ════════════════════════════════════════════════ */
.ce-who { background: var(--ce-navy); color: var(--ce-white); }
.ce-who .ce-section-title { color: var(--ce-white); }
.ce-who__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 40px; margin-top: 60px; }
.ce-who__item {
    display: flex;
    gap: 30px;
    align-items: flex-start;
    padding: 40px;
    background: rgba(255,255,255,0.05);
    border-radius: 20px;
    transition: 0.3s;
}
.ce-who__item:hover { background: rgba(255,255,255,0.08); }
.ce-who__num {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--ce-salmon);
    line-height: 1;
    opacity: 0.5;
    flex-shrink: 0;
}
.ce-who__body h3 { font-size: 1.5rem; margin-bottom: 10px; color: var(--ce-salmon); font-family: 'Playfair Display', serif; }

/* ════════════════════════════════════════════════
   BTR — FINAL CTA
   ════════════════════════════════════════════════ */
.ce-cta-clean {
    text-align: center;
    background-color: var(--ce-white);
    padding: 120px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.ce-cta-clean h3 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.2rem, 6vw, 4.5rem);
    color: var(--ce-salmon);
    font-weight: 900;
    margin-bottom: 25px;
    line-height: 1.1;
}
.ce-cta-clean p {
    color: var(--ce-navy);
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    max-width: 750px;
    margin: 0 auto 40px;
    opacity: 0.8;
}

/* ════════════════════════════════════════════════
   BTR — REVEAL
   ════════════════════════════════════════════════ */
.ce-reveal { opacity: 0; transform: translateY(30px); transition: 1s ease; }
.ce-visible { opacity: 1; transform: translateY(0); }

/* ════════════════════════════════════════════════
   BTR — RESPONSIVE
   ════════════════════════════════════════════════ */
@media (max-width: 1024px) {
    .ce-intro__grid  { grid-template-columns: 1fr; }
    .ce-why__grid    { grid-template-columns: 1fr; }
    .ce-services__grid { grid-template-columns: 1fr; }
    .ce-who__grid    { grid-template-columns: 1fr; }
}

/* ════════════════════════════════════════════════
   SUB-PAGES — SHARED (Catering, CK, EIN, Repair)
   ════════════════════════════════════════════════ */
body.page-subpage { background-color: var(--ce-white); color: var(--ce-text); line-height: 1.6; overflow-x: hidden; }
body.page-subpage em { font-style: italic; color: var(--ce-salmon); font-family: 'Playfair Display', serif; }
body.page-subpage h1, body.page-subpage h2, body.page-subpage h3 { font-family: 'Playfair Display', serif; font-weight: 900; line-height: 1.1; }

/* Ce-reveal (compartido con BTR pero también usado aquí) */
.ce-reveal { opacity: 0; transform: translateY(30px); transition: 1s ease; }
.ce-visible { opacity: 1; transform: translateY(0); }

/* ════════════════════════════════════════════════
   SUB-PAGES — HERO (estructura compartida)
   ════════════════════════════════════════════════ */
.sp-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ce-white);
    text-align: center;
    padding: 100px 20px;
}
.ce-hero__content { position: relative; z-index: 5; max-width: 950px; margin: 0 auto; }
.ce-breadcrumb { color: var(--ce-white); font-size: 0.8rem; text-transform: uppercase; letter-spacing: 2px; opacity: 0.7; display: inline-block; margin-bottom: 20px; text-decoration: none; transition: 0.3s; }
.ce-breadcrumb:hover { opacity: 1; color: var(--ce-salmon); }
.ce-eyebrow { display: block; color: var(--ce-salmon); font-weight: 800; text-transform: uppercase; letter-spacing: 6px; font-size: 0.85rem; margin-bottom: 15px; }
.ce-hero__title { font-family: 'Playfair Display', serif; font-size: clamp(3rem, 8vw, 5.5rem); line-height: 1.05; margin-bottom: 30px; font-weight: 900; }
.ce-hero__title span { color: transparent; -webkit-text-stroke: 1px var(--ce-white); opacity: 0.8; }
.ce-hero__sub { font-size: clamp(1.1rem, 2vw, 1.3rem); max-width: 800px; margin: 0 auto 40px; font-weight: 300; opacity: 0.9; }
.ce-hero__cta { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* Hero backgrounds por página */
.ce-hero--catering {
    background: linear-gradient(rgba(15,23,42,0.7), rgba(15,23,42,0.8)),
                url('../assets/img/catering-hero-bg.jpg') center/cover no-repeat fixed;
}
.ce-hero--ck {
    background: linear-gradient(rgba(15,23,42,0.7), rgba(15,23,42,0.9)),
                url('../assets/img/cont.jpg') center/cover no-repeat fixed;
}
.ce-hero--ein {
    background: linear-gradient(rgba(15,23,42,0.8), rgba(15,23,42,0.9)),
                url('https://images.unsplash.com/photo-1554224155-6726b3ff858f?auto=format&fit=crop&w=1600&q=80') center/cover no-repeat fixed;
}
.ce-hero--repair {
    background: linear-gradient(rgba(15,23,42,0.7), rgba(15,23,42,0.8)),
                url('https://images.unsplash.com/photo-1581092160562-40aa08e78837?auto=format&fit=crop&w=1600&q=80') center/cover no-repeat fixed;
}

/* ════════════════════════════════════════════════
   SUB-PAGES — BUTTONS
   ════════════════════════════════════════════════ */
.ce-btn { 
    display: inline-flex; padding: 18px 45px; border-radius: 100px; font-weight: 700; 
    font-size: 0.95rem; text-transform: uppercase; letter-spacing: 1px;
    transition: var(--ce-transition); text-decoration: none;
    align-items: center; gap: 10px; border: none; cursor: pointer;
}
.ce-btn--white        { background: var(--ce-white); color: var(--ce-navy); }
.ce-btn--white:hover  { transform: translateY(-5px); background: var(--ce-salmon); color: var(--ce-white); }
.ce-btn--outline-white { border: 1px solid rgba(255,255,255,0.4); color: var(--ce-white); }
.ce-btn--primary       { background: var(--ce-navy); color: var(--ce-white); }
.ce-btn--primary:hover { background: var(--ce-salmon); transform: translateY(-3px); box-shadow: 0 15px 30px rgba(230,121,109,0.3); }

/* ════════════════════════════════════════════════
   SUB-PAGES — SECTION BASE
   ════════════════════════════════════════════════ */
.ce-section  { padding: clamp(60px, 10vw, 120px) 20px; position: relative; }
.ce-inner    { max-width: 1200px; margin: 0 auto; }
.ce-tag      { color: var(--ce-salmon); font-weight: 800; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 3px; display: block; margin-bottom: 15px; }
.ce-section-title { font-family: 'Playfair Display', serif; font-size: clamp(2.5rem, 5vw, 4rem); color: var(--ce-navy); line-height: 1.1; margin-bottom: 35px; }

/* ════════════════════════════════════════════════
   SUB-PAGES — INTRO GRID
   ════════════════════════════════════════════════ */
.ce-intro__grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 80px; align-items: center; }
.ce-intro__img-wrap { position: relative; border-radius: 20px; padding: 20px; background: var(--ce-bg-soft); }
.ce-intro__img-wrap img { width: 100%; border-radius: 15px; box-shadow: 0 30px 60px rgba(0,0,0,0.1); display: block; }
.ce-intro__img-badge { position: absolute; bottom: -20px; left: -20px; background: var(--ce-navy); color: #fff; padding: 25px; border-radius: 20px; font-weight: 800; font-size: 0.8rem; box-shadow: 0 15px 30px rgba(0,0,0,0.2); text-align: center; }
.ce-intro__img-badge i { color: var(--ce-salmon); margin-bottom: 10px; font-size: 1.5rem; display: block; }

/* ════════════════════════════════════════════════
   SUB-PAGES — WHY GRID (3 columnas)
   ════════════════════════════════════════════════ */
.ce-why { background: var(--ce-bg-soft); }
.ce-why__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; margin-top: 60px; }
.ce-why__item { background: var(--ce-white); padding: 40px; border-radius: 20px; transition: 0.3s; border: 1px solid #eee; }
.ce-why__item:hover { transform: translateY(-10px); border-color: var(--ce-salmon); }
.ce-why__icon { font-size: 2rem; color: var(--ce-salmon); margin-bottom: 20px; }
.ce-why__item strong { font-size: 1.2rem; display: block; margin-bottom: 10px; color: var(--ce-navy); }

/* ════════════════════════════════════════════════
   SUB-PAGES — EVENTS GRID (Catering)
   ════════════════════════════════════════════════ */
.ce-events__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 60px; }
.ce-event { background: var(--ce-navy); color: #fff; padding: 35px; border-radius: 15px; text-align: center; transition: 0.3s; display: flex; flex-direction: column; align-items: center; gap: 15px; }
.ce-event:hover { background: var(--ce-salmon); }
.ce-event__icon { font-size: 2rem; color: rgba(255,255,255,0.5); }
.ce-event strong { font-size: 1rem; font-weight: 600; }

/* ════════════════════════════════════════════════
   SUB-PAGES — WHO GRID (2 columnas)
   ════════════════════════════════════════════════ */
.ce-who__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px; margin-top: 60px; }
.ce-who__item { display: flex; gap: 30px; align-items: flex-start; padding: 40px; background: var(--ce-bg-soft); border-radius: 20px; transition: 0.3s; }
.ce-who__item:hover { background: #fff; box-shadow: 0 20px 40px rgba(0,0,0,0.05); }
.ce-who__num { font-family: 'Playfair Display', serif; font-size: 3.5rem; font-weight: 900; color: var(--ce-salmon); line-height: 1; opacity: 0.3; flex-shrink: 0; }
.ce-who__body h3 { font-size: 1.5rem; margin-bottom: 10px; color: var(--ce-navy); }

/* ════════════════════════════════════════════════
   SUB-PAGES — CTA FINAL (fondo blanco, título salmón)
   ════════════════════════════════════════════════ */
.ce-cta-clean { text-align: center; background-color: var(--ce-white); padding: 120px 20px; display: flex; flex-direction: column; align-items: center; }
.ce-cta-clean h3 { font-family: 'Playfair Display', serif; font-size: clamp(2.2rem, 6vw, 4.5rem); color: var(--ce-salmon); font-weight: 900; margin-bottom: 25px; line-height: 1.1; }
.ce-cta-clean p { color: var(--ce-navy); font-size: clamp(1.1rem, 2vw, 1.3rem); max-width: 750px; margin: 0 auto 40px; opacity: 0.8; }

/* ════════════════════════════════════════════════
   SUB-PAGES — COMMISSARY KITCHEN SPECIFIC
   ════════════════════════════════════════════════ */
.ck-why__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(260px, 340px));   /* Más estrechas */
    gap: 26px;
    margin-top: 60px;
    justify-content: center;       
}
.ck-why__item {
    background: white;
    border: 2px solid #1E3A8A;      
    border-radius: 20px;           
    padding: 35px 30px;           
    transition: all 0.4s ease;
    height: 100%;
}
.ck-why__item:hover {
    border-color: #e6796d;      
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(230, 121, 109, 0.15);
}
.ck-why__icon { width: 45px; height: 45px; background: var(--ce-bg-soft); color: var(--ce-navy); border-radius: 10px; display: flex; align-items: center; justify-content: center; margin-bottom: 20px; }

@media (max-width: 992px) {
    .ck-why__grid {
        grid-template-columns: repeat(2, 1fr); 
    }
}

@media (max-width: 600px) {
    .ck-why__grid {
        grid-template-columns: 1fr;            
    }
}
.ck-why__item strong { display: block; font-size: 1.15rem; margin-bottom: 10px; color: var(--li-orange); font-weight: 800; }
.ck-why__item:hover strong { color: var(--ce-salmon); }


.ck-why__item {
    border: 2px solid #1E3A8A;         
    background: white;
    border-radius: 20px;              
    transition: all 0.3s ease;
    overflow: hidden;
}

.ck-why__item:hover {
    border-color: #e6796d;             
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.ck-features__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 60px; }
.ck-feature { display: flex; gap: 25px; border-bottom: 1px solid #f1f5f9; padding-bottom: 30px; }
.ck-feature__icon { font-size: 1.8rem; color: var(--ce-salmon); flex-shrink: 0; }
.ck-feature h3 { font-size: 1.3rem; color: var(--li-orange); margin-bottom: 8px; font-weight: 800; }

.ck-who { background: var(--ce-navy); color: var(--ce-white); }
.ck-who .ce-section-title { color: var(--ce-white); text-align: center; }
.ck-who__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.ck-who__item { background: rgba(255,255,255,0.03); padding: 40px 30px; border-radius: 20px; border: 1px solid rgba(255,255,255,0.05); transition: var(--ce-transition); }
.ck-who__item:hover { border-color: var(--ce-salmon); background: rgba(255,255,255,0.08); }
.ck-who__num {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    color: #e6796d;
    font-weight: 900;
    margin-bottom: 15px;
    opacity: 1;
}
.ce-hero {
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
}

.ce-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(10, 15, 30, 0.75), rgba(10, 15, 30, 0.85));
    z-index: 1;
}

.ce-hero__content {
    position: relative;
    z-index: 2;
}
.hero-single-img{
    width:140px;
    height:140px;
    object-fit:cover;
    border-radius:50%;
    display:block;
    margin:0 auto 1.8rem;

    border:5px solid rgba(255,255,255,0.25);
    box-shadow:0 15px 40px rgba(0,0,0,0.25);
}
.sv-hero-main-img{
    width:140px;
    height:140px;
    object-fit:cover;
    border-radius:50%;

    display:block;
    margin:0 auto 1.8rem;

    border:5px solid rgba(255,255,255,0.25);
    box-shadow:0 15px 40px rgba(0,0,0,0.25);
}
.sv-hero{
    background:
        linear-gradient(rgba(15,23,42,0.65), rgba(15,23,42,0.65)),
        url('../assets/img/cont.jpn');

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
/* ════════════════════════════════════════════════
   SUB-PAGES — EIN SPECIFIC
   ════════════════════════════════════════════════ */
.ce-split { background: var(--ce-bg-soft); }
.ce-split__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 40px; margin-top: 60px; }
.ce-card { background: var(--ce-white); padding: 50px; border-radius: 30px; box-shadow: 0 20px 40px rgba(0,0,0,0.03); border: 1px solid #e2e8f0; transition: var(--ce-transition); }
.ce-card:hover { transform: translateY(-10px); border-color: #187f99; }
.ce-card h3 { font-size: 1.6rem; color: var(--ce-navy); margin-bottom: 20px; display: flex; align-items: center; gap: 15px; }
.ce-card h3 i { color: #187f99; }
.ce-card ul { list-style: none; margin-top: 25px; }
.ce-card ul li { display: flex; gap: 15px; margin-bottom: 15px; align-items: flex-start; }
.ce-card ul li i { color: var(--ce-salmon); margin-top: 5px; }
.ce-step { display: flex; gap: 20px; margin-bottom: 20px; align-items: flex-start; }
.ce-step__num { width: 40px; height: 40px; background: #187f99; color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-weight: 800; }

/* ════════════════════════════════════════════════
   SUB-PAGES — REPAIR SPECIFIC
   ════════════════════════════════════════════════ */
/* Why items con ícono + texto en fila */
.ce-why__item--row { display: flex; gap: 20px; background: #fff; padding: 35px; border-radius: 25px; transition: 0.3s; border-bottom: 4px solid transparent; }
.ce-why__item--row:hover { transform: translateY(-10px); border-color: var(--ce-salmon); }
.ce-why__icon--box { width: 60px; height: 60px; background: #fef1f0; color: var(--ce-salmon); border-radius: 15px; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; flex-shrink: 0; }
/* Services cards (repair) */
.ce-services__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 25px; margin-top: 60px; }
.ce-service-card { background: #fff; padding: 30px; border-radius: 20px; border: 1px solid #e2e8f0; display: flex; align-items: center; gap: 20px; transition: 0.3s; }
.ce-service-card:hover { border-color: var(--ce-salmon); transform: translateX(10px); }
.ce-service-card__icon { font-size: 1.5rem; color: var(--ce-salmon); flex-shrink: 0; }
.ce-service-card strong { font-size: 1.05rem; color: var(--ce-navy); line-height: 1.3; }
.ce-cta-section { background: #ffffff; text-align: center; padding: 120px 20px; border-top: 1px solid #f1f5f9; }
.ce-cta-section h3 { font-family: 'Playfair Display', serif; font-size: clamp(2.5rem, 6vw, 4.5rem); margin-bottom: 25px; line-height: 1.1; color: var(--ce-salmon); }
.ce-cta-section h3 em { color: var(--ce-navy); }
.ce-cta-section p { font-size: 1.2rem; max-width: 800px; margin: 0 auto 40px; color: var(--ce-text); }

/* ════════════════════════════════════════════════
   SUB-PAGES — RESPONSIVE
   ════════════════════════════════════════════════ */
@media (max-width: 1024px) {
    .ce-intro__grid, .ce-why__grid, .ce-events__grid, .ce-who__grid,
    .ce-split__grid, .ck-why__grid, .ck-features__grid, .ck-who__grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
    .ce-hero__cta { flex-direction: column; align-items: center; }
    .ce-btn { width: 100%; max-width: 320px; justify-content: center; }
    .ck-who__grid { grid-template-columns: repeat(2, 1fr); }
}

/* ════════════════════════════════════════════════
   FINANCIAL CONSULTING — fi-* (página única)
   ════════════════════════════════════════════════ */
body.page-financial { background-color: #ffffff; color: #334155; line-height: 1.6; overflow-x: hidden; }
body.page-financial em { font-style: italic; color: var(--ce-salmon); font-family: 'Playfair Display', serif; }

:root {
    --fi-shadow: 0 20px 40px rgba(15, 23, 42, 0.04);
}

.fi-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(rgba(15,23,42,0.8), rgba(15,23,42,0.95)),
                url('https://images.unsplash.com/photo-1554224154-26032ffc0d07?auto=format&fit=crop&w=1600&q=80') center/cover no-repeat fixed;
    color: #fff;
    text-align: center;
    padding: 100px 20px;
}
.fi-hero__content  { position: relative; z-index: 5; max-width: 1000px; }
.fi-breadcrumb     { color: #fff; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 2px; opacity: 0.7; display: inline-block; margin-bottom: 20px; text-decoration: none; transition: 0.3s; }
.fi-breadcrumb:hover { opacity: 1; color: var(--ce-salmon); }
.fi-eyebrow        { display: block; color: var(--ce-teal, #187f99); font-weight: 800; text-transform: uppercase; letter-spacing: 6px; font-size: 0.85rem; margin-bottom: 15px; }
.fi-hero__title    { font-family: 'Playfair Display', serif; font-size: clamp(3rem, 8vw, 6rem); line-height: 1.05; margin-bottom: 30px; font-weight: 900; letter-spacing: -2px; }
.fi-hero__title span { color: transparent; -webkit-text-stroke: 1px #fff; opacity: 0.8; }
.fi-hero__sub      { font-size: clamp(1.1rem, 2vw, 1.3rem); max-width: 800px; margin: 0 auto 50px; font-weight: 300; opacity: 0.9; }

/* Fi buttons */
.fi-btn            { display: inline-flex; padding: 20px 50px; border-radius: 100px; font-weight: 700; font-size: 0.95rem; text-transform: uppercase; letter-spacing: 1px; transition: all 0.6s cubic-bezier(0.16,1,0.3,1); text-decoration: none; align-items: center; gap: 10px; border: none; cursor: pointer; }
.fi-btn--white     { background: #fff; color: var(--ce-navy); box-shadow: 0 10px 20px rgba(0,0,0,0.1); }
.fi-btn--white:hover { transform: translateY(-5px) scale(1.02); background: var(--ce-salmon); color: #fff; }
.fi-btn--outline-white { border: 1px solid rgba(255,255,255,0.4); color: #fff; margin-left: 15px; }
.fi-btn--outline-white:hover { border-color: #fff; background: rgba(255,255,255,0.1); }
.fi-btn--primary   { background: #187f99; color: #fff; box-shadow: 0 10px 20px rgba(24,127,153,0.15); }
.fi-btn--primary:hover { background: var(--ce-navy); transform: translateY(-3px); }

/* Fi sections */
.fi-section        { padding: clamp(60px, 10vw, 140px) 20px; position: relative; }
.fi-inner          { max-width: 1200px; margin: 0 auto; }
.fi-tag            { color: var(--ce-salmon); font-weight: 800; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 3px; display: block; margin-bottom: 20px; }
.fi-section-title  { font-family: 'Playfair Display', serif; font-size: clamp(2.5rem, 5vw, 4.5rem); color: var(--ce-navy); line-height: 1.1; margin-bottom: 40px; letter-spacing: -1px; }

/* Fi intro */
.fi-intro__grid       { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 80px; align-items: center; }
.fi-intro__img-wrap   { position: relative; border-radius: 30px; background: #fbfdff; padding: 10px; box-shadow: var(--fi-shadow); }
.fi-intro__img-wrap img { width: 100%; border-radius: 25px; box-shadow: 0 30px 60px rgba(0,0,0,0.1); }
.fi-intro__img-badge  { position: absolute; top: -30px; right: -30px; background: #fff; color: var(--ce-navy); padding: 30px; border-radius: 20px; text-align: center; font-weight: 800; font-size: 0.8rem; box-shadow: 0 20px 40px rgba(0,0,0,0.08); border: 1px solid #f1f5f9; }
.fi-intro__img-badge i { color: #187f99; font-size: 2rem; margin-bottom: 10px; display: block; }

/* Fi how */
.fi-how            { background: #fbfdff; }
.fi-how__grid      { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; margin-top: 70px; }
.fi-how__item      { background: #fff; padding: 50px 40px; border-radius: 30px; transition: all 0.6s cubic-bezier(0.16,1,0.3,1); border: 1px solid #f1f5f9; box-shadow: var(--fi-shadow); display: flex; flex-direction: column; gap: 20px; position: relative; overflow: hidden; }
.fi-how__item:hover { transform: translateY(-12px); border-color: #187f99; }
.fi-how__item::after { content: ''; position: absolute; bottom: 0; left: 0; width: 100%; height: 5px; background: linear-gradient(to right, #187f99, var(--ce-salmon)); opacity: 0; transition: 0.3s; }
.fi-how__item:hover::after { opacity: 1; }
.fi-how__icon      { width: 60px; height: 60px; background: #f0fdfa; color: #187f99; border-radius: 15px; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; flex-shrink: 0; }
.fi-how__item strong { font-size: 1.4rem; color: #187f99; margin-bottom: 5px; }

/* Fi why (dark) */
.fi-why            { background: var(--ce-navy); color: #fff; }
.fi-why .fi-section-title { color: #fff; text-align: center; }
.fi-why__grid      { display: grid; grid-template-columns: repeat(2, 1fr); gap: 25px; margin-top: 70px; max-width: 1000px; margin-left: auto; margin-right: auto; }
.fi-why__card      { background: rgba(255,255,255,0.03); padding: 40px; border-radius: 20px; border: 1px solid rgba(255,255,255,0.05); transition: 0.3s; display: flex; align-items: flex-start; gap: 20px; }
.fi-why__card:hover { background: rgba(255,255,255,0.06); border-color: var(--ce-salmon); transform: translateX(10px); }
.fi-why__card i    { color: var(--ce-salmon); font-size: 1.5rem; margin-top: 5px; flex-shrink: 0; }
.fi-why__card h3   { font-size: 1.3rem; color: #fff; margin-bottom: 10px; font-weight: 700; }

/* Fi who */
.fi-who__grid      { display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px; margin-top: 70px; }
.fi-who__item      { display: flex; gap: 30px; align-items: flex-start; padding: 45px; background: #fff; border-radius: 30px; transition: 0.4s; border: 1px solid #f1f5f9; box-shadow: var(--fi-shadow); }
.fi-who__item:hover { transform: scale(1.03); border-color: #187f99; }
.fi-who__num       { font-family: 'Playfair Display', serif; font-size: 4rem; font-weight: 900; color: #187f99; line-height: 1; opacity: 0.15; position: relative; top: -10px; }
.fi-who__body h3   { font-size: 1.5rem; margin-bottom: 12px; color: var(--li-orange); font-weight: 700; }

/* Fi CTA */
.fi-cta-section    { background: #fff; color: var(--ce-navy); text-align: center; padding: 140px 20px; display: flex; flex-direction: column; align-items: center; border-top: 1px solid #f1f5f9; }
.fi-cta-section h3 { font-family: 'Playfair Display', serif; font-size: clamp(2.5rem, 6vw, 5rem); color: var(--ce-salmon); margin-bottom: 30px; line-height: 1.1; font-weight: 900; letter-spacing: -2px; }
.fi-cta-section h3 em { color: var(--ce-navy); }
.fi-cta-section p  { font-size: 1.25rem; max-width: 750px; margin: 0 auto 50px; opacity: 0.8; }
.fi-cta-section .fi-btn--white { background: var(--ce-navy); color: #fff; }
.fi-cta-section .fi-btn--white:hover { background: var(--ce-salmon); }

/* Fi reveal */
.fi-reveal  { opacity: 0; transform: translateY(40px); transition: 1s cubic-bezier(0.16,1,0.3,1); }
.fi-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1024px) {
    .fi-intro__grid, .fi-how__grid { grid-template-columns: 1fr; }
    .fi-why__grid, .fi-who__grid  { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
    .fi-btn { width: 100%; max-width: 320px; justify-content: center; }
    .fi-btn--outline-white { margin-left: 0; }
    .fi-intro__img-badge { padding: 20px; top: -20px; right: 10px; }
}

/* ════════════════════════════════════════════════
   FOOD TRUCK RENTAL — elementos nuevos sobre ce-*
   ════════════════════════════════════════════════ */
.ce-hero--rental {
    background: linear-gradient(rgba(15,23,42,0.6), rgba(15,23,42,0.7)),
                url('https://images.unsplash.com/photo-1565123409695-7b5ef63a2efb?auto=format&fit=crop&w=1600&q=80') center/cover no-repeat fixed;
}

/* Rental option cards */
.ce-options__grid        { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; margin-top: 60px; }
.ce-option-card          { background: #fff; padding: 40px; border-radius: 30px; text-align: center; border: 1px solid #e2e8f0; position: relative; transition: 0.4s; }
.ce-option-card:hover    { border-color: var(--ce-salmon); box-shadow: 0 20px 40px rgba(0,0,0,0.05); }
.ce-option-card__num     { font-family: 'Playfair Display', serif; font-size: 4rem; font-weight: 900; color: var(--ce-navy); opacity: 0.05; position: absolute; top: 15px; right: 25px; }
.ce-option-card__tag     { display: inline-block; padding: 6px 15px; background: #f8fafc; border-radius: 50px; font-size: 0.7rem; font-weight: 800; text-transform: uppercase; color: #187f99; margin-bottom: 20px; }
.ce-option-card h3       { font-size: 1.5rem; color: var(--ce-navy); margin-bottom: 15px; }

@media (max-width: 1024px) { .ce-options__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 768px)  { .ce-options__grid { grid-template-columns: 1fr; } }

/* ════════════════════════════════════════════════
   LLC / S-CORP / C-CORP — elementos nuevos sobre ce-*
   ════════════════════════════════════════════════ */
.ce-hero--llc {
    background: linear-gradient(rgba(15,23,42,0.8), rgba(15,23,42,0.9)),
                url('../assets/img/business-bg.jpg') center/cover no-repeat fixed;
}

/* Why grid 4 columnas (LLC) */
.ce-why__grid--4 { grid-template-columns: repeat(4, 1fr); gap: 20px; }

/* Entity cards */
.ce-entities__grid        { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; margin-top: 60px; }
.ce-entity-card           { background: #fff; padding: 50px 40px; border-radius: 30px; border: 1px solid #e2e8f0; position: relative; transition: all 0.5s cubic-bezier(0.23,1,0.32,1); }
.ce-entity-card:hover     { border-color: var(--ce-navy); transform: scale(1.02); }
.ce-entity-card__badge    { position: absolute; top: 30px; right: 30px; background: #fcfaf9; width: 60px; height: 60px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 900; color: var(--ce-salmon); font-size: 1.5rem; }
.ce-entity-card__title    { font-family: 'Playfair Display', serif; font-size: 1.8rem; font-weight: 900; color: var(--ce-navy); margin-bottom: 5px; line-height: 1.2; }
.ce-entity-card__subtitle { color: var(--ce-salmon); font-weight: 700; text-transform: uppercase; font-size: 0.75rem; letter-spacing: 1px; margin-bottom: 25px; display: block; }
.ce-entity-card__list     { list-style: none; margin-top: 25px; border-top: 1px solid #f1f5f9; padding-top: 25px; }
.ce-entity-card__list li  { margin-bottom: 12px; font-size: 0.95rem; display: flex; align-items: center; gap: 10px; }
.ce-entity-card__list li::before { content: "\f00c"; font-family: "Font Awesome 6 Free"; font-weight: 900; color: var(--ce-salmon); font-size: 0.8rem; }

/* How we help (dark section LLC) */
.ce-help           { background: var(--ce-navy); color: #fff; }
.ce-help .ce-section-title { color: #fff; text-align: center; }
.ce-help__list     { display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px; max-width: 900px; margin: 60px auto 0; }
.ce-help__list-item { background: rgba(255,255,255,0.05); padding: 30px; border-radius: 15px; display: flex; align-items: center; gap: 20px; transition: 0.3s; }
.ce-help__list-item:hover { background: rgba(255,255,255,0.1); }
.ce-help__list-item i { font-size: 1.5rem; color: var(--ce-salmon); }

@media (max-width: 1024px) {
    .ce-why__grid--4, .ce-entities__grid, .ce-help__list { grid-template-columns: 1fr; }
}

/* ════════════════════════════════════════════════
   SALES TAX — elementos nuevos sobre ce-*
   ════════════════════════════════════════════════ */
.ce-hero--salestax {
    background: linear-gradient(rgba(15,23,42,0.8), rgba(15,23,42,0.9)),
                url('../assets/img/sales-tax-bg.jpg') center/cover no-repeat fixed;
}

/* Why 3 col (sales tax) */
.ce-why__grid--3 { grid-template-columns: repeat(3, 1fr); gap: 40px; }
.ce-why__item--tall { padding: 50px 40px; border-radius: 30px; border: 1px solid #e2e8f0; }
.ce-why__item--tall .ce-why__icon { font-size: 2.5rem; margin-bottom: 25px; }
.ce-why__item--tall strong { font-size: 1.4rem; margin-bottom: 15px; }

/* Help cards (Sales Tax) */
.ce-help__grid        { display: grid; grid-template-columns: repeat(2, 1fr); gap: 25px; margin-top: 60px; }
.ce-help__card        { background: #fff; padding: 40px; border-radius: 20px; border-left: 5px solid #187f99; box-shadow: 0 10px 30px rgba(0,0,0,0.03); transition: 0.3s; }
.ce-help__card:hover  { transform: translateX(10px); background: #f8fafc; }
.ce-help__card h3     { display: flex; align-items: center; gap: 15px; font-size: 1.3rem; margin-bottom: 15px; color: var(--ce-navy); }
.ce-help__card--center { grid-column: 1 / -1; background: var(--ce-navy); color: #fff; border-left: 5px solid var(--ce-salmon); text-align: center; padding: 60px; }
.ce-help__card--center h3 { justify-content: center; color: var(--ce-salmon); font-size: 1.8rem; }

/* Who dark (Sales Tax — mismo que BTR pero sobre ce-*) */
.ce-who--dark        { background: var(--ce-navy); color: #fff; }
.ce-who--dark .ce-section-title { color: #fff; }
.ce-who--dark .ce-who__item    { background: rgba(255,255,255,0.03); }
.ce-who--dark .ce-who__body h3 { color: var(--ce-salmon); }

@media (max-width: 1024px) {
    .ce-why__grid--3, .ce-help__grid, .ce-who--dark .ce-who__grid { grid-template-columns: 1fr; }
    .ce-help__card--center { grid-column: 1; }
}

/* ════════════════════════════════════════════════
   HACCP — hp-* (página única)
   ════════════════════════════════════════════════ */
.hp-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(rgba(15,23,42,0.8), rgba(15,23,42,0.9)),
                url('../assets/img/haccp-bg.jpg') center/cover no-repeat fixed;
    color: #fff;
    text-align: center;
    padding: 100px 20px;
}
.hp-hero__content  { position: relative; z-index: 5; max-width: 950px; }
.hp-breadcrumb     { color: #fff; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 2px; opacity: 0.7; display: inline-block; margin-bottom: 20px; text-decoration: none; transition: 0.3s; }
.hp-breadcrumb:hover { opacity: 1; color: var(--ce-salmon); }
.hp-eyebrow        { display: block; color: var(--ce-salmon); font-weight: 800; text-transform: uppercase; letter-spacing: 6px; font-size: 0.85rem; margin-bottom: 15px; }
.hp-hero__title    { font-family: 'Playfair Display', serif; font-size: clamp(3rem, 8vw, 5.5rem); line-height: 1.05; margin-bottom: 30px; font-weight: 900; }
.hp-hero__title span { color: transparent; -webkit-text-stroke: 1px #fff; opacity: 0.8; }
.hp-hero__sub      { font-size: clamp(1.1rem, 2vw, 1.3rem); max-width: 800px; margin: 0 auto 40px; font-weight: 300; opacity: 0.9; }

.hp-btn            { display: inline-flex; padding: 18px 45px; border-radius: 100px; font-weight: 700; font-size: 0.95rem; text-transform: uppercase; letter-spacing: 1px; transition: all 0.5s cubic-bezier(0.23,1,0.32,1); text-decoration: none; align-items: center; gap: 10px; border: none; cursor: pointer; }
.hp-btn--white     { background: #fff; color: var(--ce-navy); }
.hp-btn--white:hover { transform: translateY(-5px); background: var(--ce-salmon); color: #fff; }
.hp-btn--outline-white { border: 1px solid rgba(255,255,255,0.4); color: #fff; margin-left: 15px; }
.hp-btn--primary   { background: var(--ce-navy); color: #fff; }
.hp-btn--primary:hover { background: var(--ce-salmon); transform: translateY(-3px); }

.hp-section        { padding: 120px 20px; position: relative; }
.hp-inner          { max-width: 1200px; margin: 0 auto; }
.hp-tag            { color: var(--ce-salmon); font-weight: 800; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 3px; display: block; margin-bottom: 15px; }
.hp-section-title  { font-family: 'Playfair Display', serif; font-size: clamp(2.5rem, 5vw, 4rem); color: var(--li-orange); line-height: 1.1; margin-bottom: 35px; }

.hp-intro__grid    { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 80px; align-items: center; }
.hp-intro__img-wrap { position: relative; border-radius: 20px; padding: 20px; background: #f8fafc; }
.hp-intro__img-wrap img { width: 100%; border-radius: 15px; box-shadow: 0 30px 60px rgba(0,0,0,0.1); }
.hp-intro__img-badge { position: absolute; bottom: -20px; right: -20px; background: #187f99; color: #fff; padding: 25px; border-radius: 20px; text-align: center; font-weight: 800; font-size: 0.8rem; box-shadow: 0 15px 30px rgba(24,127,153,0.3); }

.hp-why            { background: #fcfaf9; }
.hp-why__grid      { display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px; margin-top: 60px; }
.hp-why__item      { background: #fff; padding: 40px; border-radius: 20px; display: flex; gap: 25px; transition: 0.3s; border: 1px solid #e2e8f0; }
.hp-why__item:hover { border-color: var(--ce-salmon); transform: translateY(-5px); }
.hp-why__icon      { font-size: 2rem; color: var(--ce-salmon); flex-shrink: 0; margin-top: 5px; }
.hp-why__item strong { font-size: 1.25rem; display: block; margin-bottom: 10px; color: #211b76; }

.hp-services__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; margin-top: 60px; }
.hp-service        { background: #fff; padding: 40px; border-radius: 20px; border-bottom: 4px solid #e2e8f0; transition: 0.3s; }
.hp-service:hover  { border-bottom-color: #187f99; transform: translateY(-10px); }
.hp-service__icon  { font-size: 1.8rem; color: #187f99; margin-bottom: 20px; }
.hp-service h3     { font-size: 1.4rem; margin-bottom: 15px; color: rgb(24, 127, 153); }

.hp-process        { background: var(--ce-navy); color: #fff; }
.hp-process .hp-section-title { color: #fff; }
.hp-process__grid  { display: grid; grid-template-columns: repeat(2, 1fr); gap: 40px; margin-top: 60px; }
.hp-process__item  { display: flex; gap: 30px; align-items: flex-start; padding: 40px; background: rgba(255,255,255,0.03); border-radius: 20px; }
.hp-process__num   { font-family: 'Playfair Display', serif; font-size: 3.5rem; font-weight: 900; color: var(--ce-salmon); line-height: 1; opacity: 0.5; }
.hp-process__body h3 { font-size: 1.5rem; margin-bottom: 10px; color: var(--ce-salmon); }

.hp-cta-clean      { text-align: center; background-color: #fff; padding: 120px 20px; display: flex; flex-direction: column; align-items: center; }
.hp-cta-clean h3   { font-family: 'Playfair Display', serif; font-size: clamp(2.2rem, 6vw, 4.5rem); color: var(--ce-salmon); font-weight: 900; margin-bottom: 25px; line-height: 1.1; }
.hp-cta-clean p    { color: var(--ce-navy); font-size: clamp(1.1rem, 2vw, 1.3rem); max-width: 750px; margin: 0 auto 40px; opacity: 0.8; }

.hp-reveal  { opacity: 0; transform: translateY(30px); transition: 1s ease; }
.hp-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1024px) {
    .hp-intro__grid, .hp-why__grid, .hp-services__grid, .hp-process__grid { grid-template-columns: 1fr; }
}

/* ════════════════════════════════════════════════
   SERVSAFE — sf-* (página única)
   ════════════════════════════════════════════════ */
.sf-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(rgba(15,23,42,0.75), rgba(15,23,42,0.9)),
                url('../assets/img/servsafe-bg.jpg') center/cover no-repeat fixed;
    color: #fff;
    text-align: center;
    padding: 100px 20px;
}
.sf-hero__content  { position: relative; z-index: 5; max-width: 950px; }
.sf-breadcrumb     { color: #fff; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 2px; opacity: 0.7; display: inline-block; margin-bottom: 20px; text-decoration: none; transition: 0.3s; }
.sf-breadcrumb:hover { opacity: 1; color: var(--ce-salmon); }
.sf-eyebrow        { display: block; color: var(--ce-salmon); font-weight: 800; text-transform: uppercase; letter-spacing: 6px; font-size: 0.85rem; margin-bottom: 15px; }
.sf-hero__title    { font-family: 'Playfair Display', serif; font-size: clamp(3rem, 8vw, 5.5rem); line-height: 1.05; margin-bottom: 30px; font-weight: 900; }
.sf-hero__title span { color: transparent; -webkit-text-stroke: 1px #fff; opacity: 0.8; }
.sf-hero__sub      { font-size: clamp(1.1rem, 2vw, 1.4rem); max-width: 800px; margin: 0 auto 40px; font-weight: 300; opacity: 0.9; }

.sf-btn            { display: inline-flex; padding: 18px 45px; border-radius: 100px; font-weight: 700; font-size: 0.95rem; text-transform: uppercase; letter-spacing: 1px; transition: all 0.5s cubic-bezier(0.23,1,0.32,1); text-decoration: none; align-items: center; gap: 10px; border: none; cursor: pointer; }
.sf-btn--white     { background: #fff; color: var(--ce-navy); }
.sf-btn--white:hover { transform: translateY(-5px); background: var(--ce-salmon); color: #fff; }
.sf-btn--outline-white { border: 1px solid rgba(255,255,255,0.4); color: #fff; margin-left: 15px; }
.sf-btn--outline-white:hover { background: rgba(255,255,255,0.1); border-color: #fff; }
.sf-btn--primary   { background: var(--ce-navy); color: #fff; }
.sf-btn--primary:hover { background: var(--ce-salmon); transform: translateY(-3px); box-shadow: 0 15px 30px rgba(230,121,109,0.3); }

.sf-section        { padding: 120px 20px; position: relative; }
.sf-inner          { max-width: 1200px; margin: 0 auto; }
.sf-tag            { color: var(--ce-salmon); font-weight: 800; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 3px; display: block; margin-bottom: 15px; }
.sf-section-title  { font-family: 'Playfair Display', serif; font-size: clamp(2.5rem, 5vw, 4rem); color: var(--ce-navy); line-height: 1.1; margin-bottom: 35px; }

.sf-intro__grid    { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 80px; align-items: center; }
.sf-intro__img-wrap { position: relative; border-radius: 20px; padding: 20px; background: #f8fafc; }
.sf-intro__img-wrap img { width: 100%; border-radius: 15px; box-shadow: 0 30px 60px rgba(0,0,0,0.1); display: block; }
.sf-intro__badge   { position: absolute; bottom: -20px; right: -20px; background: var(--ce-salmon); color: #fff; padding: 25px; border-radius: 20px; text-align: center; font-weight: 800; font-size: 0.8rem; box-shadow: 0 15px 30px rgba(230,121,109,0.3); }

.sf-why            { background: #fcfaf9; }
.sf-why__grid      { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2px; background: #e2e8f0; border-radius: 30px; overflow: hidden; border: 1px solid #e2e8f0; }
.sf-why__item      { background: #fff; padding: 50px 40px; transition: all 0.5s cubic-bezier(0.23,1,0.32,1); display: flex; gap: 25px; }
.sf-why__item:hover { background: var(--ce-navy); color: #fff; }
.sf-why__icon      { width: 50px; height: 50px; background: #fcfaf9; color: var(--ce-navy); border-radius: 12px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: 0.3s; }
.sf-why__item:hover .sf-why__icon { background: var(--ce-salmon); color: #fff; }
.sf-why__item strong { display: block; font-size: 1.25rem; margin-bottom: 10px; color: var(--ce-navy); }
.sf-why__item:hover strong { color: var(--ce-salmon); }

.sf-covers__grid   { display: grid; grid-template-columns: repeat(2, 1fr); gap: 40px; margin-top: 60px; }
.sf-cover          { display: flex; gap: 25px; padding-bottom: 40px; border-bottom: 1px solid #f1f5f9; }
.sf-cover__icon    { font-size: 2rem; color: var(--ce-salmon); flex-shrink: 0; }
.sf-cover h3       { font-size: 1.4rem; color: var(--ce-navy); margin-bottom: 12px; font-weight: 800; }

.sf-schedule       { background: var(--ce-navy); color: #fff; }
.sf-schedule .sf-section-title { color: #fff; }
.sf-schedule__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px; }
.sf-schedule__item { background: rgba(255,255,255,0.03); padding: 40px; border-radius: 20px; display: flex; gap: 25px; border: 1px solid rgba(255,255,255,0.05); }
.sf-schedule__num  { font-family: 'Playfair Display', serif; font-size: 3rem; color: var(--ce-salmon); font-weight: 900; line-height: 1; opacity: 0.6; }
.sf-schedule__body h3 { font-size: 1.3rem; margin-bottom: 10px; color: var(--ce-salmon); }

.sf-cta-clean      { text-align: center; background-color: #fff; padding: 120px 20px; display: flex; flex-direction: column; align-items: center; }
.sf-cta-clean h3   { font-family: 'Playfair Display', serif; font-size: clamp(2.2rem, 6vw, 4.5rem); color: var(--ce-salmon); font-weight: 900; margin-bottom: 25px; line-height: 1.1; }
.sf-cta-clean p    { color: var(--ce-navy); font-size: clamp(1.1rem, 2vw, 1.3rem); max-width: 750px; margin: 0 auto 40px; opacity: 0.8; }

.sf-reveal  { opacity: 0; transform: translateY(30px); transition: 1s ease; }
.sf-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1024px) {
    .sf-intro__grid, .sf-why__grid, .sf-covers__grid, .sf-schedule__grid { grid-template-columns: 1fr; }
    .sf-btn--outline-white { margin-left: 0; margin-top: 15px; }
    .sf-hero__cta { display: flex; flex-direction: column; align-items: center; }
}

/* =============================================
   BUSINESS FORMATION PAGE (LLC / S-Corp / C-Corp)
   ============================================= */

:root {
    --ce-navy: #0f172a;
    --ce-salmon: #e6796d;
    --ce-white: #ffffff;
    --ce-text: #334155;
    --ce-bg-soft: #fcfaf9;
    --ce-transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.ce-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(rgba(15, 23, 42, 0.8), rgba(15, 23, 42, 0.9)), 
                url('public/assets/img/business-bg.jpg') center/cover no-repeat fixed;
    color: var(--ce-white);
    text-align: center;
    padding: 100px 20px;
}

.ce-hero__content { position: relative; z-index: 5; max-width: 950px; }
.ce-breadcrumb { color: var(--ce-white); font-size: 0.8rem; text-transform: uppercase; letter-spacing: 2px; opacity: 0.7; display: inline-block; margin-bottom: 20px; text-decoration: none; transition: 0.3s; }
.ce-breadcrumb:hover { opacity: 1; color: var(--ce-salmon); }

.ce-eyebrow { display: block; color: var(--ce-salmon); font-weight: 800; text-transform: uppercase; letter-spacing: 6px; font-size: 0.85rem; margin-bottom: 15px; }

.ce-hero__title { font-family: 'Playfair Display', serif; font-size: clamp(3rem, 8vw, 5.5rem); line-height: 1.05; margin-bottom: 30px; font-weight: 900; }
.ce-hero__title span { color: transparent; -webkit-text-stroke: 1px var(--ce-white); opacity: 0.8; }
.ce-hero__sub { font-size: clamp(1.1rem, 2vw, 1.3rem); max-width: 800px; margin: 0 auto 40px; font-weight: 300; opacity: 0.9; }

/* Buttons */
.ce-btn { 
    display: inline-flex; padding: 18px 45px; border-radius: 100px; font-weight: 700; 
    font-size: 0.95rem; text-transform: uppercase; letter-spacing: 1px; 
    transition: var(--ce-transition); text-decoration: none; align-items: center; 
    gap: 10px; border: none; cursor: pointer;
}
.ce-btn--white { background: var(--ce-white); color: var(--ce-navy); }
.ce-btn--white:hover { transform: translateY(-5px); background: var(--ce-salmon); color: var(--ce-white); }
.ce-btn--outline-white { border: 1px solid rgba(255,255,255,0.4); color: var(--ce-white); margin-left: 15px; }
.ce-btn--primary { background: var(--ce-navy); color: var(--ce-white); }
.ce-btn--primary:hover { background: var(--ce-salmon); transform: translateY(-3px); box-shadow: 0 15px 30px rgba(230,121,109,0.3); }

/* Sections */
.ce-section { padding: 120px 20px; position: relative; }
.ce-inner { max-width: 1200px; margin: 0 auto; }
.ce-tag { color: var(--ce-salmon); font-weight: 800; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 3px; display: block; margin-bottom: 15px; }
.ce-section-title { font-family: 'Playfair Display', serif; font-size: clamp(2.5rem, 5vw, 4rem); color: var(--ce-navy); line-height: 1.1; margin-bottom: 35px; }

/* Intro Grid */
.ce-intro__grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 80px; align-items: center; }
.ce-intro__img-wrap { position: relative; border-radius: 20px; padding: 20px; background: #f8fafc; }
.ce-intro__img-wrap img { width: 100%; border-radius: 15px; box-shadow: 0 30px 60px rgba(0,0,0,0.1); display: block; }

/* Why Grid */
.ce-why { background: var(--ce-bg-soft); }
.ce-why__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.ce-why__item { background: var(--ce-white); padding: 40px 30px; border-radius: 20px; transition: var(--ce-transition); border: 1px solid #f1f5f9; }
.ce-why__item:hover { transform: translateY(-10px); border-color: var(--ce-salmon); box-shadow: 0 20px 40px rgba(0,0,0,0.05); }
.ce-why__icon { font-size: 2rem; color: var(--ce-salmon); margin-bottom: 20px; }
.ce-why__item strong { display: block; font-size: 1.2rem; margin-bottom: 10px; color: var(--ce-navy); }

/* Entity Cards */
.ce-entities__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; margin-top: 60px; }
.ce-entity-card { background: var(--ce-white); padding: 50px 40px; border-radius: 30px; border: 1px solid #e2e8f0; position: relative; transition: var(--ce-transition); }
.ce-entity-card:hover { border-color: var(--ce-navy); transform: scale(1.02); }
.ce-entity-card__badge { position: absolute; top: 30px; right: 30px; background: var(--ce-bg-soft); width: 60px; height: 60px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 900; color: var(--ce-salmon); font-size: 1.5rem; }
.ce-entity-card__title { font-family: 'Playfair Display'; font-size: 1.8rem; font-weight: 900; color: var(--ce-navy); margin-bottom: 5px; line-height: 1.2; }
.ce-entity-card__subtitle { color: var(--ce-salmon); font-weight: 700; text-transform: uppercase; font-size: 0.75rem; letter-spacing: 1px; margin-bottom: 25px; display: block; }
.ce-entity-card__list { list-style: none; margin-top: 25px; border-top: 1px solid #f1f5f9; padding-top: 25px; }
.ce-entity-card__list li { margin-bottom: 12px; font-size: 0.95rem; display: flex; align-items: center; gap: 10px; }
.ce-entity-card__list li::before { content: "\f00c"; font-family: "Font Awesome 6 Free"; font-weight: 900; color: var(--ce-salmon); font-size: 0.8rem; }

/* Help Section */
.ce-help { background: var(--ce-navy); color: var(--ce-white); }
.ce-help .ce-section-title { color: var(--ce-white); text-align: center; }
.ce-help__list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px; max-width: 900px; margin: 60px auto 0; }
.ce-help__list-item { background: rgba(255,255,255,0.05); padding: 30px; border-radius: 15px; display: flex; align-items: center; gap: 20px; transition: 0.3s; }
.ce-help__list-item:hover { background: rgba(255,255,255,0.1); }
.ce-help__list-item i { font-size: 1.5rem; color: var(--ce-salmon); }

/* Final CTA */
.ce-cta-clean { text-align: center; background-color: var(--ce-white); padding: 120px 20px; display: flex; flex-direction: column; align-items: center; }
.ce-cta-clean h3 { font-family: 'Playfair Display'; font-size: clamp(2.2rem, 6vw, 4.5rem); color: var(--ce-salmon); font-weight: 900; margin-bottom: 25px; line-height: 1.1; }
.ce-cta-clean p { color: var(--ce-navy); font-size: clamp(1.1rem, 2vw, 1.3rem); max-width: 750px; margin: 0 auto 40px; opacity: 0.8; }

/* Reveal */
.ce-reveal { opacity: 0; transform: translateY(30px); transition: 1s ease; }
.ce-visible { opacity: 1; transform: translateY(0); }

/* Responsive */
@media (max-width: 1024px) {
    .ce-intro__grid, .ce-why__grid, .ce-entities__grid, .ce-help__list { grid-template-columns: 1fr; }
    .ce-hero__title { font-size: 3.5rem; }
}

/* =============================================
   SALES TAX REGISTRATION PAGE
   ============================================= */

:root {
    --ce-navy: #0f172a;
    --ce-salmon: #e6796d;
    --ce-teal: #187f99;
    --ce-white: #ffffff;
    --ce-text: #334155;
    --ce-bg-soft: #fcfaf9;
    --ce-transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

/* HERO */
.ce-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(rgba(15, 23, 42, 0.8), rgba(15, 23, 42, 0.9)), 
                url('public/assets/img/sales-tax-bg.jpg') center/cover no-repeat fixed;
    color: var(--ce-white);
    text-align: center;
    padding: 100px 20px;
}

.ce-hero__content { position: relative; z-index: 5; max-width: 950px; }
.ce-breadcrumb { color: var(--ce-white); font-size: 0.8rem; text-transform: uppercase; letter-spacing: 2px; opacity: 0.7; display: inline-block; margin-bottom: 20px; text-decoration: none; transition: 0.3s; }
.ce-breadcrumb:hover { opacity: 1; color: var(--ce-salmon); }

.ce-eyebrow { display: block; color: var(--ce-salmon); font-weight: 800; text-transform: uppercase; letter-spacing: 6px; font-size: 0.85rem; margin-bottom: 15px; }

.ce-hero__title { font-family: 'Playfair Display', serif; font-size: clamp(3rem, 8vw, 5.5rem); line-height: 1.05; margin-bottom: 30px; font-weight: 900; }
.ce-hero__title span { color: transparent; -webkit-text-stroke: 1px var(--ce-white); opacity: 0.8; }
.ce-hero__sub { font-size: clamp(1.1rem, 2vw, 1.3rem); max-width: 800px; margin: 0 auto 40px; font-weight: 300; opacity: 0.9; }

/* Buttons */
.ce-btn { 
    display: inline-flex; padding: 18px 45px; border-radius: 100px; font-weight: 700; 
    font-size: 0.95rem; text-transform: uppercase; letter-spacing: 1px; 
    transition: var(--ce-transition); text-decoration: none; align-items: center; 
    gap: 10px; border: none; cursor: pointer;
}
.ce-btn--white { background: var(--ce-white); color: var(--ce-navy); }
.ce-btn--white:hover { transform: translateY(-5px); background: var(--ce-salmon); color: var(--ce-white); }
.ce-btn--outline-white { border: 1px solid rgba(255,255,255,0.4); color: var(--ce-white); margin-left: 15px; }
.ce-btn--primary { background: var(--ce-navy); color: var(--ce-white); }
.ce-btn--primary:hover { background: var(--ce-salmon); transform: translateY(-3px); box-shadow: 0 15px 30px rgba(230,121,109,0.3); }

/* General Sections */
.ce-section { padding: 120px 20px; position: relative; }
.ce-inner { max-width: 1200px; margin: 0 auto; }
.ce-tag { color: var(--ce-salmon); font-weight: 800; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 3px; display: block; margin-bottom: 15px; }
.ce-section-title { font-family: 'Playfair Display', serif; font-size: clamp(2.5rem, 5vw, 4rem); color: #0c2468; line-height: 1.1; margin-bottom: 35px; }

/* Intro */
.ce-intro__grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 80px; align-items: center; }
.ce-intro__img-wrap { position: relative; border-radius: 20px; padding: 20px; background: #f8fafc; }
.ce-intro__img-wrap img { width: 100%; border-radius: 15px; box-shadow: 0 30px 60px rgba(0,0,0,0.1); display: block; }
.ce-intro__img-badge { 
    position: absolute; bottom: -20px; right: -20px; 
    background: var(--ce-teal); color: #fff; padding: 25px; 
    border-radius: 20px; text-align: center; font-weight: 800; 
    font-size: 0.8rem; box-shadow: 0 15px 30px rgba(24,127,153,0.3); 
}

/* Why Section */
.ce-why { background: var(--ce-bg-soft); }
.ce-why__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; margin-top: 60px; }
.ce-why__item { background: var(--ce-white); padding: 50px 40px; border-radius: 30px; transition: var(--ce-transition); border: 1px solid #e2e8f0; }
.ce-why__item:hover { border-color: var(--ce-salmon); transform: translateY(-10px); }
.ce-why__icon { font-size: 2.5rem; color: var(--ce-salmon); margin-bottom: 25px; }
.ce-why__item strong { display: block; font-size: 1.4rem; margin-bottom: 15px; color: var(--ce-navy); }

/* How We Help */

.ce-help__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-top: 60px;
}

.ce-help__card {
    background: var(--ce-white);
    padding: 40px;
    border-radius: 20px;

    border-left: 5px solid var(--ce-teal);

    box-shadow: 0 10px 30px rgba(0,0,0,0.03);

    transition: 0.3s;
}

/* Hover */
.ce-help__card:hover {
    transform: translateX(10px);

    background: var(--ce-navy); /* card azul */
}

/* Texto normal */
.ce-help__card h3 {
    display: flex;
    align-items: center;
    gap: 15px;

    font-size: 1.3rem;
    margin-bottom: 15px;

    color: var(--ce-navy);

    transition: 0.3s;
}

.ce-help__card:hover h3 {
    color: var(--ce-salmon) !important; 
}

.ce-help__card:hover p,
.ce-help__card:hover span,
.ce-help__card:hover strong {
    color: #ffffff !important; 
}

.ce-help__card--center {
    grid-column: 1 / -1;

    background: var(--ce-navy);
    color: #fff;

    border-left: 5px solid var(--ce-salmon);

    text-align: center;
    padding: 60px;
}

.ce-help__card--center h3 {
    justify-content: center;
    color: var(--ce-salmon);
    font-size: 1.8rem;
    transition: 0.3s;
}


.ce-help__card--center:hover h3 {
    color: #e6796d !important;
}


.ce-help__card--center:hover {
    background: #ffffff;
}

.ce-help__card--center:hover h3 {
    color: var(--ce-navy) !important;
}

.ce-help__card--center:hover p,
.ce-help__card--center:hover span,
.ce-help__card--center:hover strong {
    color: #000 !important;
}


.ce-who {
    background: var(--ce-navy);
    color: var(--ce-white);
}

.ce-who .ce-section-title {
    color: var(--ce-white);
}

.ce-who__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.ce-who__item {
    display: flex;
    gap: 30px;
    align-items: flex-start;

    padding: 40px;

    background: rgba(255,255,255,0.03);

    border-radius: 20px;

    border: 2px solid #e6796d;

    transition: 0.3s;
}

.ce-who__item:hover {
    background: #ffffff;
    transform: translateY(-6px);
}

.ce-who__num {
    font-family: 'Playfair Display';
    font-size: 3.5rem;
    font-weight: 900;

    color: var(--ce-salmon);

    line-height: 1;
    opacity: 0.5;

    transition: 0.3s;
}


.ce-who__body h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;

    color: var(--ce-salmon);

    transition: 0.3s;
}

.ce-who__body p {
    color: #ffffff;
    transition: 0.3s;
}

.ce-who__item:hover .ce-who__body h3 {
    color: var(--ce-navy);
}

.ce-who__item:hover .ce-who__body p {
    color: #000000;
}

.ce-who__item:hover .ce-who__num {
    color: #e6796d;
    opacity: 1;
}

.ce-cta-clean { 
    text-align: center; background-color: var(--ce-white); 
    padding: 120px 20px; display: flex; flex-direction: column; align-items: center; 
}
.ce-cta-clean h3 { 
    font-family: 'Playfair Display'; font-size: clamp(2.2rem, 6vw, 4.5rem); 
    color: var(--ce-salmon); font-weight: 900; margin-bottom: 25px; line-height: 1.1; 
}
.ce-cta-clean p { 
    color: var(--ce-navy); font-size: clamp(1.1rem, 2vw, 1.3rem); 
    max-width: 750px; margin: 0 auto 40px; opacity: 0.8; 
}

.ce-reveal { opacity: 0; transform: translateY(30px); transition: 1s ease; }
.ce-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1024px) {
    .ce-intro__grid, .ce-why__grid, .ce-help__grid, .ce-who__grid { 
        grid-template-columns: 1fr; 
    }
    .ce-hero__title { font-size: 3.5rem; }
}

/* =============================================
   SERVSAFE FOOD MANAGER CERTIFICATION PAGE
   ============================================= */

:root {
    --sf-navy: #0f172a;
    --sf-salmon: #e6796d;
    --sf-teal: #187f99;
    --sf-white: #ffffff;
    --sf-text: #334155;
    --sf-bg-soft: #fcfaf9;
    --sf-transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

/* HERO */
.sf-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(rgba(15, 23, 42, 0.75), rgba(15, 23, 42, 0.9)), 
                url('public/assets/img/servsafe-bg.jpg') center/cover no-repeat fixed;
    color: var(--sf-white);
    text-align: center;
    padding: 100px 20px;
}

.sf-hero__content { position: relative; z-index: 5; max-width: 950px; }
.sf-breadcrumb { color: var(--sf-white); font-size: 0.8rem; text-transform: uppercase; letter-spacing: 2px; opacity: 0.7; display: inline-block; margin-bottom: 20px; text-decoration: none; transition: 0.3s; }
.sf-breadcrumb:hover { opacity: 1; color: var(--sf-salmon); }

.sf-eyebrow { display: block; color: var(--sf-salmon); font-weight: 800; text-transform: uppercase; letter-spacing: 6px; font-size: 0.85rem; margin-bottom: 15px; }

.sf-hero__title { font-family: 'Playfair Display', serif; font-size: clamp(3rem, 8vw, 5.5rem); line-height: 1.05; margin-bottom: 30px; font-weight: 900; }
.sf-hero__title span { color: transparent; -webkit-text-stroke: 1px var(--sf-white); opacity: 0.8; }
.sf-hero__sub { font-size: clamp(1.1rem, 2vw, 1.4rem); max-width: 800px; margin: 0 auto 40px; font-weight: 300; opacity: 0.9; }

/* Buttons */
.sf-btn { 
    display: inline-flex; padding: 18px 45px; border-radius: 100px; font-weight: 700; 
    font-size: 0.95rem; text-transform: uppercase; letter-spacing: 1px; 
    transition: var(--sf-transition); text-decoration: none; align-items: center; 
    gap: 10px; border: none; cursor: pointer;
}
.sf-btn--white { background: var(--sf-white); color: var(--sf-navy); }
.sf-btn--white:hover { transform: translateY(-5px); background: var(--sf-salmon); color: var(--sf-white); }
.sf-btn--outline-white { border: 1px solid rgba(255,255,255,0.4); color: var(--sf-white); margin-left: 15px; }
.sf-btn--outline-white:hover { background: rgba(255,255,255,0.1); border-color: var(--sf-white); }
.sf-btn--primary { background: var(--sf-navy); color: var(--sf-white); }
.sf-btn--primary:hover { background: var(--sf-salmon); transform: translateY(-3px); box-shadow: 0 15px 30px rgba(230,121,109,0.3); }

/* Sections */
.sf-section { padding: 120px 20px; position: relative; }
.sf-inner { max-width: 1200px; margin: 0 auto; }
.sf-tag { color: var(--sf-salmon); font-weight: 800; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 3px; display: block; margin-bottom: 15px; }
.sf-section-title { font-family: 'Playfair Display', serif; font-size: clamp(2.5rem, 5vw, 4rem); color: var(--li-orange); line-height: 1.1; margin-bottom: 35px; }

/* Intro */
.sf-intro__grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 80px; align-items: center; }
.sf-intro__img-wrap { position: relative; border-radius: 20px; padding: 20px; background: #f8fafc; }
.sf-intro__img-wrap img { width: 100%; border-radius: 15px; box-shadow: 0 30px 60px rgba(0,0,0,0.1); display: block; }
.sf-intro__badge { 
    position: absolute; bottom: -20px; right: -20px; background: var(--sf-salmon); color: #fff; 
    padding: 25px; border-radius: 20px; text-align: center; font-weight: 800; font-size: 0.8rem;
    box-shadow: 0 15px 30px rgba(230,121,109,0.3);
}

/* Why ServSafe */
.sf-why { background: var(--sf-bg-soft); }
.sf-why__grid { 
     border-radius: 0;
}
.sf-why__item { 
    background: var(--sf-white);
    padding: 50px 40px;
    transition: var(--sf-transition);
    display: flex;
    gap: 25px;

    border: 2px solid #e6796d; /* borde salmón fijo */
}
.sf-why__item:hover { background: var(--sf-navy); color: #fff; }
.sf-why__icon { 
    width: 50px;
    height: 50px;

    background: var(--sf-navy); /* fondo azul */
    color: #fff;

    border: 2px solid #e6796d; /* borde salmón */

    border-radius: 12px;

    display: flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;
    transition: 0.3s;
}
.sf-why__item:hover .sf-why__icon { background: var(--sf-salmon); color: var(--sf-white); }
.sf-why__item strong { display: block; font-size: 1.25rem; margin-bottom: 10px; color: var(--sf-navy); }
.sf-why__item:hover strong { color: var(--sf-salmon); }

/* Covers */
.sf-covers__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 40px; margin-top: 60px; }
.sf-cover { display: flex; gap: 25px; padding-bottom: 40px; border-bottom: 1px solid #f1f5f9; }
.sf-cover__icon { font-size: 2rem; color: var(--sf-salmon); flex-shrink: 0; }
.sf-cover h3 { font-size: 1.4rem; color: var(--li-orange); margin-bottom: 12px; font-weight: 800; }

/* Schedule */
.sf-schedule { background: var(--sf-navy); color: var(--sf-white); }
.sf-schedule .sf-section-title { color: var(--sf-white); }
.sf-schedule__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px; }
.sf-schedule__item { 
    background: rgba(255,255,255,0.03); padding: 40px; border-radius: 20px; 
    display: flex; gap: 25px; border: 1px solid rgba(255,255,255,0.05); 
}
.sf-schedule__num { 
    font-family: 'Playfair Display'; font-size: 3rem; color: var(--sf-salmon); 
    font-weight: 900; line-height: 1; opacity: 0.6; 
}
.sf-schedule__body h3 { font-size: 1.3rem; margin-bottom: 10px; color: var(--sf-salmon); }

/* Final CTA */
.sf-cta-clean { 
    text-align: center; background-color: var(--sf-white); 
    padding: 120px 20px; display: flex; flex-direction: column; align-items: center; 
}
.sf-cta-clean h3 { 
    font-family: 'Playfair Display'; font-size: clamp(2.2rem, 6vw, 4.5rem); 
    color: var(--sf-salmon); font-weight: 900; margin-bottom: 25px; line-height: 1.1; 
}
.sf-cta-clean p { 
    color: var(--sf-navy); font-size: clamp(1.1rem, 2vw, 1.3rem); 
    max-width: 750px; margin: 0 auto 40px; opacity: 0.8; 
}

/* Reveal */
.sf-reveal { opacity: 0; transform: translateY(30px); transition: 1s ease; }
.sf-visible { opacity: 1; transform: translateY(0); }

/* Responsive */
@media (max-width: 1024px) {
    .sf-intro__grid, .sf-why__grid, .sf-covers__grid, .sf-schedule__grid { grid-template-columns: 1fr; }
    .sf-hero__title { font-size: 3.5rem; }
    .sf-btn--outline-white { margin-left: 0; margin-top: 15px; }
    .sf-hero__cta { display: flex; flex-direction: column; align-items: center; }
}

/* =============================================
   MAIN FOOTER
   ============================================= */

.main-footer {
    background-color: #e6796d;
    color: #ffffff;
    padding: 60px 0 30px;
    font-family: 'Inter', sans-serif;
}

.footer-container {
    width: 100%;
    margin: 0;
    padding: 0 25px;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 50px;
}

/* Brand Column */
.footer-brand .footer-logo {
    height: 70px;
    width: auto;
    margin-bottom: 20px;
    filter: brightness(0) invert(1);
}

.footer-brand p {
    font-size: 0.9rem;
    line-height: 1.6;
    opacity: 0.9;
    max-width: 280px;
}

/* Column Titles */
.footer-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 25px;
    position: relative;
}

.footer-title::after {
    content: '';
    display: block;
    width: 30px;
    height: 2px;
    background: rgba(255,255,255,0.5);
    margin-top: 8px;
}

/* Links */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #ffffff;
    text-decoration: none;
    font-size: 0.9rem;
    opacity: 0.8;
    transition: opacity 0.3s, padding-left 0.3s;
}

.footer-links a:hover {
    opacity: 1;
    padding-left: 5px;
}

/* Contact Info */
.footer-contact-info {
    font-size: 0.9rem;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-contact-info div {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.footer-contact-info i {
    margin-top: 4px;
    font-size: 1rem;
}

/* Social Icons */
.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-icon {
    width: 35px;
    height: 35px;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #fff;
    transition: background 0.3s;
}

.social-icon:hover {
    background: rgba(255,255,255,0.3);
}

/* Bottom Bar */
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.2);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    opacity: 0.7;
}

/* =============================================
   RESPONSIVE FOOTER
   ============================================= */

@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-brand p {
        margin: 0 auto 20px;
    }

    .footer-title::after {
        margin: 8px auto 0;
    }

    .footer-contact-info div {
        justify-content: center;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}

/* =========================================
   HEADER
========================================= */

.main-header {
    width: 100%;
    background: #fff;
    position: sticky;
    top: 0;
    z-index: 999;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.header-container {
    width: 100%;
    max-width: 1300px;
    margin: auto;
    padding: 0 20px;
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 90px;
}

.header-logo-link img {
    width: 220px;
    height: auto;
}

/* =========================================
   NAV MENU
========================================= */

.nav-menu {
    display: flex;
    align-items: center;
    gap: 35px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-link {
    position: relative;
    text-decoration: none;
    color: #111;
    font-weight: 600;
    transition: all 0.3s ease;
}

/* Línea animada */

.nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 0%;
    height: 2px;
    background: #187f99;
    transition: width 0.3s ease;
}

/* Hover */

.nav-link:hover::after {
    width: 100%;
}

/* Página activa */

.nav-link.active::after {
    width: 100%;
}

/* =========================================
   BUTTON
========================================= */

.btn-header {
    background: #187f99;
    color: white;
    padding: 12px 22px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 700;
    transition: 0.3s ease;
}

.btn-header:hover {
    transform: translateY(-2px);
}

.header-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* =========================================
   MOBILE MENU BUTTON
========================================= */

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
}

.menu-toggle .bar {
    width: 26px;
    height: 3px;
    background: #111;
    border-radius: 10px;
    transition: all 0.3s ease;
}

/* =========================================
   MOBILE
========================================= */

.mobile-only-btn {
    display: none;
}

.mobile-started-link {
    color: #187f99 !important;
}

@media (max-width: 991px) {

    .menu-toggle {
        display: flex;
    }

    .btn-header {
        display: none;
    }

    .nav-menu {
        position: absolute;
        top: 90px;
        left: 0;
        width: 100%;
        background: white;

        flex-direction: column;
        align-items: center;
        justify-content: center;

        gap: 25px;
        padding: 35px 0;

        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);

        transition: all 0.3s ease;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    }

    .nav-menu.active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .mobile-only-btn {
        display: block;
    }
}