/* ===== CSS Variables & Reset ===== */
:root {
    --primary: #0f172a;
    --primary-light: #1e293b;
    --accent: #2563eb;
    --accent-light: #3b82f6;
    --accent-dark: #1d4ed8;
    --background: #ffffff;
    --background-alt: #f8fafc;
    --text: #0f172a;
    --text-muted: #64748b;
    --text-light: #94a3b8;
    --border: #e2e8f0;
    --white: #ffffff;
    --success: #10b981;
    --gold: #f59e0b;
    
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    --radius: 0.75rem;
    --radius-lg: 1rem;
    --radius-xl: 1.5rem;
    --radius-full: 9999px;
}

*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text);
    background: var(--background);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s ease;
}

ul, ol {
    list-style: none;
}

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

/* ===== Typography ===== */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    color: var(--text);
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(2rem, 4vw, 3rem); letter-spacing: -0.02em; }
h3 { font-size: clamp(1.25rem, 2vw, 1.5rem); }
h4 { font-size: 1.125rem; }

/* p {
    color: var(--text-muted);
    line-height: 1.7;
} */

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-accent {
    background: var(--accent);
    color: var(--white);
}

.btn-accent:hover {
    background: var(--accent-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

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

.btn-outline:hover {
    border-color: var(--primary);
    background: var(--background-alt);
}

.btn-white {
    background: var(--white);
    color: var(--primary);
}

.btn-white:hover {
    background: var(--background-alt);
    transform: translateY(-2px);
}

.btn-lg {
    padding: 18px 36px;
    font-size: 1.1rem;
}

.btn-sm {
    padding: 10px 20px;
    font-size: 0.875rem;
}

/* ===== Header ===== */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
    transition: all 0.3s ease;
}

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

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: var(--primary);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 800;
    font-size: 1.25rem;
}

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

@media (max-width: 768px) {

    .menu-toggle {
        display: flex;
    }

    .nav-menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #ffffff;
        padding: 1rem 0;
        z-index: 999;
    }

    .nav-menu.active {
        display: flex;
    }
}
.nav-link {
    padding: 10px 18px;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-muted);
    border-radius: var(--radius);
    transition: all 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--text);
    background: var(--background-alt);
}

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

.btn-header {
    padding: 12px 24px;
    font-size: 0.95rem;
    font-weight: 600;
    background: var(--primary);
    color: var(--white);
    border-radius: var(--radius-full);
    transition: all 0.3s ease;
}

.btn-header:hover {
    background: var(--primary-light);
    transform: translateY(-2px);
}

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

.menu-toggle .bar {
    width: 24px;
    height: 2px;
    background: var(--primary);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-only {
    display: none;
}

@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

    .nav-menu {
        display: none;
    }

    .nav-menu.active {
        display: flex;
        flex-direction: column;
    }
}
/* ===== Hero Section ===== */
.hero-fullscreen {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #ffffff;
    overflow: hidden;
}
/* Imagen de fondo */
.hero-bg-image {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.hero-bg-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Overlay oscuro */
.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    pointer-events: none; /* 🔑 no bloquea clicks */
}

/* Contenido */
.hero-fullscreen-content {
    position: relative;
    z-index: 2;
    padding: 2rem 1rem;
    max-width: 900px;
}

/* Textos */
.hero-main-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}
.gradient-text {
    background: linear-gradient(90deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-tagline {
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
}

.hero-description {
    font-size: 1.15rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.hero-italic {
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-badge {
    display: inline-block;
    padding: 8px 16px;
    background: var(--background-alt);
    border: 1px solid var(--border);
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--accent);
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.section-title {
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

.bg-light {
    background: var(--background-alt);
}

/* ===== Services Section ===== */
:root {
    --text-dark: #0f172a;
    --text-light: #64748b;
    /* Colores exactos de la imagen */
    --clr-purple: #6366f1;
    --clr-violet: #a855f7;
    --clr-blue: #3b82f6;
    --clr-pink: #ec4899;
}

.services-section {
    padding: 100px 20px;
    background-color: #ffffff;
    font-family: 'Segoe UI', Roboto, sans-serif;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
}

.service-card {
   padding: 50px 35px;
    border-radius: 45px; /* Bordes amplios como la imagen */
    border: 1.5px solid #f1f5f9; /* Borde sutil por defecto */
    transition: all 0.3s ease;
    cursor: pointer;
}
/* Colores por tarjeta */
.color-purple { --card-clr: var(--clr-purple); }
.color-violet { --card-clr: var(--clr-violet); }
.color-blue   { --card-clr: var(--clr-blue); }
.color-pink   { --card-clr: var(--clr-pink); }

/* Hover: Cambia color de borde */
.service-card:hover {
    border-color: var(--card-clr);
    transform: translateY(-5px);
}

.icon-box {
    width: 65px;
    height: 65px;
    background-color: var(--card-clr);
    color: white;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
}

.icon-box svg {
    width: 32px;
    height: 32px;
}

.service-card h3 {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--card-clr); /* El título tiene el color del icono */
    margin-bottom: 20px;
    line-height: 1.2;
}

.service-card p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 1rem;
    margin: 0;
}
/* ===== Pricing Section ===== */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    align-items: stretch;
}

.pricing-card {
    background: var(--white);
    border: 2px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 40px;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
}

.pricing-card.featured {
    border-color: var(--primary);
    position: relative;
    transform: scale(1.05);
}

.pricing-card.featured::before {
    content: 'Most Popular';
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: var(--white);
    padding: 6px 20px;
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 600;
}

.pricing-card:hover {
    box-shadow: var(--shadow-lg);
}

.pricing-header {
    text-align: center;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border);
    margin-bottom: 24px;
}

.pricing-name {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--primary);
}

.pricing-price {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary);
}

.pricing-price span {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-muted);
}

.pricing-desc {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-top: 8px;
}

.pricing-features {
    flex: 1;
    margin-bottom: 32px;
}

.pricing-features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 0;
    font-size: 0.95rem;
    color: var(--text-muted);
}

.pricing-features li::before {
    content: '';
    width: 20px;
    height: 20px;
    min-width: 20px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%2310b981' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E") no-repeat center;
}

.pricing-card .btn {
    width: 100%;
}

/* ===== Process Section ===== */
.process-timeline {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
    position: relative;
}

.process-timeline::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: var(--border);
    z-index: 0;
}

.process-step {
    text-align: center;
    position: relative;
    z-index: 1;
}

.step-circle {
    width: 80px;
    height: 80px;
    background: var(--white);
    border: 2px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--accent);
    transition: all 0.3s ease;
}


.process-step:hover .step-circle {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
    transform: scale(1.1);
}

.process-step h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.process-step p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* ===== Testimonials Section ===== */
.testimonials-section {
    padding: 80px 20px;
    background-color: #fcfcfc;
}

.testimonial-slider {
    padding-bottom: 50px !important;
    max-width: 900px;
}

/* Card base (solo estructura, SIN borde decorativo) */
.testimonial-card {
    background: transparent;
    padding: 0;
    border: none;
    text-align: center;
}

/* ===== ÚNICO CUADRO DEL TESTIMONIO ===== */
.testimonial-quote {
    font-size: 1.05rem;
    line-height: 1.5;
    color: #334155;
    font-style: italic;

    margin: 0 auto;
    max-width: 520px;

    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;

    padding: 20px 20px 16px;
    background: #fafafa;
    border: 1px solid #e5e7eb;
    border-radius: 20px;
}

/* Autor DENTRO del mismo cuadro */
.testimonial-author {
    margin-top: 14px;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

/* Avatar */
.author-avatar {
    width: 42px;
    height: 42px;
    background: #5b5fc7;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.8rem;
}

/* Info autor */
.author-info h4 {
    margin: 0;
    font-size: 0.95rem;
    color: #0d1117;
}

.author-info span {
    font-size: 0.8rem;
    color: #64748b;
}

/* Puntos del carrusel */
.swiper-pagination-bullet-active {
    background: #5b5fc7 !important;
}

/* ===== Extra Services Section ===== */
.extras-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 48px;
}

.extras-category h3 {
    font-size: 1.5rem;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 2px solid var(--border);
}

.extras-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.extra-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    background: var(--background-alt);
    border-radius: var(--radius);
    transition: all 0.2s ease;
}

.extra-item:hover {
    background: var(--white);
    box-shadow: var(--shadow);
}

.extra-item span {
    font-weight: 500;
}

.extra-item strong {
    color: var(--accent);
    font-size: 1.125rem;
}

/* ===== CTA Section ===== */
.cta-section {
    background: var(--white);
    color: var(--white);
    padding: 25px 0;
}

.cta-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-content h2 {
    color: #3b82f6;
    margin-bottom: 16px;
}

.cta-content p {
    color: rgba(5, 5, 5, 0.8);
    font-size: 1.25rem;
    margin-bottom: 40px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* ===== About Page ===== */
.page-header {
    padding: 160px 0 80px;
    text-align: center;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -25%;
    width: 150%;
    height: 200%;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.2) 0%, transparent 70%);
}

.page-header .section-badge {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    color: var(--white);
}

.page-title {
    color: var(--white);
    margin-bottom: 16px;
    position: relative;
}

.page-subtitle {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.25rem;
    max-width: 600px;
    margin: 0 auto;
    position: relative;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.about-text h2 {
    margin-bottom: 24px;
}

.about-text p {
    margin-bottom: 16px;
    font-size: 1.1rem;
}

/* ===== Mission / Vision / Values ===== */
.mvv-section {
    padding-top: 25px;
    padding-bottom: 25px;
}

/* ===== MVV Section ===== */
.mvv-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.mvv-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 40px;
    text-align: center;
    transition: all 0.3s ease;
}

.mvv-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.mvv-icon {
    width: 80px;
    height: 80px;
    background: var(--background-alt);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.mvv-card h3 {
    margin-bottom: 16px;
}

/* ===== Stats Section ===== */
.stats-section {
    background: var(--primary);
    padding: 80px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.stat-card {
    text-align: center;
    color: var(--white);
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    display: block;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 1rem;
   
}

/* ===== Why Choose Section ===== */
.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.why-card {
    text-align: center;
    padding: 32px;
    border-radius: var(--radius-lg);
    transition: all 0.3s ease;
}

.why-card:hover {
    background: var(--background-alt);
}

.why-icon {
    width: 64px;
    height: 64px;
    background: var(--background-alt);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--accent);
}

.why-card h3 {
    margin-bottom: 12px;
}

/* ===== Contact Section ===== */
.contact-section {
    padding: 100px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-info h2 {
    margin-bottom: 24px;
}

.contact-info > p {
    font-size: 1.1rem;
    margin-bottom: 32px;
}

.contact-benefits {
    background: var(--background-alt);
    border: 2px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 32px;
    margin-bottom: 32px;
}

.contact-benefits h3 {
    font-size: 1.25rem;
    margin-bottom: 20px;
}

.contact-benefits ul {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-benefits li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-muted);
}

.contact-benefits li svg {
    color: var(--success);
    flex-shrink: 0;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.contact-icon {
    width: 48px;
    height: 48px;
    background: var(--background-alt);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
}

.contact-details h4 {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-muted);
    margin-bottom: 4px;
}

.contact-details a {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text);
}

.contact-details a:hover {
    color: var(--accent);
}

.contact-form-wrapper {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 40px;
    box-shadow: var(--shadow-md);
}

.contact-form-wrapper h2 {
    font-size: 1.5rem;
    margin-bottom: 32px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 14px 16px;
    font-size: 1rem;
    font-family: inherit;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--white);
    color: var(--text);
    transition: all 0.2s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.btn-block {
    width: 100%;
}

.form-message {
    margin-top: 20px;
    padding: 16px;
    border-radius: var(--radius);
    text-align: center;
}

.form-message.success {
    background: rgba(16, 185, 129, 0.1);
    color: var(--success);
}

.form-message.error {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
}

/* ===== Footer ===== */
.footer {
    background: #187F99;
    color: var(--white);
    padding: 80px 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 48px;
    margin-bottom: 48px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 20px;
}

.footer-logo .logo-icon {
    background: var(--white);
    color: var(--primary);
}

.footer-desc {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    line-height: 1.7;
}

.footer-col h4 {
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 24px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: var(--white);
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    color: rgba(255, 255, 255, 0.7);
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.7);
}

.footer-contact a:hover {
    color: var(--white);
}

.footer-bottom {
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.footer-credit a {
    color: rgba(255, 255, 255, 0.7);
}

.footer-credit a:hover {
    color: var(--white);
}
.footer .container {
    max-width: 1400px; /* más ancho que el contenido normal */
    padding: 0 40px;   /* más aire a los lados */
}

/* ===== 404 Page ===== */
.error-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px;
}

.error-content h1 {
    font-size: 8rem;
    font-weight: 900;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 16px;
}

.error-content h2 {
    margin-bottom: 16px;
}

.error-content p {
    margin-bottom: 32px;
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
    .hero-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-visual {
        order: -1;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .hero-content {
        text-align: center;
    }
    
    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-cta-group {
        justify-content: center;
    }
    
    .hero-trust {
        justify-content: center;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 450px;
        margin: 0 auto;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .process-timeline {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .process-timeline::before {
        display: none;
    }
    
    .mvv-grid,
    .stats-grid,
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    section {
        padding: 60px 0;
    }
    
    .navbar {
        height: 90px;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--white);
        flex-direction: column;
        padding: 32px 24px;
        gap: 8px;
        transform: translateX(100%);
        transition: transform 0.3s ease;
    }
    
    .nav-menu.active {
        transform: translateX(0);
    }
    
    .nav-link {
        width: 100%;
        padding: 16px;
        font-size: 1.1rem;
    }
    
    .header-right .btn-header {
        display: none;
    }
    @media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

    .nav-menu {
        display: none;
        flex-direction: column;
        background: #fff;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
    }

    .nav-menu.active {
        display: flex;
    }
}
    .menu-toggle {
        display: flex;
    }
    
    .mobile-only {
        display: block;
    }
    
    .hero {
        min-height: auto;
        padding: 120px 0 60px;
    }
    
    .hero-trust {
        flex-wrap: wrap;
        gap: 24px;
    }
    
    .services-grid,
    .mvv-grid,
    .stats-grid,
    .why-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .process-timeline {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .extras-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .hero-title {
        font-size: 2.25rem;
    }
    
    .btn {
        padding: 12px 24px;
    }
    
    .btn-lg {
        padding: 14px 28px;
    }
    
    .pricing-card {
        padding: 32px 24px;
    }
    
    .contact-form-wrapper {
        padding: 24px;
    }
}

/* ===== Animations ===== */
@keyframes fadeInUp {
    from {
        /*opacity: 0;*/
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in-up {
    animation: fadeInUp 0.6s ease forwards;
}

/* ===== Utility Classes ===== */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.text-accent { color: var(--accent); }
.text-muted { color: var(--text-muted); }
.text-white { color: var(--white); }
.bg-white { background: var(--white); }
.bg-light { background: var(--background-alt); }
.bg-dark { background: var(--primary); }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-48 { margin-bottom: 48px; }

/* Media Queries para responsividad en móvil */

@media (max-width: 991px) {
    .hero-main-title {
        font-size: 2.4rem !important;
        line-height: 1.2 !important;
    }
    .hero-tagline {
        font-size: 1.1rem !important;
        padding: 0 15px;
    }
    .hero-fullscreen-content {
        padding: 40px 20px !important;
    }
    .intro-value h2 {
        font-size: 2rem !important;
    }
    .intro-value p {
        font-size: 1.05rem !important;
    }
}

@media (max-width: 767px) {
    .hero-main-title {
        font-size: 1.9rem !important;
    }
    .hero-tagline {
        font-size: 1rem !important;
    }
    .btn-lg {
        padding: 12px 28px !important;
        font-size: 1.05rem !important;
    }
    .container {
        padding-left: 15px !important;
        padding-right: 15px !important;
    }
    .section-title {
        font-size: 2.1rem !important;
    }
    .process-timeline {
        padding: 0 10px;
    }
    .testimonial-quote {
        font-size: 1.05rem !important;
    }
}

@media (max-width: 576px) {
    .hero-main-title {
        font-size: 1.7rem !important;
    }
    h2, .section-title {
        font-size: 1.8rem !important;
    }
    .pricing-card, .service-card {
        min-width: 100% !important;
        max-width: 100% !important;
    }
}
@media (max-width: 991px) {
    .hero-main-title {
        font-size: 2.4rem !important;
        line-height: 1.2 !important;
    }
    .hero-tagline {
        font-size: 1.1rem !important;
        padding: 0 15px;
    }
    .hero-fullscreen-content {
        padding: 40px 20px !important;
    }
    .intro-value h2 {
        font-size: 2rem !important;
    }
    .intro-value p {
        font-size: 1.05rem !important;
    }
}

@media (max-width: 767px) {
    .hero-main-title {
        font-size: 1.9rem !important;
    }
    .hero-tagline {
        font-size: 1rem !important;
    }
    .btn-lg {
        padding: 12px 28px !important;
        font-size: 1.05rem !important;
    }
    .container {
        padding-left: 15px !important;
        padding-right: 15px !important;
    }
    .section-title {
        font-size: 2.1rem !important;
    }
    .testimonial-quote {
        font-size: 1.05rem !important;
    }
}

@media (max-width: 576px) {
    .hero-main-title {
        font-size: 1.7rem !important;
    }
    h2, .section-title {
        font-size: 1.8rem !important;
    }
    .pricing-card,
    .service-card {
        min-width: 100% !important;
    }
}


@media (max-width: 640px) {
    .services-grid {
        grid-template-columns: 1fr !important;
    }
    
    .service-card {
        padding: 1.5rem !important;
    }
}

/*------------------*/
.hero-bg{
  background-image:url('/assets/images/hero-clermont.jpg');
  background-size:cover;
  background-position:center;
}

.service-card{
  background:white;
  padding:2rem;
  border-radius:1rem;
  box-shadow:0 10px 25px rgba(0,0,0,0.08);
  text-align:center;
  transition:all .3s ease;
}

.service-card:hover{
  transform:translateY(-6px);
  box-shadow:0 20px 40px rgba(0,0,0,0.15);
}

.hero-btn {
    background-color: #ef7a0d;
    border-color: #ef7a0d;
    color: #ffffff;
    transition: all 0.3s ease;
}

.hero-btn:hover {
    background-color: #37a9c8; /* celeste */
    border-color: #37a9c8;
    color: #ffffff;
}

.header-container {
    width: 100%;
    max-width: 1900px; 
    padding: 0 80px; /* controla qué tan ancho se ve */
    margin: 0 auto;
    overflow: visible
}

/* NAV LINKS */
.nav-link {
    color: #ef7a0d;
    font-size: 18px;        /* tamaño más grande */
    font-weight: 600;       /* más presencia */
    letter-spacing: 0.3px;
    transition: all 0.3s ease;
}

/* Hover elegante */
.nav-link:hover {
    color: #2cb0b0; /* celeste que usaste antes */
}

/*----- */
/* ===== WHY SECTION PREMIUM ===== */
/* ===== WHY CHOOSE SECTION ===== */

.why-choose {
    padding: 110px 20px;
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fc 100%);
}

.why-container {
    max-width: 1200px;
    margin: auto;
    text-align: center;
}

.why-title {
    font-size: 42px;
    font-weight: 800;
    color: #187f99;
    margin-bottom: 70px;
}

/* GRID */
.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
}

/* CARD */
.why-card {
    background: #ffffff;
    padding: 45px 30px;
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
}

.why-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 18px 45px rgba(0,0,0,0.12);
}

/* ICON */
.why-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 25px;
    border-radius: 50%;
    background: #ef7a0d;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: #fff;
    transition: .3s;
}

.why-card:hover .why-icon {
    background: #187f99;
}

/* TITLE */
.why-card h3 {
    font-size: 24px;
    font-weight: 700;
    color: #187f99;
    margin-bottom: 15px;
}

/* TEXT */
.why-card p {
    color: #666;
    line-height: 1.7;
    font-size: 16px;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .why-grid {
        grid-template-columns: 1fr;
    }
}

/* ===============================
   SERVICES SECTION
=================================*/

.services-section {
    padding: 120px 20px;
    background: #ffffff;
}

.services-container {
    max-width: 1200px;
    margin: auto;
}

/* HEADER */
.services-header {
    text-align: center;
    margin-bottom: 70px;
}

.services-header h2 {
    font-size: 44px;
    font-weight: 800;
    color: #2a1c80;
    margin-bottom: 10px;
}

.services-header p {
    font-size: 20px;
    color: #666;
}

/* GRID */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

/* CARD */
.service-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 18px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    transition: all .35s ease;
    border: 1px solid #f1f1f1;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

/* ICON */
.service-icon {
    width: 65px;
    height: 65px;
    margin: 0 auto 20px;
    border-radius: 16px;
    background: #ef7a0d;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: #fff;
    transition: .3s;
}

.service-card:hover .service-icon {
    background: #2cb0b0;
    transform: scale(1.1);
}

/* TEXT */
.service-card h4 {
    font-size: 22px;
    font-weight: 700;
    color: #2a1c80;
    margin-bottom: 10px;
}

.service-card p {
    color: #666;
    font-size: 16px;
    line-height: 1.6;
}

/* CTA */
.services-cta {
    text-align: center;
    margin-top: 60px;
}

.services-button {
    background: #ef7a0d;
    color: white;
    padding: 16px 34px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    transition: .3s;
}

.services-button:hover {
    background: #2cb0b0;
}


/* ===============================
   COMMUNITY SECTION
=================================*/

.community-section {
    padding: 80px 20px 120px;
    background: #f8fafc;
    display: flex;
    justify-content: center;
}

.community-card {
    max-width: 650px;
    background: #fff;
    padding: 50px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

.community-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 25px;
    background: #ef7a0d;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 28px;
}

.community-card h3 {
    font-size: 28px;
    color: #2a1c80;
    margin-bottom: 15px;
}

.community-card p {
    color: #666;
    font-size: 17px;
    line-height: 1.7;
}

/* SECTION */
.community-section {
    padding: 80px 20px;
    background: #f8fafc;
    display: flex;
    justify-content: center;
}

/* CONTAINER */
.community-container {
    max-width: 1200px;
    width: 100%;
    display: flex;
    justify-content: center;
}

/* CARD */
.community-card {
    background: #ffffff;
    padding: 50px 40px;
    border-radius: 18px;
    text-align: center;
    max-width: 500px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    transition: all 0.35s ease;
}

/* HOVER EFFECT */
.community-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(0,0,0,0.12);
}

/* ICON */
.community-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: linear-gradient(135deg, #2563eb, #4f46e5);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 28px;
}

/* TITLE */
.community-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #111827;
}

/* TEXT */
.community-text {
    font-size: 16px;
    line-height: 1.7;
    color: #6b7280;
}

/*About us*/
/* =====================================================
   CLERMONT COMMISSARY - ABOUT PAGE
===================================================== */

:root{
    --primary:#187f99;
    --primary-dark:#13687d;
    --accent:#ef7a0d;
    --white:#ffffff;
}

/* ================= HERO ================= */

.about-hero-section{
    min-height:70vh;
    position:relative;
}

.about-hero-bg{
    background:linear-gradient(
        135deg,
        rgba(24,127,153,.95),
        rgba(15,95,115,.95)
    );
}

.about-hero-section h1{
    font-weight:800;
    letter-spacing:.5px;
}

.overlay{
    backdrop-filter: blur(2px);
}

/* ================= TITLES ================= */

.section-title{
    font-weight:800;
}

/* ================= BUTTONS ================= */

.btn-primary{
    background: #187f99;
}

