/* RESET GENERAL */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

body {
    background-color: #081412;
    color: #E2E8F0;
    overflow-x: hidden;
}

/* 1. NAVEGACIÓN SUPERIOR */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 5%;
    background: linear-gradient(180deg, #122824 0%, #081412 100%);
    border-bottom: 1px solid #1E3E38;
}

.logo {
    height: 55px;
    border-radius: 50%;
    border: 2px solid #8A9A86;
}

.nav-links a {
    color: #94A3B8;
    text-decoration: none;
    margin: 0 12px;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 1px;
}

.nav-links a:hover, .nav-links a.active {
    color: #00E6A8;
}

.btn-glow {
    border: 1px solid #00E6A8;
    color: #FFFFFF;
    background: rgba(0, 230, 168, 0.1);
    padding: 10px 20px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.8rem;
    box-shadow: 0 0 10px rgba(0, 230, 168, 0.3);
}

/* 2. HERO SECTION */
.hero {
    min-height: 58vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 60px 5%; 
    background: radial-gradient(circle at 70% 50%, #132A26 0%, #071210 100%);
    gap: 30px;
}

.hero-content {
    flex: 1;
    max-width: 50%;
}

.hero-content h1 {
    font-size: 2.2rem;
    font-weight: 800;
    color: #FFFFFF;
    margin-bottom: 20px;
    line-height: 1.2;
    letter-spacing: 0.5px;
}

.hero-content p {
    color: #A0AEC0;
    font-size: 0.95rem;
    margin-bottom: 30px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
}

.btn-solid {
    background: #00875A;
    color: #FFFFFF;
    padding: 12px 24px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.85rem;
}

.btn-outline {
    border: 1px solid #CBD5E1;
    color: #FFFFFF;
    padding: 12px 24px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.85rem;
}

.hero-banner {
    flex: 1;
    display: flex;
    justify-content: center;
}

.banner-img {
    width: 100%;
    max-width: 550px;
    border-radius: 8px;
    border: 1px solid #1E3E38;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

/* 3. BARRA DE MÉTRICAS */
.stats-bar {
    display: flex;
    justify-content: space-around;
    background: #0E1F1C;
    padding: 15px 5%;
    border-top: 1px solid #1E3E38;
    border-bottom: 1px solid #1E3E38;
    color: #94A3B8;
    font-size: 0.9rem;
}

.stats-bar span {
    color: #FFFFFF;
    font-weight: 700;
}

/* 4. TARJETAS DE SERVICIOS */
.services {
    display: flex;
    align-items: center;
    gap: 100px;
    padding: 60px 3%;
    width: 80%;
}

.services-left {
    flex: 0 0 260px;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
}

.services-left h2 {
    font-size: 3rem;
    font-weight: 800;
    letter-spacing: 0.5px;
    margin: 0;
    color: #FFFFFF;
}

.services-right {
    flex: 1;
    display: flex;
    justify-content: flex-start;
}

.services-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
    width: 100%;
}

.card {
    background: linear-gradient(145deg, #112421 0%, #0A1715 100%);
    border: 1px solid #1E3E38;
    padding: 30px 20px;
    border-radius: 8px;
    width: 100%;
    text-align: center;
    box-shadow: inset 0 0 10px rgba(255, 255, 255, 0.02);
}

@media (max-width: 980px) {
    .services {
        flex-direction: column;
        gap: 25px;
    }
    .services-left {
        width: 100%;
    }
    .services-left h2 {
        text-align: left;
    }
}

@media (max-width: 640px) {
    .services-left h2 {
        font-size: 2.4rem;
    }
}

.card:hover {
    border-color: #00E6A8;
}

.card-icon {
    font-size: 2rem;
    margin-bottom: 15px;
}

.card h3 {
    color: #FFFFFF;
    font-size: 1rem;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.card p {
    color: #8194A7;
    font-size: 0.85rem;
}

/* Estilos para la sección Nosotros */
.about-section {
    padding: 60px 20px;
    background-color: #f9fafb;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #1f2937;
    text-align: center;
}

.about-section .container {
    max-width: 1000px;
    margin: 0 auto;
}

.about-section h2 {
    font-size: 2.2rem;
    margin-bottom: 15px;
    color: #111827;
    letter-spacing: 1px;
}

.about-lead {
    font-size: 1.15rem;
    line-height: 1.6;
    color: #4b5563;
    max-width: 750px;
    margin: 0 auto 40px auto;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    text-align: left;
}

.about-item {
    background: #ffffff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.08);
}

.about-item h3 {
    font-size: 1.4rem;
    margin-bottom: 12px;
    color: #2563eb;
}

.about-item p {
    font-size: 1rem;
    line-height: 1.5;
    color: #6b7280;
    margin: 0;
}


/* =========================================
   SECCIÓN SOBRE NOSOTROS - TEMA OSCURO
========================================= */
.about-section {
    background-color: #0b1311; /* Mantiene la misma línea de color oscuro de tu fondo */
    padding: 55px 10px;
    color: #ffffff;
    border-top: 1px solid rgba(255, 255, 255, 0.05); /* Sutil línea separadora */
}

.about-section .container {
    max-width: 1100px;
    margin: 0 auto;
}

.about-section h2 {
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 20px;
    color: #ffffff;
    letter-spacing: 1px;
    font-weight: 800;
}

.about-lead {
    font-size: 1.15rem;
    line-height: 1.6;
    max-width: 750px;
    margin: 0 auto 50px auto;
    text-align: center;
    color: #9ca3af; /* Gris elegante para el texto secundario */
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.about-item {
    background: rgba(255, 255, 255, 0.03); /* Tarjeta translúcida oscura muy sutil */
    border: 1px solid rgba(255, 255, 255, 0.08); /* Borde fino y elegante */
    padding: 35px;
    border-radius: 12px;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.about-item:hover {
    transform: translateY(-5px);
    border-color: #00b074; /* Resalta con tu verde característico al pasar el mouse */
}

.about-item h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #00b074; /* Usa el tono verde brillante de tus botones para los títulos internos */
}

.about-item p {
    font-size: 1rem;
    line-height: 1.6;
    color: #d1d5db; /* Texto legible y suave sobre fondo oscuro */
    margin: 0;
}

/* Galería de imágenes de envíos adaptada al diseño oscuro */
.about-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 50px;
}

.gallery-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.gallery-img:hover {
    transform: scale(1.03);
}

/* ==========================================
   ESTILOS DE LA SECCIÓN DE CATÁLOGO
   ========================================== */

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
}

body {
    background-color: #0b1312;
    color: #ffffff;
}

/* SECCIÓN DE CATÁLOGO / PRODUCTOS */
.catalog-section {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 60px 20px;
    background-color: #0b1312;
}

.catalog-header {
    text-align: center;
    max-width: 800px;
    margin-bottom: 25px;
}

.catalog-header h2 {
    color: #ffffff;
    font-size: 2.2rem;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.catalog-header p {
    color: #a0a0a0;
    font-size: 1rem;
}

/* Filtros */
.catalog-filters {
    display: flex;
    gap: 15px;
    margin-bottom: 40px;
}

.filter-btn {
    background: transparent;
    border: 1px solid #198754;
    color: #ffffff;
    padding: 8px 18px;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.filter-btn.active, .filter-btn:hover {
    background: #198754;
}

/* Grilla de productos */
.catalog-grid {
    display: flex;
    justify-content: center;
    gap: 25px;
    width: 100%;
    max-width: 1200px;
    flex-wrap: wrap;
}

.product-card {
    background: #121f1d;
    border: 1px solid #1f3330;
    border-radius: 12px;
    overflow: hidden;
    flex: 1;
    min-width: 280px;
    max-width: 360px;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    border-color: #198754;
}

.product-image {
    width: 100%;
    height: 220px;
    background: #1a2c28;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-info {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex-grow: 1;
}

.product-info h3 {
    color: #ffffff;
    font-size: 1.15rem;
    letter-spacing: 0.5px;
}

.product-desc {
    color: #b0b0b0;
    font-size: 0.9rem;
    flex-grow: 1;
    line-height: 1.4;
}

.product-price {
    color: #198754;
    font-size: 1.3rem;
    font-weight: bold;
    margin-top: 5px;
}

/* Botón de Amazon */
.btn-amazon {
    display: block;
    text-align: center;
    background-color: #ff9900;
    color: #000000;
    font-weight: bold;
    padding: 12px;
    border-radius: 6px;
    text-decoration: none;
    margin-top: 10px;
    transition: opacity 0.2s;
}

.btn-amazon:hover {
    opacity: 0.9;
}