:root {
    /* Colors */
    --color-primary: #1A365D;
    /* Dark Blue */
    --color-primary-light: #2A4365;
    --color-secondary: #E53E3E;
    /* Red */
    --color-accent: #ECC94B;
    /* Yellow */
    --color-text: #2D3748;
    --color-text-light: #718096;
    --color-bg: #FFFFFF;
    --color-bg-alt: #F7FAFC;
    --color-white: #FFFFFF;
    --color-red: #D32F2F;
    --color-blue-dark: #0f2547;
    --color-topbar: #0B1B35;

    /* Fonts */
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 5rem;

    /* Border Radius */
    --radius-sm: 0.25rem;
    --radius-md: 0.5rem;
    --radius-lg: 1rem;
    --radius-full: 9999px;

    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-hover: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);

    /* Transitions */
    --transition: all 0.3s ease;
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

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

body.menu-open {
    overflow: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--color-primary);
    line-height: 1.2;
    margin-bottom: var(--spacing-sm);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

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

/* Utility Classes */
.container {
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 var(--spacing-sm);
}

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

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

.section-desc {
    color: var(--color-text-light);
    font-size: 1.1rem;
    line-height: 1.6;
}

.section {
    padding: var(--spacing-lg) 0;
}

.highlight {
    color: var(--color-secondary);
}

.badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background-color: #EBF8FF;
    color: var(--color-primary);
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    margin-bottom: var(--spacing-sm);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-family: var(--font-body);
    gap: 0.5rem;
    position: relative;
    overflow: hidden;
}

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

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

.btn-secondary {
    background-color: transparent;
    color: var(--color-text);
    border: 1px solid #CBD5E0;
}

.btn-secondary:hover {
    background-color: var(--color-bg-alt);
    border-color: var(--color-text-light);
}

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

.btn-white:hover {
    background-color: #F7FAFC;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

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

.btn-red:hover {
    background-color: #b71c1c;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

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

.btn-white-outline:hover {
    background-color: #f0f0f0;
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

/* Button Shine Effect */
.btn-shine::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right,
            rgba(255, 255, 255, 0) 0%,
            rgba(255, 255, 255, 0.3) 50%,
            rgba(255, 255, 255, 0) 100%);
    transform: skewX(-25deg);
    transition: none;
    animation: shine 3s infinite;
}

@keyframes shine {
    0% {
        left: -100%;
    }

    20% {
        left: 200%;
    }

    100% {
        left: 200%;
    }
}

/* Top Bar */
.top-bar {
    background-color: var(--color-topbar);
    color: #CBD5E0;
    padding: 0.5rem 0;
    font-size: 0.85rem;
    position: relative;
    z-index: 1002;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

body.menu-open .top-bar {
    display: none;
}

@media (max-width: 480px) {
    .top-bar {
        display: none;
    }

    .top-contact {
        flex-direction: column;
        gap: 0.25rem;
        align-items: center;
        width: 100%;
    }

    .top-bar-container {
        padding: 0.5rem 1rem;
        flex-direction: column;
        gap: 0.5rem;
    }

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

.top-bar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-contact {
    display: flex;
    gap: 1.5rem;
}

.top-contact a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #CBD5E0;
}

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

.top-social {
    display: flex;
    gap: 1rem;
}

.top-social a {
    color: #CBD5E0;
}

.top-social a:hover {
    color: var(--color-white);
}

/* Fixed Header Wrapper */
.header-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: #122541;
    /* Match navbar color to cover behind */
}

/* Adjust Main content to not be hidden behind fixed header */
main {
    padding-top: 155px;
    /* Default height for desktop (Top bar + Navbar) */
}

@media (max-width: 768px) {
    main {
        padding-top: 155px;
    }
}

@media (max-width: 480px) {
    main {
        padding-top: 110px;
        /* On small mobile top-bar is hidden, so only Navbar height */
    }
}

/* Navbar */
.navbar {
    position: relative;
    width: 100%;
    background-color: #122541;
    /* Darker blue to match screenshot */
    z-index: 1000;
    box-shadow: none;
    height: 110px;
    /* Increased to fit larger logo */
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

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

@media (min-width: 769px) {
    .navbar-container {
        display: grid;
        grid-template-columns: 1fr auto 1fr;
        align-items: center;
    }

    .logo {
        justify-self: start;
    }

    .nav-menu {
        justify-self: center;
        width: 100%;
        justify-content: center;
    }

    .desktop-only {
        justify-self: end;
    }
}


.logo-img {
    height: 82px;
    /* Updated as requested */
    width: auto;
    object-fit: contain;
}

.navbar .nav-btn {
    padding: 0.45rem 2.8rem;
    border-radius: var(--radius-full);
    font-size: 0.95rem;
    font-weight: 700;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.navbar .nav-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(211, 47, 47, 0.4);
}





.mobile-only {
    display: none;
}

.desktop-only {
    display: inline-flex;
    margin-left: 0;
}

@media (max-width: 768px) {
    .nav-btn.mobile-only {
        display: inline-flex;
        margin-left: 0;
        margin-top: var(--spacing-sm);
        width: 100%;
    }

    .desktop-only {
        display: none;
    }
}

.nav-menu {
    display: flex;
    gap: var(--spacing-md);
}

.nav-link {
    font-weight: 500;
    color: #FFFFFF !important;
    /* Force white text */
    position: relative;
    font-size: 1rem;
    opacity: 0.9;
}

.nav-link:hover,
.nav-link.active {
    opacity: 1;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-secondary);
    transition: width 0.3s ease;
}

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

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--color-white);
}

