/* --- Variables y Estilos Globales --- */
:root {
    --primary-color: #a42424; /* Rojo oscuro */
    --dark-color: #2b2b2b; /* Gris carbón */
    --light-color: #f4f4f4; /* Crema/Blanco hueso */
    --text-color: #333;
    --font-heading: 'Oswald', sans-serif;
    --font-body: 'Roboto', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text-color);
    background-color: var(--white);
    line-height: 1.6;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

h1, h2, h3 {
    font-family: var(--font-heading);
    font-weight: 700;
    text-transform: uppercase;
}

h2 {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 40px;
}

/* --- Header y Navegación --- */
.header {
    background-color: var(--dark-color);
    color: var(--light-color);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--light-color);
    text-decoration: none;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 25px;
}

.nav-links a {
    color: var(--light-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--primary-color);
}

/* --- Hero Section --- */
.hero {
    height: 85vh;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--light-color);
}

.hero-content h1 {
    font-size: 4.5rem;
    margin-bottom: 10px;
}

.hero-content p {
    font-size: 1.2rem;
    max-width: 600px;
    margin-bottom: 30px;
}

.btn {
    background-color: var(--primary-color);
    color: var(--light-color);
    padding: 12px 30px;
    text-decoration: none;
    text-transform: uppercase;
    font-family: var(--font-heading);
    font-weight: 700;
    border-radius: 3px;
    transition: background-color 0.3s ease;
}

.btn:hover {
    background-color: #c53030;
}

/* --- Cuts Section --- */
.cuts-section {
    padding: 80px 20px;
}

.cuts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.cut-card {
    border: 1px solid #ddd;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cut-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.cut-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.cut-card h3 {
    margin-top: 15px;
    font-size: 1.5rem;
    color: var(--primary-color);
}

.cut-card p {
    padding: 0 15px 15px;
    font-size: 0.9rem;
    color: #666;
}

/* --- About Us Section --- */
.about {
    background-color: var(--light-color);
    padding: 80px 0;
}

.about-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.about-image { flex: 1; }
.about-image img { width: 100%; border-radius: 5px; }
.about-text { flex: 1; }
.about-text h2 { text-align: left; }
.quality-list { list-style: none; margin-top: 20px; }
.quality-list li { margin-bottom: 15px; display: flex; align-items: center; }
.quality-list .bx { font-size: 1.5rem; color: var(--primary-color); margin-right: 10px; }

/* --- CTA Section --- */
.cta {
    background-color: var(--dark-color);
    color: var(--light-color);
    padding: 60px 20px;
    text-align: center;
}
.cta h2 { color: var(--light-color); }
.cta p { max-width: 500px; margin: 0 auto 30px; }


/* --- Location Section --- */
.location {
    padding: 80px 20px;
}
.location-content {
    display: flex;
    gap: 40px;
    margin-top: 40px;
}
.location-map { flex: 2; }
.location-map iframe { width: 100%; height: 100%; border-radius: 5px; }
.location-details { flex: 1; }
.location-details h3 { font-size: 1.8rem; margin-bottom: 15px; color: var(--primary-color); }
.location-details p { margin-bottom: 15px; display: flex; align-items: center; }
.location-details .bx { margin-right: 10px; font-size: 1.2rem; }

/* --- Footer --- */
.footer {
    background-color: var(--dark-color);
    color: #aaa;
    padding: 20px 0;
    text-align: center;
}
.footer .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.social-links a { color: #aaa; margin-left: 15px; font-size: 1.5rem; transition: color 0.3s ease; }
.social-links a:hover { color: var(--light-color); }

/* --- Responsive --- */
@media (max-width: 768px) {
    h2 { font-size: 2.2rem; }
    .hero-content h1 { font-size: 3rem; }
    
    .nav-links { display: none; }
    
    .about-content, .location-content {
        flex-direction: column;
    }
}