/* ==========================================
   1. VARIABLES GLOBALES & RESET (Unificado)
   ========================================== */
:root {
    --primary: #429ebd;
    --primary-hover: #337ab7;
    --primary-light: #eef7fa;
    --primary-border: #b3d7e8;
    --accent: #F6B128;
    --accent-hover: #e09e1f;
    --accent-light: #fef8ec;
    --text-main: #0f172a;
    --text-muted: #475569;
    --bg-main: #f8fafc;
    --bg-card: #ffffff;
    --bg-dark: #0f172a;
    --border-color: #e2e8f0;
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    --font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    --radius-lg: 1rem;
    --radius-xl: 1.5rem;
    --radius-full: 9999px;
}

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

body {
    font-family: var(--font-family);
    background-color: #f1f5f9;
    color: var(--text-main);
    line-height: 1.6;
    margin: 0;
    padding: 0; /* Sin padding horizontal para permitir full-width */
    overflow-x: hidden; /* Evita barra de desplazamiento horizontal por el uso de 100vw */
}

/* ==========================================
   2. ESTRUCTURA & CONTENEDORES PRINCIPALES
   ========================================== */
.commissary-wrapper {
    width: 100%;
    background-color: var(--bg-main);
}

.commissary-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3.5rem 1.5rem;
}

.commissary-section {
    background-color: var(--bg-main);
    max-width: 1200px;
    margin: 0 auto;
    padding: 3.5rem 2rem 0 2rem; /* El 0 inferior evita huecos blancos sobre el footer */
    border-radius: var(--radius-xl);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

/* ==========================================
   3. HERO GRID & COMPONENTES REUTILIZABLES
   ========================================== */
.hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    align-items: center;
    margin-bottom: 4rem;
}

@media (min-width: 992px) {
    .hero-grid {
        grid-template-columns: 1.2fr 0.8fr;
        gap: 3.5rem;
    }
}

.hero-text {
    order: 2;
}

@media (min-width: 992px) {
    .hero-text {
        order: 1;
    }
}

.badge-location {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.375rem 0.875rem;
    background-color: var(--primary-light);
    color: var(--primary);
    border: 1px solid var(--primary-border);
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1.25rem;
}

.badge-pulse {
    width: 8px;
    height: 8px;
    background-color: var(--accent);
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 0 0 rgba(246, 177, 40, 0.7);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(246, 177, 40, 0.7); }
    70% { box-shadow: 0 0 0 8px rgba(246, 177, 40, 0); }
    100% { box-shadow: 0 0 0 0 rgba(246, 177, 40, 0); }
}

.hero-title {
    font-size: 2.25rem;
    font-weight: 900;
    line-height: 1.15;
    color: var(--text-main);
    margin-bottom: 1.25rem;
    letter-spacing: -0.02em;
}

@media (min-width: 640px) {
    .hero-title {
        font-size: 3rem;
    }
}

.gradient-text {
    background: linear-gradient(135deg, #429ebd 0%, #2b7a99 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-description {
    font-size: 1.125rem;
    color: var(--text-muted);
    margin-bottom: 1.75rem;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    background-color: var(--accent);
    color: #0f172a;
    font-weight: 700;
    font-size: 0.95rem;
    border-radius: 0.75rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    background-color: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* Hero Image Container */
.hero-image-wrapper {
    order: 1;
    position: relative;
}

@media (min-width: 992px) {
    .hero-image-wrapper {
        order: 2;
    }
}

.hero-image-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--border-color);
    height: 400px;
}

.hero-image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.hero-image-card:hover img {
    transform: scale(1.05);
}

.hero-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.5), transparent);
}

.floating-badge {
    position: absolute;
    bottom: -1.25rem;
    left: -1.25rem;
    background-color: #ffffff;
    padding: 1rem;
    border-radius: 0.875rem;
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--border-color);
    display: none;
    align-items: center;
    gap: 0.75rem;
}

@media (min-width: 640px) {
    .floating-badge {
        display: flex;
    }
}

.floating-badge-icon {
    padding: 0.625rem;
    background-color: var(--accent-light);
    color: var(--accent);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.floating-badge-subtitle {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 500;
}

.floating-badge-title {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--text-main);
}

/* ==========================================
   4. SECCIONES INTERMEDIAS DE LAS VISTAS
   ========================================== */
.section-header-center {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem auto;
}

.section-header-left {
    max-width: 650px;
    margin-bottom: 2.5rem;
}

.section-title {
    font-size: 1.875rem;
    font-weight: 800;
    color: var(--text-main);
    letter-spacing: -0.01em;
}

.section-subtitle {
    color: var(--text-muted);
    margin-top: 0.5rem;
    font-size: 1rem;
}

/* Why Us / Choose Sections */
.why-us-card,
.why-choose-card {
    background-color: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 2.5rem 2rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    margin-bottom: 4rem;
}

.bullets-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .bullets-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .bullets-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.bullet-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 0.75rem;
    border-radius: 0.75rem;
    transition: background-color 0.2s ease;
}

.bullet-item:hover {
    background-color: var(--bg-main);
}

.bullet-icon {
    padding: 0.5rem;
    background-color: var(--primary-light);
    color: var(--primary);
    border-radius: 0.5rem;
    flex-shrink: 0;
    margin-top: 0.125rem;
    display: flex;
}

.bullet-title {
    font-weight: 700;
    color: var(--text-main);
    font-size: 1rem;
}

.bullet-desc {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

.features-grid-adaptive {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .features-grid-adaptive {
        grid-template-columns: repeat(2, 1fr);
    }
}

.feature-box {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background-color: var(--bg-main);
    padding: 1.25rem;
    border-radius: 0.75rem;
    border: 1px solid var(--border-color);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.feature-box:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
    border-color: var(--primary-border);
}

.check-icon-box {
    padding: 0.5rem;
    background-color: var(--primary-light);
    color: var(--primary);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-box-content {
    font-size: 0.95rem;
    color: var(--text-main);
    line-height: 1.5;
}

/* Features Grid */
.features-section {
    margin-bottom: 4rem;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.75rem;
}

@media (min-width: 640px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.feature-card {
    background-color: var(--bg-card);
    padding: 1.75rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-border);
}

.feature-icon-box {
    width: 3rem;
    height: 3rem;
    background-color: var(--primary-light);
    color: var(--primary);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
}

.feature-card-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-main);
    line-height: 1.4;
}

.feature-card-desc {
    color: var(--text-muted);
    font-size: 0.875rem;
    line-height: 1.6;
    margin-top: 0.5rem;
}

/* Events Catered Section */
.events-cater-card {
    background-color: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 3rem 2rem;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    margin-bottom: 4rem;
}

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

@media (min-width: 640px) {
    .events-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .events-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.event-item-card {
    background-color: var(--bg-main);
    border: 1px solid var(--border-color);
    border-radius: 0.75rem;
    padding: 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.875rem;
    transition: all 0.2s ease;
}

.event-item-card:hover {
    border-color: var(--primary-border);
    background-color: #ffffff;
    box-shadow: var(--shadow-sm);
}

.event-icon-box {
    padding: 0.375rem;
    background-color: var(--primary-light);
    color: var(--primary);
    border-radius: 0.375rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.event-item-title {
    font-weight: 700;
    color: var(--text-main);
    font-size: 0.95rem;
}

/* SEO Section */
.seo-section {
    background-color: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 3rem 2rem;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    margin-bottom: 4rem;
}

.seo-container {
    max-width: 850px;
    margin: 0 auto;
    text-align: center;
}

.seo-title {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--text-main);
    margin-bottom: 1rem;
}

.seo-text {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.8;
    text-align: justify;
}

/* Who Benefits Banner */
.who-benefits-banner {
    background-color: var(--bg-dark);
    color: #ffffff;
    border-radius: var(--radius-lg);
    padding: 3rem 2rem;
    margin-bottom: 3.5rem;
    border-bottom: 4px solid var(--accent);
}

.who-benefits-banner h2 {
    text-align: center;
    font-size: 1.75rem;
    font-weight: 800;
    margin-bottom: 2.5rem;
}

.benefits-cards-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
}

