/* ========== CSS VARIABLES ========== */
:root {
    --primary-red: #B91C1C;
    --primary-red-dark: #991B1B;
    --primary-red-light: #DC2626;
    --accent-red: #EF4444;
    --black: #1F1F1F;
    --dark-gray: #374151;
    --medium-gray: #6B7280;
    --light-gray: #9CA3AF;
    --lighter-gray: #E5E7EB;
    --off-white: #F9FAFB;
    --white: #FFFFFF;
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
    --shadow: 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-xl: 0 20px 25px -5px rgba(0,0,0,0.1), 0 10px 10px -5px rgba(0,0,0,0.04);
    --radius-sm: 8px;
    --radius: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --transition: all 0.3s ease;
}

/* ========== RESET & BASE ========== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--black);
    line-height: 1.6;
    background: var(--off-white);
    overflow-x: hidden;
}

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

/* ========== TYPOGRAPHY ========== */
h1, h2, h3, h4 {
    font-family: 'Bebas Neue', sans-serif;
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: 0.02em;
}

.section-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    text-transform: uppercase;
    color: var(--black);
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--medium-gray);
    margin-top: 0.5rem;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.text-red {
    color: var(--primary-red);
}

.text-outline {
    -webkit-text-stroke: 2px var(--black);
    color: transparent;
}

/* ========== BUTTONS ========== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 14px 32px;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border: none;
    border-radius: var(--radius);
    cursor: pointer;
    transition: var(--transition);
}

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

.btn-primary:hover {
    background: var(--primary-red-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: transparent;
    color: var(--black);
    border: 2px solid var(--black);
}

.btn-secondary:hover {
    background: var(--black);
    color: var(--white);
}

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

.btn-white:hover {
    background: var(--off-white);
    transform: translateY(-2px);
}

/* ========== NAVIGATION ========== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--lighter-gray);
    transition: var(--transition);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.logo img {
    height: 50px;
    width: auto;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
    list-style: none;
}

.nav-link {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--dark-gray);
    text-decoration: none;
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--primary-red);
}

.nav-cta {
    background: var(--primary-red);
    color: var(--white) !important;
    padding: 10px 20px;
    border-radius: var(--radius-sm);
}

.nav-cta:hover {
    background: var(--primary-red-dark);
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.hamburger {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--black);
    position: relative;
    transition: var(--transition);
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 2px;
    background: var(--black);
    transition: var(--transition);
}

.hamburger::before {
    top: -7px;
}

.hamburger::after {
    top: 7px;
}

/* ========== HERO SECTION ========== */
.hero {
    min-height: 100vh;
    padding-top: 100px;
    background: linear-gradient(135deg, var(--white) 0%, var(--off-white) 100%);
    position: relative;
    display: flex;
    align-items: center;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--primary-red);
    color: var(--white);
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.hero-title {
    font-size: clamp(3rem, 8vw, 6rem);
    line-height: 0.95;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--medium-gray);
    margin-bottom: 2rem;
    max-width: 400px;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-image-wrapper {
    position: relative;
}

.hero-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
}

.quality-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--black);
    color: var(--white);
    padding: 20px 30px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.quality-badge::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 10px solid var(--black);
}

.badge-label {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 4px;
}

.badge-text {
    display: block;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.25rem;
    line-height: 1.2;
}

.badge-text .text-red {
    color: var(--accent-red);
}

.hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    line-height: 0;
}

/* ========== FEATURES SECTION ========== */
.features {
    padding: 80px 0;
    background: var(--off-white);
}

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

.feature-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

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

