/* =====================================
   RESET Y BASE
===================================== */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: #FFF6F0;
    color: #2E2E2E;
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: #FF6B35;
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: #FFB627;
    text-decoration: underline;
}

h1, h2, h3 {
    color: #FF6B35;
    font-weight: 800;
}


/* =====================================
   HEADER
===================================== */
header {
    background: linear-gradient(135deg, #FFE3D8, #FFF6F0);
    text-align: center;
    padding: 60px 20px 40px;
    animation: fadeIn 1s ease-out;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.logo {
    width: 110px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 6px rgba(0,0,0,0.1));
    transition: transform 0.3s ease;
}


.logo:hover {
    transform: scale(1.05);
}

.slogan {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.btn {
    background-color: #FF6B35;
    color: #fff;
    padding: 12px 25px;
    border-radius: 10px;
    font-weight: 600;
    display: inline-block;
    transition: background-color 0.3s ease;
}

.btn:hover {
    background-color: #FFB627;
    color: #2E2E2E;
}


/* =====================================
   SECCIONES
===================================== */
section {
    padding: 60px 20px;
    max-width: 1200px;
    margin: auto;
}

h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
}


/* =====================================
   SERVICIOS
===================================== */
.servicios-lista {
    list-style: none;
    padding-left: 0;
    margin-top: 20px;
}

.servicios-lista li {
    margin-bottom: 16px;
    font-size: 1rem;
}


/* =====================================
   CATÁLOGO DE PRODUCTOS
===================================== */
#catalogo .topbar {
    text-align: center;
    margin-bottom: 40px;
}

#catalogo .topbar p {
    font-size: 1.1rem;
    color: #555;
}

.productos-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    background-color: #FFE3D8;
    padding: 40px 20px;
    border-radius: 12px;
}

.producto {
    background-color: #FFF6F0;
    border-radius: 16px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 4px 16px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.producto:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

.producto img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 15px;
}

.producto h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.producto p {
    font-size: 0.95rem;
    color: #333;
    margin-bottom: 20px;
}

.producto .btn {
    background-color: #FF6B35;
    color: #fff;
    padding: 10px 20px;
    font-weight: 600;
    border-radius: 10px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.producto .btn:hover {
    background-color: #FFB627;
    color: #2E2E2E;
}


/* =====================================
   CONTACTO
===================================== */
#contacto .contacto-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
    align-items: center;
}

#contacto .contacto-grid div {
    flex: 1 1 300px;
}

.qr {
    width: 140px;
    border-radius: 8px;
}


/* =====================================
   FOOTER
===================================== */
footer {
    background-color: #FFE3D8;
    color: #555;
    text-align: center;
    padding: 20px;
    font-size: 0.85rem;
    margin-top: 40px;
}


/* =====================================
   ANIMACIONES
===================================== */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-20px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* =====================================
   NOSOTROS
===================================== */
#nosotros {
    background-color: #FFF6F0;
    padding: 60px 20px;
    color: #2E2E2E;
    font-family: 'Inter', sans-serif;
    max-width: 1000px;
    margin: auto;
}

#nosotros .topbar {
    text-align: center;
    margin-bottom: 40px;
}

#nosotros h2 {
    font-size: 2.2rem;
    color: #FF6B35;
    font-weight: 800;
    margin-bottom: 10px;
}

#nosotros p {
    font-size: 1.05rem;
    margin-bottom: 20px;
    line-height: 1.8;
    color: #333;
}