@media (min-width: 576px) {
    .benefits-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .benefits-cards-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.benefit-card {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 1.25rem;
    border-radius: 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.benefit-card-title {
    color: var(--accent);
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.375rem;
}

.benefit-card-desc {
    color: #94a3b8;
    font-size: 0.875rem;
}
/* ==========================================
   CTA FORZADO (sin fondo + azul/naranja)
   ========================================== */
.full-width-cta,
.cta-container {
    width: 100vw !important;
    position: relative !important;
    left: 50% !important;
    right: 50% !important;
    margin-left: -50vw !important;
    /* margin-right: -50vw !important; */
    background-color: transparent !important;
    color: inherit !important;
    padding: 4.5rem 1.5rem !important;
    border-top: 1px solid var(--border-color) !important;
    text-align: center !important;
    box-sizing: border-box !important;
}

.full-width-cta .cta-content,
.cta-container .cta-content {
    max-width: 700px !important;
    margin: 0 auto !important;
    text-align: center !important;
}

.full-width-cta .cta-title,
.cta-container .cta-title {
    font-size: 2.25rem !important;
    font-weight: 800 !important;
    color: var(--primary) !important; /* azul */
    margin-bottom: 1rem !important;
    letter-spacing: -0.01em !important;
}

.full-width-cta .cta-desc,
.cta-container .cta-desc {
    color: var(--text-muted) !important;
    font-size: 1.125rem !important;
    margin-bottom: 2rem !important;
    max-width: 700px !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

.full-width-cta .btn-cta-full,
.cta-container .btn-cta-full {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 0.75rem !important;
    padding: 1rem 2.5rem !important;
    background-color: var(--accent) !important; /* naranja */
    color: #0f172a !important;
    font-weight: 800 !important;
    font-size: 1rem !important;
    border-radius: var(--radius-full) !important;
    text-decoration: none !important;
    text-transform: uppercase !important;
    letter-spacing: 0.05em !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 10px 25px -5px rgba(246, 177, 40, 0.35) !important;
    border: none !important;
    cursor: pointer !important;
}

.full-width-cta .btn-cta-full:hover,
.cta-container .btn-cta-full:hover {
    background-color: var(--accent-hover) !important;
    transform: translateY(-3px) !important;
    box-shadow: 0 15px 30px -5px rgba(246, 177, 40, 0.45) !important;
}
.btn-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem 2.25rem;
    background-color: var(--primary);
    color: #ffffff;
    font-weight: 700;
    font-size: 1rem;
    border-radius: var(--radius-full);
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 15px -3px rgba(66, 158, 189, 0.3);
}

.btn-cta:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 15px 20px -3px rgba(66, 158, 189, 0.4);
}

/*EIN*/

/* ==========================================
   1. VARIABLES GLOBALES & RESET
   ========================================== */
:root {
    --primary: #429ebd;
    --primary-hover: #337ab7;
    --primary-light: #eef7fa;
    --primary-border: #b3d7e8;
    --accent: #F6B128;
    --accent-hover: #e09e1f;
    --accent-light: #fef8ec;
    --text-main: #0f172a;
    --text-muted: #475569;
    --bg-main: #f8fafc;
    --bg-card: #ffffff;
    --bg-dark: #0f172a;
    --border-color: #e2e8f0;
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    --font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    --radius-lg: 1rem;
    --radius-xl: 1.5rem;
    --radius-full: 9999px;
}

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

body {
    font-family: var(--font-family);
    background-color: #f1f5f9;
    color: var(--text-main);
    line-height: 1.6;
    margin: 0;
    padding: 0;
    overflow-x: hidden; /* Evita que el 100vw genere scrollbar horizontal */
}

/* ==========================================
   2. ESTRUCTURA Y CONTENEDORES
   ========================================== */
.commissary-wrapper {
    width: 100%;
    background-color: var(--bg-main);
}

.commissary-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3.5rem 1.5rem;
}

/* ==========================================
   3. HERO GRID
   ========================================== */
.hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    align-items: center;
    margin-bottom: 4rem;
}

@media (min-width: 992px) {
    .hero-grid {
        grid-template-columns: 1.2fr 0.8fr;
        gap: 3.5rem;
    }
}

.hero-text {
    order: 2;
}

@media (min-width: 992px) {
    .hero-text {
        order: 1;
    }
}

.badge-location {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.375rem 0.875rem;
    background-color: var(--primary-light);
    color: var(--primary);
    border: 1px solid var(--primary-border);
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1.25rem;
}

.badge-pulse {
    width: 8px;
    height: 8px;
    background-color: var(--accent);
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 0 0 rgba(246, 177, 40, 0.7);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(246, 177, 40, 0.7); }
    70% { box-shadow: 0 0 0 8px rgba(246, 177, 40, 0); }
    100% { box-shadow: 0 0 0 0 rgba(246, 177, 40, 0); }
}

.hero-title {
    font-size: 2.25rem;
    font-weight: 900;
    line-height: 1.15;
    color: var(--text-main);
    margin-bottom: 1.25rem;
    letter-spacing: -0.02em;
}

@media (min-width: 640px) {
    .hero-title {
        font-size: 2.75rem;
    }
}

.gradient-text {
    background: linear-gradient(135deg, #429ebd 0%, #2b7a99 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-description {
    font-size: 1.125rem;
    color: var(--text-muted);
    margin-bottom: 1.75rem;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    background-color: var(--accent);
    color: #0f172a;
    font-weight: 700;
    font-size: 0.95rem;
    border-radius: 0.75rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    background-color: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* Hero Image Container */
.hero-image-wrapper {
    order: 1;
    position: relative;
}

@media (min-width: 992px) {
    .hero-image-wrapper {
        order: 2;
    }
}

.hero-image-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--border-color);
    height: 400px;
}

.hero-image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.hero-image-card:hover img {
    transform: scale(1.05);
}

.hero-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.5), transparent);
}

.floating-badge {
    position: absolute;
    bottom: -1.25rem;
    left: -1.25rem;
    background-color: #ffffff;
    padding: 1rem;
    border-radius: 0.875rem;
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--border-color);
    display: none;
    align-items: center;
    gap: 0.75rem;
}

@media (min-width: 640px) {
    .floating-badge {
        display: flex;
    }
}

.floating-badge-icon {
    padding: 0.625rem;
    background-color: var(--accent-light);
    color: var(--accent);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.floating-badge-subtitle {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 500;
}

.floating-badge-title {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--text-main);
}

/* ==========================================
   4. TWO COLUMN CONTENT CARD
   ========================================== */
.content-card-2col {
    background-color: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 3rem 2rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    margin-bottom: 2rem;
}

.two-column-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
}

@media (min-width: 768px) {
    .two-column-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 3.5rem;
    }
}

.col-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-main);
    margin-bottom: 0.75rem;
    letter-spacing: -0.01em;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--primary-light);
    display: inline-block;
}

.col-intro {
    color: var(--text-muted);
    margin-bottom: 1.25rem;
    font-size: 0.95rem;
}

