/* ============================================
   SUNMART PLAN ESTRATÉGICO — DESIGN SYSTEM
   Brand Colors: Orange, Green, White, Dark
   ============================================ */

:root {
    /* Brand Colors */
    --sun-orange: #E8611A;
    --sun-orange-light: #FF7A33;
    --sun-orange-dark: #C44E0E;
    --sun-orange-glow: rgba(232, 97, 26, 0.3);
    --sun-green: #1B6B3A;
    --sun-green-light: #228B4A;
    --sun-green-dark: #145029;
    --sun-green-glow: rgba(27, 107, 58, 0.3);

    /* Neutrals */
    --bg-dark: #0D0D0D;
    --bg-section: #111111;
    --bg-card: #1A1A1A;
    --bg-card-hover: #222222;
    --bg-surface: #161616;
    --text-primary: #F5F5F5;
    --text-secondary: #A0A0A0;
    --text-muted: #666666;
    --border-subtle: rgba(255, 255, 255, 0.06);
    --border-hover: rgba(255, 255, 255, 0.12);

    /* Functional */
    --success: #10B981;
    --warning: #F59E0B;
    --danger: #EF4444;
    --info: #3B82F6;

    /* Layout */
    --sidebar-width: 280px;
    --header-height: 60px;

    /* Typography */
    --font-display: 'Space Grotesk', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Effects */
    --glass-bg: rgba(26, 26, 26, 0.7);
    --glass-border: rgba(255, 255, 255, 0.08);
    --glass-blur: blur(20px);
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

/* ============================================
   RESET & BASE
   ============================================ */

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    scrollbar-width: thin;
    scrollbar-color: var(--sun-orange) var(--bg-dark);
}

body {
    font-family: var(--font-body);
    background: var(--bg-dark);
    color: var(--text-primary);
    overflow-x: hidden;
    line-height: 1.6;
}

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-dark); }
::-webkit-scrollbar-thumb { background: var(--sun-orange); border-radius: 3px; }

a { color: var(--sun-orange-light); text-decoration: none; transition: color var(--transition-fast); }
a:hover { color: var(--sun-orange); }

/* ============================================
   SIDEBAR
   ============================================ */

.sidebar {
    position: fixed;
    top: 0;
    left: 0;
    width: var(--sidebar-width);
    height: 100vh;
    background: var(--bg-surface);
    border-right: 1px solid var(--border-subtle);
    display: flex;
    flex-direction: column;
    z-index: 1000;
    transition: transform var(--transition-slow);
}

.sidebar-header {
    padding: 24px 20px;
    border-bottom: 1px solid var(--border-subtle);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.sidebar-logo-img {
    width: 140px;
    height: auto;
    border-radius: 14px;
}

.brand-icon {
    width: 42px;
    height: 42px;
    background: linear-gradient(135deg, var(--sun-orange), var(--sun-orange-dark));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: white;
    box-shadow: 0 4px 15px var(--sun-orange-glow);
    overflow: hidden;
}

.brand-logo-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

.mobile-logo-img {
    height: 28px;
    width: auto;
    vertical-align: middle;
    margin-right: 4px;
    border-radius: 6px;
}

/* Hero Logo */
.hero-logo-container {
    margin-bottom: 24px;
    animation: fadeSlideDown 0.8s ease-out 0s both;
}

.hero-logo {
    width: 120px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 8px 40px var(--sun-orange-glow);
    transition: transform var(--transition-normal);
}

.hero-logo:hover {
    transform: scale(1.05);
}

/* Footer Logo */
.footer-logo-img {
    height: 36px;
    width: auto;
    vertical-align: middle;
    margin-right: 8px;
    border-radius: 8px;
}

.brand-name {
    display: block;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 18px;
    color: var(--text-primary);
    letter-spacing: 1px;
}

.brand-sub {
    display: block;
    font-size: 11px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.sidebar-close {
    display: none;
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 20px;
    cursor: pointer;
    padding: 8px;
}

.nav-list {
    list-style: none;
    flex: 1;
    overflow-y: auto;
    padding: 12px 10px;
    scrollbar-width: thin;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 11px 16px;
    border-radius: 10px;
    color: var(--text-secondary);
    font-size: 13.5px;
    font-weight: 500;
    transition: all var(--transition-fast);
    margin-bottom: 2px;
}

.nav-link i {
    width: 20px;
    text-align: center;
    font-size: 14px;
}

.nav-link:hover {
    background: rgba(232, 97, 26, 0.08);
    color: var(--text-primary);
}

.nav-link.active {
    background: linear-gradient(135deg, rgba(232, 97, 26, 0.15), rgba(232, 97, 26, 0.05));
    color: var(--sun-orange);
    font-weight: 600;
    border-left: 3px solid var(--sun-orange);
}

.sidebar-footer {
    padding: 16px 20px;
    border-top: 1px solid var(--border-subtle);
    color: var(--text-muted);
    font-size: 12px;
    text-align: center;
}

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

.mobile-header {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--header-height);
    background: rgba(13, 13, 13, 0.9);
    backdrop-filter: var(--glass-blur);
    border-bottom: 1px solid var(--border-subtle);
    z-index: 999;
    align-items: center;
    padding: 0 20px;
    gap: 16px;
}

.menu-toggle {
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 22px;
    cursor: pointer;
    padding: 8px;
}

.mobile-brand {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 18px;
    color: var(--sun-orange);
    letter-spacing: 1px;
}

.progress-bar-container {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--border-subtle);
}