/* Hero Section */
/* Hero Section */
.hero {
    position: relative;
    padding-top: var(--spacing-lg);
    padding-bottom: var(--spacing-xl);
    background: linear-gradient(135deg, #1A365D 0%, #2A4365 100%);
    /* Dark Blue Gradient */
    overflow: hidden;
    color: var(--color-white);
    z-index: 0;
}

.hero-wave {
    position: absolute;
    bottom: -1px;
    /* Para evitar líneas de separación */
    left: 0;
    width: 100%;
    height: 100px;
    line-height: 0;
    z-index: 5;
}

.hero-wave svg {
    display: block;
    width: 100%;
    height: 100%;
}

.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.2;
    z-index: -1;
}

.hero-container {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: var(--spacing-lg);
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    transform: translateY(-60px);
    /* Aproximadamente 10% del viewport o contenedor */
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: var(--color-white);
    color: var(--color-primary);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 0.875rem;
    margin-bottom: var(--spacing-md);
    box-shadow: var(--shadow-md);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: var(--spacing-sm);
    line-height: 1.1;
    color: var(--color-white);
}

.hero-title .highlight {
    color: var(--color-accent);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #CBD5E0;
    margin-bottom: var(--spacing-md);
    max-width: 550px;
    font-weight: 300;
}

.hero-actions {
    display: flex;
    gap: var(--spacing-sm);
}

.hero-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-img-content {
    max-width: 110%;
    /* Reducido un 10% de 120% */
    width: 110%;
    transform: rotate(-5deg);
    filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.3));
}

/* Animations */
.float-animation {
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* Categories Detailed Section */
.categories-detailed {
    background-color: #f8fafc;
    padding: var(--spacing-xl) 0;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 1rem;
}

.category-card {
    background-color: var(--color-white);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid #f1f5f9;
    display: flex;
    flex-direction: column;
}

.category-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    border-color: rgba(211, 47, 47, 0.1);
}

.category-img-wrapper {
    width: 100%;
    height: 100%;
    padding: 0.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
}

.category-img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.5s ease;
}

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

.category-body {
    padding: 1.5rem 2rem 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.category-name {
    font-size: 1.5rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 0.75rem;
}

.category-description {
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.category-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #f1f5f9;
    padding-top: 1.25rem;
}

.product-qty {
    font-size: 0.85rem;
    color: #94a3b8;
    font-weight: 500;
}

.category-link {
    color: #1e293b;
    font-weight: 700;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: gap 0.3s ease, color 0.3s ease;
}

.category-link i {
    width: 16px;
    height: 16px;
    stroke-width: 3px;
    transition: transform 0.3s ease;
}

.category-link:hover {
    color: #d32219;
    gap: 0.75rem;
}

.category-link:hover i {
    transform: translateX(3px);
}

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

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

    .category-img-wrapper {
        height: 200px;
    }
}