.bullet-list-custom {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.bullet-item-check {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.check-icon {
    padding: 0.375rem;
    background-color: var(--primary-light);
    color: var(--primary);
    border-radius: 0.5rem;
    display: flex;
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.bullet-text {
    color: var(--text-main);
    font-size: 0.95rem;
    font-weight: 500;
}

.step-list-custom {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.step-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 0.875rem 1rem;
    background-color: var(--bg-main);
    border: 1px solid var(--border-color);
    border-radius: 0.75rem;
    transition: border-color 0.2s ease;
}

.step-item:hover {
    border-color: var(--primary-border);
}

.step-number {
    width: 1.75rem;
    height: 1.75rem;
    background-color: var(--primary-light);
    color: var(--primary);
    font-weight: 800;
    font-size: 0.85rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.step-text {
    color: var(--text-main);
    font-size: 0.95rem;
    font-weight: 500;
    line-height: 1.5;
}

/* ==========================================
   5. FULL-WIDTH CTA / FOOTER
   ========================================== */
.full-width-cta {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    background-color: var(--bg-dark);
    color: #ffffff;
    padding: 4.5rem 1.5rem;
    border-top: 1px solid var(--border-color);
    box-sizing: border-box;
}

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

.cta-title {
    font-size: 2.25rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 1rem;
    letter-spacing: -0.01em;
} */

/* .cta-desc {
    color: #94a3b8;
    font-size: 1.125rem;
    margin-bottom: 2rem;
} */

.btn-cta-full {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem 2.5rem;
    background-color: var(--accent);
    color: #0f172a;
    font-weight: 800;
    font-size: 1rem;
    border-radius: var(--radius-full);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px -5px rgba(246, 177, 40, 0.4);
}

.btn-cta-full:hover {
    background-color: var(--accent-hover);
    transform: translateY(-3px);
    box-shadow: 0 15px 30px -5px rgba(246, 177, 40, 0.5);
}

/*Equipment Repair*/

:root {
    --primary: #429ebd;
    --primary-hover: #337ab7;
    --primary-light: #eef7fa;
    --primary-border: #b3d7e8;
    --accent: #F6B128;
    --accent-hover: #e09e1f;
    --accent-light: #fef8ec;
    --text-main: #0f172a;
    --text-muted: #475569;
    --bg-main: #f8fafc;
    --bg-card: #ffffff;
    --border-color: #e2e8f0;
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    --font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    --radius-lg: 1rem;
    --radius-xl: 1.5rem;
    --radius-full: 9999px;
}

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

html, body {
    width: 100%;
    overflow-x: hidden;
}

body {
    font-family: var(--font-family);
    background-color: #f1f5f9;
    color: var(--text-main);
    line-height: 1.6;
}

/* Wrap Principal */
.commissary-wrapper {
    width: 100%;
    background-color: var(--bg-main);
}

.commissary-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3.5rem 1.5rem;
}

/* Hero Grid */
.hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    align-items: center;
    margin-bottom: 4rem;
}

@media (min-width: 992px) {
    .hero-grid {
        grid-template-columns: 1.2fr 0.8fr;
        gap: 3.5rem;
    }
}

.hero-text {
    order: 2;
}

@media (min-width: 992px) {
    .hero-text {
        order: 1;
    }
}

.badge-location {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.375rem 0.875rem;
    background-color: var(--primary-light);
    color: var(--primary);
    border: 1px solid var(--primary-border);
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1.25rem;
}

.badge-pulse {
    width: 8px;
    height: 8px;
    background-color: var(--accent);
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 0 0 rgba(246, 177, 40, 0.7);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(246, 177, 40, 0.7); }
    70% { box-shadow: 0 0 0 8px rgba(246, 177, 40, 0); }
    100% { box-shadow: 0 0 0 0 rgba(246, 177, 40, 0); }
}

.hero-title {
    font-size: 2.25rem;
    font-weight: 900;
    line-height: 1.15;
    color: var(--text-main);
    margin-bottom: 1.25rem;
    letter-spacing: -0.02em;
}

@media (min-width: 640px) {
    .hero-title {
        font-size: 2.75rem;
    }
}

.gradient-text {
    background: linear-gradient(135deg, #429ebd 0%, #2b7a99 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-description {
    font-size: 1.125rem;
    color: var(--text-muted);
    margin-bottom: 1.75rem;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    background-color: var(--accent);
    color: #0f172a;
    font-weight: 700;
    font-size: 0.95rem;
    border-radius: 0.75rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    background-color: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* Hero Image Container */
.hero-image-wrapper {
    order: 1;
    position: relative;
}

@media (min-width: 992px) {
    .hero-image-wrapper {
        order: 2;
    }
}

.hero-image-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--border-color);
    height: 400px;
}

.hero-image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.hero-image-card:hover img {
    transform: scale(1.05);
}

.hero-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.5), transparent);
}

.floating-badge {
    position: absolute;
    bottom: -1.25rem;
    left: -1.25rem;
    background-color: #ffffff;
    padding: 1rem;
    border-radius: 0.875rem;
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--border-color);
    display: none;
    align-items: center;
    gap: 0.75rem;
}

@media (min-width: 640px) {
    .floating-badge {
        display: flex;
    }
}

.floating-badge-icon {
    padding: 0.625rem;
    background-color: var(--accent-light);
    color: var(--accent);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.floating-badge-subtitle {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 500;
}

.floating-badge-title {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--text-main);
}

/* Section Layouts */
.section-header-center {
    text-align: center;
    max-width: 650px;
    margin: 0 auto 3rem auto;
}

.section-title {
    font-size: 1.875rem;
    font-weight: 800;
    color: var(--text-main);
    letter-spacing: -0.01em;
}

.section-subtitle {
    color: var(--text-muted);
    margin-top: 0.5rem;
    font-size: 1rem;
}

/* Why Choose Us Grid */
.why-choose-card {
    background-color: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 3rem 2rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    margin-bottom: 4rem;
}

.features-grid-2x2 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .features-grid-2x2 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.feature-box {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background-color: var(--bg-main);
    padding: 1.25rem;
    border-radius: 0.75rem;
    border: 1px solid var(--border-color);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.feature-box:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
    border-color: var(--primary-border);
}

.check-icon-box {
    padding: 0.5rem;
    background-color: var(--primary-light);
    color: var(--primary);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-box-text {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-main);
    line-height: 1.4;
}

/* Services We Provide Grid */
.services-card {
    background-color: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 3rem 2rem;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    margin-bottom: 4rem;
}

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

@media (min-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.service-item-card {
    background-color: var(--bg-main);
    border: 1px solid var(--border-color);
    border-radius: 0.75rem;
    padding: 1.25rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.2s ease;
}

.service-item-card:hover {
    border-color: var(--primary-border);
    background-color: #ffffff;
    box-shadow: var(--shadow-sm);
}

@media (min-width: 768px) {
    .service-item-full {
        grid-column: span 2;
    }
}

.service-icon-dot {
    width: 10px;
    height: 10px;
    background-color: var(--primary);
    border-radius: 50%;
    flex-shrink: 0;
}

.service-item-title {
    font-weight: 700;
    color: var(--text-main);
    font-size: 1rem;
}

/* SEO Text Section */
.seo-section {
    background-color: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 3rem 2rem;
    border: 1px solid var(--border-color);
    margin-bottom: 4rem;
    box-shadow: var(--shadow-sm);
}

.seo-title {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--text-main);
    text-align: center;
    margin-bottom: 1.25rem;
    letter-spacing: -0.01em;
}

.seo-description {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.75;
    text-align: justify;
    max-width: 900px;
    margin: 0 auto;
}

/* FULL-WIDTH CTA / FOOTER BANNER */
.full-width-cta {
    width: 100%;
    background-color: #0f172a;
    color: #ffffff;
    padding: 4.5rem 1.5rem;
    border-top: 1px solid var(--border-color);
}

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

.cta-title {
    font-size: 2.25rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 1rem;
    letter-spacing: -0.01em;
}