.reading-progress {
    height: 100%;
    background: linear-gradient(90deg, var(--sun-orange), var(--sun-green));
    width: 0%;
    transition: width 0.1s linear;
}

.sidebar-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    z-index: 999;
}

/* ============================================
   MAIN CONTENT
   ============================================ */

.main-content {
    margin-left: var(--sidebar-width);
    min-height: 100vh;
}

.section {
    min-height: 100vh;
    padding: 80px 0;
    position: relative;
}

.section-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Section Headers */
.section-header {
    margin-bottom: 50px;
    position: relative;
}

.section-number {
    font-family: var(--font-display);
    font-size: 72px;
    font-weight: 800;
    color: rgba(232, 97, 26, 0.08);
    line-height: 1;
    display: block;
    margin-bottom: -20px;
}

.section-title {
    font-family: var(--font-display);
    font-size: 36px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 10px;
    position: relative;
}

.section-title i {
    color: var(--sun-orange);
    margin-right: 12px;
}

.section-subtitle {
    font-size: 16px;
    color: var(--text-secondary);
    max-width: 600px;
}

.subsection-title {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 600;
    color: var(--text-primary);
    margin: 50px 0 24px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.subsection-title i {
    color: var(--sun-orange);
}

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

.hero-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 40px;
    background: radial-gradient(ellipse at 30% 20%, rgba(232, 97, 26, 0.1) 0%, transparent 50%),
                radial-gradient(ellipse at 70% 80%, rgba(27, 107, 58, 0.08) 0%, transparent 50%),
                var(--bg-dark);
    overflow: hidden;
    position: relative;
}

.hero-particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.particle {
    position: absolute;
    border-radius: 50%;
    opacity: 0;
    animation: floatParticle 8s ease-in-out infinite;
}

@keyframes floatParticle {
    0% { opacity: 0; transform: translateY(100vh) scale(0); }
    20% { opacity: 0.6; }
    80% { opacity: 0.3; }
    100% { opacity: 0; transform: translateY(-100px) scale(1); }
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
}

.hero-badge {
    display: inline-block;
    padding: 8px 24px;
    background: rgba(232, 97, 26, 0.12);
    border: 1px solid rgba(232, 97, 26, 0.3);
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 3px;
    color: var(--sun-orange);
    margin-bottom: 30px;
    animation: fadeSlideDown 0.8s ease-out;
}

.hero-title {
    margin-bottom: 24px;
}

.title-line {
    display: block;
    font-family: var(--font-display);
    font-size: 80px;
    font-weight: 900;
    letter-spacing: 8px;
    background: linear-gradient(135deg, var(--sun-orange), var(--sun-orange-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1;
    animation: fadeSlideDown 0.8s ease-out 0.1s both;
}

.title-accent {
    display: block;
    font-family: var(--font-display);
    font-size: 48px;
    font-weight: 700;
    color: var(--sun-green-light);
    line-height: 1.2;
    animation: fadeSlideDown 0.8s ease-out 0.2s both;
}

.title-sub {
    display: block;
    font-family: var(--font-body);
    font-size: 22px;
    font-weight: 300;
    color: var(--text-secondary);
    letter-spacing: 6px;
    text-transform: uppercase;
    animation: fadeSlideDown 0.8s ease-out 0.3s both;
}

.hero-description {
    font-size: 17px;
    color: var(--text-secondary);
    margin-bottom: 50px;
    line-height: 1.8;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeSlideDown 0.8s ease-out 0.4s both;
}

.hero-description strong {
    color: var(--sun-orange);
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 50px;
    animation: fadeSlideDown 0.8s ease-out 0.5s both;
}

.stat-card {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 24px 16px;
    transition: all var(--transition-normal);
}

.stat-card:hover {
    border-color: var(--sun-orange);
    transform: translateY(-4px);
    box-shadow: 0 8px 30px var(--sun-orange-glow);
}

.stat-number {
    font-family: var(--font-display);
    font-size: 42px;
    font-weight: 700;
    color: var(--sun-orange);
    display: block;
    line-height: 1.1;
}

.stat-label {
    font-size: 12px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
    margin-top: 6px;
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    background: linear-gradient(135deg, var(--sun-orange), var(--sun-orange-dark));
    color: white;
    font-weight: 600;
    font-size: 16px;
    border-radius: 50px;
    transition: all var(--transition-normal);
    box-shadow: 0 4px 20px var(--sun-orange-glow);
    animation: fadeSlideDown 0.8s ease-out 0.6s both;
}

.hero-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(232, 97, 26, 0.5);
    color: white;
}

.hero-cta i {
    animation: bounceDown 2s ease infinite;
}

@keyframes bounceDown {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(5px); }
}