.btn-primary:hover{
    background:var(--primary-dark);
}

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

.btn-outline:hover{
    background:var(--primary);
    color:white;
}

/* ================= STATS ================= */

.stats-card{
    box-shadow:0 15px 40px rgba(0,0,0,.06);
}

.stat-number{
    color:var(--primary);
}

/* ================= FEATURES ================= */

.feature-card{
    transition:.35s ease;
}

.feature-card:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 45px rgba(0,0,0,.12);
}

.icon-container{
    background:linear-gradient(
        135deg,
        var(--primary),
        #1aa2c2
    );
    color:white;
}

/* ================= MISSION ================= */

.mission-section{
    background:linear-gradient(
        135deg,
        #187f99,
        #0f5f73
    );
    padding:100px 0;
}

/* ================= CTA ================= */

.cta-card{
    transition:.3s ease;
}

.cta-card:hover{
    transform:translateY(-5px);
}

.btn-cta{
    background:var(--accent);
}

.btn-cta:hover{
    background:#d96c08;
}

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

@media(max-width:768px){

    .about-hero-section h1{
        font-size:2.5rem;
    }

    .mission-section{
        padding:70px 0;
    }
}

/*** ================= 404 PAGE ================= */
/* ═══════════════════════════════════════════════════════════════
   about.css  —  Clermont Commissary  |  About Page
   Colors: #187f99 (teal) · #ef7a0d (orange)
═══════════════════════════════════════════════════════════════ */

:root {
    --teal:        #187f99;
    --teal-dark:   #116478;
    --teal-light:  #e8f5f8;
    --orange:      #ef7a0d;
    --orange-dark: #c9640a;
    --orange-light:#fff3e8;
    --charcoal:    #1a2529;
    --gray-text:   #5c6c72;
    --gray-light:  #f5f8f9;
    --white:       #ffffff;
    --border:      rgba(24,127,153,.13);
}

/* ── SCROLL REVEAL ── */
.ab-reveal {
    opacity: 0;
    transform: translateY(26px);
    transition: opacity .65s ease, transform .65s ease;
}
.ab-reveal.ab-visible {
    opacity: 1;
    transform: none;
}

/* ── SHARED UTILITIES ── */
.ab-inner {
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.ab-section {
    padding: 6rem 1.5rem;
}

.ab-tag {
    display: inline-block;
    font-size: .7rem;
    font-weight: 600;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: .85rem;
}

.ab-section-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(1.9rem, 4.5vw, 3rem);
    font-weight: 900;
    color: #187f99;
    line-height: 1.15;
    margin-bottom: 1.2rem;
}
.ab-section-title em {
    font-style: italic;
    color: var(--teal);
}

/* ── BUTTONS ── */
.ab-btn {
    display: inline-block;
    padding: .85rem 2rem;
    border-radius: 6px;
    font-size: .9rem;
    font-weight: 600;
    letter-spacing: .03em;
    text-decoration: none;
    transition: background .2s, color .2s, transform .15s, box-shadow .2s;
    cursor: pointer;
}
.ab-btn:hover { transform: translateY(-2px); }

.ab-btn--primary {
    background: var(--teal);
    color: var(--white);
    box-shadow: 0 4px 18px rgba(24,127,153,.25);
}
.ab-btn--primary:hover {
    background: var(--teal-dark);
    box-shadow: 0 6px 24px rgba(24,127,153,.35);
}

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

.ab-btn--white {
    background: var(--white);
    color: var(--teal);
    box-shadow: 0 4px 18px rgba(0,0,0,.15);
}
.ab-btn--white:hover {
    background: var(--teal-light);
    box-shadow: 0 6px 24px rgba(0,0,0,.2);
}

.ab-btn--outline-white {
    border: 2px solid rgba(255,255,255,.55);
    color: var(--white);
    background: transparent;
}
.ab-btn--outline-white:hover {
    border-color: var(--white);
    background: rgba(255,255,255,.08);
}

.ab-btn--lg {
    padding: 1rem 2.6rem;
    font-size: 1rem;
}

/* ════════════════════════════════════════════════════════════════
   HERO
════════════════════════════════════════════════════════════════ */
.ab-hero {
    position: relative;
    min-height: 88vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0d4f60 0%, var(--teal) 50%, #1a9dbc 100%);
    overflow: hidden;
    padding-top: 90px; /* offset for fixed header */
}

/* geometric pattern overlay */
.ab-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 15% 25%, rgba(239,122,13,.22) 0%, transparent 45%),
        radial-gradient(circle at 85% 75%, rgba(255,255,255,.06) 0%, transparent 40%),
        radial-gradient(circle at 60% 10%, rgba(239,122,13,.1) 0%, transparent 35%);
    pointer-events: none;
}

/* subtle grid lines */
.ab-hero__overlay {
    position: absolute;
    inset: 0;
    background-image:
        repeating-linear-gradient(0deg,   transparent, transparent 59px, rgba(255,255,255,.04) 60px),
        repeating-linear-gradient(90deg,  transparent, transparent 59px, rgba(255,255,255,.04) 60px);
    pointer-events: none;
}

.ab-hero__content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 3rem 1.5rem;
    max-width: 760px;
    animation: abHeroIn .9s ease both;
}

@keyframes abHeroIn {
    from { opacity: 0; transform: translateY(28px); }
    to   { opacity: 1; transform: none; }
}

.ab-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: .72rem;
    letter-spacing: .28em;
    text-transform: uppercase;
    color: rgba(255,255,255,.75);
    margin-bottom: 1.4rem;
    animation: abHeroIn .7s .2s ease both;
}
.ab-eyebrow::before,
.ab-eyebrow::after {
    content: '';
    display: block;
    width: 28px;
    height: 1px;
    background: rgba(255,255,255,.5);
}

.ab-hero__title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(2.8rem, 7.5vw, 6rem);
    font-weight: 900;
    color: var(--white);
    line-height: 1.06;
    margin-bottom: 1.4rem;
    animation: abHeroIn .7s .35s ease both;
}
.ab-hero__title span {
    color: var(--orange);
    font-style: italic;
}

.ab-hero__sub {
    font-size: clamp(1rem, 2.2vw, 1.3rem);
    color: rgba(255,255,255,.7);
    margin-bottom: 2.5rem;
    font-weight: 300;
    animation: abHeroIn .7s .5s ease both;
}

.ab-hero__cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: abHeroIn .7s .65s ease both;
}

/* scroll indicator */
.ab-hero__scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    color: rgba(255,255,255,.35);
    font-size: .6rem;
    letter-spacing: .2em;
    text-transform: uppercase;
    z-index: 2;
    animation: abHeroIn .7s 1s ease both;
}
.ab-hero__scroll-line {
    width: 1px;
    height: 44px;
    background: linear-gradient(to bottom, rgba(255,255,255,.5), transparent);
    animation: abScrollPulse 2s ease-in-out infinite;
}
@keyframes abScrollPulse {
    0%,100% { transform: scaleY(1); opacity: 1; }
    50%      { transform: scaleY(.5); opacity: .4; }
}

/* ════════════════════════════════════════════════════════════════
   OUR STORY
════════════════════════════════════════════════════════════════ */
.ab-story {
    background: var(--white);
}

.ab-story__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.ab-story__text p {
    color: var(--gray-text);
    font-size: 1.02rem;
    line-height: 1.85;
    margin-bottom: 1.3rem;
}

.ab-story__cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 2.2rem;
}

/* Stats card */
.ab-stats {
    background: linear-gradient(135deg, var(--teal-dark) 0%, var(--teal) 100%);
    border-radius: 16px;
    padding: 2.8rem 2.4rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(24,127,153,.3);
}

.ab-stats::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 10% 10%, rgba(239,122,13,.25) 0%, transparent 55%),
        radial-gradient(ellipse 60% 70% at 90% 90%, rgba(0,0,0,.15) 0%, transparent 55%);
    pointer-events: none;
}

.ab-stats__item {
    text-align: center;
    padding: 1.8rem 1rem;
    position: relative;
    z-index: 1;
}

/* inner grid dividers */
.ab-stats__item:nth-child(1),
.ab-stats__item:nth-child(2) {
    border-bottom: 1px solid rgba(255,255,255,.12);
}
.ab-stats__item:nth-child(odd) {
    border-right: 1px solid rgba(255,255,255,.12);
}

.ab-stats__number {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 2.6rem;
    font-weight: 900;
    color: var(--orange);
    line-height: 1;
    margin-bottom: .4rem;
}

.ab-stats__label {
    font-size: .8rem;
    color: rgba(255,255,255,.65);
    letter-spacing: .05em;
}

/* ════════════════════════════════════════════════════════════════
   WHY CHOOSE US
════════════════════════════════════════════════════════════════ */
.ab-why {
    background: var(--gray-light);
}

.ab-why__header {
    text-align: center;
    margin-bottom: 3.5rem;
}
.ab-why__header p {
    color: var(--gray-text);
    font-size: 1.02rem;
    max-width: 500px;
    margin: 0 auto;
}

.ab-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.4rem;
}

.ab-feature {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 2.2rem 1.8rem;
    position: relative;
    overflow: hidden;
    transition: box-shadow .25s, transform .2s, border-color .2s;
}

/* bottom accent bar */
.ab-feature::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--teal), var(--orange));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .3s ease;
}

.ab-feature:hover {
    box-shadow: 0 12px 40px rgba(24,127,153,.12);
    transform: translateY(-4px);
    border-color: rgba(24,127,153,.25);
}
.ab-feature:hover::after { transform: scaleX(1); }

.ab-feature__icon {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    background: var(--teal);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.3rem;
    font-size: 1.1rem;
    color: var(--white);
    transition: background .2s;
}
.ab-feature:hover .ab-feature__icon {
    background: var(--orange);
}

.ab-feature h3 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.12rem;
    font-weight: 700;
    color: #187f99;
    margin-bottom: .65rem;
}

.ab-feature p {
    font-size: .92rem;
    color: var(--gray-text);
    line-height: 1.75;
}

/* ════════════════════════════════════════════════════════════════
   MISSION
════════════════════════════════════════════════════════════════ */
.ab-mission {
    background: linear-gradient(135deg, #0d4f60 0%, var(--teal) 60%, #1a9dbc 100%);
    position: relative;
    overflow: hidden;
}

.ab-mission::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 55% 70% at 0% 50%,  rgba(239,122,13,.18) 0%, transparent 55%),
        radial-gradient(ellipse 45% 55% at 100% 0%, rgba(0,0,0,.15) 0%, transparent 55%);
    pointer-events: none;
}

.ab-mission__inner {
    max-width: 820px;
    margin: 0 auto;
    padding: 0 1.5rem;
    position: relative;
    z-index: 1;
    text-align: center;
}

.ab-mission .ab-section-title {
    color: var(--white);
    margin-bottom: 1rem;
}
.ab-mission .ab-section-title em {
    color: var(--orange);
}

.ab-mission__divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin: 1.8rem 0;
}
.ab-mission__divider span {
    flex: 1;
    max-width: 100px;
    height: 1px;
    background: rgba(255,255,255,.25);
}
.ab-mission__divider i {
    color: var(--orange);
    font-size: .95rem;
}

.ab-mission p {
    font-size: clamp(1rem, 2vw, 1.15rem);
    color: rgba(255,255,255,.78);
    line-height: 1.9;
    margin-bottom: 1.4rem;
    text-align: center;
}

.ab-mission__tagline {
    font-style: italic;
    color: rgba(255,255,255,.55) !important;
    font-size: 1.05rem !important;
}

.ab-mission__author {
    display: inline-block;
    font-size: .75rem;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--orange);
    opacity: .85;
    margin-top: .5rem;
}

/* ════════════════════════════════════════════════════════════════
   CTA
════════════════════════════════════════════════════════════════ */
.ab-cta-section {
    background: var(--white);
}

.ab-cta {
    background: var(--gray-light);
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 5rem 3rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* decorative blobs */
.ab-cta::before {
    content: '';
    position: absolute;
    top: -80px; right: -80px;
    width: 260px; height: 260px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(24,127,153,.1) 0%, transparent 70%);
    pointer-events: none;
}
.ab-cta::after {
    content: '';
    position: absolute;
    bottom: -60px; left: -60px;
    width: 200px; height: 200px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(239,122,13,.08) 0%, transparent 70%);
    pointer-events: none;
}

.ab-cta h3 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(1.7rem, 3.5vw, 2.6rem);
    font-weight: 900;
    color: #187f99;
    margin-bottom: .9rem;
}

.ab-cta p {
    color: var(--gray-text);
    font-size: 1.02rem;
    margin-bottom: 2.3rem;
    max-width: 440px;
    margin-left: auto;
    margin-right: auto;
}

/* ════════════════════════════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════════════════════════════ */
@media (max-width: 960px) {
    .ab-story__grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .ab-features {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    .ab-section { padding: 4rem 1.25rem; }
    .ab-hero    { min-height: 100vh; }
    .ab-features { grid-template-columns: 1fr; }
    .ab-stats { padding: 2rem 1.25rem; gap: 0; }
    .ab-cta   { padding: 3.5rem 1.5rem; }
}


/* ================= home PAGE ================= */
/* ═══════════════════════════════════════════════════════════════
   home.css  —  Clermont Commissary  |  Home Page
   Colors: #187f99 (teal) · #ef7a0d (orange)
═══════════════════════════════════════════════════════════════ */

:root {
    --hm-teal:        #187f99;
    --hm-teal-dark:   #116478;
    --hm-teal-xdark:  #0d4f60;
    --hm-teal-light:  #e8f5f8;
    --hm-orange:      #ef7a0d;
    --hm-orange-dark: #c9640a;
    --hm-orange-light:#fff3e8;
    --hm-charcoal:    #1a2529;
    --hm-gray:        #5c6c72;
    --hm-gray-light:  #f5f8f9;
    --hm-white:       #ffffff;
    --hm-border:      rgba(24,127,153,.13);
}

/* ── RESET / BASE ── */
*, *::before, *::after { box-sizing: border-box; }

/* ── SCROLL REVEAL ── */
.hm-reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .6s ease, transform .6s ease;
}
.hm-reveal.hm-visible {
    opacity: 1;
    transform: none;
}

/* ── UTILITIES ── */
.hm-inner {
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 1.5rem;
}
.hm-section { padding: 6rem 1.5rem; }

.hm-tag {
    display: inline-block;
    font-size: .7rem;
    font-weight: 600;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--hm-orange);
    margin-bottom: .75rem;
}

.hm-section-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(1.9rem, 4.5vw, 3rem);
    font-weight: 900;
    color: #ef7a0d;
    line-height: 1.15;
    margin-bottom: 1rem;
}
.hm-section-title em {
    font-style: italic;
    color: var(--hm-teal);
}

/* ── BUTTONS ── */
.hm-btn {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .9rem 2rem;
    border-radius: 6px;
    font-size: .92rem;
    font-weight: 600;
    letter-spacing: .02em;
    text-decoration: none;
    transition: background .2s, color .2s, box-shadow .2s, transform .15s;
    cursor: pointer;
    white-space: nowrap;
}
.hm-btn:hover { transform: translateY(-2px); }

.hm-btn--teal {
    background: var(--hm-teal);
    color: var(--hm-white);
    box-shadow: 0 4px 18px rgba(24,127,153,.28);
}
.hm-btn--teal:hover { background: var(--hm-teal-dark); box-shadow: 0 6px 24px rgba(24,127,153,.38); }

.hm-btn--orange {
    background: var(--hm-orange);
    color: var(--hm-white);
    box-shadow: 0 4px 18px rgba(239,122,13,.3);
}
.hm-btn--orange:hover { background: var(--hm-orange-dark); box-shadow: 0 6px 24px rgba(239,122,13,.4); }

.hm-btn--outline-white {
    border: 2px solid rgba(255,255,255,.55);
    color: var(--hm-white);
    background: transparent;
}
.hm-btn--outline-white:hover { border-color: var(--hm-white); background: rgba(255,255,255,.08); }

.hm-btn--white {
    background: #187f99;
    color: #ffffff;
    box-shadow: 0 4px 18px rgba(0,0,0,.15);
}
.hm-btn--white:hover{  
    background: #ef7a0d;
    box-shadow: 0 6px 24px rgba(0,0,0,.2); }

/* ══════════════════════════════════════════════════════════════
   HERO
══════════════════════════════════════════════════════════════ */
.hm-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-top: 90px;
}

.hm-hero__bg {
    position: absolute;
    inset: 0;
}
.hm-hero__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.hm-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(13,79,96,.92) 0%,
        rgba(24,127,153,.78) 50%,
        rgba(13,79,96,.88) 100%
    );
}

/* animated geometric shapes */
.hm-hero__bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 50% 60% at 10% 20%, rgba(239,122,13,.2) 0%, transparent 55%),
        radial-gradient(ellipse 40% 50% at 85% 80%, rgba(255,255,255,.05) 0%, transparent 50%);
    pointer-events: none;
}

.hm-hero__content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 3rem 1.5rem;
    text-align: center;
    animation: hmHeroIn .9s ease both;
}

@keyframes hmHeroIn {
    from { opacity: 0; transform: translateY(30px); }
    to   { opacity: 1; transform: none; }
}

.hm-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: .72rem;
    letter-spacing: .28em;
    text-transform: uppercase;
    color: rgba(255,255,255,.75);
    margin-bottom: 1.2rem;
    animation: hmHeroIn .7s .2s ease both;
}
.hm-eyebrow::before,
.hm-eyebrow::after {
    content: '';
    display: block;
    width: 28px;
    height: 1px;
    background: rgba(255,255,255,.45);
}

.hm-hero__title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(2.4rem, 6vw, 5rem);
    font-weight: 900;
    color: var(--hm-white);
    line-height: 1.1;
    margin-bottom: 1.2rem;
    animation: hmHeroIn .7s .35s ease both;
}
.hm-hero__title span {
    color: var(--hm-orange);
    font-style: italic;
}

.hm-hero__lead {
    font-size: clamp(1.05rem, 2.2vw, 1.3rem);
    font-weight: 600;
    color: rgba(255, 255, 255, 255);
    margin-bottom: .8rem;
    animation: hmHeroIn .7s .45s ease both;
}

.hm-hero__body {
    font-size: clamp(.95rem, 1.8vw, 1.08rem);
    color: rgba(255,255,255,255);
    line-height: 1.8;
    margin-bottom: 2.2rem;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
    animation: hmHeroIn .7s .55s ease both;
}

.hm-hero__cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: hmHeroIn .7s .7s ease both;
}

.hm-hero__scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    color: rgba(255,255,255,.3);
    font-size: .6rem;
    letter-spacing: .2em;
    text-transform: uppercase;
    z-index: 2;
    animation: hmHeroIn .7s 1s ease both;
}
.hm-hero__scroll-line {
    width: 1px;
    height: 44px;
    background: linear-gradient(to bottom, rgba(255,255,255,.5), transparent);
    animation: hmScrollPulse 2s ease-in-out infinite;
}
@keyframes hmScrollPulse {
    0%,100% { transform: scaleY(1); opacity: 1; }
    50%      { transform: scaleY(.5); opacity: .4; }
}

/* ══════════════════════════════════════════════════════════════
   WHY CHOOSE
══════════════════════════════════════════════════════════════ */
.hm-why { background: var(--hm-white); }

.hm-why__header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.hm-why__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.hm-why__card {
    background: var(--hm-gray-light);
    border: 1px solid var(--hm-border);
    border-radius: 14px;
    padding: 2.4rem 2rem;
    text-align: center;
    transition: box-shadow .25s, transform .2s, border-color .2s;
    position: relative;
    overflow: hidden;
}
.hm-why__card::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--hm-teal), var(--hm-orange));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .3s ease;
}
.hm-why__card:hover {
    box-shadow: 0 12px 40px rgba(24,127,153,.13);
    transform: translateY(-5px);
    border-color: rgba(24,127,153,.2);
}
.hm-why__card:hover::after { transform: scaleX(1); }

.hm-why__icon {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    background: var(--hm-teal);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.3rem;
    font-size: 1.25rem;
    color: var(--hm-white);
    transition: background .2s;
}
.hm-why__card:hover .hm-why__icon { background: var(--hm-orange); }

.hm-why__card h3 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: #ef7a0d;
    margin-bottom: .65rem;
}
.hm-why__card p {
    font-size: .93rem;
    color: var(--hm-gray);
    line-height: 1.75;
}

/* ══════════════════════════════════════════════════════════════
   SERVICES OVERVIEW
══════════════════════════════════════════════════════════════ */
.hm-services { background: var(--hm-gray-light); }

.hm-services__header {
    text-align: center;
    margin-bottom: 3rem;
}
.hm-services__header p {
    color: var(--hm-gray);
    font-size: 1rem;
    margin-top: .4rem;
}

.hm-services__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
    margin-bottom: 2.5rem;
}

.hm-service-card {
    background: var(--hm-white);
    border: 1px solid var(--hm-border);
    border-radius: 12px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: box-shadow .25s, transform .2s;
}
.hm-service-card:hover {
    box-shadow: 0 10px 32px rgba(24,127,153,.12);
    transform: translateY(-4px);
}

.hm-service-card__icon {
    width: 52px;
    height: 52px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--hm-teal), var(--hm-teal-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.1rem;
    font-size: 1.15rem;
    color: var(--hm-white);
    transition: background .2s;
}
.hm-service-card:hover .hm-service-card__icon {
    background: linear-gradient(135deg, var(--hm-orange), var(--hm-orange-dark));
}

.hm-service-card h4 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: #ef7a0d;
    margin-bottom: .55rem;
}
.hm-service-card p {
    font-size: .88rem;
    color: var(--hm-gray);
    line-height: 1.7;
}

.hm-services__cta { text-align: center; }

/* ══════════════════════════════════════════════════════════════
   STATS
══════════════════════════════════════════════════════════════ */
.hm-stats {
    background: linear-gradient(135deg, var(--hm-teal-xdark) 0%, var(--hm-teal) 60%, #1a9dbc 100%);
    padding: 5rem 1.5rem;
    position: relative;
    overflow: hidden;
}
.hm-stats::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 70% at 5% 50%, rgba(239,122,13,.18) 0%, transparent 55%),
        radial-gradient(ellipse 50% 60% at 95% 50%, rgba(0,0,0,.12) 0%, transparent 50%);
    pointer-events: none;
}

.hm-stats__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    position: relative;
    z-index: 1;
}

.hm-stat {
    text-align: center;
    padding: 1.5rem 1rem;
}
.hm-stat + .hm-stat {
    border-left: 1px solid rgba(255,255,255,.12);
}

.hm-stat__number {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(2.4rem, 5vw, 3.5rem);
    font-weight: 900;
    color: var(--hm-orange);
    line-height: 1;
    margin-bottom: .5rem;
}
.hm-stat__label {
    font-size: .82rem;
    color: rgba(255,255,255,.65);
    letter-spacing: .06em;
    text-transform: uppercase;
}

/* ══════════════════════════════════════════════════════════════
   DETAILED SERVICES
══════════════════════════════════════════════════════════════ */
.hm-detail { background: var(--hm-white); }

.hm-detail__header {
    text-align: center;
    margin-bottom: 3rem;
}
.hm-detail__header p {
    color: var(--hm-gray);
    font-size: 1rem;
    margin-top: .4rem;
}