.categories-detailed .badge-pill {
    background-color: #f1f5f9;
    color: #1e3a8a;
    text-transform: none;
    letter-spacing: normal;
    font-size: 0.9rem;
    padding: 0.4rem 1.2rem;
}

/* About Section */
.about {
    background-color: var(--color-bg-alt);
}

.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
    align-items: center;
}

.about-placeholder {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, #CBD5E0 0%, #E2E8F0 100%);
    position: relative;
    overflow: hidden;
}

.placeholder-text {
    font-size: 1.5rem;
    color: #718096;
    text-align: center;
    padding: 1rem;
}

.feature-list {
    margin-top: var(--spacing-md);
    display: grid;
    gap: var(--spacing-sm);
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    font-weight: 500;
}

.feature-icon {
    color: var(--color-secondary);
    width: 20px;
    height: 20px;
}

/* CTA Section */
.cta-section {
    background-color: var(--color-primary);
    color: var(--color-white);
    text-align: center;
    padding: var(--spacing-xl) 0;
}

.cta-container h2 {
    color: var(--color-white);
    font-size: 2.25rem;
    margin-bottom: var(--spacing-sm);
}

.cta-container p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.125rem;
    margin-bottom: var(--spacing-md);
}

/* Newsletter Section */
.newsletter-section {
    background-color: #d32219;
    /* Vibrant red from brand/image */
    padding: 1.5rem 0;
}

.newsletter-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    /* Espaciado más compacto */
}

.newsletter-left {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    flex-shrink: 0;
}

.newsletter-icon-box {
    width: 50px;
    height: 50px;
    background-color: rgba(255, 255, 255, 0.15);
    /* Semi-transparent circle */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
}

.newsletter-icon-box i {
    width: 24px;
    height: 24px;
    transform: rotate(-15deg);
    /* Slight tilt like the image */
}

.newsletter-text h3 {
    color: var(--color-white);
    margin: 0;
    font-size: 1.5rem;
    font-weight: 700;
}

.newsletter-text p {
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    font-size: 0.95rem;
}

.newsletter-form {
    display: flex;
    gap: 0.75rem;
    max-width: 500px;
    /* Formulario más compacto */
    width: 100%;
}

.newsletter-form input {
    flex-grow: 1;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-full);
    border: 1px solid rgba(255, 255, 255, 0.3);
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--color-white);
    outline: none;
    transition: var(--transition);
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.newsletter-form input:focus {
    background-color: rgba(255, 255, 255, 0.2);
    border-color: var(--color-white);
}

.btn-newsletter {
    background-color: var(--color-white);
    color: #d32219;
    padding: 0.75rem 2rem;
    border-radius: var(--radius-full);
    border: none;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
    white-space: nowrap;
}

.btn-newsletter i {
    width: 18px;
    height: 18px;
}

.btn-newsletter:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Stats Wavy Section */
.stats-section {
    position: relative;
    background-color: #d32219;
    /* Arly Red */
    padding: 120px 0;
    margin: -1px 0;
    overflow: hidden;
}

.stats-wave-top,
.stats-wave-bottom {
    position: absolute;
    left: 0;
    width: 100%;
    height: 100px;
    z-index: 5;
    line-height: 0;
}

.stats-wave-top {
    top: -2px;
    /* Adjusted to hide potential red line */
}

.stats-wave-bottom {
    bottom: -2px;
    /* Adjusted to hide potential red line */
}

.stats-wave-top svg,
.stats-wave-bottom svg {
    display: block;
    width: 100%;
    height: 100%;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    position: relative;
    z-index: 10;
}

.stat-card {
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 3rem 1.5rem;
    text-align: center;
    color: var(--color-white);
    transition: all 0.4s ease;
    min-width: 0;
    /* Prevent grid overflow */
}

