* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #0B192C;
    --secondary-color: #1E3E62;
    --accent-color: #D4AF37;
    --text-dark: #1A1A1A;
    --text-light: #F5F7F8;
    --bg-light: #FAFAFA;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Montserrat', sans-serif;
    --transition-smooth: all 0.3s ease-in-out;
}

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    background-color: #ffffff;
    line-height: 1.6;
}

.container {
    width: 88%;
    max-width: 1200px;
    margin: 0 auto;
}

.text-center { text-align: center; }

.grid-2 {
    display: flex;
    gap: 40px;
    align-items: center;
}
.grid-2 > div {
    flex: 1;
    min-width: 0;
}

.section-tag {
    display: inline-block;
    color: var(--accent-color);
    font-size: 0.9rem;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 10px;
}
.section-title {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 25px;
    font-weight: 700;
}

.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 4px;
    font-weight: 600;
    text-decoration: none;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition-smooth);
}
.btn-primary {
    background-color: var(--accent-color);
    color: var(--primary-color);
}
.btn-primary:hover {
    background-color: #bfa030;
    transform: translateY(-2px);
}
.btn-secondary {
    background-color: transparent;
    color: var(--text-light);
    border: 2px solid var(--text-light);
}
.btn-secondary:hover {
    background-color: var(--text-light);
    color: var(--primary-color);
}

.main-header {
    background-color: var(--primary-color);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 3px solid var(--accent-color);
}
.header-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.logo h1 {
    font-family: var(--font-heading);
    color: var(--text-light);
    font-size: 1.6rem;
}
.logo h1 span {
    color: var(--accent-color);
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-weight: 400;
}
.navbar ul {
    list-style: none;
    display: flex;
    align-items: center;
}
.navbar ul li { margin-left: 25px; }
.navbar ul li a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition-smooth);
}
.navbar ul li a:hover,
.navbar ul li a.active { color: var(--accent-color); }
.navbar ul li a.btn-nav {
    background-color: var(--secondary-color);
    padding: 8px 18px;
    border-radius: 4px;
    border: 1px solid var(--accent-color);
}
.navbar ul li a.btn-nav:hover {
    background-color: var(--accent-color);
    color: var(--primary-color);
}

.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 26px;
    height: 20px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}
.hamburger span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--text-light);
    border-radius: 2px;
    transition: var(--transition-smooth);
}
.hamburger.active span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }

.hero-section {
    background-image: url('https://images.unsplash.com/photo-1616594039964-ae9021a400a0?auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    padding: 140px 0;
    position: relative;
    text-align: center;
}
.hero-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: linear-gradient(rgba(11,25,44,0.85), rgba(30,62,98,0.85));
}
.hero-content {
    position: relative;
    z-index: 2;
    color: var(--text-light);
}
.hero-title {
    font-family: var(--font-heading);
    font-size: 3.2rem;
    line-height: 1.2;
    margin-bottom: 20px;
}
.hero-description {
    font-size: 1.1rem;
    max-width: 750px;
    margin: 0 auto 35px auto;
    color: #cbd5e0;
}
.hero-buttons .btn { margin: 0 10px; }

.about-section {
    padding: 80px 0;
    background-color: #ffffff;
}
.about-img-box {
    position: relative;
    padding-right: 20px;
}
.about-img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}
.experience-badge {
    position: absolute;
    bottom: -10px;
    right: 10px;
    background-color: var(--primary-color);
    color: var(--text-light);
    padding: 15px 25px;
    border-left: 4px solid var(--accent-color);
    border-radius: 4px;
}
.experience-badge h3 { color: var(--accent-color); font-size: 1.2rem; }

.stats-grid {
    margin-top: 35px;
    display: flex;
}
.stat-card {
    flex: 1;
    text-align: center;
    background: var(--bg-light);
    padding: 20px;
    border: 1px solid #e2e8f0;
    border-radius: 4px;
}
.stat-card:not(:last-child) { border-right: none; }
.stat-number {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--secondary-color);
    display: block;
}
.stat-text {
    font-size: 0.85rem;
    font-weight: 600;
    color: #718096;
}