.hm-detail__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.hm-detail-card {
    background: var(--hm-gray-light);
    border: 1px solid var(--hm-border);
    border-radius: 14px;
    padding: 2.2rem 2rem;
    display: flex;
    flex-direction: column;
    gap: .75rem;
    transition: box-shadow .25s, transform .2s, border-color .2s;
    position: relative;
    overflow: hidden;
}
.hm-detail-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, var(--hm-teal), var(--hm-orange));
    transform: scaleY(0);
    transform-origin: top;
    transition: transform .3s ease;
}
.hm-detail-card:hover {
    box-shadow: 0 12px 36px rgba(24,127,153,.12);
    transform: translateY(-4px);
    border-color: rgba(24,127,153,.2);
}
.hm-detail-card:hover::before { transform: scaleY(1); }

.hm-detail-card__icon {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    background: var(--hm-teal);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: var(--hm-white);
    transition: background .2s;
    flex-shrink: 0;
}
.hm-detail-card:hover .hm-detail-card__icon { background: var(--hm-orange); }

.hm-detail-card h4 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.12rem;
    font-weight: 700;
    color: #187f99 ;
}
.hm-detail-card p {
    font-size: .92rem;
    color: var(--hm-gray);
    line-height: 1.78;
}

.hm-detail__cta { text-align: center; }

/* ══════════════════════════════════════════════════════════════
   COMMUNITY
══════════════════════════════════════════════════════════════ */
.hm-community { background: var(--hm-gray-light); }

.hm-community__card {
    background: var(--hm-white);
    border: 1px solid var(--hm-border);
    border-radius: 18px;
    padding: 4rem 3rem;
    text-align: center;
    max-width: 720px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(24,127,153,.08);
}
.hm-community__deco {
    position: absolute;
    top: -60px; right: -60px;
    width: 200px; height: 200px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(24,127,153,.1) 0%, transparent 70%);
    pointer-events: none;
}
.hm-community__icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--hm-teal), var(--hm-teal-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.4rem;
    font-size: 1.4rem;
    color: var(--hm-white);
}
.hm-community__card h3 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: #ef7a0d;
    margin-bottom: .9rem;
}
.hm-community__card p {
    font-size: 1rem;
    color: var(--hm-gray);
    line-height: 1.8;
    max-width: 520px;
    margin: 0 auto;
}

/* ══════════════════════════════════════════════════════════════
   FINAL CTA
══════════════════════════════════════════════════════════════ */
.hm-cta {
    background: #ffffff;
    padding: 7rem 1.5rem;
    position: relative;
    overflow: hidden;
}
.hm-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 55% 70% at 0% 50%, rgba(239,122,13,.15) 0%, transparent 55%),
        radial-gradient(ellipse 40% 50% at 100% 0%, rgba(0,0,0,.1) 0%, transparent 50%);
    pointer-events: none;
}
.hm-cta__inner {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}
.hm-cta__inner p {
    font-size: 1.05rem;
    color: #187f99;
    line-height: 1.8;
    margin-bottom: 2.5rem;
    max-width: 580px;
    margin-left: auto;
    margin-right: auto;
}

/* ══════════════════════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════════════════════ */
@media (max-width: 1000px) {
    .hm-services__grid { grid-template-columns: repeat(2, 1fr); }
    .hm-stats__grid    { grid-template-columns: repeat(2, 1fr); }
    .hm-stat + .hm-stat { border-left: none; }
    .hm-stat:nth-child(1),
    .hm-stat:nth-child(2) { border-bottom: 1px solid rgba(255,255,255,.12); }
    .hm-stat:nth-child(odd) { border-right: 1px solid rgba(255,255,255,.12); }
}
@media (max-width: 768px) {
    .hm-why__grid { grid-template-columns: 1fr; }
    .hm-detail__grid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
    .hm-section { padding: 4rem 1.25rem; }
    .hm-services__grid { grid-template-columns: 1fr; }
    .hm-community__card { padding: 2.5rem 1.5rem; }
    .hm-cta { padding: 5rem 1.25rem; }
}

/*Service page*/
/* ═══════════════════════════════════════════════════════════════
   services.css  —  Clermont Commissary  |  Services Page
   Colors: #187f99 (teal) · #ef7a0d (orange)
═══════════════════════════════════════════════════════════════ */

:root {
    --sv-teal:        #187f99;
    --sv-teal-dark:   #116478;
    --sv-teal-xdark:  #0d4f60;
    --sv-teal-light:  #e8f5f8;
    --sv-orange:      #ef7a0d;
    --sv-orange-dark: #c9640a;
    --sv-charcoal:    #1a2529;
    --sv-gray:        #5c6c72;
    --sv-gray-light:  #f5f8f9;
    --sv-white:       #ffffff;
    --sv-border:      rgba(24,127,153,.13);
}

/* ── SCROLL REVEAL ── */
.sv-reveal {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity .6s ease, transform .6s ease;
}
.sv-reveal.sv-visible {
    opacity: 1;
    transform: none;
}

/* ── UTILITIES ── */
.sv-inner {
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 1.5rem;
}
.sv-section { padding: 5.5rem 1.5rem; }
.sv-bg-white { background: var(--sv-white); }
.sv-bg-gray  { background: var(--sv-gray-light); }

.sv-tag {
    display: inline-block;
    font-size: .7rem;
    font-weight: 600;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--sv-orange);
    margin-bottom: .75rem;
}

.sv-section-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 900;
    color: #ef7a0d;
    line-height: 1.15;
    margin-bottom: 1rem;
}
.sv-section-title em {
    font-style: italic;
    color: var(--sv-teal);
}

/* ── GROUP HEADER ── */
.sv-group-header {
    text-align: center;
    margin-bottom: 3rem;
}
.sv-group-header p {
    color: var(--sv-gray);
    font-size: 1rem;
    margin-top: .4rem;
}

/* ── BUTTONS ── */
.sv-btn {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    padding: .8rem 1.8rem;
    border-radius: 6px;
    font-size: .88rem;
    font-weight: 600;
    text-decoration: none;
    letter-spacing: .02em;
    transition: background .2s, color .2s, box-shadow .2s, transform .15s;
    cursor: pointer;
}
.sv-btn:hover { transform: translateY(-2px); }

.sv-btn--primary {
    background: var(--sv-teal);
    color: var(--sv-white);
    box-shadow: 0 4px 16px rgba(24,127,153,.25);
}
.sv-btn--primary:hover { background: var(--sv-teal-dark); box-shadow: 0 6px 22px rgba(24,127,153,.35); }

.sv-btn--white {
    background: #187f99;
    color: #ffffff;
    box-shadow: 0 4px 16px rgba(0,0,0,.14);
}
.sv-btn--white:hover { background:#ef7a0d; }

/* ══════════════════════════════════════════════════════════════
   HERO
══════════════════════════════════════════════════════════════ */
.sv-hero {
    position: relative;
    min-height: 52vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--sv-teal-xdark) 0%, var(--sv-teal) 55%, #1a9dbc 100%);
    overflow: hidden;
    padding-top: 90px;
}

/* geometric pattern */
.sv-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        repeating-linear-gradient(0deg,   transparent, transparent 59px, rgba(255,255,255,.03) 60px),
        repeating-linear-gradient(90deg,  transparent, transparent 59px, rgba(255,255,255,.03) 60px);
    pointer-events: none;
}

.sv-hero__overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 55% 70% at 10% 30%, rgba(239,122,13,.18) 0%, transparent 55%),
        radial-gradient(ellipse 40% 50% at 85% 70%, rgba(0,0,0,.12) 0%, transparent 55%);
    pointer-events: none;
}

.sv-hero__content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 4rem 1.5rem;
    max-width: 720px;
    animation: svHeroIn .85s ease both;
}

@keyframes svHeroIn {
    from { opacity: 0; transform: translateY(26px); }
    to   { opacity: 1; transform: none; }
}

.sv-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: .7rem;
    letter-spacing: .28em;
    text-transform: uppercase;
    color: rgba(255,255,255,.7);
    margin-bottom: 1.1rem;
    animation: svHeroIn .7s .2s ease both;
}
.sv-eyebrow::before,
.sv-eyebrow::after {
    content: '';
    display: block;
    width: 26px;
    height: 1px;
    background: rgba(255,255,255,.4);
}

.sv-hero__title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(2.4rem, 6vw, 4.5rem);
    font-weight: 900;
    color: var(--sv-white);
    line-height: 1.1;
    margin-bottom: 1.1rem;
    animation: svHeroIn .7s .35s ease both;
}
.sv-hero__title span {
    color: var(--sv-orange);
    font-style: italic;
}

.sv-hero__sub {
    font-size: clamp(.95rem, 2vw, 1.2rem);
    color: rgba(255,255,255,.72);
    font-weight: 300;
    animation: svHeroIn .7s .5s ease both;
}

/* ══════════════════════════════════════════════════════════════
   SERVICE GRID LAYOUTS
══════════════════════════════════════════════════════════════ */
.sv-grid {
    display: grid;
    gap: 1.4rem;
    margin-bottom: 1.4rem;
}
.sv-grid--3 { grid-template-columns: repeat(3, 1fr); }
.sv-grid--2 { grid-template-columns: repeat(2, 1fr); }

/* ══════════════════════════════════════════════════════════════
   SERVICE CARD
══════════════════════════════════════════════════════════════ */
.sv-card {
    background: var(--sv-white);
    border: 1px solid var(--sv-border);
    border-radius: 14px;
    padding: 2.2rem 2rem;
    display: flex;
    flex-direction: column;
    gap: .75rem;
    transition: box-shadow .25s, transform .2s, border-color .2s;
    position: relative;
    overflow: hidden;
}

/* accent line on left */
.sv-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, var(--sv-teal), var(--sv-orange));
    transform: scaleY(0);
    transform-origin: top;
    transition: transform .3s ease;
}
.sv-card:hover {
    box-shadow: 0 14px 42px rgba(24,127,153,.12);
    transform: translateY(-4px);
    border-color: rgba(24,127,153,.22);
}
.sv-card:hover::before { transform: scaleY(1); }

/* on gray bg, card is white */
.sv-bg-gray .sv-card { background: var(--sv-white); }

.sv-card__icon {
    width: 50px;
    height: 50px;
    border-radius: 11px;
    background: var(--sv-teal);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: var(--sv-white);
    flex-shrink: 0;
    transition: background .2s;
}
.sv-card:hover .sv-card__icon { background: var(--sv-orange); }

.sv-card h3 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.12rem;
    font-weight: 700;
    color: #187f99;
}

.sv-card p {
    font-size: .92rem;
    color: var(--sv-gray);
    line-height: 1.76;
}

/* checklist */
.sv-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: .55rem;
    flex: 1;
}
.sv-list li {
    display: flex;
    align-items: flex-start;
    gap: .65rem;
    font-size: .91rem;
    color: var(--sv-charcoal);
    line-height: 1.5;
}
.sv-list li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: .75rem;
    color: var(--sv-teal);
    flex-shrink: 0;
    margin-top: 2px;
    transition: color .2s;
}
.sv-card:hover .sv-list li::before { color: var(--sv-orange); }

.sv-card__footer {
    padding-top: .5rem;
    margin-top: auto;
}

/* ══════════════════════════════════════════════════════════════
   PLANS
══════════════════════════════════════════════════════════════ */
.sv-plans {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    align-items: start;
}

.sv-plan {
    background: var(--sv-white);
    border: 1px solid var(--sv-border);
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: box-shadow .25s, transform .2s;
}
.sv-plan:hover {
    box-shadow: 0 14px 44px rgba(24,127,153,.14);
    transform: translateY(-4px);
}

.sv-plan--featured {
    border: 2px solid var(--sv-teal);
    transform: scale(1.03);
    box-shadow: 0 14px 48px rgba(24,127,153,.22);
}
.sv-plan--featured:hover { transform: scale(1.03) translateY(-4px); }

.sv-plan__header {
    background: linear-gradient(135deg, var(--sv-teal-xdark) 0%, var(--sv-teal) 100%);
    color: var(--sv-white);
    padding: 2.2rem 1.8rem;
    text-align: center;
    position: relative;
}

.sv-plan__badge {
    display: inline-block;
    background: var(--sv-orange);
    color: var(--sv-white);
    font-size: .65rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    padding: .3rem .8rem;
    border-radius: 20px;
    margin-bottom: .9rem;
}

.sv-plan__header h4 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: .6rem;
}

.sv-plan__price {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 3rem;
    font-weight: 900;
    color: var(--sv-orange);
    line-height: 1;
    margin-bottom: .4rem;
}
.sv-plan__price span {
    font-size: 1.2rem;
    font-weight: 400;
    color: rgba(255,255,255,.6);
}

.sv-plan__header p {
    font-size: .85rem;
    color: rgba(255,255,255,.65);
}

.sv-plan__body {
    padding: 2rem 1.8rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.sv-plan__list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.8rem;
    display: flex;
    flex-direction: column;
    gap: .7rem;
    flex: 1;
}
.sv-plan__list li {
    display: flex;
    align-items: flex-start;
    gap: .65rem;
    font-size: .9rem;
    color: var(--sv-charcoal);
    line-height: 1.5;
}
.sv-plan__list li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: .75rem;
    color: var(--sv-teal);
    flex-shrink: 0;
    margin-top: 2px;
}

.sv-plan__cta {
    display: block;
    text-align: center;
    background: var(--sv-teal);
    color: var(--sv-white);
    padding: .9rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: .92rem;
    text-decoration: none;
    transition: background .2s, transform .15s;
}
.sv-plan__cta:hover { background: var(--sv-teal-dark); transform: translateY(-1px); }
.sv-plan--featured .sv-plan__cta { background: var(--sv-orange); }
.sv-plan--featured .sv-plan__cta:hover { background: var(--sv-orange-dark); }

/* ══════════════════════════════════════════════════════════════
   CTA SECTION
══════════════════════════════════════════════════════════════ */
.sv-cta {
    background: var(--sv-gray-light);
    padding: 6rem 1.5rem;
    position: relative;
    overflow: hidden;
}
.sv-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    
}

.sv-cta__inner {
    max-width: 640px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}
.sv-cta__inner h2 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(1.9rem, 4vw, 3rem);
    font-weight: 900;
    color: #187f99;
    margin-bottom: 1rem;
}
.sv-cta__inner p {
    font-size: 1.05rem;
    color: #187f99;
    line-height: 1.78;
    margin-bottom: 2.2rem;
}

/* ══════════════════════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════════════════════ */
@media (max-width: 1000px) {
    .sv-grid--3 { grid-template-columns: repeat(2, 1fr); }
    .sv-plans   { grid-template-columns: 1fr; }
    .sv-plan--featured { transform: none; }
    .sv-plan--featured:hover { transform: translateY(-4px); }
}
@media (max-width: 700px) {
    .sv-grid--3,
    .sv-grid--2 { grid-template-columns: 1fr; }
    .sv-section { padding: 4rem 1.25rem; }
    .sv-cta     { padding: 4.5rem 1.25rem; }
}

/* ============================================================
   licensing.css  —  Clermont Commissary
   Prefijo: li-   (mismo patrón que ab- en about.css)
   Variables heredadas de style.css
   ============================================================ */

/* ═══ REVEAL ANIMATION ══════════════════════════════════════════ */
.li-reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity .7s ease, transform .7s ease;
}
.li-reveal.li-visible {
    opacity: 1;
    transform: none;
}

/* ═══ SHARED LAYOUT ═════════════════════════════════════════════ */
.li-section {
    padding: clamp(60px, 8vw, 120px) 0;
}

.li-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 clamp(20px, 5vw, 60px);
}

.li-section__header {
    text-align: center;
    margin-bottom: 4rem;
}
.li-section__header p {
    color: var(--gray-500, #8a8578);
    font-size: 1.05rem;
    font-weight: 300;
    margin-top: .5rem;
}

.li-tag {
    display: inline-block;
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--accent, #ef7a0d);
    margin-bottom: .75rem;
}

.li-section-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    line-height: 1.15;
    color: #187f99;
    margin-bottom: .5rem;
}
.li-section-title em {
    font-style: italic;
    color: #ef7a0d;
}

/* ═══ BUTTONS ════════════════════════════════════════════════════ */
.li-btn {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .85rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: .9rem;
    letter-spacing: .03em;
    transition: all .3s;
    cursor: pointer;
}
.li-btn--white {
    background: #fff;
    color: #187f99;
}
.li-btn--white:hover {
    background: #f4f3f0;
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(0,0,0,.2);
}
.li-btn--outline-white {
    background: transparent;
    color: #fff;
    border: 1.5px solid rgba(255,255,255,.45);
}
.li-btn--outline-white:hover {
    border-color: #fff;
    background: rgba(255,255,255,.08);
    transform: translateY(-3px);
}
.li-btn--lg {
    padding: 1rem 2.5rem;
    font-size: 1rem;
}

/* ═══ HERO ════════════════════════════════════════════════════════ */
.li-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--primary-dark, #1a1160);
}

.li-hero__overlay {
        position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #0d4f60 0%, var(--teal) 50%, #1a9dbc 100%);
}

/* Subtle grid */
.li-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
}

.li-hero__content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 120px 24px 80px;
    max-width: 860px;
}

.li-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    font-size: .8rem;
    font-weight: 600;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: #ffffff;
    margin-bottom: 1.5rem;
    padding: .4rem 1.1rem;
    border: #ffffff 1.5px solid rgba(255,255,255,.45);
    border-radius: 50px;
}

.li-hero__title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(3rem, 7vw, 6rem);
    font-weight: 900;
    color: #fff;
    line-height: 1.05;
    margin-bottom: 1.5rem;
}
.li-hero__title span {
    font-style: italic;
    color: #ef7a0d;
}

.li-hero__sub {
    font-size: clamp(1rem, 2.2vw, 1.2rem);
    color: rgba(255,255,255,.7);
    max-width: 560px;
    margin: 0 auto 2.5rem;
    font-weight: 300;
    line-height: 1.8;
}

.li-hero__cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Scroll indicator */
.li-hero__scroll {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .5rem;
    color: rgba(255,255,255,.4);
    font-size: .7rem;
    letter-spacing: .15em;
    text-transform: uppercase;
    z-index: 2;
}
.li-hero__scroll-line {
    width: 1px;
    height: 48px;
    background: linear-gradient(to bottom, rgba(255,255,255,.5), transparent);
    animation: liScrollPulse 2s ease-in-out infinite;
}
@keyframes liScrollPulse {
    0%, 100% { opacity: .4; transform: scaleY(1); }
    50%       { opacity: 1;  transform: scaleY(1.1); }
}

/* ═══ LICENSES SECTION ═══════════════════════════════════════════ */
.li-licenses {
    background: #f9f8f4;
}

.li-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 500px), 1fr));
    gap: 2rem;
}

/* Card */
.li-card {
    background: #fff;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(42,28,128,.12);
    transition: transform .35s, box-shadow .35s;
}
.li-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 32px 80px rgba(42,28,128,.2);
}

.li-card__head {
    background: linear-gradient(135deg, var(--teal, #187f99) 0%, #187f99 100%);
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
}
/* Decorative circles */
.li-card__head::before {
    content: '';
    position: absolute;
    right: -30px; top: -30px;
    width: 160px; height: 160px;
    border-radius: 50%;
    background: rgba(255,255,255,.07);
}
.li-card__head::after {
    content: '';
    position: absolute;
    right: 30px; bottom: -40px;
    width: 100px; height: 100px;
    border-radius: 50%;
    background: rgba(255,255,255,.05);
}

.li-card__badge {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: rgba(255,255,255,.15);
    color: rgba(255,255,255,.9);
    padding: .35rem .9rem;
    border-radius: 50px;
    font-size: .75rem;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
    margin-bottom: 1.2rem;
    position: relative;
    z-index: 1;
}

.li-card__head h3 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 2rem;
    font-weight: 900;
    color: #fff;
    margin-bottom: .4rem;
    position: relative;
    z-index: 1;
}
.li-card__head p {
    color: rgba(255,255,255,.7);
    font-size: .9rem;
    font-weight: 300;
    position: relative;
    z-index: 1;
}

.li-card__accent-bar {
    height: 4px;
    background: linear-gradient(90deg, var(--accent, #ef7a0d), #f7a44a, transparent);
}

.li-card__body {
    padding: 2.5rem;
}

.li-card__section {
    margin-bottom: 2rem;
}
.li-card__section:last-child {
    margin-bottom: 0;
}

.li-card__section-title {
    display: flex;
    align-items: center;
    gap: .6rem;
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: #187f99;
    margin-bottom: 1rem;
}

.li-card__desc {
    color: #8a8578;
    font-size: .95rem;
    line-height: 1.75;
}

/* Who needs it — 2-col list */
.li-card__list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .6rem;
    list-style: none;
    padding: 0;
    margin: 0;
}
.li-card__list li {
    display: flex;
    align-items: center;
    gap: .5rem;
    font-size: .9rem;
    color: #4a4640;
    font-weight: 500;
}
.li-card__list li::before {
    content: '';
    width: 6px; height: 6px;
    flex-shrink: 0;
    border-radius: 50%;
    background: var(--accent, #ef7a0d);
}

.li-card__req-icon i {
    color: #187f99;
}
/* Requirements list */
.li-card__reqs {
    list-style: none;
    padding: 0; margin: 0;
    display: flex;
    flex-direction: column;
    gap: .75rem;
}
.li-card__reqs li {
    display: flex;
    align-items: center;
    gap: .75rem;
    font-size: .9rem;
    color: #4a4640;
}
.li-card__req-icon {
    width: 32px; height: 32px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(42,28,128,.08);
    border-radius: 8px;
    color: var(--primary, #2a1c80);
    font-size: .8rem;
}

/* Timeline pill */
.li-card__timeline {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: #f4f3f0;
    border-radius: 16px;
    padding: 1rem 1.25rem;
}
.li-card__timeline-icon {
    width: 40px; height: 40px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #187f99 ;
    border-radius: 50%;
    color: #fff;
    font-size: .85rem;
}
.li-card__timeline-text strong {
    display: block;
    color: #1c1a16;
    font-size: .9rem;
}
.li-card__timeline-text span {
    color: #8a8578;
    font-size: .8rem;
}

/* ═══ PROCESS SECTION ════════════════════════════════════════════ */
.li-process {
    background: #fff;
}

.li-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
    gap: 1.5rem;
}

.li-step {
    position: relative;
    background: #f9f8f4;
    border-radius: 16px;
    padding: 2rem 2rem 2rem 2.5rem;
    border-left: 3px solid transparent;
    overflow: hidden;
    transition: border-color .3s, box-shadow .3s, transform .3s;
}
/* Large ghost number */
.li-step::before {
    content: attr(data-num);
    position: absolute;
    right: 1.5rem; top: 1rem;
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 4rem;
    font-weight: 900;
    color: rgba(42,28,128,.06);
    line-height: 1;
    pointer-events: none;
    transition: color .3s;
}
.li-step:hover {
    border-left-color: var(--accent, #ef7a0d);
    box-shadow: 0 8px 32px rgba(42,28,128,.12);
    transform: translateX(4px);
}
.li-step:hover::before {
    color: rgba(239,122,13,.1);
}

.li-step__num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px; height: 36px;
    background: #187f99;
    color: #fff;
    border-radius: 50%;
    font-size: .85rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.li-step h3 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: #187f99;
    margin-bottom: .5rem;
}
.li-step p {
    color: #8a8578;
    font-size: .9rem;
    line-height: 1.7;
}

/* ═══ FAQ SECTION ════════════════════════════════════════════════ */
.li-faq {
    background: #187f99;
}

.li-faq .li-tag         { color: #ffffff; }
.li-faq .li-section-title { color: #fff; }
.li-faq .li-section-title em { color: #ef7a0d; }
.li-faq .li-section__header p { color: rgba(255,255,255,255); }

.li-faq__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 460px), 1fr));
    gap: 1.25rem;
}

.li-faq__item {
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 16px;
    padding: 2rem;
    transition: background .3s, border-color .3s, transform .3s;
}
.li-faq__item:hover {
    background: rgba(255,255,255,.1);
    border-color: rgba(239,122,13,.45);
    transform: translateY(-3px);
}

.li-faq__item h3 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: .75rem;
    line-height: 1.4;
}
.li-faq__item p {
    color: rgba(255,255,255,255);
    font-size: .9rem;
    line-height: 1.75;
}

/* ═══ CTA SECTION ════════════════════════════════════════════════ */
.li-cta-section {
    background: #f9f8f4;
}

.li-cta {
   background: linear-gradient(135deg, #0d4f60 0%, var(--teal) 50%, #1a9dbc 100%);
    border-radius: 40px;
    padding: clamp(3rem, 6vw, 5rem) clamp(2rem, 6vw, 5rem);
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 32px 80px rgba(42,28,128,.22);
}
.li-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(255,255,255,.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(239,122,13,.25) 0%, transparent 50%);
    pointer-events: none;
}
.li-cta > * { position: relative; }

.li-cta .li-tag { color: #ffffff; margin-bottom: 1rem; }

.li-cta h3 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 1rem;
}
.li-cta h3 em {
    font-style: italic;
    color: #ef7a0d
;
}
.li-cta p {
    color: rgba(255,255,255,.7);
    font-size: 1.05rem;
    font-weight: 300;
    max-width: 520px;
    margin: 0 auto 2.5rem;
}

/* ═══ RESPONSIVE ═════════════════════════════════════════════════ */
@media (max-width: 768px) {
    .li-card__list {
        grid-template-columns: 1fr;
    }
    .li-hero__title {
        font-size: clamp(2.4rem, 10vw, 4rem);
    }
    .li-cta {
        border-radius: 24px;
    }
}

@media (max-width: 480px) {
    .li-card__body {
        padding: 1.75rem;
    }
    .li-card__head {
        padding: 2rem;
    }
}

/* ============================================================
   contact.css  —  Clermont Commissary
   Prefijo: co-   (mismo patrón que ab- / li-)
   Variables heredadas de style.css
   ============================================================ */

/* ═══ REVEAL ANIMATION ══════════════════════════════════════════ */
.co-reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity .7s ease, transform .7s ease;
}
.co-reveal.co-visible {
    opacity: 1;
    transform: none;
}