.cta-desc {
    color: #94a3b8;
    font-size: 1.125rem;
    margin-bottom: 2rem;
} */

.btn-cta-full {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem 2.5rem;
    background-color: var(--accent);
    color: #0f172a;
    font-weight: 800;
    font-size: 1rem;
    border-radius: var(--radius-full);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px -5px rgba(246, 177, 40, 0.4);
}

.btn-cta-full:hover {
    background-color: var(--accent-hover);
    transform: translateY(-3px);
    box-shadow: 0 15px 30px -5px rgba(246, 177, 40, 0.5);
}

/*Financial*/
:root {
    --primary: #429ebd;
    --primary-hover: #337ab7;
    --primary-light: #eef7fa;
    --primary-border: #b3d7e8;
    --accent: #F6B128;
    --accent-hover: #e09e1f;
    --accent-light: #fef8ec;
    --text-main: #0f172a;
    --text-muted: #475569;
    --bg-main: #f8fafc;
    --bg-card: #ffffff;
    --border-color: #e2e8f0;
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    --font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    --radius-lg: 1rem;
    --radius-xl: 1.5rem;
    --radius-full: 9999px;
}

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

body {
    font-family: var(--font-family);
    background-color: #f1f5f9;
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Wrap Principal */
.commissary-wrapper {
    width: 100%;
    background-color: var(--bg-main);
}

.commissary-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3.5rem 1.5rem;
}

/* Hero Grid */
.hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    align-items: center;
    margin-bottom: 4rem;
}

@media (min-width: 992px) {
    .hero-grid {
        grid-template-columns: 1.2fr 0.8fr;
        gap: 3.5rem;
    }
}

.hero-text {
    order: 2;
}

@media (min-width: 992px) {
    .hero-text {
        order: 1;
    }
}

.badge-location {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.375rem 0.875rem;
    background-color: var(--primary-light);
    color: var(--primary);
    border: 1px solid var(--primary-border);
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1.25rem;
}

.badge-pulse {
    width: 8px;
    height: 8px;
    background-color: var(--accent);
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 0 0 rgba(246, 177, 40, 0.7);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(246, 177, 40, 0.7); }
    70% { box-shadow: 0 0 0 8px rgba(246, 177, 40, 0); }
    100% { box-shadow: 0 0 0 0 rgba(246, 177, 40, 0); }
}

.hero-title {
    font-size: 2.25rem;
    font-weight: 900;
    line-height: 1.15;
    color: var(--text-main);
    margin-bottom: 1.25rem;
    letter-spacing: -0.02em;
}

@media (min-width: 640px) {
    .hero-title {
        font-size: 2.75rem;
    }
}

.gradient-text {
    background: linear-gradient(135deg, #429ebd 0%, #2b7a99 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-description {
    font-size: 1.125rem;
    color: var(--text-muted);
    margin-bottom: 1.75rem;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    background-color: var(--accent);
    color: #0f172a;
    font-weight: 700;
    font-size: 0.95rem;
    border-radius: 0.75rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    background-color: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* Hero Image Container */
.hero-image-wrapper {
    order: 1;
    position: relative;
}

@media (min-width: 992px) {
    .hero-image-wrapper {
        order: 2;
    }
}

.hero-image-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--border-color);
    height: 400px;
}

.hero-image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.hero-image-card:hover img {
    transform: scale(1.05);
}

.hero-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.5), transparent);
}

.floating-badge {
    position: absolute;
    bottom: -1.25rem;
    left: -1.25rem;
    background-color: #ffffff;
    padding: 1rem;
    border-radius: 0.875rem;
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--border-color);
    display: none;
    align-items: center;
    gap: 0.75rem;
}

@media (min-width: 640px) {
    .floating-badge {
        display: flex;
    }
}

.floating-badge-icon {
    padding: 0.625rem;
    background-color: var(--accent-light);
    color: var(--accent);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.floating-badge-subtitle {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 500;
}

.floating-badge-title {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--text-main);
}

/* Section Layouts */
.section-header-center {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem auto;
}

.section-title {
    font-size: 1.875rem;
    font-weight: 800;
    color: var(--text-main);
    letter-spacing: -0.01em;
}

.section-subtitle {
    color: var(--text-muted);
    margin-top: 0.5rem;
    font-size: 1rem;
}

/* How We Help Section */
.how-we-help-card {
    background-color: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 3rem 2rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    margin-bottom: 4rem;
}

.features-grid-adaptive {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .features-grid-adaptive {
        grid-template-columns: repeat(2, 1fr);
    }
}

.feature-box {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background-color: var(--bg-main);
    padding: 1.25rem;
    border-radius: 0.75rem;
    border: 1px solid var(--border-color);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.feature-box:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
    border-color: var(--primary-border);
}

.check-icon-box {
    padding: 0.5rem;
    background-color: var(--primary-light);
    color: var(--primary);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-box-content {
    font-size: 0.95rem;
    color: var(--text-main);
    line-height: 1.5;
}

.feature-box-content strong {
    color: var(--text-main);
    font-weight: 700;
}

/* Why Choose Us Grid */
.why-choose-card {
    background-color: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 3rem 2rem;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    margin-bottom: 4rem;
}

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

@media (min-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.service-item-card {
    background-color: var(--bg-main);
    border: 1px solid var(--border-color);
    border-radius: 0.75rem;
    padding: 1.25rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.2s ease;
}

.service-item-card:hover {
    border-color: var(--primary-border);
    background-color: #ffffff;
    box-shadow: var(--shadow-sm);
}

.service-icon-dot {
    width: 10px;
    height: 10px;
    background-color: var(--primary);
    border-radius: 50%;
    flex-shrink: 0;
}

.service-item-title {
    font-weight: 700;
    color: var(--text-main);
    font-size: 1rem;
}

/* FULL-WIDTH CTA / FOOTER BANNER */
.full-width-cta {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    background-color: #0f172a;
    color: #ffffff;
    padding: 4.5rem 1.5rem;
    border-top: 1px solid var(--border-color);
}

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

.cta-title {
    font-size: 2.25rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 1rem;
    letter-spacing: -0.01em;
}

.cta-desc {
    color: #94a3b8;
    font-size: 1.125rem;
    margin-bottom: 2rem;
} */

.btn-cta-full {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem 2.5rem;
    background-color: var(--accent);
    color: #0f172a;
    font-weight: 800;
    font-size: 1rem;
    border-radius: var(--radius-full);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px -5px rgba(246, 177, 40, 0.4);
}

.btn-cta-full:hover {
    background-color: var(--accent-hover);
    transform: translateY(-3px);
    box-shadow: 0 15px 30px -5px rgba(246, 177, 40, 0.5);
}

/*Food Truck*/
:root {
    --primary: #429ebd;
    --primary-hover: #337ab7;
    --primary-light: #eef7fa;
    --primary-border: #b3d7e8;
    --accent: #F6B128;
    --accent-hover: #e09e1f;
    --accent-light: #fef8ec;
    --text-main: #0f172a;
    --text-muted: #475569;
    --bg-main: #f8fafc;
    --bg-card: #ffffff;
    --border-color: #e2e8f0;
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    --font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    --radius-lg: 1rem;
    --radius-xl: 1.5rem;
    --radius-full: 9999px;
}

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

body {
    font-family: var(--font-family);
    background-color: #f1f5f9;
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Layout General */
.commissary-wrapper {
    width: 100%;
    background-color: var(--bg-main);
}

.commissary-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3.5rem 1.5rem 0 1.5rem !important; /* Eliminado relleno inferior */
}

/* Hero Section */
.hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    align-items: center;
    margin-bottom: 3rem;
}

.hero-text {
    order: 2;
}

.badge-location {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.375rem 0.875rem;
    background-color: var(--primary-light);
    color: var(--primary);
    border: 1px solid var(--primary-border);
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1.25rem;
}

.badge-pulse {
    width: 8px;
    height: 8px;
    background-color: var(--accent);
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 0 0 rgba(246, 177, 40, 0.7);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(246, 177, 40, 0.7); }
    70% { box-shadow: 0 0 0 8px rgba(246, 177, 40, 0); }
    100% { box-shadow: 0 0 0 0 rgba(246, 177, 40, 0); }
}