.catalog-section {
    padding: 80px 0;
    background-color: var(--bg-light);
}
.product-grid {
    display: flex;
    gap: 20px;
    margin-top: 20px;
}
.product-card {
    flex: 1;
    background-color: #ffffff;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    border: 1px solid #e2e8f0;
}
.product-img-container {
    position: relative;
    height: 250px;
    overflow: hidden;
}
.product-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}
.product-card:hover .product-img-container img { transform: scale(1.05); }
.product-badge {
    position: absolute;
    top: 15px; left: 15px;
    background-color: var(--accent-color);
    color: var(--primary-color);
    padding: 4px 10px;
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: 3px;
    text-transform: uppercase;
}
.product-info { padding: 25px; text-align: left; }
.product-info h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--primary-color);
}
.product-info p {
    font-size: 0.85rem;
    color: #4a5568;
    margin-bottom: 20px;
}
.btn-view-details {
    width: 100%;
    background-color: transparent;
    border: 1px solid var(--accent-color);
    color: var(--primary-color);
    padding: 10px 0;
    font-weight: 600;
    cursor: pointer;
    border-radius: 4px;
    transition: var(--transition-smooth);
}
.btn-view-details:hover {
    background-color: var(--accent-color);
    color: var(--primary-color);
}

.logistics-section {
    padding: 80px 0;
    background-color: var(--secondary-color);
}
.logistics-desc {
    color: #e2e8f0;
    max-width: 600px;
    margin: 0 auto 50px auto;
}
.route-flex {
    display: flex;
    align-items: center;
    justify-content: center;
}
.route-step {
    flex: 1;
    max-width: 280px;
    color: #ffffff;
    background-color: rgba(255,255,255,0.05);
    padding: 30px 20px;
    border-radius: 6px;
    border-bottom: 3px solid var(--accent-color);
}
.route-arrow {
    font-size: 1.8rem;
    color: var(--accent-color);
    padding: 0 15px;
    flex-shrink: 0;
}
.route-icon { font-size: 2.5rem; margin-bottom: 15px; }
.route-step h4 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--accent-color);
}
.route-step p { font-size: 0.85rem; color: #cbd5e0; }

.contact-section {
    padding: 80px 0;
    background-color: #ffffff;
}
.contact-info-list { margin-top: 30px; }
.info-item { margin-bottom: 20px; }
.info-icon {
    font-size: 1.5rem;
    float: left;
    margin-right: 15px;
}
.contact-form-box {
    background-color: var(--bg-light);
    padding: 35px;
    border-radius: 6px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 12px rgba(0,0,0,0.02);
}
.form-group { margin-bottom: 20px; }
.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--primary-color);
}
.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #cbd5e0;
    border-radius: 4px;
    font-family: var(--font-body);
    font-size: 0.9rem;
}
.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
}
.btn-block { width: 100%; text-align: center; border: none; }