/* ═══ SHARED LAYOUT ═════════════════════════════════════════════ */
.co-section {
    padding: clamp(60px, 8vw, 120px) 0;
}
.co-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 clamp(20px, 5vw, 60px);
}

.co-tag {
    display: inline-block;
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--accent, #ef7a0d);
    margin-bottom: .75rem;
}

.co-section-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 900;
    line-height: 1.15;
    color: #ef7a0d;
    margin-bottom: 1rem;
}
.co-section-title em {
    font-style: italic;
    color: #187f99;
}

/* ═══ BUTTONS ════════════════════════════════════════════════════ */
.co-btn {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .85rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: .9rem;
    letter-spacing: .03em;
    transition: all .3s;
    cursor: pointer;
}
.co-btn--white {
    background: #fff;
    color: #187f99;
}
.co-btn--white:hover {
    background: #f4f3f0;
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(0,0,0,.2);
}
.co-btn--outline-white {
    background: transparent;
    color: #fff;
    border: 1.5px solid rgba(255,255,255,.45);
}
.co-btn--outline-white:hover {
    border-color: #fff;
    background: rgba(255,255,255,.08);
    transform: translateY(-3px);
}

/* ═══ HERO ════════════════════════════════════════════════════════ */
.co-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #187f99;
}

.co-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #0d4f60 0%, var(--teal) 50%, #1a9dbc 100%);
}

.co-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
}

.co-hero__content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 120px 24px 80px;
    max-width: 780px;
}

.co-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    font-size: .8rem;
    font-weight: 600;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: #ffffff;
    margin-bottom: 1.5rem;
    padding: .4rem 1.1rem;
    /* border: 1px solid rgba(255, 255, 255, 255); */
    border-radius: 50px;
}

.co-hero__title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(3rem, 7vw, 5.5rem);
    font-weight: 900;
    color: #fff;
    line-height: 1.05;
    margin-bottom: 1.5rem;
}
.co-hero__title span {
    font-style: italic;
    color: #ef7a0d;
}

.co-hero__sub {
    font-size: clamp(1rem, 2vw, 1.15rem);
    color: rgba(255,255,255,.7);
    max-width: 540px;
    margin: 0 auto 2.5rem;
    font-weight: 300;
    line-height: 1.8;
}

.co-hero__cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.co-hero__scroll {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .5rem;
    color: rgba(255,255,255,.4);
    font-size: .7rem;
    letter-spacing: .15em;
    text-transform: uppercase;
    z-index: 2;
}
.co-hero__scroll-line {
    width: 1px;
    height: 48px;
    background: linear-gradient(to bottom, rgba(255,255,255,.5), transparent);
    animation: coScrollPulse 2s ease-in-out infinite;
}
@keyframes coScrollPulse {
    0%, 100% { opacity: .4; transform: scaleY(1); }
    50%       { opacity: 1;  transform: scaleY(1.1); }
}

/* ═══ CONTACT SECTION ════════════════════════════════════════════ */
.co-contact {
    background: #f9f8f4;
}

.co-contact__grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 2rem;
    align-items: start;
}

/* ── Info Sidebar ────────────────────────────────────────────── */
.co-info__card {
    background: #fff;
    border-radius: 28px;
    padding: 2.5rem;
    box-shadow: 0 8px 32px rgba(42,28,128,.1);
    position: sticky;
    top: 100px;
}

.co-info__card h3 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.4rem;
    font-weight: 900;
    color: #187f99;
    margin-bottom: 1.75rem;
}

.co-info__items {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.co-info__item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.co-info__icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(42,28,128,.08);
    border-radius: 10px;
    color: #187f99;
    font-size: .9rem;
}

.co-info__item strong {
    display: block;
    font-size: .8rem;
    font-weight: 700;
    color: #1c1a16;
    margin-bottom: .2rem;
}
.co-info__item a,
.co-info__item span {
    font-size: .875rem;
    color: #8a8578;
    line-height: 1.5;
    text-decoration: none;
    transition: color .2s;
}
.co-info__item a:hover {
    color: var(--primary, #2a1c80);
}

.co-info__divider {
    height: 1px;
    background: #e8e6e0;
    margin: 1.5rem 0;
}

.co-info__badge {
    display: flex;
    align-items: flex-start;
    gap: .85rem;
    background: rgba(42,28,128,.05);
    border: 1px solid rgba(42,28,128,.12);
    border-radius: 14px;
    padding: 1.1rem 1.2rem;
    margin-top: 1.75rem;
}
.co-info__badge > i {
    color: var(--accent, #ef7a0d);
    font-size: 1rem;
    margin-top: .15rem;
    flex-shrink: 0;
}
.co-info__badge strong {
    display: block;
    font-size: .825rem;
    font-weight: 700;
    color: #1c1a16;
    margin-bottom: .3rem;
}
.co-info__badge p {
    font-size: .8rem;
    color: #8a8578;
    line-height: 1.6;
    margin: 0;
}

/* ── Form Card ───────────────────────────────────────────────── */
.co-form__card {
    background: #fff;
    border-radius: 28px;
    padding: 2.5rem;
    box-shadow: 0 8px 32px rgba(42,28,128,.1);
}

.co-form__card h3 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.4rem;
    font-weight: 900;
    color: #187f99;
    margin-bottom: 2rem;
}

.co-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.co-form__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

.co-form__field {
    display: flex;
    flex-direction: column;
    gap: .5rem;
}

.co-form__field label {
    font-size: .82rem;
    font-weight: 600;
    color: #4a4640;
    letter-spacing: .02em;
}
.co-form__field label span {
    color: var(--accent, #ef7a0d);
    margin-left: .1rem;
}

.co-form__field input,
.co-form__field select,
.co-form__field textarea {
    width: 100%;
    padding: .8rem 1rem;
    border: 1.5px solid #e8e6e0;
    border-radius: 10px;
    font-family: inherit;
    font-size: .9rem;
    color: #1c1a16;
    background: #fafaf9;
    transition: border-color .2s, box-shadow .2s, background .2s;
    outline: none;
    appearance: none;
}
.co-form__field input::placeholder,
.co-form__field textarea::placeholder {
    color: #b0aca5;
}
.co-form__field input:focus,
.co-form__field select:focus,
.co-form__field textarea:focus {
    border-color: var(--primary, #2a1c80);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(42,28,128,.08);
}
.co-form__field select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%238a8578' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
    cursor: pointer;
}
.co-form__field textarea {
    resize: vertical;
    min-height: 130px;
}

/* Custom checkboxes */
.co-checkboxes {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .75rem;
}

.co-checkbox {
    display: flex;
    align-items: center;
    gap: .65rem;
    cursor: pointer;
    font-size: .875rem;
    color: #4a4640;
    font-weight: 500;
    user-select: none;
}
.co-checkbox input {
    position: absolute;
    opacity: 0;
    width: 0; height: 0;
}
.co-checkbox__box {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    border: 1.5px solid #d0cdc8;
    border-radius: 5px;
    background: #fafaf9;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .2s;
}
.co-checkbox input:checked ~ .co-checkbox__box {
    background: var(--primary, #2a1c80);
    border-color: var(--primary, #2a1c80);
}
.co-checkbox__box::after {
    content: '';
    width: 5px; height: 9px;
    border: 2px solid #fff;
    border-top: 0;
    border-left: 0;
    transform: rotate(45deg) translateY(-1px);
    opacity: 0;
    transition: opacity .15s;
}
.co-checkbox input:checked ~ .co-checkbox__box::after {
    opacity: 1;
}
.co-checkbox:hover .co-checkbox__box {
    border-color: var(--primary, #2a1c80);
}

/* Submit button */
.co-submit {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .6rem;
    width: 100%;
    padding: 1rem 2rem;
    background: #187f99;
    color: #fff;
    border: none;
    border-radius: 12px;
    font-family: inherit;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: .03em;
    cursor: pointer;
    transition: background .25s, transform .25s, box-shadow .25s;
}
.co-submit:hover {
    background: #3d2db5;
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(42,28,128,.25);
}

/* ═══ COVERAGE SECTION ═══════════════════════════════════════════ */
.co-coverage {
    background: #fff;
}

.co-coverage__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.co-coverage__desc {
    color: #8a8578;
    font-size: 1rem;
    line-height: 1.8;
    font-weight: 300;
    margin-bottom: 2rem;
}

.co-coverage__list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .75rem 2rem;
}
.co-coverage__list ul {
    list-style: none;
    padding: 0; margin: 0;
    display: flex;
    flex-direction: column;
    gap: .75rem;
}
.co-coverage__list li {
    display: flex;
    align-items: center;
    gap: .65rem;
    font-size: .9rem;
    color: #4a4640;
    font-weight: 500;
}
.co-coverage__list li i {
    color: var(--accent, #ef7a0d);
    font-size: .8rem;
    flex-shrink: 0;
}

/* Coverage card */
.co-coverage__card {
    background: #f9f8f4;
    border-radius: 28px;
    padding: 3rem 2.5rem;
    text-align: center;
    border: 1px solid #e8e6e0;
    transition: box-shadow .3s, transform .3s;
}
.co-coverage__card:hover {
    box-shadow: 0 20px 60px rgba(42,28,128,.12);
    transform: translateY(-4px);
}

.co-coverage__icon {
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #187f99;
    border-radius: 20px;
    margin: 0 auto 1.5rem;
    color: #fff;
    font-size: 1.6rem;
    box-shadow: 0 8px 24px rgba(42,28,128,.25);
}

.co-coverage__card h4 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: #1c1a16;
    margin-bottom: .5rem;
}
.co-coverage__card > p {
    color: #8a8578;
    font-size: .9rem;
    margin-bottom: 1.5rem;
}

.co-coverage__note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .6rem;
    background: rgba(42,28,128,.06);
    border-radius: 10px;
    padding: .85rem 1rem;
    font-size: .85rem;
    color: #4a4640;
}
.co-coverage__note i {
    color: var(--primary, #2a1c80);
}

/* ═══ RESPONSIVE ═════════════════════════════════════════════════ */
@media (max-width: 1024px) {
    .co-contact__grid {
        grid-template-columns: 1fr;
    }
    .co-info__card {
        position: static;
    }
    .co-coverage__grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
}

@media (max-width: 640px) {
    .co-form__row {
        grid-template-columns: 1fr;
    }
    .co-checkboxes {
        grid-template-columns: 1fr;
    }
    .co-hero__title {
        font-size: clamp(2.4rem, 10vw, 4rem);
    }
    .co-form__card,
    .co-info__card {
        padding: 1.75rem;
    }
}


/* ============================================================
   commissary-kitchen.css  —  Clermont Commissary
   Prefijo: ck-   (mismo patrón que ab- / li- / co-)
   Variables heredadas de style.css
   ============================================================ */

/* ═══ REVEAL ANIMATION ══════════════════════════════════════════ */
.ck-reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity .7s ease, transform .7s ease;
}
.ck-reveal.ck-visible {
    opacity: 1;
    transform: none;
}

/* ═══ SHARED LAYOUT ═════════════════════════════════════════════ */
.ck-section {
    padding: clamp(60px, 8vw, 120px) 0;
}
.ck-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 clamp(20px, 5vw, 60px);
}

.ck-section__header {
    text-align: center;
    margin-bottom: 4rem;
}
.ck-section__header p {
    color: #8a8578;
    font-size: 1.05rem;
    font-weight: 300;
    margin-top: .5rem;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
}

.ck-tag {
    display: inline-block;
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--accent, #ef7a0d);
    margin-bottom: .75rem;
}

.ck-section-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    line-height: 1.15;
    color: #ef7a0d;
    margin-bottom: .5rem;
}
.ck-section-title em {
    font-style: italic;
    color: #187f99;
}

/* ═══ BUTTONS ════════════════════════════════════════════════════ */
.ck-btn {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .85rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: .9rem;
    letter-spacing: .03em;
    transition: all .3s;
    cursor: pointer;
    text-decoration: none;
}
.ck-btn--primary {
    background: #187f99;
    color: #fff;
}
.ck-btn--primary:hover {
    background: #3d2db5;
    transform: translateY(-3px);
    box-shadow: 0 10px 28px rgba(42,28,128,.25);
}
.ck-btn--outline {
    background: transparent;
    color: #187f99;
    border: #187f99 1.5px solid;
}
.ck-btn--outline:hover {
    background: rgba(42,28,128,.06);
    transform: translateY(-3px);
}
.ck-btn--white {
    background: #fff;
    color: var(--teal, #187f99);
}
.ck-btn--white:hover {
    background: #f4f3f0;
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(0,0,0,.2);
}
.ck-btn--outline-white {
    background: transparent;
    color: #fff;
    border: 1.5px solid rgba(255,255,255,.45);
}
.ck-btn--outline-white:hover {
    border-color: #fff;
    background: rgba(255,255,255,.08);
    transform: translateY(-3px);
}
.ck-btn--lg {
    padding: 1rem 2.5rem;
    font-size: 1rem;
}

/* ═══ HERO ════════════════════════════════════════════════════════ */
.ck-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #1b4332;
}

.ck-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #0d4f60 0%, var(--teal) 50%, #1a9dbc 100%);

}

.ck-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
}

.ck-hero__content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 120px 24px 80px;
    max-width: 860px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Breadcrumb back link */
.ck-breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    font-size: .8rem;
    font-weight: 600;
    letter-spacing: .08em;
    color: rgba(255,255,255,.55);
    text-decoration: none;
    margin-bottom: 1.5rem;
    transition: color .2s;
}
.ck-breadcrumb:hover { color: rgba(255,255,255,.9); }

.ck-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    font-size: .8rem;
    font-weight: 600;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: #ffffff;
    margin-bottom: 1.5rem;
    padding: .4rem 1.1rem;
    border: 1px solid rgba(255, 255, 255, 255);
    border-radius: 50px;
}

.ck-hero__title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(3rem, 7vw, 5.5rem);
    font-weight: 900;
    color: #fff;
    line-height: 1.05;
    margin-bottom: 1.5rem;
}
.ck-hero__title span {
    font-style: italic;
    color: #ef7a0d;
}

.ck-hero__sub {
    font-size: clamp(1rem, 2vw, 1.15rem);
    color: rgba(255,255,255,.7);
    max-width: 600px;
    margin: 0 auto 2.5rem;
    font-weight: 300;
    line-height: 1.8;
}

.ck-hero__cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.ck-hero__scroll {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .5rem;
    color: rgba(255,255,255,.4);
    font-size: .7rem;
    letter-spacing: .15em;
    text-transform: uppercase;
    z-index: 2;
}
.ck-hero__scroll-line {
    width: 1px;
    height: 48px;
    background: linear-gradient(to bottom, rgba(255,255,255,.5), transparent);
    animation: ckScrollPulse 2s ease-in-out infinite;
}
@keyframes ckScrollPulse {
    0%, 100% { opacity: .4; transform: scaleY(1); }
    50%       { opacity: 1;  transform: scaleY(1.1); }
}

/* ═══ INTRO SECTION ══════════════════════════════════════════════ */
.ck-intro {
    background: #fff;
}

.ck-intro__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.ck-intro p {
    color: #8a8578;
    font-size: 1rem;
    line-height: 1.8;
    font-weight: 300;
    margin-bottom: 1rem;
}
.ck-intro p:last-of-type { margin-bottom: 0; }

.ck-intro__actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

/* Image with badge */
.ck-intro__img-wrap {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(42,28,128,.18);
}
.ck-intro__img-wrap img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: block;
}

.ck-intro__img-badge {
    position: absolute;
    bottom: 1.5rem;
    left: 1.5rem;
    display: flex;
    align-items: center;
    gap: .75rem;
    background: rgba(255,255,255,.95);
    backdrop-filter: blur(8px);
    border-radius: 12px;
    padding: .85rem 1.2rem;
    box-shadow: 0 8px 24px rgba(0,0,0,.15);
}
.ck-intro__img-badge i {
    color: var(--primary, #2a1c80);
    font-size: 1.2rem;
}
.ck-intro__img-badge span {
    font-size: .8rem;
    font-weight: 700;
    color: #1c1a16;
    line-height: 1.3;
}

/* ═══ WHY SECTION ════════════════════════════════════════════════ */
.ck-why {
    background: #f9f8f4;
}

.ck-why__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 340px), 1fr));
    gap: 1.5rem;
}

.ck-why__item {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    background: #fff;
    border-radius: 16px;
    padding: 1.75rem;
    border: 1px solid #e8e6e0;
    transition: box-shadow .3s, transform .3s, border-color .3s;
}
.ck-why__item:hover {
    box-shadow: 0 12px 36px rgba(42,28,128,.1);
    transform: translateY(-4px);
    border-color: rgba(42,28,128,.2);
}

.ck-why__icon {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--teal, #187f99), #187f99);
    border-radius: 12px;
    color: #fff;
    font-size: .95rem;
    box-shadow: 0 4px 12px #2a1c8040;
}

.ck-why__item strong {
    display: block;
    font-size: .95rem;
    font-weight: 700;
    color: #187f99;
    margin-bottom: .35rem;
}
.ck-why__item p {
    font-size: .875rem;
    color: #8a8578;
    line-height: 1.65;
    margin: 0;
}

/* ═══ FEATURES SECTION ═══════════════════════════════════════════ */
.ck-features {
    background: #fff;
}

.ck-features__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 340px), 1fr));
    gap: 2rem;
}

.ck-feature {
    background: #f9f8f4;
    border-radius: 20px;
    padding: 2rem;
    border-bottom: 3px solid transparent;
    transition: border-color .3s, box-shadow .3s, transform .3s;
}
.ck-feature:hover {
    border-bottom-color: var(--accent, #ef7a0d);
    box-shadow: 0 12px 36px rgba(42,28,128,.1);
    transform: translateY(-4px);
}

.ck-feature__icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(42,28,128,.08);
    border-radius: 12px;
    color: var(--teal, #187f99);
    font-size: 1rem;
    margin-bottom: 1.25rem;
    transition: background .3s, color .3s;
}
.ck-feature:hover .ck-feature__icon {
    background: var(--teal, #187f99);
    color: #fff;
}

.ck-feature h3 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: #187f99;
    margin-bottom: .75rem;
}
.ck-feature p {
    font-size: .875rem;
    color: #8a8578;
    line-height: 1.75;
    margin: 0;
}

/* ═══ WHO BENEFITS SECTION ═══════════════════════════════════════ */
.ck-who {
    background: #187f99;
}

/* Tag */
.ck-who .ck-tag {
    color: #ffffff;
}

/* Título */
.ck-who .ck-section-title {
    color: #ffffff; /* blanco puro */
}

.ck-who .ck-section-title em {
    color: #ef7a0d;
}

/* Texto header */
.ck-who .ck-section__header p {
    color: #ffffff; /* blanco puro */
}

/* Grid */
.ck-who__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 480px), 1fr));
    gap: 1.5rem;
}

/* Card */
.ck-who__item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 20px;
    padding: 2rem;
    transition: background .3s, border-color .3s, transform .3s;
}

.ck-who__item:hover {
    background: rgba(255,255,255,.1);
    border-color: rgba(239,122,13,.4);
    transform: translateY(-3px);
}

.ck-who__num {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 2.5rem;
    font-weight: 900;
    color: #ffffff;
    line-height: 1;
    flex-shrink: 0;
    min-width: 52px;
}

/* Título card */
.ck-who__body h3 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: #ffffff; /* blanco puro */
    margin-bottom: .5rem;
}

/* Texto card */
.ck-who__body p {
    font-size: .875rem;
    color: #ffffff; /* blanco puro */
    line-height: 1.75;
    margin: 0;
}
/* ═══ CTA SECTION ════════════════════════════════════════════════ */
.ck-cta-section {
    background: #f9f8f4;
}

.ck-cta {
    background: linear-gradient(135deg, var(--teal, #187f99) 0%, #187f99 60%, #187f99 160%);
    border-radius: 40px;
    padding: clamp(3rem, 6vw, 5rem) clamp(2rem, 6vw, 5rem);
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 32px 80px rgba(42,28,128,.22);
}
.ck-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(255,255,255,.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(239,122,13,.25) 0%, transparent 50%);
    pointer-events: none;
}
.ck-cta > * { position: relative; }

.ck-cta .ck-tag { color: #ffffff; margin-bottom: 1rem; }

.ck-cta h3 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 900;
    color: #fff;
    margin-bottom: 1rem;
    line-height: 1.2;
}
.ck-cta h3 em {
    font-style: italic;
    color: #ef7a0d;
}
.ck-cta p {
    color: rgba(255,255,255,.7);
    font-size: 1.05rem;
    font-weight: 300;
    max-width: 560px;
    margin: 0 auto 2.5rem;
    line-height: 1.8;
}

/* ═══ RESPONSIVE ═════════════════════════════════════════════════ */
@media (max-width: 1024px) {
    .ck-intro__grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
}

@media (max-width: 768px) {
    .ck-hero__title {
        font-size: clamp(2.4rem, 10vw, 4rem);
    }
    .ck-intro__img-wrap img {
        height: 280px;
    }
    .ck-cta {
        border-radius: 24px;
    }
    .ck-who__item {
        flex-direction: column;
        gap: .75rem;
    }
    .ck-who__num {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .ck-intro__actions {
        flex-direction: column;
    }
    .ck-btn {
        justify-content: center;
    }
}

/* ============================================================
   servsafe-food-manager.css  —  Clermont Commissary
   Prefijo: sf-
   Variables heredadas de style.css
   ============================================================ */

/* ═══ REVEAL ANIMATION ══════════════════════════════════════════ */
.sf-reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity .7s ease, transform .7s ease;
}
.sf-reveal.sf-visible {
    opacity: 1;
    transform: none;
}

/* ═══ SHARED LAYOUT ═════════════════════════════════════════════ */
.sf-section {
    padding: clamp(60px, 8vw, 120px) 0;
}
.sf-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 clamp(20px, 5vw, 60px);
}