/* Scroll indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: fadeSlideDown 0.8s ease-out 0.8s both;
}

.mouse {
    width: 26px;
    height: 42px;
    border: 2px solid var(--text-muted);
    border-radius: 15px;
    position: relative;
}

.wheel {
    width: 4px;
    height: 8px;
    background: var(--sun-orange);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollWheel 2s ease infinite;
}

@keyframes scrollWheel {
    0% { opacity: 1; transform: translateX(-50%) translateY(0); }
    100% { opacity: 0; transform: translateX(-50%) translateY(12px); }
}

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

/* ============================================
   GLASS CARD
   ============================================ */

.glass-card {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    transition: all var(--transition-normal);
}

.glass-card:hover {
    border-color: var(--border-hover);
    background: var(--bg-card-hover);
}

/* ============================================
   INFO GRID (Diagnóstico)
   ============================================ */

.info-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 50px;
}

.info-card {
    padding: 28px 24px;
    text-align: center;
}

.info-icon {
    font-size: 28px;
    color: var(--sun-orange);
    margin-bottom: 14px;
}

.info-card h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 6px;
}

.info-card p {
    font-size: 13px;
    color: var(--text-secondary);
}

/* Sucursales Grid */
.sucursales-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.sucursal-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 16px;
    padding: 24px;
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.sucursal-card:hover {
    border-color: var(--sun-green);
    transform: translateY(-2px);
}

.sucursal-badge {
    display: inline-block;
    padding: 4px 12px;
    background: linear-gradient(135deg, var(--sun-green), var(--sun-green-dark));
    color: white;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    border-radius: 6px;
    margin-bottom: 12px;
}

.sucursal-card h4 {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 4px;
}

.sucursal-card > p {
    font-size: 13px;
    color: var(--text-secondary);
    margin-bottom: 14px;
}

.sucursal-services {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.service-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    padding: 5px 10px;
    background: rgba(232, 97, 26, 0.1);
    border: 1px solid rgba(232, 97, 26, 0.2);
    border-radius: 8px;
    color: var(--sun-orange-light);
}

/* FODA Grid */
.foda-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.foda-card {
    border-radius: 16px;
    padding: 28px;
    border: 1px solid var(--border-subtle);
    background: var(--bg-card);
    transition: all var(--transition-normal);
}

.foda-card:hover { transform: translateY(-3px); }

.foda-header {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 16px;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.foda-f .foda-header { color: var(--success); }
.foda-o .foda-header { color: var(--info); }
.foda-d .foda-header { color: var(--warning); }
.foda-a .foda-header { color: var(--danger); }

.foda-f:hover { border-color: var(--success); }
.foda-o:hover { border-color: var(--info); }
.foda-d:hover { border-color: var(--warning); }
.foda-a:hover { border-color: var(--danger); }

.foda-card ul {
    list-style: none;
    padding: 0;
}

.foda-card li {
    padding: 6px 0;
    font-size: 13.5px;
    color: var(--text-secondary);
    padding-left: 18px;
    position: relative;
}

.foda-card li::before {
    content: '›';
    position: absolute;
    left: 0;
    font-weight: 700;
    color: var(--text-muted);
}

/* Insight Box */
.insight-box {
    display: flex;
    gap: 20px;
    padding: 28px;
    background: linear-gradient(135deg, rgba(232, 97, 26, 0.1), rgba(232, 97, 26, 0.03));
    border: 1px solid rgba(232, 97, 26, 0.25);
    border-radius: 16px;
    margin-top: 30px;
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.7;
}

.insight-icon {
    font-size: 28px;
    color: var(--sun-orange);
    flex-shrink: 0;
}

.insight-box strong {
    color: var(--sun-orange);
}

/* ============================================
   ALERT BOXES
   ============================================ */

.alert-box {
    display: flex;
    gap: 16px;
    padding: 20px 24px;
    border-radius: 14px;
    margin-bottom: 30px;
    font-size: 14px;
    line-height: 1.7;
    align-items: flex-start;
}

.alert-box i {
    font-size: 20px;
    flex-shrink: 0;
    margin-top: 2px;
}

.alert-warning {
    background: rgba(245, 158, 11, 0.08);
    border: 1px solid rgba(245, 158, 11, 0.2);
    color: var(--text-secondary);
}
.alert-warning i { color: var(--warning); }
.alert-warning strong { color: var(--warning); }

.alert-success {
    background: rgba(16, 185, 129, 0.08);
    border: 1px solid rgba(16, 185, 129, 0.2);
    color: var(--text-secondary);
}
.alert-success i { color: var(--success); }
.alert-success strong { color: var(--success); }

.alert-danger {
    background: rgba(239, 68, 68, 0.08);
    border: 1px solid rgba(239, 68, 68, 0.2);
    color: var(--text-secondary);
}
.alert-danger i { color: var(--danger); }
.alert-danger strong { color: var(--danger); }

.alert-info {
    background: rgba(59, 130, 246, 0.08);
    border: 1px solid rgba(59, 130, 246, 0.2);
    color: var(--text-secondary);
}
.alert-info i { color: var(--info); }
.alert-info strong { color: var(--info); }

/* ============================================
   STRATEGY PROPOSAL
   ============================================ */

.strategy-proposal {
    margin-bottom: 30px;
}

.proposal-header {
    text-align: center;
    padding: 40px;
    background: linear-gradient(135deg, rgba(232, 97, 26, 0.12), rgba(27, 107, 58, 0.08));
    border: 1px solid rgba(232, 97, 26, 0.2);
    border-radius: 20px;
}

.proposal-tag {
    display: inline-block;
    padding: 4px 16px;
    background: var(--sun-orange);
    color: white;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    border-radius: 6px;
    margin-bottom: 16px;
}

.proposal-header h3 {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.proposal-header p {
    color: var(--text-secondary);
    font-size: 15px;
}

/* ============================================
   TIMELINE (Pilar 1)
   ============================================ */

.actions-timeline {
    position: relative;
    padding-left: 40px;
}

.actions-timeline::before {
    content: '';
    position: absolute;
    left: 18px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--sun-orange), var(--sun-green));
    border-radius: 1px;
}