.feature-icon {
    width: 70px;
    height: 70px;
    background: var(--primary-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.feature-icon i {
    font-size: 1.75rem;
    color: var(--white);
}

.feature-title {
    font-size: 1.5rem;
    color: var(--black);
    margin-bottom: 0.75rem;
}

.feature-desc {
    color: var(--medium-gray);
    font-size: 0.95rem;
}

/* ========== PRODUCTS SECTION ========== */
.products {
    padding: 80px 0;
    background: var(--white);
}

.products-showcase {
    max-width: 900px;
    margin: 0 auto;
}

.product-main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    align-items: stretch;
    background: var(--off-white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    min-height: 500px;
}

.product-image-portrait {
    position: relative;
    overflow: hidden;
    background: var(--off-white);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
}

.product-image-portrait img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.product-info {
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.product-tag {
    display: inline-block;
    background: var(--primary-red);
    color: var(--white);
    padding: 6px 14px;
    border-radius: var(--radius-sm);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.product-name {
    font-size: 2.5rem;
    color: var(--black);
    margin-bottom: 1rem;
}

.product-desc {
    color: var(--medium-gray);
    margin-bottom: 1.5rem;
}

.product-features {
    list-style: none;
    margin-bottom: 2rem;
}

.product-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: var(--dark-gray);
    font-weight: 500;
}

.product-features i {
    color: var(--primary-red);
}

/* ========== DELIVERY SECTION ========== */
.delivery {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--primary-red-dark) 100%);
    text-align: center;
    color: var(--white);
}

.delivery-badge {
    width: 100px;
    height: 100px;
    background: var(--white);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.delivery-badge i {
    font-size: 3rem;
    color: var(--primary-red);
}

.delivery-title {
    font-size: clamp(3rem, 6vw, 5rem);
    color: var(--white);
    margin-bottom: 0.5rem;
}

.delivery-subtitle {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.delivery-subtitle strong {
    font-size: 2rem;
    display: block;
    color: #FCD34D;
}

.delivery-desc {
    font-size: 1.125rem;
    opacity: 0.9;
    margin-bottom: 2rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* ========== LOCATIONS SECTION ========== */
.locations {
    padding: 80px 0;
    background: var(--off-white);
}

.locations-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.location-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

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

.location-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
}

.location-icon i {
    font-size: 1.5rem;
    color: var(--white);
}

.location-name {
    font-size: 2rem;
    color: var(--black);
    margin-bottom: 0.25rem;
}

.location-address {
    color: var(--medium-gray);
    margin-bottom: 1.25rem;
}

.location-phones {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.phone-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: var(--primary-red);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

.phone-link:hover {
    color: var(--primary-red-dark);
}

/* ========== CONTACT SECTION ========== */
.contact {
    padding: 80px 0;
    background: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.contact-card {
    background: var(--off-white);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    text-align: center;
    transition: var(--transition);
}

.contact-card:hover {
    box-shadow: var(--shadow-lg);
}

.contact-card.whatsapp {
    background: #DCFCE7;
}

.contact-card.phone {
    background: #FEE2E2;
}

.contact-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
}

.whatsapp .contact-icon {
    background: #22C55E;
}

.phone .contact-icon {
    background: var(--primary-red);
}

.contact-icon i {
    font-size: 2rem;
    color: var(--white);
}

.contact-title {
    font-size: 1.75rem;
    color: var(--black);
    margin-bottom: 0.75rem;
}

.contact-desc {
    color: var(--medium-gray);
    margin-bottom: 1.5rem;
}

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

.contact-phones p {
    color: var(--dark-gray);
    margin-bottom: 0.5rem;
}

.contact-phones .mt-2 {
    margin-top: 1rem;
}

.wa-link {
    display: block;
    color: #22C55E;
    font-weight: 600;
    text-decoration: none;
    margin-bottom: 0.25rem;
    transition: var(--transition);
}

.wa-link:hover {
    color: #16A34A;
}

.wa-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: #22C55E;
    color: var(--white) !important;
    padding: 14px 28px;
    border-radius: var(--radius);
    font-size: 1.25rem;
    font-weight: 700;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.wa-primary:hover {
    background: #16A34A;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.wa-main-number {
    margin-bottom: 0.75rem;
}

.contact-note {
    color: var(--medium-gray);
    font-size: 0.875rem;
    font-style: italic;
}

.text-muted {
    color: var(--light-gray);
    margin: 0 0.5rem;
}

/* ========== FOOTER ========== */
.footer {
    background: var(--black);
    color: var(--white);
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo {
    height: 60px;
    margin-bottom: 1rem;
}

.footer-tagline {
    color: var(--light-gray);
    font-size: 0.95rem;
    max-width: 300px;
}

.footer-links h4,
.footer-contact h4 {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: var(--light-gray);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--white);
}

.footer-contact p {
    margin-bottom: 0.75rem;
    color: var(--light-gray);
}

.footer-contact a {
    color: var(--white);
    text-decoration: none;
}

.footer-contact i {
    color: var(--accent-red);
    margin-right: 0.5rem;
    width: 20px;
}

.footer-bottom {
    border-top: 1px solid var(--dark-gray);
    padding-top: 1.5rem;
    text-align: center;
}

.footer-bottom p {
    color: var(--light-gray);
    font-size: 0.875rem;
}

.footer-motto {
    margin-top: 0.5rem;
    font-weight: 600;
}

/* ========== RESPONSIVE DESIGN ========== */
@media (max-width: 992px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .hero-content {
        order: 1;
    }

    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }

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

    .quality-badge {
        right: 10px;
        bottom: 10px;
    }

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

    .product-main {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .product-image-portrait {
        min-height: 400px;
        padding: 20px;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .nav-toggle {
        display: block;
    }

    .nav-menu {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
        border-bottom: 1px solid var(--lighter-gray);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: var(--transition);
    }

    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .features-grid,
    .locations-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .quality-badge {
        position: relative;
        right: auto;
        bottom: auto;
        margin-top: 1rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .footer-tagline {
        max-width: 100%;
    }

    .hero-image img {
        height: 350px;
    }
}

@media (max-width: 480px) {
    .btn {
        padding: 12px 24px;
        font-size: 0.9rem;
    }

    .hero-cta {
        flex-direction: column;
    }

    .feature-card,
    .location-card,
    .contact-card {
        padding: 1.5rem;
    }

    .product-info {
        padding: 1.5rem;
    }

    .product-name {
        font-size: 1.75rem;
    }
}