.sf-section__header {
    text-align: center;
    margin-bottom: 4rem;
}
.sf-section__header p {
    color: #8a8578;
    font-size: 1.05rem;
    font-weight: 300;
    margin-top: .5rem;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
}

.sf-tag {
    display: inline-block;
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--accent, #ef7a0d);
    margin-bottom: .75rem;
}

.sf-section-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    line-height: 1.15;
    color: #ef7a0d;
    margin-bottom: .5rem;
}
.sf-section-title em {
    font-style: italic;
    color: var(--teal, #187f99);
}

/* ═══ BUTTONS ════════════════════════════════════════════════════ */
.sf-btn {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .85rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: .9rem;
    letter-spacing: .03em;
    transition: all .3s;
    cursor: pointer;
    text-decoration: none;
}
.sf-btn--primary {
    background: var(--teal, #187f99);
    color: #fff;
}
.sf-btn--primary:hover {
    background: #3d2db5;
    transform: translateY(-3px);
    box-shadow: 0 10px 28px rgba(42,28,128,.25);
}
.sf-btn--outline {
    background: transparent;
    color: var(--teal, #187f99);
    border: 1.5px solid var(--teal, #187f99);
}
.sf-btn--outline:hover {
    background: rgba(42,28,128,.06);
    transform: translateY(-3px);
}
.sf-btn--white {
    background: #fff;
    color: var(--teal, #187f99);
}
.sf-btn--white:hover {
    background: #f4f3f0;
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(0,0,0,.2);
}
.sf-btn--outline-white {
    background: transparent;
    color: #fff;
    border: 1.5px solid rgba(255,255,255,.45);
}
.sf-btn--outline-white:hover {
    border-color: #fff;
    background: rgba(255,255,255,.08);
    transform: translateY(-3px);
}
.sf-btn--lg {
    padding: 1rem 2.5rem;
    font-size: 1rem;
}

/* ═══ HERO ════════════════════════════════════════════════════════ */
.sf-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #1b4332;
}

.sf-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #0d4f60 0%, var(--teal) 50%, #1a9dbc 100%);

}

.sf-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
}

.sf-hero__content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 120px 24px 80px;
    max-width: 860px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.sf-breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    font-size: .8rem;
    font-weight: 600;
    letter-spacing: .08em;
    color: rgba(255,255,255,.55);
    text-decoration: none;
    margin-bottom: 1.5rem;
    transition: color .2s;
}
.sf-breadcrumb:hover { color: rgba(255,255,255,.9); }

.sf-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    font-size: .8rem;
    font-weight: 600;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: #ffffff;
    margin-bottom: 1.5rem;
    padding: .4rem 1.1rem;
    border: #ffffff 1px ;
    border-radius: 50px;
}

.sf-hero__title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(3rem, 7vw, 5.5rem);
    font-weight: 900;
    color: #fff;
    line-height: 1.05;
    margin-bottom: 1.5rem;
}
.sf-hero__title span {
    font-style: italic;
    color: #ef7a0d;
}

.sf-hero__sub {
    font-size: clamp(1rem, 2vw, 1.15rem);
    color: rgba(255,255,255,.7);
    max-width: 600px;
    margin: 0 auto 2.5rem;
    font-weight: 300;
    line-height: 1.8;
}

.sf-hero__cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.sf-hero__scroll {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .5rem;
    color: rgba(255,255,255,.4);
    font-size: .7rem;
    letter-spacing: .15em;
    text-transform: uppercase;
    z-index: 2;
}
.sf-hero__scroll-line {
    width: 1px;
    height: 48px;
    background: linear-gradient(to bottom, rgba(255,255,255,.5), transparent);
    animation: sfScrollPulse 2s ease-in-out infinite;
}
@keyframes sfScrollPulse {
    0%, 100% { opacity: .4; transform: scaleY(1); }
    50%       { opacity: 1;  transform: scaleY(1.1); }
}

/* ═══ INTRO SECTION ══════════════════════════════════════════════ */
.sf-intro {
    background: #fff;
}

.sf-intro__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.sf-intro p {
    color: #8a8578;
    font-size: 1rem;
    line-height: 1.8;
    font-weight: 300;
    margin-bottom: 1rem;
}
.sf-intro p:last-of-type { margin-bottom: 0; }

.sf-intro__actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.sf-intro__img-wrap {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(15,36,68,.18);
}
.sf-intro__img-wrap img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: block;
}

.sf-intro__img-badge {
    position: absolute;
    bottom: 1.5rem;
    left: 1.5rem;
    display: flex;
    align-items: center;
    gap: .75rem;
    background: rgba(255,255,255,.95);
    backdrop-filter: blur(8px);
    border-radius: 12px;
    padding: .85rem 1.2rem;
    box-shadow: 0 8px 24px rgba(0,0,0,.15);
}
.sf-intro__img-badge i {
    color: var(--primary, #2a1c80);
    font-size: 1.2rem;
}
.sf-intro__img-badge span {
    font-size: .8rem;
    font-weight: 700;
    color: #1c1a16;
    line-height: 1.3;
}

/* ═══ WHY SECTION ════════════════════════════════════════════════ */
.sf-why {
    background: #f9f8f4;
}

.sf-why__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
    gap: 1.5rem;
}

.sf-why__item {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    background: #fff;
    border-radius: 16px;
    padding: 1.75rem;
    border: 1px solid #e8e6e0;
    transition: box-shadow .3s, transform .3s, border-color .3s;
}
.sf-why__item:hover {
    box-shadow: 0 12px 36px rgba(15,36,68,.1);
    transform: translateY(-4px);
    border-color: rgba(15,36,68,.2);
}

.sf-why__icon {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #187f99, #187f99);
    border-radius: 12px;
    color: #fff;
    font-size: .95rem;
    box-shadow: #187f99 0 4px 12px;
}

.sf-why__item strong {
    display: block;
    font-size: .95rem;
    font-weight: 700;
    color: #187f99;
    margin-bottom: .35rem;
}
.sf-why__item p {
    font-size: .875rem;
    color: #8a8578;
    line-height: 1.65;
    margin: 0;
}

/* ═══ WHAT'S COVERED SECTION ════════════════════════════════════ */
.sf-covers {
    background: #fff;
}

.sf-covers__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 340px), 1fr));
    gap: 2rem;
}

.sf-cover {
    background: #f9f8f4;
    border-radius: 20px;
    padding: 2rem;
    border-bottom: 3px solid transparent;
    transition: border-color .3s, box-shadow .3s, transform .3s;
}
.sf-cover:hover {
    border-bottom-color: var(--accent, #ef7a0d);
    box-shadow: 0 12px 36px rgba(15,36,68,.1);
    transform: translateY(-4px);
}

.sf-cover__icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(15,36,68,.08);
    border-radius: 12px;
    color: #187f99;
    font-size: 1rem;
    margin-bottom: 1.25rem;
    transition: background .3s, color .3s;
}
.sf-cover:hover .sf-cover__icon {
    background: #187f99;
    color: #fff;
}

.sf-cover h3 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: #187f99;
    margin-bottom: .75rem;
}
.sf-cover p {
    font-size: .875rem;
    color: #8a8578;
    line-height: 1.75;
    margin: 0;
}

/* ═══ SCHEDULING SECTION ═════════════════════════════════════════ */
.sf-schedule {
    background: #187f99;
}

/* Tag */
.sf-schedule .sf-tag {
    color: #ffffff;
}

/* Títulos */
.sf-schedule .sf-section-title {
    color: #ffffff; /* blanco puro */
}

.sf-schedule .sf-section-title em {
    color: #ef7a0d;
}

/* Texto header */
.sf-schedule .sf-section__header p {
    color: #ffffff; /* blanco puro */
}

/* Grid */
.sf-schedule__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 480px), 1fr));
    gap: 1.5rem;
}

/* Card */
.sf-schedule__item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 20px;
    padding: 2rem;
    transition: background .3s, border-color .3s, transform .3s;
}

.sf-schedule__item:hover {
    background: rgba(255,255,255,.1);
    border-color: rgba(239,122,13,.4);
    transform: translateY(-3px);
}

.sf-schedule__num {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 2.5rem;
    font-weight: 900;
    color: #ffffff;
    line-height: 1;
    flex-shrink: 0;
    min-width: 52px;
}

/* Título card */
.sf-schedule__body h3 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: #ffffff; /* blanco puro */
    margin-bottom: .5rem;
}

/* Texto card */
.sf-schedule__body p {
    font-size: .875rem;
    color: #ffffff; /* blanco puro */
    line-height: 1.75;
    margin: 0;
}

/* ═══ CTA SECTION ════════════════════════════════════════════════ */
.sf-cta-section {
    background: #f9f8f4;
}

.sf-cta {
    background: linear-gradient(135deg, #0d4f60 0%, var(--teal) 50%, #1a9dbc 100%);
    border-radius: 40px;
    padding: clamp(3rem, 6vw, 5rem) clamp(2rem, 6vw, 5rem);
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 32px 80px rgba(15,36,68,.22);
}
.sf-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #0d4f60 0%, var(--teal) 50%, #1a9dbc 100%);
    pointer-events: none;
}
.sf-cta > * { position: relative; }

.sf-cta .sf-tag { color: #ffffff; margin-bottom: 1.5rem; }

.sf-cta h3 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 900;
    color: #fff;
    margin-bottom: 1rem;
    line-height: 1.2;
}
.sf-cta h3 em {
    font-style: italic;
    color: #ef7a0d;
}
.sf-cta p {
    color: rgba(255,255,255,.7);
    font-size: 1.05rem;
    font-weight: 300;
    max-width: 560px;
    margin: 0 auto 2.5rem;
    line-height: 1.8;
}

/* ═══ RESPONSIVE ═════════════════════════════════════════════════ */
@media (max-width: 1024px) {
    .sf-intro__grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
}

@media (max-width: 768px) {
    .sf-hero__title {
        font-size: clamp(2.4rem, 10vw, 4rem);
    }
    .sf-intro__img-wrap img {
        height: 280px;
    }
    .sf-cta {
        border-radius: 24px;
    }
    .sf-schedule__item {
        flex-direction: column;
        gap: .75rem;
    }
    .sf-schedule__num {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .sf-intro__actions {
        flex-direction: column;
    }
    .sf-btn {
        justify-content: center;
    }
}


/* ============================================================
   haccp-plan.css  —  Clermont Commissary
   Prefijo: hp-
   Variables heredadas de style.css
   ============================================================ */

/* ═══ REVEAL ANIMATION ══════════════════════════════════════════ */
.hp-reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity .7s ease, transform .7s ease;
}
.hp-reveal.hp-visible {
    opacity: 1;
    transform: none;
}

/* ═══ SHARED LAYOUT ═════════════════════════════════════════════ */
.hp-section {
    padding: clamp(60px, 8vw, 120px) 0;
}
.hp-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 clamp(20px, 5vw, 60px);
}

.hp-section__header {
    text-align: center;
    margin-bottom: 4rem;
}
.hp-section__header p {
    color: #000000;
    font-size: 1.05rem;
    font-weight: 300;
    margin-top: .5rem;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
}

.hp-tag {
    display: inline-block;
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--accent, #ef7a0d);
    margin-bottom: .75rem;
}

.hp-section-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    line-height: 1.15;
    color: #ef7a0d;
    margin-bottom: .5rem;
}
.hp-section-title em {
    font-style: italic;
    color: #187f99;
}

/* ═══ BUTTONS ════════════════════════════════════════════════════ */
.hp-btn {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .85rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: .9rem;
    letter-spacing: .03em;
    transition: all .3s;
    cursor: pointer;
    text-decoration: none;
}
.hp-btn--primary {
    background: #187f99;
    color: #fff;
}
.hp-btn--primary:hover {
    background: #3d2db5;
    transform: translateY(-3px);
    box-shadow: 0 10px 28px rgba(42,28,128,.25);
}
.hp-btn--outline {
    background: transparent;
    color: #187f99;
    border: 1.5px solid var(--teal, #187f99);
}
.hp-btn--outline:hover {
    background: rgba(42,28,128,.06);
    transform: translateY(-3px);
}
.hp-btn--white {
    background: #fff;
    color: #187f99;
}
.hp-btn--white:hover {
    background: #f4f3f0;
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(0,0,0,.2);
}
.hp-btn--outline-white {
    background: transparent;
    color: #fff;
    border: 1.5px solid rgba(255,255,255,.45);
}
.hp-btn--outline-white:hover {
    border-color: #fff;
    background: rgba(255,255,255,.08);
    transform: translateY(-3px);
}
.hp-btn--lg {
    padding: 1rem 2.5rem;
    font-size: 1rem;
}

/* ═══ HERO ════════════════════════════════════════════════════════ */
.hp-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #1b4332;
}

.hp-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #0d4f60 0%, var(--teal) 50%, #1a9dbc 100%);
}

.hp-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
}

.hp-hero__content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 120px 24px 80px;
    max-width: 860px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hp-breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    font-size: .8rem;
    font-weight: 600;
    letter-spacing: .08em;
    color: rgba(255,255,255,.55);
    text-decoration: none;
    margin-bottom: 1.5rem;
    transition: color .2s;
}
.hp-breadcrumb:hover { color: rgba(255,255,255,.9); }

.hp-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    font-size: .8rem;
    font-weight: 600;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: #ffffff;
    margin-bottom: 1.5rem;
    padding: .4rem 1.1rem;
    border:  1px #ffffff;
    border-radius: 50px;
}

.hp-hero__title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(3rem, 7vw, 5.5rem);
    font-weight: 900;
    color: #fff;
    line-height: 1.05;
    margin-bottom: 1.5rem;
}
.hp-hero__title span {
    font-style: italic;
    color: #ef7a0d;
}

.hp-hero__sub {
    font-size: clamp(1rem, 2vw, 1.15rem);
    color: rgba(255,255,255,.7);
    max-width: 600px;
    margin: 0 auto 2.5rem;
    font-weight: 300;
    line-height: 1.8;
}

.hp-hero__cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.hp-hero__scroll {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .5rem;
    color: rgba(255,255,255,.4);
    font-size: .7rem;
    letter-spacing: .15em;
    text-transform: uppercase;
    z-index: 2;
}
.hp-hero__scroll-line {
    width: 1px;
    height: 48px;
    background: linear-gradient(to bottom, rgba(255,255,255,.5), transparent);
    animation: hpScrollPulse 2s ease-in-out infinite;
}
@keyframes hpScrollPulse {
    0%, 100% { opacity: .4; transform: scaleY(1); }
    50%       { opacity: 1;  transform: scaleY(1.1); }
}

/* ═══ INTRO SECTION ══════════════════════════════════════════════ */
.hp-intro {
    background: #fff;
}

.hp-intro__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hp-intro p {
    color: #000000;
    font-size: 1rem;
    line-height: 1.8;
    font-weight: 300;
    margin-bottom: 1rem;
}
.hp-intro p:last-of-type { margin-bottom: 0; }

.hp-intro__actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.hp-intro__img-wrap {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(27,67,50,.18);
}
.hp-intro__img-wrap img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: block;
}

.hp-intro__img-badge {
    position: absolute;
    bottom: 1.5rem;
    left: 1.5rem;
    display: flex;
    align-items: center;
    gap: .75rem;
    background: rgba(255,255,255,.95);
    backdrop-filter: blur(8px);
    border-radius: 12px;
    padding: .85rem 1.2rem;
    box-shadow: 0 8px 24px rgba(0,0,0,.15);
}
.hp-intro__img-badge i {
    color: #1b4332;
    font-size: 1.2rem;
}
.hp-intro__img-badge span {
    font-size: .8rem;
    font-weight: 700;
    color: #1c1a16;
    line-height: 1.3;
}

/* ═══ WHY SECTION ════════════════════════════════════════════════ */
.hp-why {
    background: #f9f8f4;
}

.hp-why__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
    gap: 1.5rem;
}

.hp-why__item {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    background: #fff;
    border-radius: 16px;
    padding: 1.75rem;
    border: 1px solid #e8e6e0;
    transition: box-shadow .3s, transform .3s, border-color .3s;
}
.hp-why__item:hover {
    box-shadow: 0 12px 36px rgba(27,67,50,.1);
    transform: translateY(-4px);
    border-color: rgba(27,67,50,.2);
}

.hp-why__icon {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #187f99, #187f99);
    border-radius: 12px;
    color: #fff;
    font-size: .95rem;
    box-shadow: 0 4px 12px rgba(27,67,50,.25);
}

.hp-why__item strong {
    display: block;
    font-size: .95rem;
    font-weight: 700;
    color: #187f99;
    margin-bottom: .35rem;
}
.hp-why__item p {
    font-size: .875rem;
    color: #8a8578;
    line-height: 1.65;
    margin: 0;
}

/* ═══ SERVICES SECTION ═══════════════════════════════════════════ */
.hp-services {
    background: #fff;
}

.hp-services__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 340px), 1fr));
    gap: 2rem;
}

.hp-service {
    background: #f9f8f4;
    border-radius: 20px;
    padding: 2rem;
    border-bottom: 3px solid transparent;
    transition: border-color .3s, box-shadow .3s, transform .3s;
}
.hp-service:hover {
    border-bottom-color: var(--accent, #ef7a0d);
    box-shadow: 0 12px 36px rgba(27,67,50,.1);
    transform: translateY(-4px);
}

.hp-service__icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #187f99;
    border-radius: 12px;
    color: #ffffff;
    font-size: 1rem;
    margin-bottom: 1.25rem;
    transition:#187f99;
}
.hp-service:hover .hp-service__icon {
    background: #187f99;
    color: #fff;
}

.hp-service h3 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: #187f99;
    margin-bottom: .75rem;
}
.hp-service p {
    font-size: .875rem;
    color: #8a8578;
    line-height: 1.75;
    margin: 0;
}

/* ═══ PROCESS SECTION (dark) ═════════════════════════════════════ */
.hp-process {
    background: #187f99;
}

.hp-process .hp-tag        { color: #ffffff; }
.hp-process .hp-section-title { color: #fff; }
.hp-process .hp-section-title em { color: #187f99; }
.hp-process .hp-section__header p { color: rgba(255,255,255,255); }

.hp-process__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 480px), 1fr));
    gap: 1.5rem;
}

.hp-process__item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 20px;
    padding: 2rem;
    transition: background .3s, border-color .3s, transform .3s;
}
.hp-process__item:hover {
    background: rgba(255,255,255,.1);
    border-color: rgba(239,122,13,.4);
    transform: translateY(-3px);
}

.hp-process__num {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 2.5rem;
    font-weight: 900;
    color: #ffffff;
    line-height: 1;
    flex-shrink: 0;
    min-width: 52px;
}

.hp-process__body h3 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: .5rem;
}
.hp-process__body p {
    font-size: .875rem;
    color: rgba(255,255,255,255);
    line-height: 1.75;
    margin: 0;
}

/* ═══ CTA SECTION ════════════════════════════════════════════════ */
.hp-cta-section {
    background: #f9f8f4;
}

.hp-cta {
    background: linear-gradient(135deg, #0d4f60 0%, var(--teal) 50%, #1a9dbc 100%);
    border-radius: 40px;
    padding: clamp(3rem, 6vw, 5rem) clamp(2rem, 6vw, 5rem);
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 32px 80px rgba(27,67,50,.22);
}
.hp-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(255,255,255,.07) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(239,122,13,.25) 0%, transparent 50%);
    pointer-events: none;
}
.hp-cta > * { position: relative; }

.hp-cta .hp-tag { color: #ffffff; margin-bottom: 1rem; }

.hp-cta h3 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 900;
    color: #fff;
    margin-bottom: 1rem;
    line-height: 1.2;
}
.hp-cta h3 em {
    font-style: italic;
    color: #ef7a0d;
}
.hp-cta p {
    color: rgba(255,255,255,.7);
    font-size: 1.05rem;
    font-weight: 300;
    max-width: 560px;
    margin: 0 auto 2.5rem;
    line-height: 1.8;
}

/* ═══ RESPONSIVE ═════════════════════════════════════════════════ */
@media (max-width: 1024px) {
    .hp-intro__grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
}

@media (max-width: 768px) {
    .hp-hero__title {
        font-size: clamp(2.4rem, 10vw, 4rem);
    }
    .hp-intro__img-wrap img {
        height: 280px;
    }
    .hp-cta {
        border-radius: 24px;
    }
    .hp-process__item {
        flex-direction: column;
        gap: .75rem;
    }
    .hp-process__num {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .hp-intro__actions {
        flex-direction: column;
    }
    .hp-btn {
        justify-content: center;
    }
}


/* ============================================================
   catering-event-planning.css  —  Clermont Commissary
   Prefijo: ce-
   Variables heredadas de style.css
   ============================================================ */

/* ═══ REVEAL ANIMATION ══════════════════════════════════════════ */
.ce-reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity .7s ease, transform .7s ease;
}
.ce-reveal.ce-visible {
    opacity: 1;
    transform: none;
}

/* ═══ SHARED LAYOUT ═════════════════════════════════════════════ */
.ce-section {
    padding: clamp(60px, 8vw, 120px) 0;
}
.ce-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 clamp(20px, 5vw, 60px);
}

.ce-section__header {
    text-align: center;
    margin-bottom: 4rem;
}
.ce-section__header p {
    color: #8a8578;
    font-size: 1.05rem;
    font-weight: 300;
    margin-top: .5rem;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
}

.ce-tag {
    display: inline-block;
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--accent, #ef7a0d);
    margin-bottom: .75rem;
}

.ce-section-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    line-height: 1.15;
    color: #187f99;
    margin-bottom: .5rem;
}
.ce-section-title em {
    font-style: italic;
    color: var(--primary, #2a1c80);
}

/* ═══ BUTTONS ════════════════════════════════════════════════════ */
.ce-btn {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .85rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: .9rem;
    letter-spacing: .03em;
    transition: all .3s;
    cursor: pointer;
    text-decoration: none;
}
.ce-btn--primary {
    background: var(--primary, #2a1c80);
    color: #fff;
}
.ce-btn--primary:hover {
    background: #3d2db5;
    transform: translateY(-3px);
    box-shadow: 0 10px 28px rgba(42,28,128,.25);
}
.ce-btn--outline {
    background: transparent;
    color: var(--primary, #2a1c80);
    border: 1.5px solid var(--primary, #2a1c80);
}
.ce-btn--outline:hover {
    background: rgba(42,28,128,.06);
    transform: translateY(-3px);
}
.ce-btn--white {
    background: #fff;
    color: #7b2d00;
}
.ce-btn--white:hover {
    background: #fdf8f4;
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(0,0,0,.2);
}
.ce-btn--outline-white {
    background: transparent;
    color: #fff;
    border: 1.5px solid rgba(255,255,255,.45);
}
.ce-btn--outline-white:hover {
    border-color: #fff;
    background: rgba(255,255,255,.08);
    transform: translateY(-3px);
}
.ce-btn--lg {
    padding: 1rem 2.5rem;
    font-size: 1rem;
}

/* ═══ HERO ════════════════════════════════════════════════════════ */
.ce-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #1b4332;
}

.ce-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #0d4f60 0%, var(--teal) 50%, #1a9dbc 100%);


}

.ce-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
}

.ce-hero__content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 120px 24px 80px;
    max-width: 860px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.ce-breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    font-size: .8rem;
    font-weight: 600;
    letter-spacing: .08em;
    color: rgba(255,255,255,.55);
    text-decoration: none;
    margin-bottom: 1.5rem;
    transition: color .2s;
}
.ce-breadcrumb:hover { color: rgba(255,255,255,.9); }