.hero-title {
    font-size: 2.25rem;
    font-weight: 900;
    line-height: 1.15;
    color: var(--text-main);
    margin-bottom: 1.25rem;
    letter-spacing: -0.02em;
}

.gradient-text {
    background: linear-gradient(135deg, #429ebd 0%, #2b7a99 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-description {
    font-size: 1.125rem;
    color: var(--text-muted);
    margin-bottom: 1.75rem;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    background-color: var(--accent);
    color: #0f172a;
    font-weight: 700;
    font-size: 0.95rem;
    border-radius: 0.75rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    background-color: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.hero-image-wrapper {
    order: 1;
    position: relative;
}

.hero-image-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--border-color);
    height: 400px;
}

.hero-image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.hero-image-card:hover img {
    transform: scale(1.05);
}

.hero-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.5), transparent);
}

.floating-badge {
    position: absolute;
    bottom: -1.25rem;
    left: -1.25rem;
    background-color: #ffffff;
    padding: 1rem;
    border-radius: 0.875rem;
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--border-color);
    display: none;
    align-items: center;
    gap: 0.75rem;
}

.floating-badge-icon {
    padding: 0.625rem;
    background-color: var(--accent-light);
    color: var(--accent);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.floating-badge-subtitle {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 500;
}

.floating-badge-title {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--text-main);
}

/* Modulos Comunes */
.section-header-center {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 2.5rem auto;
}

.section-title {
    font-size: 1.875rem;
    font-weight: 800;
    color: var(--text-main);
    letter-spacing: -0.01em;
}

.section-subtitle {
    color: var(--text-muted);
    margin-top: 0.5rem;
    font-size: 1rem;
}

/* Why Rent Section */
.why-rent-card {
    background-color: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 2.5rem 2rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    margin-bottom: 3rem;
}

.features-grid-adaptive {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.feature-box {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background-color: var(--bg-main);
    padding: 1.25rem;
    border-radius: 0.75rem;
    border: 1px solid var(--border-color);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.feature-box:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
    border-color: var(--primary-border);
}

.check-icon-box {
    padding: 0.5rem;
    background-color: var(--primary-light);
    color: var(--primary);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-box-content {
    font-size: 0.95rem;
    color: var(--text-main);
    line-height: 1.5;
}

.feature-box-content strong {
    color: var(--text-main);
    font-weight: 700;
}

/* Options Section */
.options-card {
    background-color: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 2.5rem 2rem;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    margin-bottom: 3rem;
}

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

.option-item-card {
    background-color: var(--bg-main);
    border: 1px solid var(--border-color);
    border-radius: 0.75rem;
    padding: 1.5rem;
    transition: all 0.2s ease;
}

.option-item-card:hover {
    border-color: var(--primary-border);
    background-color: #ffffff;
    box-shadow: var(--shadow-sm);
    transform: translateY(-2px);
}

.option-item-title {
    font-weight: 700;
    color: var(--text-main);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.option-item-desc {
    font-size: 0.875rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* SEO Section - Ajustes agresivos para quitar espacio inferior */
.seo-container {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 2rem;
    margin-bottom: 0 !important;
}

.seo-title {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--text-main);
    text-align: center;
    margin-bottom: 0.75rem;
}

.seo-text {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
    text-align: justify;
    margin-bottom: 0 !important;
}

/* Full Width Footer CTA - Margen negativo forzado para subida drástica */
.full-width-cta {
    width: 100%;
    background-color: #0f172a;
    color: #ffffff;
    padding: 2.25rem 1.5rem !important;
    margin-top: -2.5rem !important; /* Sube la sección forzadamente */
    position: relative;
    z-index: 5;
}

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

.cta-title {
    font-size: 2rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 0.5rem;
    letter-spacing: -0.01em;
}

.cta-desc {
    color: #94a3b8;
    font-size: 1rem;
    margin-bottom: 1.25rem;
}

.btn-cta-full {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 0.875rem 2.25rem;
    background-color: var(--accent);
    color: #0f172a;
    font-weight: 800;
    font-size: 0.95rem;
    border-radius: var(--radius-full);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px -5px rgba(246, 177, 40, 0.4);
}

.btn-cta-full:hover {
    background-color: var(--accent-hover);
    transform: translateY(-3px);
    box-shadow: 0 15px 30px -5px rgba(246, 177, 40, 0.5);
}

/* Media Queries */
@media (min-width: 640px) {
    .hero-title {
        font-size: 2.75rem;
    }
    .floating-badge {
        display: flex;
    }
    .features-grid-adaptive {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 768px) {
    .options-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 992px) {
    .hero-grid {
        grid-template-columns: 1.2fr 0.8fr;
        gap: 3.5rem;
    }
    .hero-text {
        order: 1;
    }
    .hero-image-wrapper {
        order: 2;
    }
}

/*haccp Plan*/

:root {
    --primary: #429ebd;
    --primary-hover: #337ab7;
    --primary-light: #eef7fa;
    --primary-border: #b3d7e8;
    --accent: #F6B128;
    --accent-hover: #e09e1f;
    --accent-light: #fef8ec;
    --text-main: #0f172a;
    --text-muted: #475569;
    --bg-main: #f8fafc;
    --bg-card: #ffffff;
    --border-color: #e2e8f0;
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    --font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    --radius-lg: 1rem;
    --radius-xl: 1.5rem;
    --radius-full: 9999px;
}

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

body {
    font-family: var(--font-family);
    background-color: #f1f5f9;
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Wrap Principal */
.commissary-wrapper {
    width: 100%;
    background-color: var(--bg-main);
}

.commissary-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3.5rem 1.5rem;
}

/* Hero Grid */
.hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    align-items: center;
    margin-bottom: 4rem;
}

@media (min-width: 992px) {
    .hero-grid {
        grid-template-columns: 1.2fr 0.8fr;
        gap: 3.5rem;
    }
}

.hero-text {
    order: 2;
}

@media (min-width: 992px) {
    .hero-text {
        order: 1;
    }
}

.badge-location {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.375rem 0.875rem;
    background-color: var(--primary-light);
    color: var(--primary);
    border: 1px solid var(--primary-border);
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1.25rem;
}

.badge-pulse {
    width: 8px;
    height: 8px;
    background-color: var(--accent);
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 0 0 rgba(246, 177, 40, 0.7);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(246, 177, 40, 0.7); }
    70% { box-shadow: 0 0 0 8px rgba(246, 177, 40, 0); }
    100% { box-shadow: 0 0 0 0 rgba(246, 177, 40, 0); }
}

.hero-title {
    font-size: 2.25rem;
    font-weight: 900;
    line-height: 1.15;
    color: var(--text-main);
    margin-bottom: 1.25rem;
    letter-spacing: -0.02em;
}

@media (min-width: 640px) {
    .hero-title {
        font-size: 3rem;
    }
}

.gradient-text {
    background: linear-gradient(135deg, #429ebd 0%, #2b7a99 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-description {
    font-size: 1.125rem;
    color: var(--text-muted);
    margin-bottom: 1.75rem;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    background-color: var(--accent);
    color: #0f172a;
    font-weight: 700;
    font-size: 0.95rem;
    border-radius: 0.75rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    background-color: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* Hero Image Container */
.hero-image-wrapper {
    order: 1;
    position: relative;
}

@media (min-width: 992px) {
    .hero-image-wrapper {
        order: 2;
    }
}

.hero-image-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--border-color);
    height: 400px;
}

.hero-image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.hero-image-card:hover img {
    transform: scale(1.05);
}

.hero-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.5), transparent);
}