.stat-card:hover {
    transform: translateY(-10px);
    background-color: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.stat-icon-box {
    width: 50px;
    height: 50px;
    background-color: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: #ffc107;
    /* Gold color for icons */
}

.stat-icon-box i {
    width: 24px;
    height: 24px;
}

.stat-number {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    line-height: 1;
    color: #ffffff;
}

.stat-label {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    display: block;
}

.stat-sublabel {
    font-size: 0.9rem;
    opacity: 0.9;
    font-weight: 300;
}

@media (max-width: 992px) {
    .newsletter-container {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }

    .newsletter-left {
        flex-direction: column;
    }

    .newsletter-form {
        width: 100%;
    }

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

    .stats-section {
        padding: 80px 0;
    }
}

@media (max-width: 576px) {
    .newsletter-form {
        flex-direction: column;
        border-radius: var(--radius-lg);
    }

    .btn-newsletter {
        justify-content: center;
    }

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

    .stat-card {
        padding: 1.5rem 1rem;
    }

    .stat-number {
        font-size: 1.8rem;
        color: #ffffff;
    }

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

    .stat-sublabel {
        font-size: 0.75rem;
    }
}

/* Footer */
.footer {
    background-color: #0b1421;
    /* Darker navy blue to match image */
    color: var(--color-white);
    padding: var(--spacing-lg) 0 0;
    /* Bottom padding removed for bottom-bar */
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.2fr 1.5fr;
    /* 4 columns */
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
    padding-bottom: var(--spacing-lg);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-logo {
    height: 40px;
    width: auto;
    margin-bottom: var(--spacing-sm);
}

.footer-brand p {
    color: #cbd5e0;
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: var(--spacing-md);
    max-width: 250px;
}

.footer-social {
    display: flex;
    gap: 0.75rem;
}

.footer-social a {
    width: 38px;
    height: 38px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background-color: #d32219;
    border-color: #d32219;
}

.footer-social a i {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.footer-social a:hover i {
    background-color: #ffffff;
    color: #d32219;
    width: 28px;
    height: 28px;
}

.footer-social a i svg {
    width: 16px !important;
    height: 16px !important;
}

.footer h4 {
    color: var(--color-white);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: var(--spacing-md);
}

.footer ul {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer a,
.footer li {
    color: #cbd5e0;
    font-size: 0.95rem;
    transition: var(--transition);
}

.footer a:hover {
    color: var(--color-white);
    padding-left: 5px;
}

.contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
}

.contact-icon {
    color: var(--color-secondary);
    /* Red icon as in image */
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.contact-info {
    display: flex;
    flex-direction: column;
}

.footer-bottom {
    background-color: #080f18;
    /* Slightly darker than main footer */
    padding: var(--spacing-md) 0;
    text-align: center;
    color: #718096;
    font-size: 0.85rem;
}

.bottom-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.footer-bottom-logo {
    height: 30px;
    width: auto;
    opacity: 0.8;
}

.made-in {
    font-weight: 500;
}

.flag-mx {
    color: #48bb78;
    /* Green for MX marker */
    font-weight: 700;
}


/* Distributors Section */
.distributors {
    padding: var(--spacing-xl) 0;
    background-color: #fcfdfe;
    /* Extremely light blue/grey tint */
}

.distributors-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
    align-items: center;
}

.distributors-title {
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: var(--spacing-md);
    color: #1a2433;
}

.distributors-title .text-red {
    color: #d32118;
}

.distributors-desc {
    font-size: 1.125rem;
    color: #64748b;
    margin-bottom: var(--spacing-lg);
    max-width: 480px;
    line-height: 1.6;
}

.btn-round {
    border-radius: var(--radius-full);
}

.distributors-cards {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.dist-card {
    background: #ffffff;
    border: 1px solid #edf2f7;
    border-radius: 20px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.02);
}

.dist-card:hover {
    transform: translateX(12px);
    box-shadow: 0 10px 20px -5px rgba(0, 0, 0, 0.05);
    border-color: #e2e8f0;
}

.dist-icon-box {
    width: 55px;
    height: 55px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.dist-icon-box.bg-blue-soft {
    background-color: #e8ebf5;
    color: #2d3e5d;
}

.dist-icon-box.bg-red-soft {
    background-color: #fceceb;
    color: #d32118;
}

.dist-icon-box.bg-green-soft {
    background-color: #e9f7ef;
    color: #27ae60;
}

.dist-icon-box.bg-orange-soft {
    background-color: #fff7ed;
    color: #ea580c;
}

.dist-icon-box i {
    width: 22px;
    height: 22px;
}

.dist-text h4 {
    margin: 0 0 0.35rem 0;
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a2433;
}

.dist-text p {
    margin: 0;
    font-size: 0.95rem;
    color: #64748b;
}

/* About Us Section */
.about-section {
    background-color: var(--color-white);
    padding: var(--spacing-xl) 0;
}

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

.badge-pill {
    display: inline-block;
    background-color: #fee2e2;
    color: #d32219;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}

.about-header .section-title {
    font-size: 3rem;
    color: #0f172a;
    margin-bottom: 1rem;
    font-weight: 800;
}

.about-header .section-subtitle {
    font-size: 1.1rem;
    color: #64748b;
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: center;
}

.about-image-wrapper {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 2rem;
}

.about-logo-overlay {
    width: 200px;
    height: auto;
    margin-bottom: -40px;
    z-index: 2;
    position: relative;
}

.about-mascot {
    width: 100%;
    max-width: 320px;
    height: auto;
    z-index: 1;
}

.about-text h3 {
    font-size: 2.2rem;
    color: #0f172a;
    font-weight: 800;
    margin-bottom: 2rem;
}

/* Essence Section */
.essence-section {
    background-color: #f1f5f9;
    padding: var(--spacing-xl) 0;
}

.essence-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.essence-card {
    background: var(--color-white);
    padding: 2.5rem 1.5rem;
    border-radius: 20px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid #e2e8f0;
}

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

.essence-icon {
    width: 60px;
    height: 60px;
    background: #eef2ff;
    color: #4f46e5;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

/* Mexico Section */
.mexico-section {
    position: relative;
    padding: var(--spacing-xl) 0;
    background: linear-gradient(rgba(15, 23, 42, 0.9), rgba(15, 23, 42, 0.9)), url('images/mexican_pride_subtle.jpg');
    background-size: cover;
    background-position: center;
    color: var(--color-white);
    text-align: center;
}

.mexi-content {
    max-width: 900px;
    margin: 0 auto;
}

.mexi-badge {
    color: #10b981;
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
    display: block;
}

.mexi-title {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: var(--color-white);
}

/* Vision Section */
.vision-section {
    padding: var(--spacing-xl) 0;
    background-color: var(--color-white);
    text-align: center;
}

.vision-box {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.5rem;
    color: #334155;
    font-style: italic;
    line-height: 1.8;
}

/* Utils */
.mb-huge {
    margin-bottom: 4rem;
}

.text-white {
    color: white !important;
}

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

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

    .mexi-title {
        font-size: 2.5rem;
    }
}

.about-text p {
    color: #475569;
    margin-bottom: 1.25rem;
    line-height: 1.7;
    font-size: 1rem;
}

.about-features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.about-feature {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    background-color: #F8FAFC;
    padding: 1.25rem;
    border-radius: 12px;
    border: 1px solid #F1F5F9;
    transition: var(--transition);
}

.about-feature:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.about-feature-icon {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background-color: #E2E8F0;
    color: #1e293b;
}

.about-feature-text h4 {
    font-size: 1rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 0.35rem;
}

.about-feature-text p {
    font-size: 0.85rem;
    color: #64748b;
    margin-bottom: 0;
    line-height: 1.4;
}

/* Timeline & B2B Styles */
.timeline {
    position: relative;
    max-width: 1000px;
    margin: 4rem auto 0;
    padding: 0 1rem;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background-color: #e2e8f0;
}

.timeline-step {
    position: relative;
    margin-bottom: 3rem;
    display: flex;
    justify-content: flex-end;
    padding-right: 50%;
}

.timeline-step:nth-child(even) {
    justify-content: flex-start;
    padding-right: 0;
    padding-left: 50%;
}

.timeline-content {
    width: 85%;
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow-md);
    border: 1px solid #f1f5f9;
}

.timeline-step::after {
    content: '';
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--color-primary);
    border: 4px solid white;
    z-index: 2;
}

.timeline-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--color-primary);
    opacity: 0.1;
    position: absolute;
    top: 1rem;
    right: 1.5rem;
}

.timeline-step:nth-child(even) .timeline-number {
    right: auto;
    left: 1.5rem;
}

/* Benefit List */
.benefit-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.benefit-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1.5rem;
    background: #f8fafc;
    border-radius: 12px;
}