.ce-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    font-size: .8rem;
    font-weight: 600;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: #f7a44a;
    margin-bottom: 1.5rem;
    padding: .4rem 1.1rem;
    border: 1px solid rgba(239,122,13,.4);
    border-radius: 50px;
}

.ce-hero__title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(3rem, 7vw, 5.5rem);
    font-weight: 900;
    color: #fff;
    line-height: 1.05;
    margin-bottom: 1.5rem;
}
.ce-hero__title span {
    font-style: italic;
    color: #ef7a0d;
}

.ce-hero__sub {
    font-size: clamp(1rem, 2vw, 1.15rem);
    color: rgba(255,255,255,.7);
    max-width: 600px;
    margin: 0 auto 2.5rem;
    font-weight: 300;
    line-height: 1.8;
}

.ce-hero__cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.ce-hero__scroll {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .5rem;
    color: rgba(255,255,255,.4);
    font-size: .7rem;
    letter-spacing: .15em;
    text-transform: uppercase;
    z-index: 2;
}
.ce-hero__scroll-line {
    width: 1px;
    height: 48px;
    background: linear-gradient(to bottom, rgba(255,255,255,.5), transparent);
    animation: ceScrollPulse 2s ease-in-out infinite;
}
@keyframes ceScrollPulse {
    0%, 100% { opacity: .4; transform: scaleY(1); }
    50%       { opacity: 1;  transform: scaleY(1.1); }
}

/* ═══ INTRO SECTION ══════════════════════════════════════════════ */
.ce-intro {
    background: #fff;
}

.ce-intro__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.ce-intro p {
    color: #8a8578;
    font-size: 1rem;
    line-height: 1.8;
    font-weight: 300;
    margin-bottom: 1rem;
}
.ce-intro p:last-of-type { margin-bottom: 0; }

.ce-intro__actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.ce-intro__img-wrap {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(123,45,0,.18);
}
.ce-intro__img-wrap img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: block;
}

.ce-intro__img-badge {
    position: absolute;
    bottom: 1.5rem;
    left: 1.5rem;
    display: flex;
    align-items: center;
    gap: .75rem;
    background: rgba(255,255,255,.95);
    backdrop-filter: blur(8px);
    border-radius: 12px;
    padding: .85rem 1.2rem;
    box-shadow: 0 8px 24px rgba(0,0,0,.15);
}
.ce-intro__img-badge i {
    color: #7b2d00;
    font-size: 1.2rem;
}
.ce-intro__img-badge span {
    font-size: .8rem;
    font-weight: 700;
    color: #1c1a16;
    line-height: 1.3;
}

/* ═══ WHY SECTION ════════════════════════════════════════════════ */
.ce-why {
    background: #f9f8f4;
}

.ce-why__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 340px), 1fr));
    gap: 1.5rem;
}

.ce-why__item {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    background: #fff;
    border-radius: 16px;
    padding: 1.75rem;
    border: 1px solid #e8e6e0;
    transition: box-shadow .3s, transform .3s, border-color .3s;
}
.ce-why__item:hover {
    box-shadow: 0 12px 36px rgba(123,45,0,.1);
    transform: translateY(-4px);
    border-color: rgba(123,45,0,.2);
}

.ce-why__icon {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #7b2d00, #a33d00);
    border-radius: 12px;
    color: #fff;
    font-size: .95rem;
    box-shadow: 0 4px 12px rgba(123,45,0,.25);
}

.ce-why__item strong {
    display: block;
    font-size: .95rem;
    font-weight: 700;
    color: #1c1a16;
    margin-bottom: .35rem;
}
.ce-why__item p {
    font-size: .875rem;
    color: #8a8578;
    line-height: 1.65;
    margin: 0;
}

/* ═══ EVENTS WE CATER ════════════════════════════════════════════ */
.ce-events {
    background: #fff;
}

.ce-events__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 340px), 1fr));
    gap: 1.5rem;
}

.ce-event {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    background: #f9f8f4;
    border-radius: 16px;
    padding: 1.5rem 1.75rem;
    border: 1px solid #e8e6e0;
    transition: box-shadow .3s, transform .3s, border-color .3s, background .3s;
}
.ce-event:hover {
    background: #fff;
    box-shadow: 0 12px 36px rgba(123,45,0,.1);
    transform: translateY(-4px);
    border-color: rgba(239,122,13,.35);
}

.ce-event__icon {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(123,45,0,.08);
    border-radius: 12px;
    color: #ef7a0d;
    font-size: 1rem;
    transition: background .3s, color .3s;
}
.ce-event:hover .ce-event__icon {
    background: #ef7a0d;
    color: #fff;
}

.ce-event strong {
    display: block;
    font-size: .95rem;
    font-weight: 700;
    color: #1c1a16;
}
/* ═══ WHO IT'S FOR SECTION (dark) ════════════════════════════════ */
.ce-who {
    background: #1b4332;
}

/* Texto naranja */
.ce-who .ce-tag { 
    color: #ef7a0d; 
}

/* Blanco puro */
.ce-who .ce-section-title { 
    color: #ffffff; 
}

.ce-who .ce-section-title em { 
    color: #f7a44a; 
}

/* Texto descriptivo en blanco puro */
.ce-who .ce-section__header p { 
    color: #ffffff; 
}

.ce-who__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 480px), 1fr));
    gap: 1.5rem;
}

.ce-who__item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 20px;
    padding: 2rem;
    transition: background .3s, border-color .3s, transform .3s;
}

.ce-who__item:hover {
    background: rgba(255,255,255,.1);
    border-color: rgba(239,122,13,.4);
    transform: translateY(-3px);
}


.ce-who__num {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 2.5rem;
    font-weight: 900;
    color: #ffffff; 
    line-height: 1;
    flex-shrink: 0;
    min-width: 52px;
}

/* Títulos en blanco puro */
.ce-who__body h3 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: .5rem;
}

/* Párrafos en blanco puro */
.ce-who__body p {
    font-size: .875rem;
    color: #ffffff;
    line-height: 1.75;
    margin: 0;
}

/* ═══ CTA SECTION ════════════════════════════════════════════════ */
.ce-cta-section {
    background: #f9f8f4;
}

.ce-cta {
    background: linear-gradient(135deg, #0d4f60 0%, var(--teal) 50%, #1a9dbc 100%);
    border-radius: 40px;
    padding: clamp(3rem, 6vw, 5rem) clamp(2rem, 6vw, 5rem);
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 32px 80px rgba(123,45,0,.22);
}
.ce-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(255,255,255,.07) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(239,122,13,.3) 0%, transparent 50%);
    pointer-events: none;
}
.ce-cta > * { position: relative; }

.ce-cta .ce-tag { color: #f7a44a; margin-bottom: 1rem; }

.ce-cta h3 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 900;
    color: #fff;
    margin-bottom: 1rem;
    line-height: 1.2;
}
.ce-cta h3 em {
    font-style: italic;
    color: #f7a44a;
}
.ce-cta p {
    color: rgba(255,255,255,.7);
    font-size: 1.05rem;
    font-weight: 300;
    max-width: 560px;
    margin: 0 auto 2.5rem;
    line-height: 1.8;
}

/* ═══ RESPONSIVE ═════════════════════════════════════════════════ */
@media (max-width: 1024px) {
    .ce-intro__grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
}

@media (max-width: 768px) {
    .ce-hero__title {
        font-size: clamp(2.4rem, 10vw, 4rem);
    }
    .ce-intro__img-wrap img {
        height: 280px;
    }
    .ce-cta {
        border-radius: 24px;
    }
    .ce-who__item {
        flex-direction: column;
        gap: .75rem;
    }
    .ce-who__num {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .ce-intro__actions {
        flex-direction: column;
    }
    .ce-btn {
        justify-content: center;
    }
}

/*Sales Tax Registration*/
/* ── RESET / BASE ──────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: 'Inter', sans-serif; color: #1c1a16; background: #fff; line-height: 1.5; }
img  { display: block; max-width: 100%; }
a    { text-decoration: none; }

/* ── CSS VARIABLES ──────────────────────────── */
:root {
    --primary: #2a1c80;
    --accent:  #ef7a0d;
    --dark-green: #1b4332;
    --bg-light: #f9f8f4;
}

/* ── REVEAL ANIMATION ──────────────────────────── */
.ce-reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity .7s ease, transform .7s ease;
}
.ce-reveal.ce-visible { opacity: 1; transform: none; }

/* ── SHARED LAYOUT ─────────────────────────────── */
.ce-section { padding: clamp(60px, 8vw, 120px) 0; }
.ce-inner   { max-width: 1200px; margin: 0 auto; padding: 0 clamp(20px, 5vw, 60px); }

.ce-section__header { text-align: center; margin-bottom: 4rem; }
.ce-section__header p {
    color: #8a8578; font-size: 1.05rem; font-weight: 300;
    margin-top: .5rem; max-width: 520px; margin-left: auto; margin-right: auto;
}

.ce-tag {
    display: inline-block; font-size: .75rem; font-weight: 700;
    letter-spacing: .18em; text-transform: uppercase;
    color: var(--accent); margin-bottom: .75rem;
}
.ce-section-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(2rem, 4vw, 3rem); font-weight: 900;
    line-height: 1.15; color: #1c1a16; margin-bottom: .5rem;
}
.ce-section-title em { font-style: italic; color: var(--primary); }

