/* Global Styles */
:root {
    --primary-red: #D32F2F;
    --dark-gray: #212121;
    --medium-gray: #424242;
    --light-gray: #F5F5F5;
    --white: #FFFFFF;
    --text-dark: #333333;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Roboto', sans-serif;
    /* Fallback until font is loaded or if not using Google Fonts */
    background-color: var(--light-gray);
    color: var(--text-dark);
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* Header */
header {
    background-color: var(--dark-gray);
    color: var(--white);
    padding: 1rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.logo-text span {
    color: var(--primary-red);
}

nav ul {
    display: flex;
    gap: 20px;
}

nav a {
    color: var(--white);
    font-weight: 500;
    transition: color 0.3s;
}

nav a:hover {
    color: var(--primary-red);
}

.btn-whatsapp {
    background-color: #25D366;
    color: var(--white);
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: background-color 0.3s;
}

.btn-whatsapp:hover {
    background-color: #128C7E;
}

/* Hero Section - REMOVED */

/* Quick Catalog - REMOVED */

/* About Us */
.about-section {
    padding: 4rem 5%;
    background-color: var(--dark-gray);
    color: var(--white);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
}

.about-text {
    flex: 1;
    min-width: 300px;
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--primary-red);
}

.about-text p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    color: #E0E0E0;
}

.about-image {
    flex: 1;
    min-width: 300px;
    border-radius: 10px;
    overflow: hidden;
}

.about-image img {
    width: 100%;
    display: block;
}

/* Footer */
footer {
    background-color: #121212;
    color: #BDBDBD;
    padding: 3rem 5% 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 30px;
}

.footer-col h3 {
    color: var(--white);
    margin-bottom: 20px;
    border-left: 3px solid var(--primary-red);
    padding-left: 10px;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col i {
    color: var(--primary-red);
    margin-right: 10px;
    width: 20px;
    text-align: center;
}

.map-container {
    height: 200px;
    border-radius: 5px;
    overflow: hidden;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #333;
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {
    header {
        flex-direction: column;
        gap: 15px;
    }

    nav ul {
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .btn-whatsapp span {
        display: inline;
        /* Keep text on mobile for emphasis per request */
    }
}