.floating-badge {
    position: absolute;
    bottom: -1.25rem;
    left: -1.25rem;
    background-color: #ffffff;
    padding: 1rem;
    border-radius: 0.875rem;
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--border-color);
    display: none;
    align-items: center;
    gap: 0.75rem;
}

@media (min-width: 640px) {
    .floating-badge {
        display: flex;
    }
}

.floating-badge-icon {
    padding: 0.625rem;
    background-color: var(--accent-light);
    color: var(--accent);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.floating-badge-subtitle {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 500;
}

.floating-badge-title {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--text-main);
}

/* Why Choose Us Card */
.why-us-card {
    background-color: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 2.5rem 2rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    margin-bottom: 4rem;
}

.section-header-left {
    max-width: 650px;
    margin-bottom: 2.5rem;
}

.section-title {
    font-size: 1.875rem;
    font-weight: 800;
    color: var(--text-main);
    letter-spacing: -0.01em;
}

.section-subtitle {
    color: var(--text-muted);
    margin-top: 0.5rem;
    font-size: 1rem;
}

.bullets-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .bullets-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.bullet-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 0.75rem;
    border-radius: 0.75rem;
    transition: background-color 0.2s ease;
}

.bullet-item:hover {
    background-color: var(--bg-main);
}

.bullet-icon {
    padding: 0.5rem;
    background-color: var(--primary-light);
    color: var(--primary);
    border-radius: 0.5rem;
    flex-shrink: 0;
    margin-top: 0.125rem;
    display: flex;
}

.bullet-desc-full {
    color: var(--text-main);
    font-size: 0.95rem;
    font-weight: 500;
    line-height: 1.5;
}

/* Features Section */
.features-section {
    margin-bottom: 4rem;
}

.section-header-center {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 3rem auto;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.75rem;
}

@media (min-width: 640px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.feature-card {
    background-color: var(--bg-card);
    padding: 1.75rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-border);
}

.feature-card.full-width {
    grid-column: 1 / -1;
    background-color: var(--primary-light);
    border-color: var(--primary-border);
}

.feature-icon-box {
    width: 3rem;
    height: 3rem;
    background-color: var(--primary-light);
    color: var(--primary);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
}

.feature-card.full-width .feature-icon-box {
    background-color: #ffffff;
}

.feature-card-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 0.5rem;
}

.feature-card-desc {
    color: var(--text-muted);
    font-size: 0.875rem;
    line-height: 1.6;
}

/* SEO Content Section */
.seo-section {
    background-color: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 3rem 2rem;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    margin-bottom: 4rem;
}

.seo-container {
    max-width: 850px;
    margin: 0 auto;
    text-align: center;
}

.seo-title {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--text-main);
    margin-bottom: 1rem;
}

.seo-text {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.8;
    text-align: justify;
}

/* FULL-WIDTH CTA / FOOTER BANNER */
.full-width-cta {
    width: 100%;
    background-color: #0f172a;
    color: #ffffff;
    padding: 4.5rem 1.5rem;
    border-top: 1px solid var(--border-color);
}

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

.cta-title {
    font-size: 2.25rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 1rem;
    letter-spacing: -0.01em;
}

.cta-desc {
    color: #94a3b8;
    font-size: 1.125rem;
    margin-bottom: 2rem;
} */

.btn-cta-full {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem 2.5rem;
    background-color: var(--accent);
    color: #0f172a;
    font-weight: 800;
    font-size: 1rem;
    border-radius: var(--radius-full);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px -5px rgba(246, 177, 40, 0.4);
}

.btn-cta-full:hover {
    background-color: var(--accent-hover);
    transform: translateY(-3px);
    box-shadow: 0 15px 30px -5px rgba(246, 177, 40, 0.5);
}

/*LLC*/

:root {
    --primary: #429ebd;
    --primary-hover: #337ab7;
    --primary-light: #eef7fa;
    --primary-border: #b3d7e8;
    --accent: #F6B128;
    --accent-hover: #e09e1f;
    --accent-light: #fef8ec;
    --text-main: #0f172a;
    --text-muted: #475569;
    --bg-main: #f8fafc;
    --bg-card: #ffffff;
    --border-color: #e2e8f0;
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    --font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    --radius-lg: 1rem;
    --radius-xl: 1.5rem;
    --radius-full: 9999px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    background-color: #f1f5f9;
    color: var(--text-main);
    line-height: 1.6;
}

/* Container Principal */
.commissary-wrapper {
    width: 100%;
    background-color: var(--bg-main);
}

.commissary-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3.5rem 1.5rem;
}

/* Hero Section */
.hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    align-items: center;
    margin-bottom: 4rem;
}

@media (min-width: 992px) {
    .hero-grid {
        grid-template-columns: 1.2fr 0.8fr;
        gap: 3.5rem;
    }
}

.hero-text {
    order: 2;
}

@media (min-width: 992px) {
    .hero-text {
        order: 1;
    }
}

.badge-location {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.375rem 0.875rem;
    background-color: var(--primary-light);
    color: var(--primary);
    border: 1px solid var(--primary-border);
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1.25rem;
}

.badge-pulse {
    width: 8px;
    height: 8px;
    background-color: var(--accent);
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 0 0 rgba(246, 177, 40, 0.7);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(246, 177, 40, 0.7); }
    70% { box-shadow: 0 0 0 8px rgba(246, 177, 40, 0); }
    100% { box-shadow: 0 0 0 0 rgba(246, 177, 40, 0); }
}

.hero-title {
    font-size: 2.25rem;
    font-weight: 900;
    line-height: 1.15;
    color: var(--text-main);
    margin-bottom: 1.25rem;
    letter-spacing: -0.02em;
}

@media (min-width: 640px) {
    .hero-title {
        font-size: 2.75rem;
    }
}

.gradient-text {
    background: linear-gradient(135deg, #429ebd 0%, #2b7a99 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-description {
    font-size: 1.125rem;
    color: var(--text-muted);
    margin-bottom: 1.75rem;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    background-color: var(--accent);
    color: #0f172a;
    font-weight: 700;
    font-size: 0.95rem;
    border-radius: 0.75rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    background-color: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* Hero Image Container */
.hero-image-wrapper {
    order: 1;
    position: relative;
}

@media (min-width: 992px) {
    .hero-image-wrapper {
        order: 2;
    }
}

.hero-image-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--border-color);
    height: 400px;
}

.hero-image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.hero-image-card:hover img {
    transform: scale(1.05);
}

.hero-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.5), transparent);
}

.floating-badge {
    position: absolute;
    bottom: -1.25rem;
    left: -1.25rem;
    background-color: #ffffff;
    padding: 1rem;
    border-radius: 0.875rem;
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--border-color);
    display: none;
    align-items: center;
    gap: 0.75rem;
}

@media (min-width: 640px) {
    .floating-badge {
        display: flex;
    }
}

.floating-badge-icon {
    padding: 0.625rem;
    background-color: var(--accent-light);
    color: var(--accent);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.floating-badge-subtitle {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 500;
}

.floating-badge-title {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--text-main);
}

/* Headers comunes */
.section-header-center {
    text-align: center;
    max-width: 650px;
    margin: 0 auto 3rem auto;
}

.section-title {
    font-size: 1.875rem;
    font-weight: 800;
    color: var(--text-main);
    letter-spacing: -0.01em;
}

.section-subtitle {
    color: var(--text-muted);
    margin-top: 0.5rem;
    font-size: 1rem;
}