.timeline-item {
    position: relative;
    margin-bottom: 20px;
}

.timeline-dot {
    position: absolute;
    left: -40px;
    top: 20px;
    width: 36px;
    height: 36px;
    background: var(--bg-dark);
    border: 2px solid var(--sun-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 700;
    color: var(--sun-orange);
    z-index: 2;
}

.timeline-content {
    padding: 24px;
}

.timeline-meta {
    margin-bottom: 10px;
}

.tag-month {
    display: inline-block;
    padding: 3px 12px;
    background: rgba(27, 107, 58, 0.15);
    color: var(--sun-green-light);
    font-size: 11px;
    font-weight: 600;
    border-radius: 6px;
    letter-spacing: 1px;
}

.timeline-content h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 6px;
}

.timeline-content p {
    font-size: 13.5px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ============================================
   KPI TABLE
   ============================================ */

.kpi-table-wrapper {
    overflow-x: auto;
    border-radius: 14px;
    border: 1px solid var(--border-subtle);
}

.kpi-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 13.5px;
}

.kpi-table thead th {
    background: rgba(232, 97, 26, 0.1);
    padding: 14px 20px;
    text-align: left;
    font-weight: 600;
    color: var(--sun-orange);
    border-bottom: 1px solid var(--border-subtle);
    white-space: nowrap;
}

.kpi-table tbody td {
    padding: 12px 20px;
    border-bottom: 1px solid var(--border-subtle);
    color: var(--text-secondary);
}

.kpi-table tbody tr:last-child td {
    border-bottom: none;
}

.kpi-table tbody tr:hover td {
    background: rgba(255, 255, 255, 0.02);
}

/* ============================================
   ACTION CARDS (Pilar 2)
   ============================================ */

.action-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.action-card {
    padding: 28px;
    position: relative;
    overflow: hidden;
}

.action-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.3);
}

.action-number {
    position: absolute;
    top: 16px;
    right: 16px;
    font-family: var(--font-display);
    font-size: 12px;
    font-weight: 700;
    color: var(--sun-orange);
    background: rgba(232, 97, 26, 0.1);
    padding: 4px 10px;
    border-radius: 6px;
}

.action-icon {
    font-size: 28px;
    color: var(--sun-green);
    margin-bottom: 16px;
}

.action-card h4 {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 8px;
}

.action-card p {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 14px;
}

.action-investment {
    font-size: 12px;
    font-weight: 600;
    color: var(--sun-orange-light);
    display: flex;
    align-items: center;
    gap: 6px;
}

/* ============================================
   FOOD STRATEGIES (Pilar 3)
   ============================================ */

.food-strategies {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.food-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 16px;
    padding: 28px;
    transition: all var(--transition-normal);
    text-align: center;
}

.food-card:hover {
    transform: translateY(-4px);
    border-color: var(--sun-orange);
}

.food-card.highlight-card {
    background: linear-gradient(135deg, rgba(232, 97, 26, 0.12), rgba(232, 97, 26, 0.04));
    border-color: rgba(232, 97, 26, 0.3);
}

.food-emoji {
    font-size: 36px;
    margin-bottom: 14px;
}

.food-card h4 {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 8px;
}

