:root {
    --primary: #b45309;
    --primary-hover: #92400e;
    --primary-light: #fffbeb;
    --dark: #1c1917;
    --muted: #57534e;
    --border: #e7e5e4;
    --bg: #fafaf9;
    --white: #ffffff;
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 24px;
    --shadow: 0 10px 25px -5px rgba(28, 25, 23, 0.08);
    --shadow-hover: 0 20px 35px -10px rgba(180, 83, 9, 0.18);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background-color: var(--bg);
    color: var(--dark);
    line-height: 1.6;
}

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

/* Header */
.header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 16px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.brand-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, #b45309, #d97706);
    color: var(--white);
    font-weight: 800;
    font-size: 20px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(180, 83, 9, 0.3);
}

.brand-info h1 {
    font-size: 16px;
    font-weight: 800;
    color: var(--dark);
}

.brand-info p {
    font-size: 11px;
    font-weight: 600;
    color: var(--muted);
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 24px;
}

.nav-links a {
    text-decoration: none;
    color: var(--dark);
    font-size: 14px;
    font-weight: 600;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: var(--primary);
}

.btn-nav-primary {
    background: var(--primary);
    color: var(--white) !important;
    padding: 10px 20px;
    border-radius: var(--radius-sm);
    box-shadow: 0 4px 12px rgba(180, 83, 9, 0.25);
}

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

/* Hero Section */
.hero {
    position: relative;
    padding: 80px 0;
    background: linear-gradient(135deg, #fafaf9 0%, #fffbeb 100%);
    border-bottom: 1px solid var(--border);
}

.hero-content {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 48px;
    align-items: center;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--white);
    color: var(--primary);
    font-size: 12px;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 20px;
    margin-bottom: 20px;
    border: 1px solid var(--border);
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
}

.hero-title {
    font-size: 42px;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.hero-title span {
    color: var(--primary);
}

.hero-description {
    font-size: 16px;
    color: var(--muted);
    margin-bottom: 32px;
}

.hero-ctas {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-hero {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 26px;
    border-radius: var(--radius-md);
    font-weight: 700;
    text-decoration: none;
    transition: all 0.25s ease;
}

.btn-wa {
    background: #25d366;
    color: #042e11;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.25);
}

.btn-wa:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.35);
}

.btn-mail {
    background: var(--white);
    color: var(--dark);
    border: 1px solid var(--border);
}

.btn-mail:hover {
    border-color: var(--primary);
    color: var(--primary);
}

/* Hero Card */
.hero-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.hero-card-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.hero-card-body {
    padding: 24px;
}

.hero-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--border);
    padding-bottom: 12px;
    margin-bottom: 16px;
}

.card-tag {
    font-size: 12px;
    font-weight: 700;
    color: var(--muted);
    text-transform: uppercase;
}

.status-online {
    color: #22c55e;
    font-size: 12px;
    font-weight: 700;
}

.stat-item {
    margin-bottom: 14px;
}

.stat-label {
    font-size: 12px;
    color: var(--muted);
    font-weight: 600;
}

.stat-value {
    font-size: 14px;
    font-weight: 700;
    color: var(--dark);
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 2px;
}

.check-icon {
    color: var(--primary);
}

/* Servicios */
.services-section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 48px;
}

.section-title h2 {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 8px;
}

.section-title p {
    color: var(--muted);
}

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

.card-item {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.card-item:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary);
}

.card-image-wrapper {
    position: relative;
    height: 200px;
    overflow: hidden;
}

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

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

.card-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: rgba(28, 25, 23, 0.8);
    backdrop-filter: blur(4px);
    color: var(--white);
    font-size: 11px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
}

.card-content {
    padding: 24px;
}

.card-content h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
}

.card-content p {
    font-size: 14px;
    color: var(--muted);
    margin-bottom: 20px;
}

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

.pills span {
    background: var(--bg);
    color: var(--muted);
    font-size: 12px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 6px;
    border: 1px solid var(--border);
}

/* Catálogo */
.catalog-section {
    padding: 80px 0;
    background: var(--white);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

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

.product-card {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary);
}

.product-image-wrapper {
    position: relative;
    height: 220px;
    overflow: hidden;
    background: var(--white);
}

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

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

.product-content {
    padding: 22px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-content h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
}

.product-content p {
    font-size: 13.5px;
    color: var(--muted);
    margin-bottom: 16px;
    flex-grow: 1;
}

.product-price {
    font-size: 20px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 16px;
}

.product-price small {
    display: block;
    font-size: 11px;
    font-weight: 700;
    color: var(--muted);
    text-transform: uppercase;
    margin-top: 2px;
}

.btn-buy {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 12px;
    background: #25d366;
    color: #042e11;
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.2s ease;
}

.btn-buy:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 18px rgba(37, 211, 102, 0.3);
}

/* Sección Nosotros */
.about-section {
    padding: 80px 0;
}

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

.about-text h2 {
    font-size: 32px;
    font-weight: 800;
    margin: 16px 0;
    color: var(--dark);
    letter-spacing: -0.5px;
}

.about-text p {
    color: var(--muted);
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 24px;
}

.about-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.about-list li {
    font-size: 14px;
    color: var(--dark);
    line-height: 1.5;
}

.about-image img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
}

/* Contacto */
.contact-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #1c1917, #292524);
}

.contact-box {
    max-width: 650px;
    margin: 0 auto;
    background: var(--white);
    padding: 48px 40px;
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 50px -15px rgba(0,0,0,0.4);
    text-align: center;
}

.contact-box h2 {
    font-size: 28px;
    color: var(--dark);
    margin-bottom: 10px;
    font-weight: 800;
}

.contact-box > p {
    color: var(--muted);
    font-size: 15px;
    margin-bottom: 32px;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.btn-contact {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 16px;
    border-radius: var(--radius-md);
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.2s ease;
    border: 1px solid var(--border);
}

.btn-contact-wa {
    background: #25d366;
    color: #042e11;
    border: none;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.25);
}

.btn-contact-wa:hover {
    transform: translateY(-2px);
}

.btn-contact-secondary {
    background: var(--bg);
    color: var(--dark);
}

.btn-contact-secondary:hover {
    border-color: var(--primary);
    color: var(--primary);
}

/* Footer */
.footer {
    background: var(--dark);
    padding: 32px 0;
    text-align: center;
    color: #a8a29e;
    font-size: 13px;
}

/* Responsive */
@media (max-width: 900px) {
    .hero-content, .about-grid {
        grid-template-columns: 1fr;
    }
    .services-grid, .catalog-grid {
        grid-template-columns: 1fr;
    }
    .hero-title {
        font-size: 32px;
    }
}

@media (max-width: 600px) {
    .nav-links {
        gap: 12px;
    }
    .nav-links a:not(.btn-nav-primary) {
        display: none;
    }
}