/* Why Business Structure Matters */
.why-us-card {
    background-color: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 2.5rem 2rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    margin-bottom: 4rem;
}

.grid-2x2 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .grid-2x2 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.matter-item {
    background-color: var(--bg-main);
    border: 1px solid var(--border-color);
    border-radius: 0.75rem;
    padding: 1.5rem;
    text-align: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.matter-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
    border-color: var(--primary-border);
}

.matter-item-title {
    font-weight: 700;
    color: var(--text-main);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.matter-item-desc {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Formation Services */
.features-section {
    margin-bottom: 4rem;
}

.features-grid-3 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.75rem;
}

@media (min-width: 768px) {
    .features-grid-3 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.feature-card {
    background-color: var(--bg-card);
    padding: 2rem 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-border);
}

.feature-icon-box {
    width: 3.5rem;
    height: 3.5rem;
    background-color: var(--primary-light);
    color: var(--primary);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem auto;
}

.feature-card-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 0.75rem;
}

.feature-card-desc {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* How We Help Section (CORREGIDO) */
.how-we-help-card {
    background-color: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 3rem 2rem;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    margin-bottom: 4rem;
}

.bullets-list {
    max-width: 700px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.bullet-item-row {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.25rem;
    border-radius: 0.75rem;
    background-color: var(--bg-main);
    border: 1px solid var(--border-color);
    transition: border-color 0.2s ease, transform 0.2s ease;
}

.bullet-item-row:hover {
    border-color: var(--primary-border);
    transform: translateX(4px);
}

.bullet-icon-small {
    padding: 0.5rem;
    background-color: var(--primary-light);
    color: var(--primary);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.bullet-text-row {
    font-weight: 600;
    color: var(--text-main);
    font-size: 0.95rem;
    line-height: 1.4;
}

/* CTA / Footer */
.full-width-cta {
    width: 100%;
    background-color: #0f172a;
    color: #ffffff;
    padding: 4.5rem 1.5rem;
    border-top: 1px solid var(--border-color);
}

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

.cta-title {
    font-size: 2.25rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 1rem;
    letter-spacing: -0.01em;
}

.cta-desc {
    color: #94a3b8;
    font-size: 1.125rem;
    margin-bottom: 2rem;
} */

.btn-cta-full {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem 2.5rem;
    background-color: var(--accent);
    color: #0f172a;
    font-weight: 800;
    font-size: 1rem;
    border-radius: var(--radius-full);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px -5px rgba(246, 177, 40, 0.4);
}

.btn-cta-full:hover {
    background-color: var(--accent-hover);
    transform: translateY(-3px);
    box-shadow: 0 15px 30px -5px rgba(246, 177, 40, 0.5);
}

/*Sales Tax*/

:root {
    --primary: #429ebd;
    --primary-hover: #337ab7;
    --primary-light: #eef7fa;
    --primary-border: #b3d7e8;
    --accent: #F6B128;
    --accent-hover: #e09e1f;
    --accent-light: #fef8ec;
    --text-main: #0f172a;
    --text-muted: #475569;
    --bg-main: #f8fafc;
    --bg-card: #ffffff;
    --border-color: #e2e8f0;
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    --font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    --radius-lg: 1rem;
    --radius-xl: 1.5rem;
    --radius-full: 9999px;
}

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

html, body {
    width: 100%;
    overflow-x: hidden; /* Evita desbordamientos accidentales */
}

body {
    font-family: var(--font-family);
    background-color: var(--bg-main);
    color: var(--text-main);
    line-height: 1.6;
}

/* Wrap de la sección principal */
.commissary-wrapper {
    width: 100%;
}

.commissary-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3.5rem 1.5rem;
}

/* Hero Grid */
.hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    align-items: center;
    margin-bottom: 4rem;
}

@media (min-width: 992px) {
    .hero-grid {
        grid-template-columns: 1.2fr 0.8fr;
        gap: 3.5rem;
    }
}

.hero-text {
    order: 2;
}

@media (min-width: 992px) {
    .hero-text {
        order: 1;
    }
}

.badge-location {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.375rem 0.875rem;
    background-color: var(--primary-light);
    color: var(--primary);
    border: 1px solid var(--primary-border);
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1.25rem;
}

.badge-pulse {
    width: 8px;
    height: 8px;
    background-color: var(--accent);
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 0 0 rgba(246, 177, 40, 0.7);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(246, 177, 40, 0.7); }
    70% { box-shadow: 0 0 0 8px rgba(246, 177, 40, 0); }
    100% { box-shadow: 0 0 0 0 rgba(246, 177, 40, 0); }
}

.hero-title {
    font-size: 2.25rem;
    font-weight: 900;
    line-height: 1.15;
    color: var(--text-main);
    margin-bottom: 1.25rem;
    letter-spacing: -0.02em;
}

@media (min-width: 640px) {
    .hero-title {
        font-size: 3rem;
    }
}

.gradient-text {
    background: linear-gradient(135deg, #429ebd 0%, #2b7a99 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-description {
    font-size: 1.125rem;
    color: var(--text-muted);
    margin-bottom: 1.75rem;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    background-color: var(--accent);
    color: #0f172a;
    font-weight: 700;
    font-size: 0.95rem;
    border-radius: 0.75rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    background-color: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* Hero Image Container */
.hero-image-wrapper {
    order: 1;
    position: relative;
}

@media (min-width: 992px) {
    .hero-image-wrapper {
        order: 2;
    }
}

.hero-image-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--border-color);
    height: 400px;
}

.hero-image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.hero-image-card:hover img {
    transform: scale(1.05);
}

.hero-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.5), transparent);
}

.floating-badge {
    position: absolute;
    bottom: -1.25rem;
    left: -1.25rem;
    background-color: #ffffff;
    padding: 1rem;
    border-radius: 0.875rem;
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--border-color);
    display: none;
    align-items: center;
    gap: 0.75rem;
}

@media (min-width: 640px) {
    .floating-badge {
        display: flex;
    }
}

.floating-badge-icon {
    padding: 0.625rem;
    background-color: var(--accent-light);
    color: var(--accent);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.floating-badge-subtitle {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 500;
}

.floating-badge-title {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--text-main);
}

/* Why Choose Us Card */
.why-us-card {
    background-color: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 2.5rem 2rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    margin-bottom: 4rem;
}

.section-header-left {
    max-width: 650px;
    margin-bottom: 2.5rem;
}

.section-title {
    font-size: 1.875rem;
    font-weight: 800;
    color: var(--text-main);
    letter-spacing: -0.01em;
}

.section-subtitle {
    color: var(--text-muted);
    margin-top: 0.5rem;
    font-size: 1rem;
}

.bullets-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .bullets-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .bullets-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.bullet-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 0.75rem;
    border-radius: 0.75rem;
    transition: background-color 0.2s ease;
}

.bullet-item:hover {
    background-color: var(--bg-main);
}

.bullet-icon {
    padding: 0.5rem;
    background-color: var(--primary-light);
    color: var(--primary);
    border-radius: 0.5rem;
    flex-shrink: 0;
    margin-top: 0.125rem;
    display: flex;
}

.bullet-title {
    font-weight: 700;
    color: var(--text-main);
    font-size: 1rem;
}

.bullet-desc {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

/* Features Section */
.features-section {
    margin-bottom: 2rem;
}

.section-header-center {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 3rem auto;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.75rem;
}

@media (min-width: 640px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.feature-card {
    background-color: var(--bg-card);
    padding: 1.75rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-border);
}

.feature-card.full-width {
    grid-column: 1 / -1;
    background-color: var(--primary-light);
    border-color: var(--primary-border);
}

.feature-icon-box {
    width: 3rem;
    height: 3rem;
    background-color: var(--primary-light);
    color: var(--primary);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
}

.feature-card.full-width .feature-icon-box {
    background-color: #ffffff;
}

.feature-card-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 0.5rem;
}