.food-card p {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ============================================
   LOYALTY TIERS (Pilar 4)
   ============================================ */

.loyalty-tiers {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.tier-card {
    text-align: center;
    padding: 30px 20px;
    border-radius: 20px;
    border: 1px solid var(--border-subtle);
    transition: all var(--transition-normal);
}

.tier-card:hover {
    transform: translateY(-6px);
}

.tier-icon {
    font-size: 42px;
    margin-bottom: 12px;
}

.tier-card h4 {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
    letter-spacing: 2px;
}

.tier-card p {
    font-size: 13px;
    color: var(--text-secondary);
    margin-bottom: 12px;
}

.tier-req {
    font-size: 11px;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 8px;
    display: inline-block;
}

.tier-bronze { background: linear-gradient(180deg, rgba(205, 127, 50, 0.1), transparent); }
.tier-bronze h4 { color: #CD7F32; }
.tier-bronze .tier-req { background: rgba(205, 127, 50, 0.15); color: #CD7F32; }
.tier-bronze:hover { border-color: #CD7F32; box-shadow: 0 8px 30px rgba(205, 127, 50, 0.2); }

.tier-silver { background: linear-gradient(180deg, rgba(192, 192, 192, 0.1), transparent); }
.tier-silver h4 { color: #C0C0C0; }
.tier-silver .tier-req { background: rgba(192, 192, 192, 0.15); color: #C0C0C0; }
.tier-silver:hover { border-color: #C0C0C0; box-shadow: 0 8px 30px rgba(192, 192, 192, 0.15); }

.tier-gold { background: linear-gradient(180deg, rgba(255, 215, 0, 0.1), transparent); }
.tier-gold h4 { color: #FFD700; }
.tier-gold .tier-req { background: rgba(255, 215, 0, 0.15); color: #FFD700; }
.tier-gold:hover { border-color: #FFD700; box-shadow: 0 8px 30px rgba(255, 215, 0, 0.15); }

.tier-sun { background: linear-gradient(180deg, rgba(232, 97, 26, 0.1), transparent); }
.tier-sun h4 { color: var(--sun-orange); }
.tier-sun .tier-req { background: rgba(232, 97, 26, 0.15); color: var(--sun-orange); }
.tier-sun:hover { border-color: var(--sun-orange); box-shadow: 0 8px 30px var(--sun-orange-glow); }

.loyalty-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 40px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 20px;
}

.feature-icon {
    font-size: 22px;
    color: var(--sun-orange);
    flex-shrink: 0;
}

.feature-item div {
    font-size: 13px;
    color: var(--text-secondary);
}

.feature-item strong {
    color: var(--text-primary);
    display: block;
    margin-bottom: 2px;
}

/* ============================================
   CALENDAR (Pilar 5)
   ============================================ */

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 12px;
    margin-bottom: 40px;
}

.calendar-day {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 14px;
    padding: 18px 12px;
    text-align: center;
    transition: all var(--transition-normal);
}

.calendar-day:hover {
    border-color: var(--sun-orange);
    transform: translateY(-3px);
}

.day-header {
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 700;
    color: var(--sun-orange);
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.day-icon {
    font-size: 24px;
    margin-bottom: 8px;
}

.day-type {
    font-size: 11px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 6px;
}

.calendar-day p {
    font-size: 11px;
    color: var(--text-muted);
    line-height: 1.4;
}

.digital-actions {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.digital-card {
    padding: 24px;
    text-align: center;
}

.digital-card i {
    font-size: 32px;
    color: var(--sun-orange);
    margin-bottom: 14px;
}

.digital-card h4 {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 8px;
}

.digital-card p {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* ============================================
   COMMUNITY (Pilar 6)
   ============================================ */

.community-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.community-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 16px;
    padding: 28px;
    transition: all var(--transition-normal);
}

.community-card:hover {
    border-color: var(--sun-green);
    transform: translateY(-4px);
}

.community-icon {
    font-size: 28px;
    color: var(--sun-green-light);
    margin-bottom: 14px;
}

.community-card h4 {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 8px;
}

.community-card p {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.5;
    margin-bottom: 14px;
}

.impact-bar {
    height: 6px;
    background: rgba(255,255,255,0.05);
    border-radius: 3px;
    overflow: hidden;
}

.impact-bar span {
    display: block;
    height: 100%;
    background: linear-gradient(90deg, var(--sun-green), var(--sun-orange));
    border-radius: 3px;
    font-size: 0;
    transition: width 1s ease;
}

/* ============================================
   FUNNEL (Pilar 7)
   ============================================ */

.funnel-visual {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    margin: 40px 0;
}

.funnel-step {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 32px;
    border-radius: 14px;
    font-size: 15px;
    font-weight: 500;
    width: 100%;
    max-width: 500px;
    transition: all var(--transition-normal);
}

.funnel-step:hover {
    transform: scale(1.03);
}

.funnel-step i {
    font-size: 22px;
    width: 28px;
    text-align: center;
}

.funnel-1 { background: rgba(232, 97, 26, 0.15); color: var(--sun-orange-light); border: 1px solid rgba(232, 97, 26, 0.3); }
.funnel-2 { background: rgba(232, 97, 26, 0.12); color: var(--sun-orange-light); border: 1px solid rgba(232, 97, 26, 0.25); max-width: 460px; }
.funnel-3 { background: rgba(232, 97, 26, 0.09); color: var(--sun-orange-light); border: 1px solid rgba(232, 97, 26, 0.2); max-width: 420px; }
.funnel-4 { background: rgba(27, 107, 58, 0.12); color: var(--sun-green-light); border: 1px solid rgba(27, 107, 58, 0.25); max-width: 380px; }
.funnel-5 { background: rgba(27, 107, 58, 0.15); color: var(--sun-green-light); border: 1px solid rgba(27, 107, 58, 0.3); max-width: 340px; }

.funnel-arrow {
    color: var(--text-muted);
    padding: 6px 0;
    font-size: 14px;
}

.gas-actions {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.gas-card {
    padding: 24px;
}

.gas-card h4 {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 8px;
}

.gas-card .num {
    color: var(--sun-orange);
    font-weight: 700;
    margin-right: 6px;
}

.gas-card p {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ============================================
   DASHBOARD (KPIs)
   ============================================ */

.kpis-section {
    background: radial-gradient(ellipse at 50% 0%, rgba(232, 97, 26, 0.06) 0%, transparent 50%),
                var(--bg-dark);
}

.dashboard-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-bottom: 40px;
}

.dash-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 14px;
    padding: 22px 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    transition: all var(--transition-normal);
}

.dash-card:hover {
    border-color: var(--sun-orange);
    transform: translateY(-2px);
}

.dash-icon {
    width: 44px;
    height: 44px;
    background: rgba(232, 97, 26, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--sun-orange);
    font-size: 18px;
    flex-shrink: 0;
}

.dash-info {
    flex: 1;
    min-width: 0;
}

.dash-label {
    display: block;
    font-size: 14px;
    font-weight: 600;
}

.dash-target {
    display: block;
    font-size: 12px;
    color: var(--sun-green-light);
    font-weight: 500;
}

.dash-progress {
    width: 100%;
    height: 5px;
    background: rgba(255,255,255,0.05);
    border-radius: 3px;
    margin-top: 4px;
    overflow: hidden;
}

.dash-bar {
    height: 100%;
    width: var(--bar-width);
    background: linear-gradient(90deg, var(--sun-orange), var(--sun-green));
    border-radius: 3px;
    transition: width 1.5s ease;
}

.dash-freq {
    font-size: 10px;
    color: var(--text-muted);
    background: rgba(255,255,255,0.05);
    padding: 3px 10px;
    border-radius: 6px;
    position: absolute;
    top: 12px;
    right: 12px;
}

.dash-card {
    position: relative;
}

/* Survey Box */
.survey-box {
    padding: 30px;
}

.survey-box h3 {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--sun-orange);
}

.survey-box h3 i {
    margin-right: 8px;
}

.survey-box > p {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 16px;
}

.survey-box ol {
    list-style-position: inside;
    padding: 0;
}

.survey-box li {
    padding: 8px 0;
    font-size: 13.5px;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--border-subtle);
}

.survey-box li:last-child {
    border-bottom: none;
}

/* ============================================
   QUICK WINS
   ============================================ */

.quickwins-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.qw-item {
    display: flex;
    align-items: center;
    gap: 20px;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 14px;
    padding: 20px 24px;
    transition: all var(--transition-normal);
}

.qw-item:hover {
    border-color: var(--sun-orange);
    transform: translateX(6px);
}

.qw-number {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 800;
    color: var(--sun-orange);
    opacity: 0.6;
    flex-shrink: 0;
    width: 40px;
}

.qw-content {
    flex: 1;
}

.qw-content h4 {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 4px;
}

.qw-content p {
    font-size: 13px;
    color: var(--text-secondary);
}

.qw-meta {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 6px;
    flex-shrink: 0;
}

.qw-cost {
    font-size: 14px;
    font-weight: 700;
    color: var(--sun-green-light);
    background: rgba(27, 107, 58, 0.1);
    padding: 4px 12px;
    border-radius: 8px;
}

.qw-impact {
    display: flex;
    gap: 3px;
}

.qw-impact i {
    font-size: 12px;
    color: var(--sun-orange);
}

/* ============================================
   BUDGET
   ============================================ */

.budget-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 30px;
}

.budget-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 16px;
    padding: 24px;
    transition: all var(--transition-normal);
    text-align: center;
}

.budget-card:hover {
    border-color: var(--sun-orange);
    transform: translateY(-3px);
}

.budget-priority {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.budget-card h4 {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 6px;
}

.budget-card > p {
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 14px;
}

.budget-amount {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 700;
    color: var(--sun-orange);
}

.budget-amount small {
    font-size: 12px;
    color: var(--text-muted);
}

.total-budget {
    text-align: center;
    padding: 40px;
    margin-bottom: 40px;
    background: linear-gradient(135deg, rgba(232, 97, 26, 0.1), rgba(27, 107, 58, 0.06)) !important;
    border-color: rgba(232, 97, 26, 0.3) !important;
}

.total-label {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.total-amount {
    font-family: var(--font-display);
    font-size: 40px;
    font-weight: 700;
    background: linear-gradient(135deg, var(--sun-orange), var(--sun-green-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 12px;
}

.total-amount small {
    font-size: 18px;
    -webkit-text-fill-color: var(--text-muted);
}

.total-budget p {
    font-size: 14px;
    color: var(--text-secondary);
}

/* Formula */
.formula-box {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    margin-bottom: 40px;
}

.formula-box h3 {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
}

.formula {
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 500;
    color: var(--sun-orange);
    background: rgba(232, 97, 26, 0.08);
    border: 1px solid rgba(232, 97, 26, 0.2);
    border-radius: 12px;
    padding: 20px 30px;
    margin-bottom: 16px;
    line-height: 1.8;
}

.formula-note {
    font-size: 14px;
    color: var(--text-secondary);
}

.formula-note strong {
    color: var(--sun-orange);
}

/* Next Steps */
.next-steps {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.step-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 16px 24px;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 12px;
    transition: all var(--transition-normal);
}

.step-item:hover {
    border-color: var(--sun-green);
    transform: translateX(6px);
}

.step-week {
    font-family: var(--font-display);
    font-size: 12px;
    font-weight: 700;
    color: var(--sun-green-light);
    background: rgba(27, 107, 58, 0.15);
    padding: 6px 14px;
    border-radius: 8px;
    flex-shrink: 0;
    min-width: 80px;
    text-align: center;
}

.step-item p {
    font-size: 14px;
    color: var(--text-secondary);
}

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

.site-footer {
    background: var(--bg-surface);
    border-top: 1px solid var(--border-subtle);
    padding: 40px;
    text-align: center;
}

.footer-brand {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 700;
    color: var(--sun-orange);
    margin-bottom: 8px;
}

.site-footer p {
    font-size: 14px;
    color: var(--text-secondary);
}

.footer-sub {
    font-size: 12px !important;
    color: var(--text-muted) !important;
    margin-top: 4px;
}

/* ============================================
   ANIMATIONS — Scroll Reveal
   ============================================ */

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

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

/* ============================================
   COMPETITOR ANALYSIS
   ============================================ */

.competitor-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.competitor-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 20px;
    overflow: hidden;
    transition: all var(--transition-normal);
}

.competitor-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

.competitor-sunmart {
    border-color: rgba(232, 97, 26, 0.3);
    background: linear-gradient(180deg, rgba(232, 97, 26, 0.06), var(--bg-card));
}

.competitor-sunmart:hover { border-color: var(--sun-orange); }

.comp-header {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 20px 24px;
    border-bottom: 1px solid var(--border-subtle);
}

.comp-logo {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--sun-orange), var(--sun-orange-dark));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: white;
    flex-shrink: 0;
}

.comp-logo-purple { background: linear-gradient(135deg, #8B5CF6, #6D28D9); }
.comp-logo-blue { background: linear-gradient(135deg, #3B82F6, #1D4ED8); }
.comp-logo-red { background: linear-gradient(135deg, #EF4444, #B91C1C); }

.comp-header h4 {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 1px;
}

.comp-tag {
    display: inline-block;
    padding: 2px 10px;
    border-radius: 6px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
}

.comp-us {
    background: rgba(232, 97, 26, 0.15);
    color: var(--sun-orange);
}

.comp-rival {
    background: rgba(239, 68, 68, 0.12);
    color: var(--danger);
}

.comp-body {
    padding: 20px 24px;
}

.comp-service-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 16px;
}

.comp-service {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    padding: 5px 10px;
    border-radius: 8px;
    font-weight: 500;
}

.comp-service i {
    font-size: 11px;
}

.comp-service.active {
    background: rgba(16, 185, 129, 0.1);
    color: var(--success);
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.comp-service.active.highlight {
    background: rgba(232, 97, 26, 0.15);
    color: var(--sun-orange);
    border-color: rgba(232, 97, 26, 0.3);
    font-weight: 700;
}

.comp-service.inactive {
    background: rgba(239, 68, 68, 0.08);
    color: rgba(239, 68, 68, 0.6);
    border: 1px solid rgba(239, 68, 68, 0.15);
    text-decoration: line-through;
    opacity: 0.7;
}

.comp-service.uncertain {
    background: rgba(245, 158, 11, 0.08);
    color: rgba(245, 158, 11, 0.7);
    border: 1px solid rgba(245, 158, 11, 0.15);
    font-style: italic;
}

.comp-stats {
    display: flex;
    gap: 12px;
}

.comp-stat {
    flex: 1;
    text-align: center;
    padding: 10px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
}

.comp-stat span {
    display: block;
    font-size: 10px;
    color: var(--text-muted);
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.comp-stat strong {
    font-size: 14px;
    color: var(--text-primary);
}

.risk-high { color: var(--danger) !important; }
.risk-medium { color: var(--warning) !important; }

.comp-strengths, .comp-weaknesses {
    padding: 14px 24px 18px;
    border-top: 1px solid var(--border-subtle);
}

.strength-label, .weakness-label {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.strength-label { color: var(--success); }
.weakness-label { color: var(--danger); }

.strength-tag, .weakness-tag {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 500;
    margin: 2px 4px 2px 0;
}

.strength-tag {
    background: rgba(16, 185, 129, 0.1);
    color: var(--success);
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.weakness-tag {
    background: rgba(239, 68, 68, 0.08);
    color: rgba(239, 68, 68, 0.7);
    border: 1px solid rgba(239, 68, 68, 0.15);
}

/* Comparison Table Enhancements */
.comparison-table .col-sunmart {
    background: rgba(232, 97, 26, 0.06) !important;
    font-weight: 600;
    color: var(--sun-orange-light) !important;
}

.comparison-table thead .col-sunmart {
    background: rgba(232, 97, 26, 0.15) !important;
    color: var(--sun-orange) !important;
}

.comparison-table .highlight-row td {
    background: rgba(232, 97, 26, 0.04);
    border-top: 1px solid rgba(232, 97, 26, 0.2);
    border-bottom: 1px solid rgba(232, 97, 26, 0.2);
}

/* Strategy VS Cards */
.strategy-vs-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.strategy-vs-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 16px;
    overflow: hidden;
    transition: all var(--transition-normal);
}

.strategy-vs-card:hover {
    border-color: var(--sun-orange);
    transform: translateY(-3px);
}

.vs-header {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px 24px;
    background: rgba(255, 255, 255, 0.02);
    border-bottom: 1px solid var(--border-subtle);
}

.vs-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--sun-orange), var(--sun-orange-dark));
    color: white;
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 800;
    border-radius: 10px;
    flex-shrink: 0;
}

.vs-badge-oxxo {
    background: linear-gradient(135deg, #DC2626, #991B1B);
}

.vs-header h4 {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 700;
}

.vs-body {
    padding: 20px 24px;
}

.vs-threat {
    margin-bottom: 16px;
    padding: 14px;
    background: rgba(239, 68, 68, 0.05);
    border-radius: 10px;
    border-left: 3px solid var(--danger);
}

.vs-threat strong {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--danger);
    margin-bottom: 6px;
}

.vs-threat p {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.5;
}

.vs-action {
    padding: 14px;
    background: rgba(16, 185, 129, 0.05);
    border-radius: 10px;
    border-left: 3px solid var(--success);
}

.vs-action strong {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--success);
    margin-bottom: 8px;
}

.vs-action ul {
    list-style: none;
    padding: 0;
}

.vs-action li {
    padding: 5px 0;
    padding-left: 16px;
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.5;
    position: relative;
}

.vs-action li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success);
    font-weight: 700;
    font-size: 11px;
}

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

@media (max-width: 1024px) {
    .sidebar {
        transform: translateX(-100%);
    }

    .sidebar.open {
        transform: translateX(0);
    }

    .sidebar-close {
        display: block;
    }

    .sidebar-overlay.active {
        display: block;
    }

    .mobile-header {
        display: flex;
    }

    .main-content {
        margin-left: 0;
        padding-top: var(--header-height);
    }

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

    .action-cards-grid,
    .food-strategies,
    .community-grid,
    .digital-actions,
    .competitor-grid,
    .strategy-vs-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .loyalty-tiers {
        grid-template-columns: repeat(2, 1fr);
    }

    .loyalty-features {
        grid-template-columns: repeat(2, 1fr);
    }

    .calendar-grid {
        grid-template-columns: repeat(4, 1fr);
    }

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

    .title-line {
        font-size: 56px;
    }

    .title-accent {
        font-size: 36px;
    }

    .section-container {
        padding: 0 24px;
    }
}

@media (max-width: 768px) {
    .info-grid,
    .foda-grid,
    .sucursales-grid,
    .action-cards-grid,
    .food-strategies,
    .community-grid,
    .digital-actions,
    .gas-actions,
    .budget-grid,
    .dashboard-grid,
    .loyalty-features,
    .competitor-grid,
    .strategy-vs-grid {
        grid-template-columns: 1fr;
    }

    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .loyalty-tiers {
        grid-template-columns: repeat(2, 1fr);
    }

    .calendar-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .title-line {
        font-size: 42px;
        letter-spacing: 4px;
    }

    .title-accent {
        font-size: 28px;
    }

    .title-sub {
        font-size: 16px;
        letter-spacing: 3px;
    }

    .section-number {
        font-size: 48px;
    }

    .section-title {
        font-size: 26px;
    }

    .section {
        padding: 50px 0;
    }

    .hero-section {
        padding: 40px 20px;
    }

    .total-amount {
        font-size: 28px;
    }

    .qw-item {
        flex-wrap: wrap;
    }

    .qw-meta {
        flex-direction: row;
        width: 100%;
        justify-content: flex-end;
        padding-top: 8px;
        border-top: 1px solid var(--border-subtle);
    }

    .formula {
        font-size: 12px;
        padding: 16px;
    }
}

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

    .loyalty-tiers {
        grid-template-columns: 1fr;
    }

    .hero-stats {
        grid-template-columns: 1fr;
    }

    .title-line {
        font-size: 32px;
    }

    .title-accent {
        font-size: 22px;
    }
}