.main-footer {
    background-color: var(--primary-color);
    color: #a0aec0;
    padding: 30px 0;
    border-top: 1px solid #1e2d3d;
    font-size: 0.9rem;
}
.footer-bottom strong { color: #ffffff; }

/* ===== MEDIA QUERIES ===== */

@media (max-width: 768px) {

    .hamburger { display: flex; }

    .navbar {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--primary-color);
        border-top: 1px solid var(--secondary-color);
        padding: 10px 0;
        z-index: 999;
    }
    .navbar.open { display: block; }
    .navbar ul { flex-direction: column; }
    .navbar ul li { margin: 0; text-align: center; }
    .navbar ul li a {
        display: block;
        padding: 14px 20px;
        font-size: 1rem;
        border-bottom: 1px solid rgba(255,255,255,0.05);
    }
    .navbar ul li a.btn-nav { margin: 10px 20px; border-radius: 4px; }

    .hero-section { padding: 80px 0; }
    .hero-title { font-size: 2rem; }
    .hero-description { font-size: 0.95rem; }
    .hero-buttons { display: flex; flex-direction: column; gap: 12px; align-items: center; }
    .hero-buttons .btn { margin: 0; width: 80%; text-align: center; }

    .grid-2 { flex-direction: column; gap: 30px; }
    .about-img-box { padding-right: 0; }
    .experience-badge { position: static; margin-top: 15px; display: inline-block; }

    .stats-grid { flex-direction: column; gap: 10px; }
    .stat-card:not(:last-child) { border-right: 1px solid #e2e8f0; }

    .product-grid { flex-direction: column; }

    .route-flex { flex-direction: column; gap: 15px; }
    .route-arrow { transform: rotate(90deg); padding: 5px 0; }
    .route-step { max-width: 100%; width: 100%; }

    .section-title { font-size: 1.7rem; }
}

@media (max-width: 480px) {
    .hero-title { font-size: 1.6rem; }
    .section-title { font-size: 1.4rem; }
    .logo h1 { font-size: 1.2rem; }
    .logo h1 span { font-size: 0.9rem; }
    .contact-form-box { padding: 20px; }
}


* { margin: 0; padding: 0; box-sizing: border-box; }
:root {
    --primary-color: #0B192C;
    --secondary-color: #1E3E62;
    --accent-color: #D4AF37;
    --text-dark: #1A1A1A;
    --text-light: #F5F7F8;
    --bg-light: #FAFAFA;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Montserrat', sans-serif;
}
html { scroll-behavior: smooth; }
body {
    font-family: var(--font-body);
    background-color: #ffffff;
    color: var(--text-dark);
    line-height: 1.6;
}
.main-header {
    background-color: var(--primary-color);
    padding: 20px 0;
    border-bottom: 3px solid var(--accent-color);
    position: sticky;
    top: 0;
    z-index: 1000;
}
.container {
    width: 88%;
    max-width: 1200px;
    margin: 0 auto;
}
.header-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.logo h1 {
    font-family: var(--font-heading);
    color: var(--text-light);
    font-size: 1.6rem;
}
.logo h1 span {
    color: var(--accent-color);
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-weight: 400;
}
.back-btn {
    background-color: var(--accent-color);
    color: var(--primary-color);
    padding: 9px 20px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    transition: all 0.3s;
}
.back-btn:hover { background-color: #bfa030; }
.page-hero {
    background-color: var(--primary-color);
    padding: 50px 0;
    text-align: center;
}
.page-hero h2 {
    font-family: var(--font-heading);
    color: var(--text-light);
    font-size: 2.5rem;
    margin-bottom: 10px;
}
.page-hero p { color: #cbd5e0; font-size: 1rem; }
.products-section {
    padding: 60px 0;
    background-color: var(--bg-light);
}
.section-tag {
    display: inline-block;
    color: var(--accent-color);
    font-size: 0.9rem;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 10px;
}
.section-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 40px;
    font-weight: 700;
}
.text-center { text-align: center; }
.product-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    justify-content: center;
}
.product-card {
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    border: 1px solid #e2e8f0;
    width: 320px;
    transition: all 0.3s ease;
}
.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}
.product-img-container {
    position: relative;
    height: 260px;
    overflow: hidden;
}
.product-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}
.product-card:hover .product-img-container img { transform: scale(1.05); }
.color-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    padding: 5px 12px;
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: 3px;
    text-transform: uppercase;
    color: #ffffff;
}
.product-info { padding: 22px; }
.product-info h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    margin-bottom: 8px;
    color: var(--primary-color);
}
.product-info p {
    font-size: 0.82rem;
    color: #4a5568;
    margin-bottom: 5px;
}
.product-info p span {
    font-weight: 600;
    color: var(--secondary-color);
}
.whatsapp-btn {
    display: block;
    text-align: center;
    background-color: #25D366;
    color: #ffffff;
    text-decoration: none;
    padding: 11px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 0.9rem;
    margin-top: 15px;
    transition: all 0.3s;
}
.whatsapp-btn:hover {
    background-color: #1ebd57;
    transform: translateY(-2px);
}
.main-footer {
    background-color: var(--primary-color);
    color: #a0aec0;
    padding: 25px 0;
    text-align: center;
    font-size: 0.9rem;
    border-top: 1px solid #1e2d3d;
}
.main-footer strong { color: #ffffff; }

@media (max-width: 768px) {
    .page-hero h2 { font-size: 1.8rem; }
    .product-card { width: 100%; }
    .logo h1 { font-size: 1.2rem; }
}
