* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #fffaf3;
    color: #4a2c2a;
}

/* CONTAINER */
.container {
    width: 90%;
    max-width: 1100px;
    margin: auto;
}

/* HEADER */
header {
    background: #fff3e6;
    padding: 20px 0;
    border-bottom: 2px solid #f2d3b1;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    color: #c46a2e;
    font-weight: 700;
}

.btn-outline {
    display: inline-block;
    margin-top: 15px;
    padding: 12px 28px;
    border: 2px solid white;
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    transition: 0.3s ease;
}

.btn-outline:hover {
    background: white;
    color: #c46a2e;
}

nav a {
    margin-left: 20px;
    text-decoration: none;
    color: #4a2c2a;
    font-weight: 500;
}

nav a:hover {
    color: #c46a2e;
}



/* HERO */
.hero {
    background: linear-gradient(rgba(196,106,46,0.75), rgba(196,106,46,0.75)),
                url("mostrador.jpg") center/cover no-repeat;
    color: white;
    padding: 150px 20px;
    text-align: center;
}

.hero h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.hero p {
    max-width: 600px;
    margin: auto;
}

.btn {
    display: inline-block;
    margin-top: 30px;
    padding: 14px 30px;
    background: white;
    color: #c46a2e;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    transition: 0.3s;
}

.btn:hover {
    background: #f2d3b1;
}

/* SECTIONS */
.section {
    padding: 90px 0;
    text-align: center;
}

.section.alt {
    background: #fff3e6;
}

/* GRID PRODUCTOS */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0,0,0,0.05);
    transition: 0.3s;
}

.card:hover {
    transform: translateY(-6px);
}

.card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.card h3 {
    margin: 20px 0 10px;
}

.card p {
    padding: 0 20px 25px;
}

/* ABOUT */
.about {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    text-align: left;
}

.about img {
    width: 100%;
    border-radius: 15px;
}

/* RESEÑAS */
.reviews {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.review {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.05);
}

/* CONTACTO */
.contact {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    text-align: left;
}

/* FOOTER */
footer {
    background: #c46a2e;
    color: white;
    text-align: center;
    padding: 25px 0;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .about,
    .contact {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero h2 {
        font-size: 2rem;
    }
}