.feature-card-desc {
    color: var(--text-muted);
    font-size: 0.875rem;
    line-height: 1.6;
}

/* FOOTER CORREGIDO (Sin Hacks de 100vw) */
.full-width-cta {
    width: 100%;
    background-color: #0f172a;
    color: #ffffff;
    padding: 2rem 1.5rem; /* Reducido de 4.5rem a 2rem */
    border-top: none;
}
/* .cta-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.cta-title {
    font-size: 2.25rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 1rem;
    letter-spacing: -0.01em;
}

.cta-desc {
    color: #94a3b8;
    font-size: 1.125rem;
    margin-bottom: 2rem;
} */

.btn-cta-full {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem 2.5rem;
    background-color: var(--accent);
    color: #0f172a;
    font-weight: 800;
    font-size: 1rem;
    border-radius: var(--radius-full);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px -5px rgba(246, 177, 40, 0.4);
}

.btn-cta-full:hover {
    background-color: var(--accent-hover);
    transform: translateY(-3px);
    box-shadow: 0 15px 30px -5px rgba(246, 177, 40, 0.5);
}


/*ServSafe*/
/* RESET GENERAL & VARIABLES */
:root {
    --primary: #429ebd;
    --primary-hover: #337ab7;
    --primary-light: #eef7fa;
    --primary-border: #b3d7e8;
    --accent: #F6B128;
    --accent-hover: #e09e1f;
    --accent-light: #fef8ec;
    --text-main: #0f172a;
    --text-muted: #475569;
    --bg-main: #f8fafc;
    --bg-card: #ffffff;
    --border-color: #e2e8f0;
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    --font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    --radius-lg: 1rem;
    --radius-full: 9999px;
}

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

html, body {
    width: 100%;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

body {
    font-family: var(--font-family);
    background-color: var(--bg-main);
    color: var(--text-main);
    line-height: 1.6;
}

.commissary-section {
    background-color: var(--bg-main);
    width: 100%;
    display: block;
}

.content-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3.5rem 1.5rem 2rem 1.5rem;
    width: 100%;
}

/* --- HERO SECTION & CTA PRINCIPAL --- */
.hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    align-items: center;
    margin-bottom: 4rem;
}

@media (min-width: 992px) {
    .hero-grid {
        grid-template-columns: 1.2fr 0.8fr;
        gap: 3.5rem;
    }
}

.hero-text {
    order: 2;
    display: flex;
    flex-direction: column;
    align-items: flex-start; /* Alinea distintamente el botón a la izquierda */
}

@media (min-width: 992px) {
    .hero-text {
        order: 1;
    }
}

.badge-location {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.375rem 0.875rem;
    background-color: var(--primary-light);
    color: var(--primary);
    border: 1px solid var(--primary-border);
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1.25rem;
}

.badge-pulse {
    width: 8px;
    height: 8px;
    background-color: var(--accent);
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 0 0 rgba(246, 177, 40, 0.7);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(246, 177, 40, 0.7); }
    70% { box-shadow: 0 0 0 8px rgba(246, 177, 40, 0); }
    100% { box-shadow: 0 0 0 0 rgba(246, 177, 40, 0); }
}

.hero-title {
    font-size: 2.25rem;
    font-weight: 900;
    line-height: 1.15;
    color: var(--text-main);
    margin-bottom: 1.25rem;
    letter-spacing: -0.02em;
}

@media (min-width: 640px) {
    .hero-title {
        font-size: 2.75rem;
    }
}

.gradient-text {
    background: linear-gradient(135deg, #429ebd 0%, #2b7a99 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-description {
    font-size: 1.125rem;
    color: var(--text-muted);
    margin-bottom: 1.75rem;
}

/* FIX CTA HERO BUTTON */
.hero-cta-wrapper {
    width: 100%;
    display: flex;
    justify-content: flex-start;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    background-color: var(--accent);
    color: #0f172a;
    font-weight: 700;
    font-size: 0.95rem;
    border-radius: 0.75rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background-color: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.hero-image-wrapper {
    order: 1;
    position: relative;
}

@media (min-width: 992px) {
    .hero-image-wrapper {
        order: 2;
    }
}

.hero-image-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--border-color);
    height: 400px;
}

.hero-image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.hero-image-card:hover img {
    transform: scale(1.05);
}

.hero-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.4), transparent);
}

.floating-badge {
    position: absolute;
    bottom: -1.25rem;
    left: -1.25rem;
    background-color: #ffffff;
    padding: 1rem;
    border-radius: 0.875rem;
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--border-color);
    display: none;
    align-items: center;
    gap: 0.75rem;
}

@media (min-width: 640px) {
    .floating-badge {
        display: flex;
    }
}

.floating-badge-icon {
    padding: 0.625rem;
    background-color: var(--accent-light);
    color: var(--accent);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.floating-badge-subtitle {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 500;
}

.floating-badge-title {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--text-main);
}

/* --- SECCIONES DE INFORMACIÓN --- */
.info-card {
    background-color: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 2.5rem 2rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    margin-bottom: 4rem;
}

.section-header-left {
    max-width: 700px;
    margin-bottom: 2rem;
}

.section-title {
    font-size: 1.875rem;
    font-weight: 800;
    color: var(--text-main);
    letter-spacing: -0.01em;
}

.section-subtitle {
    color: var(--text-muted);
    margin-top: 0.5rem;
    font-size: 1rem;
}

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

@media (min-width: 768px) {
    .bullets-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.bullet-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    border-radius: 0.75rem;
    background-color: var(--bg-main);
    border: 1px solid var(--border-color);
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.bullet-item:hover {
    transform: translateY(-2px);
    border-color: var(--primary-border);
}

.bullet-icon {
    padding: 0.5rem;
    background-color: var(--primary-light);
    color: var(--primary);
    border-radius: 0.5rem;
    flex-shrink: 0;
    margin-top: 0.125rem;
    display: flex;
}

.bullet-text {
    color: var(--text-main);
    font-size: 0.95rem;
    font-weight: 600;
}

.features-section {
    margin-bottom: 4rem;
}

.section-header-center {
    text-align: center;
    max-width: 650px;
    margin: 0 auto 3rem auto;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.75rem;
}

@media (min-width: 640px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.feature-card {
    background-color: var(--bg-card);
    padding: 1.75rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-border);
}

.feature-icon-box {
    width: 3rem;
    height: 3rem;
    background-color: var(--primary-light);
    color: var(--primary);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
}

.feature-card-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 0.5rem;
}

.feature-card-desc {
    color: var(--text-muted);
    font-size: 0.875rem;
    line-height: 1.6;
}

/* --- FIX TOTAL DEL CTA FINAL / FOOTER --- */
.cta-fullwidth {
    width: 100%;
    background-color: var(--bg-card);
    border-top: 1px solid var(--border-color);
    padding: 4rem 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
}

/* .cta-container {
    max-width: 700px;
    width: 100%;
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.cta-title {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--text-main);
    margin-bottom: 1rem;
    width: 100%;
    text-align: center;
}

.cta-desc {
    color: var(--text-muted);
    font-size: 1.125rem;
    margin-bottom: 2rem;
    width: 100%;
    text-align: center;
} */

.btn-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem 2.25rem;
    background-color: var(--primary);
    color: #ffffff;
    font-weight: 700;
    font-size: 1rem;
    border-radius: var(--radius-full);
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 15px -3px rgba(66, 158, 189, 0.3);
    border: none;
    cursor: pointer;
}

.btn-cta:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 15px 20px -3px rgba(66, 158, 189, 0.4);
}