/* ── BUTTONS ────────────────────────────────────── */
.ce-btn {
    display: inline-flex; align-items: center; gap: .5rem;
    padding: .85rem 2rem; border-radius: 50px; font-weight: 600;
    font-size: .9rem; letter-spacing: .03em; transition: all .3s;
    cursor: pointer; border: none;
}
.ce-btn--primary { background: var(--primary); color: #fff; }
.ce-btn--primary:hover {
    background: #3d2db5; transform: translateY(-3px);
    box-shadow: 0 10px 28px rgba(42,28,128,.25);
}
.ce-btn--outline {
    background: transparent; color: var(--primary);
    border: 1.5px solid var(--primary);
}
.ce-btn--outline:hover { background: rgba(42,28,128,.06); transform: translateY(-3px); }
.ce-btn--white { background: #fff; color: #7b2d00; }
.ce-btn--white:hover {
    background: #fdf8f4; transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(0,0,0,.2);
}
.ce-btn--outline-white {
    background: transparent; color: #fff;
    border: 1.5px solid rgba(255,255,255,.45);
}
.ce-btn--outline-white:hover {
    border-color: #fff; background: rgba(255,255,255,.08); transform: translateY(-3px);
}
.ce-btn--lg { padding: 1rem 2.5rem; font-size: 1rem; }

/* ── HERO ───────────────────────────────────────── */
.ce-hero {
    position: relative; min-height: 100vh;
    display: flex; align-items: center; justify-content: center;
    overflow: hidden; background: var(--dark-green);
}
.ce-hero__overlay {
    position: absolute; inset: 0;
    background: linear-gradient(135deg, #0d4f60 0%, var(--teal) 50%, #1a9dbc 100%);
}
.ce-hero::after {
    content: ''; position: absolute; inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
    background-size: 60px 60px; pointer-events: none;
}
.ce-hero__content {
    position: relative; z-index: 2; text-align: center;
    padding: 120px 24px 80px; max-width: 860px;
    display: flex; flex-direction: column; align-items: center;
}
.ce-breadcrumb {
    display: inline-flex; align-items: center; gap: .45rem;
    font-size: .8rem; font-weight: 600; letter-spacing: .08em;
    color: rgba(255,255,255,.55); margin-bottom: 1.5rem; transition: color .2s;
}
.ce-breadcrumb:hover { color: rgba(255,255,255,.9); }
.ce-eyebrow {
    display: inline-flex; align-items: center; gap: .5rem;
    font-size: .8rem; font-weight: 600; letter-spacing: .2em;
    text-transform: uppercase; color: #f7a44a; margin-bottom: 1.5rem;
    padding: .4rem 1.1rem; border: 1px solid rgba(239,122,13,.4); border-radius: 50px;
}
.ce-hero__title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(3rem, 7vw, 5.5rem); font-weight: 900;
    color: #fff; line-height: 1.05; margin-bottom: 1.5rem;
}
.ce-hero__title span { font-style: italic; color: #f7a44a; }
.ce-hero__sub {
    font-size: clamp(1rem, 2vw, 1.15rem); color: rgba(255,255,255,.7);
    max-width: 600px; margin: 0 auto 2.5rem; font-weight: 300; line-height: 1.8;
}
.ce-hero__cta { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.ce-hero__scroll {
    position: absolute; bottom: 2.5rem; left: 50%; transform: translateX(-50%);
    display: flex; flex-direction: column; align-items: center; gap: .5rem;
    color: rgba(255,255,255,.4); font-size: .7rem; letter-spacing: .15em;
    text-transform: uppercase; z-index: 2;
}
.ce-hero__scroll-line {
    width: 1px; height: 48px;
    background: linear-gradient(to bottom, rgba(255,255,255,.5), transparent);
    animation: ceScrollPulse 2s ease-in-out infinite;
}
@keyframes ceScrollPulse {
    0%, 100% { opacity: .4; transform: scaleY(1); }
    50%       { opacity: 1;  transform: scaleY(1.1); }
}

/* ── INTRO ─────────────────────────────────────── */
.ce-intro { background: #fff; }
.ce-intro__grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center;
}
.ce-intro p {
    color: #8a8578; font-size: 1rem; line-height: 1.8; font-weight: 300; margin-bottom: 1rem;
}
.ce-intro p:last-of-type { margin-bottom: 0; }
.ce-intro__actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 2rem; }
.ce-intro__img-wrap {
    position: relative; border-radius: 24px; overflow: hidden;
    box-shadow: 0 20px 60px rgba(42,28,128,.15);
}
.ce-intro__img-wrap img { width: 100%; height: 420px; object-fit: cover; }
.ce-intro__img-badge {
    position: absolute; bottom: 1.5rem; left: 1.5rem;
    display: flex; align-items: center; gap: .75rem;
    background: rgba(255,255,255,.95); backdrop-filter: blur(8px);
    border-radius: 12px; padding: .85rem 1.2rem; box-shadow: 0 8px 24px rgba(0,0,0,.15);
}
.ce-intro__img-badge i { color: var(--primary); font-size: 1.2rem; }
.ce-intro__img-badge span { font-size: .8rem; font-weight: 700; color: #1c1a16; line-height: 1.3; }

/* ── WHY REGISTER ────────────────────── */
.ce-why { background: var(--bg-light); }
.ce-why__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 340px), 1fr));
    gap: 1.5rem;
}
.ce-why__item {
    display: flex; align-items: flex-start; gap: 1.25rem;
    background: #fff; border-radius: 16px; padding: 1.75rem;
    border: 1px solid #e8e6e0; transition: box-shadow .3s, transform .3s, border-color .3s;
}
.ce-why__item:hover {
    box-shadow: 0 12px 36px rgba(42,28,128,.1); transform: translateY(-4px);
    border-color: rgba(42,28,128,.2);
}
.ce-why__icon {
    width: 44px; height: 44px; flex-shrink: 0;
    display: flex; align-items: center; justify-content: center;
    background: linear-gradient(135deg, #2a1c80, #3d2db5);
    border-radius: 12px; color: #fff; font-size: .95rem;
    box-shadow: 0 4px 12px rgba(42,28,128,.25);
}
.ce-why__item strong {
    display: block; font-size: .95rem; font-weight: 700;
    color: #1c1a16; margin-bottom: .35rem;
}
.ce-why__item p { font-size: .875rem; color: #8a8578; line-height: 1.65; margin: 0; }

/* ── HOW WE HELP ───────────────── */
.ce-help { background: #fff; }
.ce-help__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
    gap: 1.5rem;
}
.ce-help__card {
    background: var(--bg-light); border-radius: 16px; padding: 1.75rem;
    border: 1px solid #e8e6e0; transition: box-shadow .3s, transform .3s, border-color .3s;
}
.ce-help__card:hover {
    box-shadow: 0 12px 36px rgba(42,28,128,.08); transform: translateY(-4px);
    border-color: rgba(239,122,13,.3);
}
.ce-help__card h3 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1rem; font-weight: 700; color: #187f99; margin-bottom: .5rem;
}
.ce-help__card i { color: var(--primary); margin-right: .5rem; }
.ce-help__card p { font-size: .875rem; color: #8a8578; line-height: 1.65; margin: 0; }
.ce-help__card--center {
    grid-column: 1 / -1; text-align: center;
    background: linear-gradient(135deg, #187f99, #187f99); border-color: transparent;
}
.ce-help__card--center h3,
.ce-help__card--center p { color: #fff; }
.ce-help__card--center p { color: rgba(255,255,255,.75); }

/* ── WHO IT'S FOR ───────────────────────── */
.ce-who { background: var(--dark-green); }
.ce-who .ce-tag           { color: #f7a44a; }
.ce-who .ce-section-title { color: #fff; }
.ce-who .ce-section-title em { color: #f7a44a; }
.ce-who .ce-section__header p { color: rgba(255,255,255,.55); }
.ce-who__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 480px), 1fr));
    gap: 1.5rem;
}
.ce-who__item {
    display: flex; align-items: flex-start; gap: 1.5rem;
    background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1);
    border-radius: 20px; padding: 2rem;
    transition: background .3s, border-color .3s, transform .3s;
}
.ce-who__item:hover {
    background: rgba(255,255,255,.1); border-color: rgba(239,122,13,.4);
    transform: translateY(-3px);
}
.ce-who__num {
    font-family: 'Playfair Display', Georgia, serif;
    line-height: 1; flex-shrink: 0; min-width: 52px;
}
.ce-who__body h3 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.1rem; font-weight: 700; color: #fff; margin-bottom: .5rem;
}
.ce-who__body p { font-size: .875rem; color: rgba(255,255,255,255); line-height: 1.75; margin: 0; }

/* ── CTA SECTION ───────────────────────────────── */
.ce-cta-section { background: var(--bg-light); }
.ce-cta {
    background: linear-gradient(135deg, #2a1c80, #1b4332);
    border-radius: 40px;
    padding: clamp(3rem, 6vw, 5rem) clamp(2rem, 6vw, 5rem);
    text-align: center; position: relative; overflow: hidden;
    box-shadow: 0 32px 80px rgba(42,28,128,.22);
}
.ce-cta::before {
    content: ''; position: absolute; inset: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(255,255,255,.07) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(239,122,13,.3) 0%, transparent 50%);
    pointer-events: none;
}
.ce-cta > * { position: relative; }
.ce-cta .ce-tag { color: #ffffff; margin-bottom: 1rem; }
.ce-cta h3 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 900;
    color: #fff; margin-bottom: 1rem; line-height: 1.2;
}
.ce-cta h3 em { font-style: italic; color: #ef7a0d; }
.ce-cta p {
    color: rgba(255,255,255,.7); font-size: 1.05rem; font-weight: 300;
    max-width: 560px; margin: 0 auto 2.5rem; line-height: 1.8;
}

/* ── RESPONSIVE ────────────────────────────────── */
@media (max-width: 1024px) {
    .ce-intro__grid { grid-template-columns: 1fr; gap: 2.5rem; }
}
@media (max-width: 768px) {
    .ce-hero__title { font-size: clamp(2.4rem, 10vw, 4rem); }
    .ce-intro__img-wrap img { height: 280px; }
    .ce-cta { border-radius: 24px; }
    .ce-who__item { flex-direction: column; gap: .75rem; }
    .ce-who__num { font-size: 1.8rem; }
}
@media (max-width: 480px) {
    .ce-intro__actions { flex-direction: column; }
    .ce-btn { justify-content: center; }
}

/*Business tax receipt*/
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: 'Inter', sans-serif; color: #1c1a16; background: #fff; }
img  { display: block; max-width: 100%; }
a    { text-decoration: none; }
:root { --primary: #2a1c80; --accent: #ef7a0d; }

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

.ce-section { padding: clamp(60px, 8vw, 120px) 0; }
.ce-inner   { max-width: 1200px; margin: 0 auto; padding: 0 clamp(20px, 5vw, 60px); }

.ce-section__header { text-align: center; margin-bottom: 4rem; }
.ce-section__header p { color: #8a8578; font-size: 1.05rem; font-weight: 300; margin-top: .5rem; max-width: 520px; margin-left: auto; margin-right: auto; }

.ce-tag { display: inline-block; font-size: .75rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--accent, #ef7a0d); margin-bottom: .75rem; }
.ce-section-title { font-family: 'Playfair Display', Georgia, serif; font-size: clamp(2rem, 4vw, 3rem); font-weight: 900; line-height: 1.15; color: #1c1a16; margin-bottom: .5rem; }
.ce-section-title em { font-style: italic; color: var(--primary, #2a1c80); }

.ce-btn { display: inline-flex; align-items: center; gap: .5rem; padding: .85rem 2rem; border-radius: 50px; font-weight: 600; font-size: .9rem; letter-spacing: .03em; transition: all .3s; cursor: pointer; }
.ce-btn--primary { background: var(--primary, #2a1c80); color: #fff; }
.ce-btn--primary:hover { background: #3d2db5; transform: translateY(-3px); box-shadow: 0 10px 28px rgba(42,28,128,.25); }
.ce-btn--outline { background: transparent; color: var(--primary, #2a1c80); border: 1.5px solid var(--primary, #2a1c80); }
.ce-btn--outline:hover { background: rgba(42,28,128,.06); transform: translateY(-3px); }
.ce-btn--white { background: #fff; color: #2a1c80; }
.ce-btn--white:hover { background: #fdf8f4; transform: translateY(-3px); box-shadow: 0 12px 32px rgba(0,0,0,.2); }
.ce-btn--outline-white { background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,.45); }
.ce-btn--outline-white:hover { border-color: #fff; background: rgba(255,255,255,.08); transform: translateY(-3px); }
.ce-btn--lg { padding: 1rem 2.5rem; font-size: 1rem; }

/* HERO */
.ce-hero { position: relative; min-height: 100vh; display: flex; align-items: center; justify-content: center; overflow: hidden; background: #1c1a16; }
.ce-hero__overlay {
    position: absolute; inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 20% 50%, rgba(123,86,0,.8) 0%, transparent 70%),
        radial-gradient(ellipse 60% 80% at 80% 30%, rgba(239,122,13,.3) 0%, transparent 60%),
        radial-gradient(ellipse 40% 40% at 60% 80%, rgba(42,28,128,.2) 0%, transparent 60%);
}
.ce-hero::after { content: ''; position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px); background-size: 60px 60px; pointer-events: none; }
.ce-hero__content { position: relative; z-index: 2; text-align: center; padding: 120px 24px 80px; max-width: 860px; display: flex; flex-direction: column; align-items: center; }
.ce-breadcrumb { display: inline-flex; align-items: center; gap: .45rem; font-size: .8rem; font-weight: 600; letter-spacing: .08em; color: rgba(255,255,255,.55); margin-bottom: 1.5rem; transition: color .2s; }
.ce-breadcrumb:hover { color: rgba(255,255,255,.9); }
.ce-eyebrow { display: inline-flex; align-items: center; gap: .5rem; font-size: .8rem; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; color: #f7a44a; margin-bottom: 1.5rem; padding: .4rem 1.1rem; border: 1px solid rgba(239,122,13,.4); border-radius: 50px; }
.ce-hero__title { font-family: 'Playfair Display', Georgia, serif; font-size: clamp(3rem, 7vw, 5.5rem); font-weight: 900; color: #fff; line-height: 1.05; margin-bottom: 1.5rem; }
.ce-hero__title span { font-style: italic; color: #f7a44a; }
.ce-hero__sub { font-size: clamp(1rem, 2vw, 1.15rem); color: rgba(255,255,255,.7); max-width: 600px; margin: 0 auto 2.5rem; font-weight: 300; line-height: 1.8; }
.ce-hero__cta { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.ce-hero__scroll { position: absolute; bottom: 2.5rem; left: 50%; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: .5rem; color: rgba(255,255,255,.4); font-size: .7rem; letter-spacing: .15em; text-transform: uppercase; z-index: 2; }
.ce-hero__scroll-line { width: 1px; height: 48px; background: linear-gradient(to bottom, rgba(255,255,255,.5), transparent); animation: ceScrollPulse 2s ease-in-out infinite; }
@keyframes ceScrollPulse { 0%, 100% { opacity: .4; transform: scaleY(1); } 50% { opacity: 1; transform: scaleY(1.1); } }

/* INTRO */
.ce-intro { background: #fff; }
.ce-intro__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.ce-intro p { color: #000000; font-size: 1rem; line-height: 1.8; font-weight: 300; margin-bottom: 1rem; }
.ce-intro__actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 2rem; }
.ce-intro__img-wrap { position: relative; border-radius: 24px; overflow: hidden; box-shadow: 0 20px 60px rgba(123,86,0,.18); }
.ce-intro__img-wrap img { width: 100%; height: 420px; object-fit: cover; }
.ce-intro__img-badge { position: absolute; bottom: 1.5rem; left: 1.5rem; display: flex; align-items: center; gap: .75rem; background: rgba(255,255,255,.95); backdrop-filter: blur(8px); border-radius: 12px; padding: .85rem 1.2rem; box-shadow: 0 8px 24px rgba(0,0,0,.15); }
.ce-intro__img-badge i { color: var(--accent, #ef7a0d); font-size: 1.2rem; }
.ce-intro__img-badge span { font-size: .8rem; font-weight: 700; color: #1c1a16; line-height: 1.3; }

/* WHY */
.ce-why { background: #f9f8f4; }
.ce-why__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 340px), 1fr)); gap: 1.5rem; }
.ce-why__item { display: flex; align-items: flex-start; gap: 1.25rem; background: #fff; border-radius: 16px; padding: 1.75rem; border: 1px solid #e8e6e0; transition: all .3s; }
.ce-why__item:hover { box-shadow: 0 12px 36px rgba(239,122,13,.1); transform: translateY(-4px); border-color: rgba(239,122,13,.3); }
.ce-why__icon { width: 44px; height: 44px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; background: linear-gradient(135deg, #c97b00, #ef7a0d); border-radius: 12px; color: #fff; font-size: .95rem; box-shadow: 0 4px 12px rgba(239,122,13,.3); }
.ce-why__item strong { display: block; font-size: .95rem; font-weight: 700; color: #187f99; margin-bottom: .35rem; }
.ce-why__item p { font-size: .875rem; color: #8a8578; line-height: 1.65; margin: 0; }

/* SERVICES GRID */
.ce-services { background: #fff; }
.ce-services__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr)); gap: 1.5rem; }
.ce-service-card { background: #f9f8f4; border-radius: 16px; padding: 1.75rem; border: 1px solid #e8e6e0; transition: all .3s; }
.ce-service-card:hover { box-shadow: 0 12px 36px rgba(239,122,13,.1); transform: translateY(-4px); border-color: rgba(239,122,13,.3); }
.ce-service-card h3 { font-size: .95rem; font-weight: 700; color: #1c1a16; margin-bottom: .4rem; }
.ce-service-card p { font-size: .875rem; color: #8a8578; line-height: 1.65; margin: 0; }

/* WHO */
.ce-who { background: #1c1a16; }
.ce-who .ce-tag { color: #ffffff; }
.ce-who .ce-section-title { color: #fff; }
.ce-who .ce-section-title em { color: #ef7a0d; }
.ce-who .ce-section__header p { color: rgba(255,255,255,255); }
.ce-who__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 480px), 1fr)); gap: 1.5rem; }
.ce-who__item { display: flex; align-items: flex-start; gap: 1.5rem; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1); border-radius: 20px; padding: 2rem; transition: all .3s; }
.ce-who__item:hover { background: rgba(255,255,255,.1); border-color: rgba(239,122,13,.4); transform: translateY(-3px); }
.ce-who__num { font-family: 'Playfair Display', Georgia, serif; font-size: 2.5rem; font-weight: 900; line-height: 1; flex-shrink: 0; min-width: 52px; }
.ce-who__body h3 { font-family: 'Playfair Display', Georgia, serif; font-size: 1.1rem; font-weight: 700; color: #fff; margin-bottom: .5rem; }
.ce-who__body p { font-size: .875rem; color: rgba(255,255,255,255); line-height: 1.75; margin: 0; }

/* CTA */
.ce-cta-section { background: #f9f8f4; }
.ce-cta { background: linear-gradient(135deg, #c97b00 0%, #1c1a16 100%); border-radius: 40px; padding: clamp(3rem, 6vw, 5rem); text-align: center; position: relative; overflow: hidden; box-shadow: 0 32px 80px rgba(0,0,0,.25); }
.ce-cta::before { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 20% 50%, rgba(255,255,255,.07) 0%, transparent 50%), radial-gradient(circle at 80% 20%, rgba(239,122,13,.35) 0%, transparent 50%); pointer-events: none; }
.ce-cta > * { position: relative; }
.ce-cta h3 { font-family: 'Playfair Display', Georgia, serif; font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 900; color: #fff; margin-bottom: 1rem; line-height: 1.2; }
.ce-cta p { color: rgba(255,255,255,255); font-size: 1.05rem; font-weight: 300; max-width: 560px; margin: 0 auto 2.5rem; line-height: 1.8; }

@media (max-width: 1024px) { .ce-intro__grid { grid-template-columns: 1fr; gap: 2.5rem; } }
@media (max-width: 768px) { .ce-hero__title { font-size: clamp(2.4rem, 10vw, 4rem); } .ce-intro__img-wrap img { height: 280px; } .ce-who__item { flex-direction: column; gap: .75rem; } }
@media (max-width: 480px) { .ce-intro__actions { flex-direction: column; } .ce-btn { justify-content: center; } }

/*LLC*/

/* --- Base & Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: 'Inter', sans-serif; color: #1c1a16; background: #fff; line-height: 1.5; }
img  { display: block; max-width: 100%; }
a    { text-decoration: none; }
:root { --primary: #2a1c80; --accent: #ef7a0d; }

/* --- Animations --- */
.ce-reveal { opacity: 0; transform: translateY(32px); transition: opacity .7s ease, transform .7s ease; }
.ce-reveal.ce-visible { opacity: 1; transform: none; }

/* --- Layout --- */
.ce-section { padding: clamp(60px, 8vw, 120px) 0; }
.ce-inner   { max-width: 1200px; margin: 0 auto; padding: 0 clamp(20px, 5vw, 60px); }
.ce-section__header { text-align: center; margin-bottom: 4rem; }
.ce-section__header p { color: #8a8578; font-size: 1.05rem; font-weight: 300; margin-top: .5rem; max-width: 520px; margin-left: auto; margin-right: auto; }

/* --- Typography --- */
.ce-tag { display: inline-block; font-size: .75rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--accent); margin-bottom: .75rem; }
.ce-section-title { font-family: 'Playfair Display', serif; font-size: clamp(2.2rem, 4vw, 3rem); font-weight: 900; line-height: 1.15; color: #ef7a0d; margin-bottom: .5rem; }
.ce-section-title em { font-style: italic; color: #187f99; }

/* --- Buttons --- */
.ce-btn { display: inline-flex; align-items: center; gap: .5rem; padding: .85rem 2rem; border-radius: 50px; font-weight: 600; font-size: .9rem; transition: all .3s; cursor: pointer; border: none; }
.ce-btn--primary { background: #187f99; color: #fff; }
.ce-btn--primary:hover { background: #3d2db5; transform: translateY(-3px); box-shadow: 0 10px 28px rgba(42,28,128,.25); }
.ce-btn--outline { background: transparent; color: #187f99; border: 1.5px solid var(--teal); }
.ce-btn--white { background: #fff; color: #187f99; }
.ce-btn--outline-white { background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,.45); }
.ce-btn--lg { padding: 1rem 2.5rem; font-size: 1rem; }

/* --- Hero --- */
.ce-hero { position: relative; min-height: 100vh; display: flex; align-items: center; justify-content: center; overflow: hidden; background: #1b4332; }

.ce-hero__overlay {
    position: absolute; inset: 0;
    background: linear-gradient(135deg, #0d4f60 0%, var(--teal) 50%, #1a9dbc 100%);
}
.ce-hero::after { content: ''; position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px); background-size: 60px 60px; pointer-events: none; }
.ce-hero__content { position: relative; z-index: 2; text-align: center; padding: 120px 24px; max-width: 900px; }
.ce-breadcrumb { display: inline-flex; align-items: center; gap: .45rem; font-size: .8rem; font-weight: 600; color: rgba(255,255,255,.55); margin-bottom: 1.5rem; }
.ce-eyebrow { display: inline-flex; border: #ffffff 1px; padding: .4rem 1.1rem; border-radius: 50px; color: #ffffff; font-size: .8rem; text-transform: uppercase; letter-spacing: .2em; margin-bottom: 1.5rem; }
.ce-hero__title { font-family: 'Playfair Display', serif; font-size: clamp(3rem, 7vw, 5.5rem); font-weight: 900; color: #fff; line-height: 1.05; margin-bottom: 1.5rem; }
.ce-hero__title span { font-style: italic; color: #ef7a0d; }
.ce-hero__sub { font-size: clamp(1rem, 2vw, 1.15rem); color: rgba(255,255,255,.7); max-width: 620px; margin: 0 auto 2.5rem; }
.ce-hero__cta { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.ce-hero__scroll { position: absolute; bottom: 2.5rem; left: 50%; transform: translateX(-50%); color: rgba(255,255,255,.4); text-transform: uppercase; font-size: .7rem; text-align: center; }
.ce-hero__scroll-line { width: 1px; height: 48px; background: linear-gradient(to bottom, #fff, transparent); margin: 0 auto 8px; animation: ceScrollPulse 2s infinite; }

@keyframes ceScrollPulse { 0%, 100% { transform: scaleY(1); opacity: .4; } 50% { transform: scaleY(1.1); opacity: 1; } }

/* --- Grid Sections --- */
.ce-intro__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.ce-intro__img-wrap { position: relative; border-radius: 24px; overflow: hidden; box-shadow: 0 20px 60px rgba(42,28,128,.2); }
.ce-intro__img-wrap img { width: 100%; height: 420px; object-fit: cover; }
.ce-intro__img-badge { position: absolute; bottom: 1.5rem; left: 1.5rem; background: #fff; padding: .85rem 1.2rem; border-radius: 12px; display: flex; align-items: center; gap: .75rem; box-shadow: 0 8px 24px rgba(0,0,0,.15); }

.ce-why { background: #f9f8f4; }
.ce-why__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.5rem; }
.ce-why__item { background: #fff; padding: 1.75rem; border-radius: 16px; border: 1px solid #e8e6e0; display: flex; gap: 1.25rem; transition: .3s; }
.ce-why__item:hover { transform: translateY(-4px); border-color: #187f99; }
.ce-why__icon { width: 44px; height: 44px; background: #187f99; color: #fff; border-radius: 12px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }

/* --- Cards --- */
.ce-entities__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 1.5rem; }
.ce-entity-card { border-radius: 24px; padding: 2.25rem; border: 1.5px solid #e8e6e0; transition: .3s; }
.ce-entity-card:hover { transform: translateY(-5px); box-shadow: 0 16px 48px rgba(42,28,128,.12); }
.ce-entity-card__badge { width: 52px; height: 52px; border-radius: 16px; display: flex; align-items: center; justify-content: center; font-weight: 900; margin-bottom: 1.25rem; }
.ce-entity-card--llc .ce-entity-card__badge { background: var(--teal); color: #fff; }
.ce-entity-card--scorp .ce-entity-card__badge { background: var(--teal); color: #fff; }
.ce-entity-card--ccorp .ce-entity-card__badge { background: #187f99; color: #fff; }
.ce-entity-card__list { list-style: none; margin-top: 1rem; }
.ce-entity-card__list li { padding: .4rem 0; font-size: .85rem; border-bottom: 1px solid #f0ede8; }

/* --- Help & Who --- */
.ce-help__list { max-width: 760px; margin: 0 auto; background: #fff; border-radius: 24px; border: 1px solid #e8e6e0; overflow: hidden; }
.ce-help__list-item { display: flex; align-items: center; gap: 1.25rem; padding: 1.35rem 2rem; border-bottom: 1px solid #f0ede8; }
.ce-help__list-item i {
color: #187f99;
}

.ce-who { background: #187f99; }
.ce-who__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(400px, 1fr)); gap: 1.5rem; }
.ce-who__item { display: flex; gap: 1.5rem; background: rgba(255,255,255,.05); padding: 2rem; border-radius: 20px; color: #fff; }
.ce-who__body p {
    font-size: .875rem;
    color: #ffffff; /* blanco puro */
    line-height: 1.75;
    margin: 0;
}

/* --- CTA --- */
.ce-cta { background: linear-gradient(135deg, #187f99 0%, #187f99 100%); padding: 5rem 2rem; border-radius: 40px; text-align: center; color: #fff; }
.ce-cta h3 { font-family: 'Playfair Display', serif; font-size: clamp(2rem, 4vw, 2.8rem); margin-bottom: 2rem; }

/* --- Responsive --- */
@media (max-width: 1024px) { .ce-intro__grid { grid-template-columns: 1fr; } }
@media (max-width: 768px) { .ce-hero__title { font-size: 3rem; } .ce-who__grid { grid-template-columns: 1fr; } }


/* FOOTER */
.footer {
    background-color: #187f99;
    color: #ffffff;
    padding: 60px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
}

.footer-col h4 {
    margin-bottom: 15px;
    font-size: 18px;
}

.footer-desc {
    margin-top: 10px;
    font-size: 14px;
    opacity: 0.85;
}

.footer-links,
.footer-contact {
    list-style: none;
    padding: 0;
}

.footer-links li,
.footer-contact li {
    margin-bottom: 10px;
}

.footer-links a,
.footer-contact a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover,
.footer-contact a:hover {
    color: #ef7a0d;
}

/* Contact row */
.footer-contact li {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* SOCIAL ICONS */
/* SOCIAL ICONS */
.footer-social {
    margin-top: 15px;
    display: flex;          /* ← los pone en fila */
    align-items: center;
    gap: 12px;              /* espacio entre iconos */
}

.footer-social a {
    display: inline-flex;
}

.footer-social a img {
    width: 28px;
    height: 28px;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.footer-social a img:hover {
    transform: scale(1.15);
    opacity: 0.8;
}


/* Bottom */
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.2);
    margin-top: 40px;
    padding-top: 15px;
    text-align: center;
    font-size: 14px;
}

/*Ein*/
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: 'Inter', sans-serif; color: #1c1a16; background: #fff; }
img { display: block; max-width: 100%; }
a { text-decoration: none; }
:root { --primary: #2a1c80; --accent: #ef7a0d; }

/* ── Reveal animation ── */
.ce-reveal { opacity: 0; transform: translateY(32px); transition: opacity .7s ease, transform .7s ease; }
.ce-reveal.ce-visible { opacity: 1; transform: none; }

/* ── Layout ── */
.ce-section { padding: clamp(60px, 8vw, 120px) 0; }
.ce-inner { max-width: 1200px; margin: 0 auto; padding: 0 clamp(20px, 5vw, 60px); }
.ce-section__header { text-align: center; margin-bottom: 4rem; }
.ce-section__header p { color: #8a8578; font-size: 1.05rem; font-weight: 300; margin-top: .5rem; max-width: 520px; margin-left: auto; margin-right: auto; }
.ce-tag { display: inline-block; font-size: .75rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--accent); margin-bottom: .75rem; }
.ce-section-title { font-family: 'Playfair Display', Georgia, serif; font-size: clamp(2rem, 4vw, 3rem); font-weight: 900; line-height: 1.15; color: #ef7a0d; margin-bottom: .5rem; }
.ce-section-title em { font-style: italic; color: #187f99; }

/* ── Buttons ── */
.ce-btn { display: inline-flex; align-items: center; gap: .5rem; padding: .85rem 2rem; border-radius: 50px; font-weight: 600; font-size: .9rem; letter-spacing: .03em; transition: all .3s; cursor: pointer; }
.ce-btn--primary { background: var(--teal); color: #fff; }
.ce-btn--primary:hover { background: #3d2db5; transform: translateY(-3px); box-shadow: 0 10px 28px rgba(42,28,128,.25); }
.ce-btn--outline { background: transparent; color: var(--teal); border: 1.5px solid var(--teal); }
.ce-btn--outline:hover { background: rgba(42,28,128,.06); transform: translateY(-3px); }
.ce-btn--white { background: #fff; color: var(--teal); }
.ce-btn--white:hover { background: #fdf8f4; transform: translateY(-3px); box-shadow: 0 12px 32px rgba(0,0,0,.2); }
.ce-btn--outline-white { background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,.45); }
.ce-btn--outline-white:hover { border-color: #fff; background: rgba(255,255,255,.08); transform: translateY(-3px); }
.ce-btn--lg { padding: 1rem 2.5rem; font-size: 1rem; }

/* ── Hero ── */
.ce-hero { position: relative; min-height: 100vh; display: flex; align-items: center; justify-content: center; overflow: hidden; background: #0f1729; }
.ce-hero__overlay { position: absolute; inset: 0; background: linear-gradient(135deg, #0d4f60 0%, var(--teal) 50%, #1a9dbc 100%); }
.ce-hero::after { content: ''; position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px); background-size: 60px 60px; pointer-events: none; }
.ce-hero__content { position: relative; z-index: 2; text-align: center; padding: 120px 24px 80px; max-width: 860px; display: flex; flex-direction: column; align-items: center; }
.ce-breadcrumb { display: inline-flex; align-items: center; gap: .45rem; font-size: .8rem; font-weight: 600; letter-spacing: .08em; color: rgba(255,255,255,.55); margin-bottom: 1.5rem; transition: color .2s; }
.ce-breadcrumb:hover { color: rgba(255,255,255,.9); }
.ce-eyebrow { display: inline-flex; align-items: center; gap: .5rem; font-size: .8rem; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; color: #ffffff; margin-bottom: 1.5rem; padding: .4rem 1.1rem; border: 1px #ffffff; border-radius: 50px; }
.ce-hero__title { font-family: 'Playfair Display', Georgia, serif; font-size: clamp(3rem, 7vw, 5.5rem); font-weight: 900; color: #fff; line-height: 1.05; margin-bottom: 1.5rem; }
.ce-hero__title span { font-style: italic; color: #ef7a0d; }
.ce-hero__sub { font-size: clamp(1rem, 2vw, 1.15rem); color: rgba(255,255,255,.7); max-width: 600px; margin: 0 auto 2.5rem; font-weight: 300; line-height: 1.8; }
.ce-hero__cta { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.ce-hero__scroll { position: absolute; bottom: 2.5rem; left: 50%; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: .5rem; color: rgba(255,255,255,.4); font-size: .7rem; letter-spacing: .15em; text-transform: uppercase; z-index: 2; }
.ce-hero__scroll-line { width: 1px; height: 48px; background: linear-gradient(to bottom, rgba(255,255,255,.5), transparent); animation: ceScrollPulse 2s ease-in-out infinite; }
@keyframes ceScrollPulse { 0%, 100% { opacity: .4; transform: scaleY(1); } 50% { opacity: 1; transform: scaleY(1.1); } }

/* ── Intro ── */
.ce-intro { background: #fff; }
.ce-intro__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.ce-intro p { color: #8a8578; font-size: 1rem; line-height: 1.8; font-weight: 300; margin-bottom: 1rem; }
.ce-intro p:last-of-type { margin-bottom: 0; }
.ce-intro__actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 2rem; }
.ce-intro__img-wrap { position: relative; border-radius: 24px; overflow: hidden; box-shadow: 0 20px 60px rgba(42,28,128,.18); }
.ce-intro__img-wrap img { width: 100%; height: 420px; object-fit: cover; }
.ce-intro__img-badge { position: absolute; bottom: 1.5rem; left: 1.5rem; display: flex; align-items: center; gap: .75rem; background: rgba(255,255,255,.95); backdrop-filter: blur(8px); border-radius: 12px; padding: .85rem 1.2rem; box-shadow: 0 8px 24px rgba(0,0,0,.15); }
.ce-intro__img-badge i { color: var(--primary); font-size: 1.2rem; }
.ce-intro__img-badge span { font-size: .8rem; font-weight: 700; color: #1c1a16; line-height: 1.3; }

/* ── Split ── */
/* .ce-split { background: #f9f8f4; }
.ce-split__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
.ce-split__col h3 { font-family: 'Playfair Display', Georgia, serif; font-size: 1.35rem; font-weight: 900; color: #1c1a16; margin-bottom: 1.25rem; padding-bottom: .75rem; border-bottom: 2px solid #e8e6e0; }
.ce-split__col p { color: #8a8578; font-size: .925rem; line-height: 1.8; font-weight: 300; margin-bottom: 1.25rem; }

.ce-check-list { list-style: none; padding: 0; display: flex; flex-direction: column; gap: .85rem; }
.ce-check-list li { display: flex; align-items: flex-start; gap: .9rem; font-size: .9rem; color: #3a3830; line-height: 1.6; }
.ce-check-icon { width: 22px; height: 22px; flex-shrink: 0; border-radius: 50%; background: linear-gradient(135deg, var(--teal), #3d2db5); display: flex; align-items: center; justify-content: center; color: #fff; font-size: .6rem; margin-top: .15rem; }

.ce-step-list { display: flex; flex-direction: column; }
.ce-step-item { display: flex; align-items: flex-start; gap: 1.25rem; padding: 1.1rem 0; border-bottom: 1px solid #ede9e3; }
.ce-step-item:last-child { border-bottom: none; }
.ce-step-num { font-family: 'Playfair Display', serif; font-size: 1.4rem; font-weight: 900; color: rgba(42,28,128,.2); line-height: 1; flex-shrink: 0; min-width: 32px; }
.ce-step-item span { font-size: .9rem; color: #3a3830; line-height: 1.65; padding-top: .1rem; } */

/* ── Who ── */
.ce-who { background: #187f99; }
.ce-who .ce-tag { color: #ffffff; }
.ce-who .ce-section-title { color: #fff; }
.ce-who .ce-section-title em { color: #ef7a0d; }
.ce-who .ce-section__header p { color: rgba(255,255,255,.55); }
.ce-who__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 480px), 1fr)); gap: 1.5rem; }
.ce-who__item { display: flex; align-items: flex-start; gap: 1.5rem; background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.09); border-radius: 20px; padding: 2rem; transition: background .3s, border-color .3s, transform .3s; }
.ce-who__item:hover { background: rgba(255,255,255,.09); border-color: rgba(239,122,13,.4); transform: translateY(-3px); }
.ce-who__num { font-family: 'Playfair Display', Georgia, serif; font-size: 2.5rem; font-weight: 900; color:#ffffff; line-height: 1; flex-shrink: 0; min-width: 52px; }
.ce-who__body h3 { font-family: 'Playfair Display', Georgia, serif; font-size: 1.1rem; font-weight: 700; color: #fff; margin-bottom: .5rem; }
.ce-who__body p { font-size: .875rem; color: rgba(255,255,255,255); line-height: 1.75; margin: 0; }

/* ── CTA ── */
.ce-cta-section { background: #f9f8f4; }
.ce-cta { background: linear-gradient(135deg, #0d4f60 0%, var(--teal) 50%, #1a9dbc 100%); }
.ce-cta::before { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 20% 50%, rgba(255,255,255,.07) 0%, transparent 50%), radial-gradient(circle at 80% 20%, rgba(239,122,13,.3) 0%, transparent 50%); pointer-events: none; }
.ce-cta > * { position: relative; }
.ce-cta .ce-tag { color: #ffffff; margin-bottom: 1rem; }
.ce-cta h3 { font-family: 'Playfair Display', Georgia, serif; font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 900; color: #fff; margin-bottom: 1rem; line-height: 1.2; }
.ce-cta h3 em { font-style: italic; color: #ef7a0d; }
.ce-cta p { color: rgba(255,255,255,.7); font-size: 1.05rem; font-weight: 300; max-width: 560px; margin: 0 auto 2.5rem; line-height: 1.8; }

/* ── Responsive ── */
@media (max-width: 1024px) {
    .ce-intro__grid,
    .ce-split__grid { grid-template-columns: 1fr; gap: 2.5rem; }
}
@media (max-width: 768px) {
    .ce-hero__title { font-size: clamp(2.4rem, 10vw, 4rem); }
    .ce-intro__img-wrap img { height: 280px; }
    .ce-cta { border-radius: 24px; }
    .ce-who__item { flex-direction: column; gap: .75rem; }
    .ce-who__num { font-size: 1.8rem; }
}
@media (max-width: 480px) {
    .ce-intro__actions { flex-direction: column; }
    .ce-btn { justify-content: center; }
}


/* */
/* ============================================================
   style.css — Clermont Commissary · Shared Styles
   Covers: equipmentRepair, financialAssistance, foodTruckRental
   ============================================================ */

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: 'Inter', sans-serif; color: #1c1a16; background: #fff; }
img { display: block; max-width: 100%; }
a { text-decoration: none; }

/* ── Design Tokens ── */
:root {
    --primary:     #2a1c80;
    --accent:      #ef7a0d;
    --brand-green: #1b4332;
    --dark-green:  #0a1f13;
    --amber:       #c97b00;
    --dark-amber:  #1c1000;
}

/* ── Scroll Reveal ── */
.ce-reveal { opacity: 0; transform: translateY(32px); transition: opacity .7s ease, transform .7s ease; }
.ce-reveal.ce-visible { opacity: 1; transform: none; }

/* ── Layout ── */
.ce-section { padding: clamp(60px, 8vw, 120px) 0; }
.ce-inner   { max-width: 1200px; margin: 0 auto; padding: 0 clamp(20px, 5vw, 60px); }

/* ── Section Header ── */
.ce-section__header { text-align: center; margin-bottom: 4rem; }
.ce-section__header p {
    color: #000000;
    font-size: 1.05rem;
    font-weight: 300;
    margin-top: .5rem;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
}

/* ── Tags & Labels ── */
.ce-tag {
    display: inline-block;
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: .75rem;
}

.ce-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    font-size: .8rem;
    font-weight: 600;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: #ffffff;
    margin-bottom: 1.5rem;
    padding: .4rem 1.1rem;
    border: 1px solid rgba(255,255,255,255);
    border-radius: 50px;
}

/* ── Typography ── */
.ce-section-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    line-height: 1.15;
    color: #ef7a0d;
    margin-bottom: .5rem;
}
.ce-section-title em { font-style: italic; color: var(--teal); }

/* ── Buttons ── */
.ce-btn {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .85rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: .9rem;
    letter-spacing: .03em;
    transition: all .3s;
    cursor: pointer;
}
.ce-btn--lg { padding: 1rem 2.5rem; font-size: 1rem; }

.ce-btn--primary { background: var(--teal); color: #fff; }
.ce-btn--primary:hover { background: #3d2db5; transform: translateY(-3px); box-shadow: 0 10px 28px rgba(42,28,128,.25); }

.ce-btn--outline { background: transparent; color: var(--teal); border: 1.5px solid var(--teal); }
.ce-btn--outline:hover { background: rgba(42,28,128,.06); transform: translateY(-3px); }

.ce-btn--outline-white { background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,.45); }
.ce-btn--outline-white:hover { border-color: #fff; background: rgba(255,255,255,.08); transform: translateY(-3px); }

/* ── Hero — shared structure ── */
.ce-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.ce-hero__overlay { position: absolute; inset: 0; }
.ce-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
}
.ce-hero__content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 120px 24px 80px;
    max-width: 860px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.ce-hero__title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(3rem, 7vw, 5.5rem);
    font-weight: 900;
    color: #fff;
    line-height: 1.05;
    margin-bottom: 1.5rem;
}
.ce-hero__title span { font-style: italic; color: #ef7a0d; }
.ce-hero__sub {
    font-size: clamp(1rem, 2vw, 1.15rem);
    color: rgba(255,255,255,255);
    max-width: 600px;
    margin: 0 auto 2.5rem;
    font-weight: 300;
    line-height: 1.8;
}
.ce-hero__cta { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* Breadcrumb */
.ce-breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    font-size: .8rem;
    font-weight: 600;
    letter-spacing: .08em;
    color: rgba(255,255,255,.55);
    margin-bottom: 1.5rem;
    transition: color .2s;
}
.ce-breadcrumb:hover { color: rgba(255,255,255,.9); }

/* Scroll indicator */
.ce-hero__scroll {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .5rem;
    color: rgba(255,255,255,.4);
    font-size: .7rem;
    letter-spacing: .15em;
    text-transform: uppercase;
    z-index: 2;
}
.ce-hero__scroll-line {
    width: 1px;
    height: 48px;
    background: linear-gradient(to bottom, rgba(255,255,255,.5), transparent);
    animation: ceScrollPulse 2s ease-in-out infinite;
}
@keyframes ceScrollPulse {
    0%, 100% { opacity: .4; transform: scaleY(1); }
    50%       { opacity: 1;  transform: scaleY(1.1); }
}

/* ── Intro Section ── */
.ce-intro { background: #fff; }
.ce-intro__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.ce-intro p { color: #000000; font-size: 1rem; line-height: 1.8; font-weight: 300; margin-bottom: 1rem; }
.ce-intro p:last-of-type { margin-bottom: 0; }
.ce-intro__actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 2rem; }
.ce-intro__img-wrap { position: relative; border-radius: 24px; overflow: hidden; }
.ce-intro__img-wrap img { width: 100%; height: 420px; object-fit: cover; }
.ce-intro__img-badge {
    position: absolute;
    bottom: 1.5rem;
    left: 1.5rem;
    display: flex;
    align-items: center;
    gap: .75rem;
    background: rgba(255,255,255,.95);
    backdrop-filter: blur(8px);
    border-radius: 12px;
    padding: .85rem 1.2rem;
    box-shadow: 0 8px 24px rgba(0,0,0,.15);
}
.ce-intro__img-badge span { font-size: .8rem; font-weight: 700; color: #1c1a16; line-height: 1.3; }

/* ── "Who" Section — dark bg shared pattern ── */
.ce-who__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 480px), 1fr)); gap: 1.5rem; }
.ce-who__item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.09);
    border-radius: 20px;
    padding: 2rem;
    transition: background .3s, border-color .3s, transform .3s;
}
.ce-who__item:hover { background: rgba(255,255,255,.09); border-color: rgba(239,122,13,.4); transform: translateY(-3px); }
.ce-who__num {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 2.5rem;
    font-weight: 900;
    color: #ffffff;
    line-height: 1;
    flex-shrink: 0;
    min-width: 52px;
}
.ce-who__body h3 { font-family: 'Playfair Display', Georgia, serif; font-size: 1.1rem; font-weight: 700; color: #fff; margin-bottom: .5rem; }
.ce-who__body p  { font-size: .875rem; color: rgba(255,255,255,255); line-height: 1.75; margin: 0; }
/* "Who" section dark header overrides */
.ce-who .ce-tag { color: #ffffff; }
.ce-who .ce-section-title { color: #fff; }
.ce-who .ce-section-title em { color: #ef7a0d; }
.ce-who .ce-section__header p { color: rgba(255,255,255,255); }

/* ── CTA Block (shared card structure) ── */
.ce-cta-section { background: #f9f8f4; }
.ce-cta {
    border-radius: 40px;
    padding: clamp(3rem, 6vw, 5rem) clamp(2rem, 6vw, 5rem);
    text-align: center;
    position: relative;
    overflow: hidden;
}
.ce-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(255,255,255,.07) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(239,122,13,.25) 0%, transparent 50%);
    pointer-events: none;
}
.ce-cta > * { position: relative; }
.ce-cta .ce-tag { margin-bottom: 1rem; }
.ce-cta h3 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 900;
    color: #fff;
    margin-bottom: 1rem;
    line-height: 1.2;
}
.ce-cta h3 em { font-style: italic; color: #ef7a0d; }
.ce-cta p { color: rgba(255,255,255,255); font-size: 1.05rem; font-weight: 300; max-width: 560px; margin: 0 auto 2.5rem; line-height: 1.8; }

/* ── Responsive ── */
@media (max-width: 1024px) { .ce-intro__grid { grid-template-columns: 1fr; gap: 2.5rem; } }
@media (max-width: 768px) {
    .ce-hero__title { font-size: clamp(2.4rem, 10vw, 4rem); }
    .ce-intro__img-wrap img { height: 280px; }
    .ce-cta { border-radius: 24px; }
    .ce-who__item { flex-direction: column; gap: .75rem; }
    .ce-who__num { font-size: 1.8rem; }
}
@media (max-width: 480px) { .ce-intro__actions { flex-direction: column; } .ce-btn { justify-content: center; } }


/* ============================================================
   PAGE-SPECIFIC: Equipment Repair
   ============================================================ */

/* Hero */
.page-equipment .ce-hero { background: #1a1208; }
.page-equipment .ce-hero__overlay {
    background: linear-gradient(135deg, #0d4f60 0%, var(--teal) 50%, #1a9dbc 100%);
}

/* Intro image */
.page-equipment .ce-intro__img-wrap { box-shadow: 0 20px 60px rgba(27,67,50,.2); }
.page-equipment .ce-intro__img-badge i { color: var(--brand-green); font-size: 1.2rem; }

/* Why section */
.page-equipment .ce-why { background: #f9f8f4; }
.page-equipment .ce-why__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr)); gap: 1.5rem; }
.page-equipment .ce-why__item {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    background: #fff;
    border-radius: 16px;
    padding: 1.75rem;
    border: 1px solid #e8e6e0;
    transition: box-shadow .3s, transform .3s, border-color .3s;
}
.page-equipment .ce-why__item:hover { box-shadow: 0 12px 36px rgba(27,67,50,.12); transform: translateY(-4px); border-color: rgba(27,67,50,.25); }
.page-equipment .ce-why__icon {
    width: 44px; height: 44px; flex-shrink: 0;
    display: flex; align-items: center; justify-content: center;
    background: linear-gradient(135deg, var(--teal), #187f99);
    border-radius: 12px; color: #fff; font-size: .95rem;
    box-shadow: 0 4px 12px rgba(27,67,50,.25);
}
.page-equipment .ce-why__item strong { display: block; font-size: .95rem; font-weight: 700; color: #187f99; margin-bottom: .35rem; }
.page-equipment .ce-why__item p { font-size: .875rem; color: #000000; line-height: 1.65; margin: 0; }

/* Services grid */
.page-equipment .ce-services { background: #fff; }
.page-equipment .ce-services__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr)); gap: 1.25rem; }
.page-equipment .ce-service-card {
    display: flex; align-items: center; gap: 1rem;
    background: #f9f8f4; border-radius: 16px; padding: 1.5rem;
    border: 1px solid #e8e6e0;
    transition: box-shadow .3s, transform .3s, border-color .3s;
}
.page-equipment .ce-service-card:hover { box-shadow: 0 10px 28px rgba(27,67,50,.1); transform: translateY(-3px); border-color: rgba(27,67,50,.2); }
.page-equipment .ce-service-card__icon {
    width: 40px; height: 40px; flex-shrink: 0;
    display: flex; align-items: center; justify-content: center;
    background: linear-gradient(135deg, var(--teal), #187f99);
    border-radius: 10px; color: #fff; font-size: .85rem;
}
.page-equipment .ce-service-card strong { font-size: .875rem; font-weight: 700; color: #1c1a16; }

/* Who section dark bg */
.page-equipment .ce-who { background: #187f99; }

/* CTA */
.page-equipment .ce-cta {background: linear-gradient(135deg, #0d4f60 0%, var(--teal) 50%, #1a9dbc 100%); }
.page-equipment .ce-btn--white { background: #fff; color: var(--teal); }
.page-equipment .ce-btn--white:hover { background: #fdf8f4; transform: translateY(-3px); box-shadow: 0 12px 32px rgba(0,0,0,.2); }


/* ============================================================
   PAGE-SPECIFIC: Financial Assistance
   ============================================================ */

/* Hero */
.page-financial .ce-hero { background: #0a1f13; }
.page-financial .ce-hero__overlay {
    background: linear-gradient(135deg, #0d4f60 0%, var(--teal) 50%, #1a9dbc 100%);

}

/* Intro image */
.page-financial .ce-intro__img-wrap { box-shadow: 0 20px 60px rgba(27,67,50,.2); }
.page-financial .ce-intro__img-badge i { color: var(--brand-green); font-size: 1.2rem; }

/* How We Help */
.page-financial .ce-how { background: #f9f8f4; }
.page-financial .ce-how__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 340px), 1fr)); gap: 1.5rem; }
.page-financial .ce-how__item {
    display: flex; align-items: flex-start; gap: 1.25rem;
    background: #fff; border-radius: 16px; padding: 1.75rem;
    border: 1px solid #e8e6e0;
    transition: box-shadow .3s, transform .3s, border-color .3s;
}
.page-financial .ce-how__item:hover { box-shadow: 0 12px 36px rgba(27,67,50,.12); transform: translateY(-4px); border-color: rgba(27,67,50,.25); }
.page-financial .ce-how__icon {
    width: 44px; height: 44px; flex-shrink: 0;
    display: flex; align-items: center; justify-content: center;
    background: linear-gradient(135deg, var(--teal), #187f99);
    border-radius: 12px; color: #fff; font-size: .95rem;
    box-shadow: 0 4px 12px rgba(27,67,50,.25);
}
.page-financial .ce-how__item strong { display: block; font-size: .95rem; font-weight: 700; color: #187f99; margin-bottom: .35rem; }
.page-financial .ce-how__item p { font-size: .875rem; color: #8a8578; line-height: 1.65; margin: 0; }

/* Why cards */
.page-financial .ce-why { background: #fff; }
.page-financial .ce-why__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr)); gap: 1.5rem; }
.page-financial .ce-why__card {
    background: #f9f8f4; border-radius: 16px; padding: 1.75rem;
    border: 1px solid #e8e6e0;
    transition: box-shadow .3s, transform .3s, border-color .3s;
}
.page-financial .ce-why__card:hover { box-shadow: 0 12px 36px rgba(27,67,50,.1); transform: translateY(-4px); border-color: rgba(27,67,50,.2); }
.page-financial .ce-why__card h3 { font-family: 'Playfair Display', Georgia, serif; font-size: 1rem; font-weight: 700; color: #187f99; margin-bottom: .5rem; }
.page-financial .ce-why__card p  { font-size: .875rem; color: #8a8578; line-height: 1.65; margin: 0; }
.page-financial .ce-why__card i  { color: var(--brand-green); margin-right: .5rem; }

/* Who section dark bg */
.page-financial .ce-who { background: var(--teal); }

/* CTA */
.page-financial .ce-cta { background: linear-gradient(135deg, #0d4f60 0%, var(--teal) 50%, #1a9dbc 100%);}
.page-financial .ce-btn--white { background: #fff; color: var(--teal); }
.page-financial .ce-btn--white:hover { background: #f0faf4; transform: translateY(-3px); box-shadow: 0 12px 32px rgba(0,0,0,.2); }


/* ============================================================
   PAGE-SPECIFIC: Food Truck Rental
   ============================================================ */

/* Hero */
.page-rental .ce-hero { background: var(--dark-amber); }
.page-rental .ce-hero__overlay {
    background: linear-gradient(135deg, #0d4f60 0%, var(--teal) 50%, #1a9dbc 100%);
}

/* Intro image */
.page-rental .ce-intro__img-wrap { box-shadow: 0 20px 60px rgba(180,90,0,.2); }
.page-rental .ce-intro__img-badge i { color: var(--amber); font-size: 1.2rem; }

/* Why Rent */
.page-rental .ce-why { background: #f9f8f4; }
.page-rental .ce-why__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 340px), 1fr)); gap: 1.5rem; }
.page-rental .ce-why__item {
    display: flex; align-items: flex-start; gap: 1.25rem;
    background: #fff; border-radius: 16px; padding: 1.75rem;
    border: 1px solid #e8e6e0;
    transition: box-shadow .3s, transform .3s, border-color .3s;
}
.page-rental .ce-why__item:hover { box-shadow: 0 12px 36px rgba(180,90,0,.1); transform: translateY(-4px); border-color: rgba(239,122,13,.3); }
.page-rental .ce-why__icon {
    width: 44px; height: 44px; flex-shrink: 0;
    display: flex; align-items: center; justify-content: center;
    background: linear-gradient(135deg, var(--amber), var(--accent));
    border-radius: 12px; color: #fff; font-size: .95rem;
    box-shadow: 0 4px 12px rgba(180,90,0,.25);
}
.page-rental .ce-why__item strong { display: block; font-size: .95rem; font-weight: 700; color: #1c1a16; margin-bottom: .35rem; }
.page-rental .ce-why__item p { font-size: .875rem; color: #8a8578; line-height: 1.65; margin: 0; }

/* Rental Options */
.page-rental .ce-options { background: #fff; }
.page-rental .ce-options__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 340px), 1fr)); gap: 1.5rem; }
.page-rental .ce-option-card {
    border-radius: 24px; padding: 2.25rem;
    border: 1.5px solid #e8e6e0; position: relative; overflow: hidden;
    transition: box-shadow .3s, transform .3s, border-color .3s;
}
.page-rental .ce-option-card:hover { box-shadow: 0 16px 48px rgba(180,90,0,.12); transform: translateY(-5px); border-color: rgba(239,122,13,.4); }
.page-rental .ce-option-card__num { font-family: 'Playfair Display', serif; font-size: 3rem; font-weight: 900; color: #187f99; line-height: 1; margin-bottom: 1rem; }
.page-rental .ce-option-card h3 { font-family: 'Playfair Display', Georgia, serif; font-size: 1.2rem; font-weight: 900; color: #187f99; margin-bottom: .5rem; }
.page-rental .ce-option-card p { font-size: .875rem; color: #8a8578; line-height: 1.7; margin: 0; }
.page-rental .ce-option-card__tag {
    display: inline-block; font-size: .7rem; font-weight: 700; letter-spacing: .15em; text-transform: uppercase;
    color: var(--teal); background: rgba(239,122,13,.1); border-radius: 50px; padding: .25rem .75rem; margin-bottom: .85rem;
}

/* Who section dark bg */
.page-rental .ce-who { background: var(--teal); }

/* CTA */
.page-rental .ce-cta { background: linear-gradient(135deg, #0d4f60 0%, var(--teal) 50%, #1a9dbc 100%); }
.page-rental .ce-btn--white { background: #fff; color: var(--teal); }
.page-rental .ce-btn--white:hover { background: #fffdf7; transform: translateY(-3px); box-shadow: 0 12px 32px rgba(0,0,0,.2); }


/* ================================================================
   ESTILOS CRÍTICOS PARA EL MENÚ MÓVIL (Pega esto en tu style.css)
   ================================================================ */

@media (max-width: 768px) {
    /* 1. Escondemos el menú por defecto */
    .nav-menu {
        display: none !important; /* Lo ocultamos */
        flex-direction: column;
        position: absolute;
        top: 85px; /* Altura exacta de tu navbar */
        left: 0;
        width: 100%;
        background-color: #ffffff;
        padding: 20px 0;
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        z-index: 999;
    }

    /* 2. Cuando JS activa la clase 'active', lo mostramos */
    .nav-menu.active {
        display: flex !important;
    }

    /* 3. Ajustamos los links para que ocupen toda la línea y sean fáciles de tocar */
    .nav-menu li {
        width: 100%;
        text-align: center;
    }

    .nav-link {
        display: block;
        padding: 15px 0;
        width: 100%;
    }

    /* 4. Aseguramos que el botón de las rayitas sea visible */
    .menu-toggle {
        display: flex !important;
        z-index: 1001;
    }
}

/* 5. Animación de las rayitas (Opcional pero recomendado) */
.menu-toggle.active .bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.menu-toggle.active .bar:nth-child(2) {
    opacity: 0;
}
.menu-toggle.active .bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}


/* MOBILE MENU OCULTO */
.nav-menu {
    display: flex;
    gap: 25px;
    list-style: none;
    margin: 0;
    padding: 0;
}

/* CUANDO SE ACTIVA */
.nav-menu.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #ffffff;
    padding: 1rem 0;
    z-index: 999;
}

.main-header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 999999;
    background: white;
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
        flex-direction: column;
        position: fixed;
        top: 90px;
        left: 0;
        width: 100%;
        background: #fff;
        padding: 20px;
        z-index: 999999;
    }

    .nav-menu.active {
        display: flex;
    }
}
/* FORZAR MENÚ */
.nav-menu.active {
    display: flex !important;
    flex-direction: column !important;
    position: fixed !important;
    top: 90px !important;
    left: 0 !important;
    width: 100% !important;
    background: #fff !important;
    z-index: 999999 !important;
    padding: 20px !important;
}

/* BAJAR overlays */
.ab-hero__overlay {
    z-index: 1 !important;
}

.ab-hero {
    position: relative;
    z-index: 1;
}

.custom-alert {
    position: fixed;
    top: 90px;
    right: 20px;
    min-width: 280px;
    max-width: 350px;
    background: #fff;
    border-left: 5px solid var(--alert-color);
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    transform: translateX(120%);
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 9999;
    overflow: hidden;
    font-family: 'Inter', sans-serif;
}

.custom-alert.show {
    transform: translateX(0);
    opacity: 1;
}

.alert-content {
    display: flex;
    align-items: center;
    padding: 15px 16px;
    gap: 10px;
}

.alert-icon {
    font-size: 18px;
    font-weight: bold;
    color: var(--alert-color);
}

.alert-message {
    flex: 1;
    font-size: 14px;
    color: #333;
}

.alert-close {
    cursor: pointer;
    font-size: 16px;
    color: #999;
}

.alert-close:hover {
    color: #000;
}

/* Barra de progreso */
.alert-progress {
    height: 4px;
    background: var(--alert-color);
    animation: progressBar 5s linear forwards;
}

@keyframes progressBar {
    from { width: 100%; }
    to { width: 0%; }
}

.navbar {
    box-shadow: none !important;
}