.benefit-item i {
    color: var(--color-primary);
}

/* Contact Form B2B */
.form-card {
    background: white;
    padding: 3rem;
    border-radius: 24px;
    box-shadow: var(--shadow-lg);
    max-width: 800px;
    margin: 0 auto;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group.full-width {
    grid-column: span 2;
}

.form-group label {
    font-weight: 600;
    font-size: 0.9rem;
    color: #475569;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.75rem 1rem;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    outline: none;
    font-family: inherit;
    transition: var(--transition);
}

.form-group input:focus {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(26, 54, 93, 0.1);
}

.legal-text {
    font-size: 0.8rem;
    color: #94a3b8;
    margin-top: 1rem;
}

.form-message {
    margin-top: 1.5rem;
    padding: 1rem;
    border-radius: 8px;
    font-weight: 600;
    text-align: center;
    display: none;
}

.form-message.success {
    display: block;
    background-color: #d1fae5;
    color: #065f46;
    border: 1px solid #34d399;
}

.form-message.error {
    display: block;
    background-color: #fee2e2;
    color: #991b1b;
    border: 1px solid #f87171;
}

@media (max-width: 768px) {
    .timeline::before {
        left: 20px;
    }

    .timeline-step {
        justify-content: flex-start;
        padding-left: 50px;
        padding-right: 0;
    }

    .timeline-step:nth-child(even) {
        padding-left: 50px;
    }

    .timeline-step::after {
        left: 20px;
    }

    .benefit-list,
    .form-grid {
        grid-template-columns: 1fr;
    }

    .form-group.full-width {
        grid-column: span 1;
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .navbar-container {
        padding: 0 1.5rem;
    }

    .nav-toggle {
        display: block;
        z-index: 10000;
        position: relative;
    }

    .nav-toggle.active i {
        color: var(--color-white) !important;
    }

    body.menu-open .header-wrapper {
        z-index: 10000;
    }

    body.menu-open .navbar {
        background-color: #122541;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background-color: var(--color-white);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: var(--transition);
        box-shadow: var(--shadow-lg);
        padding: 2rem;
        z-index: 1005;
        /* Above everything else except toggle button */
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-link {
        font-size: 1.25rem;
        color: var(--color-primary) !important;
        width: 100%;
        text-align: center;
        padding: 1rem;
        font-weight: 600;
        transition: var(--transition);
    }

    .nav-link::after {
        display: none;
    }

    .nav-link:hover {
        background-color: var(--color-primary);
        color: var(--color-white) !important;
        opacity: 1;
    }

    .hero {
        padding-top: 40px;
        /* Reduced to fix white space */
    }

    .hero-container,
    .about-container,
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .feature-list li {
        justify-content: center;
    }

    .footer-brand,
    .footer-links,
    .footer-contact {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .distributors-container {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }

    .distributors-info {
        text-align: center;
        margin-bottom: var(--spacing-md);
    }

    .distributors-desc {
        margin-left: auto;
        margin-right: auto;
    }

    .distributors-title {
        font-size: 2.5rem;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-image-wrapper {
        order: 2;
    }

    .about-text {
        order: 1;
        text-align: center;
    }

    .about-features-grid {
        grid-template-columns: 1fr;
        text-align: left;
    }
}
