/* =====================================================
   LAVANDERÍA ALEBRIJE - ESTILOS PRINCIPALES
   ===================================================== */

:root {
    --primary: #0097A7;
    --primary-dark: #00838F;
    --primary-light: #B2EBF2;
    --secondary: #E91E8C;
    --accent: #FFD600;
    --bg-light: #F8FDFE;
    --bg-card: #FFFFFF;
    --text-dark: #1A3A3A;
    --text-medium: #4A6A6A;
    --text-light: #7A9A9A;
    --shadow-soft: 0 4px 20px rgba(0,151,167,0.1);
    --shadow-hover: 0 12px 40px rgba(0,151,167,0.2);
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --transition: all 0.3s ease;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { 
    font-family: 'Nunito', sans-serif; 
    background: var(--bg-light); 
    color: var(--text-dark); 
    line-height: 1.6; 
}
h1,h2,h3,h4,h5,h6 { font-family: 'Fredoka', sans-serif; font-weight: 600; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; }

/* =====================================================
   HEADER & NAVEGACIÓN
   ===================================================== */
header { 
    background: linear-gradient(135deg, var(--primary), var(--primary-dark)); 
    position: fixed; 
    top: 0; 
    left: 0; 
    right: 0; 
    z-index: 1000; 
    box-shadow: var(--shadow-soft); 
}

.header-top { 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    padding: 12px 5%; 
}

.logo { 
    display: flex; 
    align-items: center; 
    gap: 12px; 
    color: white; 
}

.logo-icon { 
    width: 50px; 
    height: 50px; 
    background: linear-gradient(135deg, var(--accent), #FF9800); 
    border-radius: 50%; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    font-size: 24px; 
    animation: logoFloat 3s ease-in-out infinite; 
}

@keyframes logoFloat { 
    0%,100% { transform: translateY(0); } 
    50% { transform: translateY(-5px) rotate(5deg); } 
}

.logo-text { display: flex; flex-direction: column; }
.logo-name { font-family: 'Fredoka', sans-serif; font-size: 1.6rem; font-weight: 700; }
.logo-tagline { font-size: 0.75rem; opacity: 0.9; text-transform: uppercase; letter-spacing: 2px; }

.header-contact { display: flex; align-items: center; gap: 20px; }
.header-phone { color: white; font-weight: 600; }

.btn-whatsapp { 
    display: flex; 
    align-items: center; 
    gap: 8px; 
    background: #25D366; 
    color: white; 
    padding: 10px 20px; 
    border-radius: 50px; 
    font-weight: 600; 
    transition: var(--transition); 
}
.btn-whatsapp:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(37,211,102,0.5); }

nav { padding: 0 5%; }
.nav-list { 
    display: flex; 
    list-style: none; 
    gap: 5px; 
    overflow-x: auto; 
    padding: 10px 0; 
    scrollbar-width: none;
}
.nav-list::-webkit-scrollbar { display: none; }
.nav-list a { 
    display: block; 
    padding: 8px 16px; 
    color: white; 
    font-size: 0.9rem; 
    font-weight: 500; 
    border-radius: var(--radius-sm); 
    transition: var(--transition); 
    white-space: nowrap; 
}
.nav-list a:hover, .nav-list a.active { background: rgba(255,255,255,0.2); }

.mobile-menu-btn { 
    display: none; 
    background: none; 
    border: none; 
    color: white; 
    font-size: 1.5rem; 
    cursor: pointer; 
}

/* =====================================================
   MAIN CONTENT
   ===================================================== */
main { margin-top: 120px; min-height: calc(100vh - 400px); }

/* =====================================================
   SECCIONES
   ===================================================== */
.section { padding: 70px 5%; }
.section-alt { background: white; }
.section-gradient { background: linear-gradient(135deg, var(--primary), var(--primary-dark)); color: white; }
.section-purple { background: linear-gradient(135deg, #9C27B0, var(--primary-dark)); color: white; }

.section-header { text-align: center; margin-bottom: 45px; }
.section-header h1,
.section-header h2 { font-size: 2.3rem; margin-bottom: 12px; }
.section-header p { font-size: 1.05rem; color: var(--text-medium); max-width: 600px; margin: 0 auto; }
.section-gradient .section-header p,
.section-purple .section-header p { color: rgba(255,255,255,0.9); }

.container { max-width: 1300px; margin: 0 auto; }

/* =====================================================
   BOTONES
   ===================================================== */
.btn { 
    display: inline-flex; 
    align-items: center; 
    gap: 10px; 
    padding: 14px 28px; 
    border-radius: 50px; 
    font-family: 'Fredoka', sans-serif; 
    font-size: 1rem; 
    font-weight: 600; 
    transition: var(--transition); 
    cursor: pointer; 
    border: none; 
}
.btn-primary { 
    background: linear-gradient(135deg, var(--primary), var(--primary-dark)); 
    color: white; 
    box-shadow: 0 8px 25px rgba(0,151,167,0.4); 
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 12px 35px rgba(0,151,167,0.5); }
.btn-secondary { background: white; color: var(--primary); box-shadow: var(--shadow-soft); }
.btn-secondary:hover { transform: translateY(-3px); }
.btn-sm { padding: 10px 18px; font-size: 0.85rem; }
.btn-block { width: 100%; justify-content: center; }

/* =====================================================
   HERO
   ===================================================== */
.hero { 
    padding: 60px 5% 80px; 
    background: linear-gradient(180deg, var(--primary-light), var(--bg-light)); 
}
.hero-content { 
    max-width: 1200px; 
    margin: 0 auto; 
    display: grid; 
    grid-template-columns: 1fr 1fr; 
    gap: 50px; 
    align-items: center; 
}
.hero h1 { font-size: 3rem; margin-bottom: 20px; line-height: 1.1; }
.hero h1 span { 
    background: linear-gradient(135deg, var(--primary), var(--secondary)); 
    -webkit-background-clip: text; 
    -webkit-text-fill-color: transparent; 
    background-clip: text; 
}
.hero p { font-size: 1.15rem; color: var(--text-medium); margin-bottom: 25px; }
.hero-badges { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 25px; }
.badge { 
    display: inline-flex; 
    align-items: center; 
    gap: 6px; 
    padding: 8px 16px; 
    background: white; 
    border-radius: 50px; 
    font-size: 0.85rem; 
    font-weight: 600; 
    box-shadow: var(--shadow-soft); 
}
.hero-cta { display: flex; gap: 15px; flex-wrap: wrap; }

.hero-visual { position: relative; }
.hero-image { 
    width: 100%; 
    height: 400px; 
    background: linear-gradient(135deg, var(--primary), #9C27B0); 
    border-radius: var(--radius-lg); 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    font-size: 150px; 
    opacity: 0.9; 
}

.floating-card { 
    position: absolute; 
    background: white; 
    padding: 14px 18px; 
    border-radius: var(--radius-md); 
    box-shadow: var(--shadow-hover); 
    animation: float 4s ease-in-out infinite; 
}
.floating-card.c1 { top: 20px; right: -10px; }
.floating-card.c2 { bottom: 80px; left: -20px; animation-delay: 1s; }
.floating-card.c3 { bottom: -10px; right: 50px; animation-delay: 2s; }
@keyframes float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-12px)} }
.fc-label { font-size: 0.7rem; color: var(--text-light); }
.fc-value { font-family: 'Fredoka', sans-serif; font-size: 1.2rem; font-weight: 700; color: var(--primary); }

/* =====================================================
   TARJETAS DE SERVICIOS
   ===================================================== */
.services-grid { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); 
    gap: 25px; 
}

.service-card { 
    background: var(--bg-light); 
    border-radius: var(--radius-lg); 
    padding: 28px; 
    text-align: center; 
    transition: var(--transition); 
    cursor: pointer; 
    position: relative; 
    overflow: hidden; 
}
.service-card::before { 
    content: ''; 
    position: absolute; 
    top: 0; left: 0; right: 0; 
    height: 4px; 
    background: linear-gradient(90deg, var(--primary), var(--secondary)); 
    transform: scaleX(0); 
    transition: transform 0.4s; 
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-hover); }

.service-icon { 
    width: 75px; 
    height: 75px; 
    margin: 0 auto 18px; 
    background: linear-gradient(135deg, var(--primary-light), white); 
    border-radius: 50%; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    font-size: 2.2rem; 
    transition: transform 0.4s; 
}
.service-card:hover .service-icon { transform: scale(1.1) rotate(8deg); }
.service-card h3 { font-size: 1.2rem; margin-bottom: 10px; }
.service-card p { font-size: 0.9rem; color: var(--text-medium); margin-bottom: 15px; }
.service-price { 
    display: inline-block; 
    padding: 8px 18px; 
    background: var(--primary); 
    color: white; 
    border-radius: 50px; 
    font-weight: 700; 
    font-size: 0.9rem; 
}

/* =====================================================
   PRODUCTOS GRID
   ===================================================== */
.products-grid { 
    display: grid; 
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); 
    gap: 20px; 
}

.product-card { 
    background: var(--bg-light); 
    border-radius: var(--radius-md); 
    padding: 20px; 
    text-align: center; 
    transition: var(--transition); 
}
.product-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-soft); }

.product-img { 
    width: 100%; 
    height: 100px; 
    background: linear-gradient(135deg, var(--primary-light), white); 
    border-radius: var(--radius-sm); 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    font-size: 2.5rem; 
    margin-bottom: 12px; 
}
.product-card h4 { font-size: 0.95rem; margin-bottom: 6px; color: var(--text-dark); }
.product-card .price { 
    font-family: 'Fredoka', sans-serif; 
    font-size: 1.3rem; 
    font-weight: 700; 
    color: var(--primary); 
}
.product-card .unit { font-size: 0.8rem; color: var(--text-light); }
.promo-tag { 
    display: inline-block; 
    margin-top: 6px; 
    padding: 3px 10px; 
    background: #FF9800; 
    color: white; 
    border-radius: 20px; 
    font-size: 0.7rem; 
    font-weight: 700; 
}

/* =====================================================
   TABS
   ===================================================== */
.tabs { 
    display: flex; 
    flex-wrap: wrap; 
    justify-content: center; 
    gap: 10px; 
    margin-bottom: 35px; 
}
.tab { 
    padding: 10px 22px; 
    background: var(--bg-light); 
    border: 2px solid transparent; 
    border-radius: 50px; 
    font-family: 'Nunito', sans-serif; 
    font-size: 0.9rem; 
    font-weight: 600; 
    color: var(--text-medium); 
    cursor: pointer; 
    transition: var(--transition); 
}
.tab:hover { border-color: var(--primary); color: var(--primary); }
.tab.active { background: var(--primary); color: white; border-color: var(--primary); }

/* =====================================================
   FORMULARIOS
   ===================================================== */
.form-container { 
    max-width: 600px; 
    margin: 0 auto; 
    background: white; 
    padding: 40px; 
    border-radius: var(--radius-lg); 
    box-shadow: var(--shadow-soft); 
}
.form-container h2 { text-align: center; margin-bottom: 10px; color: var(--text-dark); }
.form-container .subtitle { text-align: center; color: var(--text-medium); margin-bottom: 30px; }

.form-group { margin-bottom: 20px; }
.form-group label { 
    display: block; 
    color: var(--text-medium); 
    font-size: 0.9rem; 
    font-weight: 600;
    margin-bottom: 8px; 
}
.form-group input, 
.form-group textarea, 
.form-group select { 
    width: 100%; 
    padding: 14px 18px; 
    border: 2px solid var(--primary-light); 
    border-radius: var(--radius-sm); 
    font-family: 'Nunito', sans-serif; 
    font-size: 1rem; 
    transition: border-color 0.3s; 
}
.form-group input:focus, 
.form-group textarea:focus, 
.form-group select:focus { 
    outline: none; 
    border-color: var(--primary); 
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-group small { display: block; margin-top: 5px; color: var(--text-light); font-size: 0.8rem; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

.alert { 
    padding: 15px 20px; 
    border-radius: var(--radius-sm); 
    margin-bottom: 20px; 
    font-weight: 500;
}
.alert-success { background: #E8F5E9; color: #2E7D32; border: 1px solid #A5D6A7; }
.alert-error { background: #FFEBEE; color: #C62828; border: 1px solid #EF9A9A; }
.alert-info { background: #E3F2FD; color: #1565C0; border: 1px solid #90CAF9; }

/* =====================================================
   CALCULADORA
   ===================================================== */
.calc-box { 
    max-width: 850px; 
    margin: 0 auto; 
    background: white; 
    border-radius: var(--radius-lg); 
    padding: 35px; 
    box-shadow: var(--shadow-hover); 
}
.calc-header { text-align: center; margin-bottom: 25px; }
.calc-header h2 { color: var(--text-dark); font-size: 1.8rem; margin-bottom: 8px; }
.calc-header p { color: var(--text-medium); }

.calc-grid { 
    display: grid; 
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); 
    gap: 12px; 
    margin-bottom: 25px; 
}
.calc-item { background: var(--bg-light); border-radius: var(--radius-md); padding: 12px; text-align: center; }
.calc-item label { display: block; font-size: 0.8rem; color: var(--text-medium); margin-bottom: 6px; }
.calc-item input { 
    width: 100%; 
    padding: 10px; 
    border: 2px solid var(--primary-light); 
    border-radius: var(--radius-sm); 
    font-size: 1rem; 
    text-align: center; 
    font-family: 'Nunito', sans-serif; 
}
.calc-item input:focus { outline: none; border-color: var(--primary); }

.calc-result { 
    background: linear-gradient(135deg, var(--primary-light), white); 
    border-radius: var(--radius-lg); 
    padding: 25px; 
    text-align: center; 
}
.result-kg { font-family: 'Fredoka', sans-serif; font-size: 3rem; font-weight: 700; color: var(--primary); }
.result-label { color: var(--text-medium); margin-bottom: 15px; }
.result-reco { 
    display: inline-block; 
    padding: 12px 22px; 
    background: var(--primary); 
    color: white; 
    border-radius: 50px; 
    font-weight: 600; 
}

/* =====================================================
   PROCESO
   ===================================================== */
.process-timeline { 
    display: flex; 
    justify-content: space-between; 
    flex-wrap: wrap; 
    gap: 20px; 
    max-width: 1000px; 
    margin: 0 auto; 
}
.process-step { flex: 1; min-width: 140px; text-align: center; position: relative; }
.step-icon { 
    width: 90px; 
    height: 90px; 
    margin: 0 auto 15px; 
    background: white; 
    border: 4px solid var(--primary); 
    border-radius: 50%; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    font-size: 2.2rem; 
    box-shadow: var(--shadow-soft); 
    transition: var(--transition); 
}
.process-step:hover .step-icon { transform: scale(1.1); }
.step-num { 
    position: absolute; 
    top: 0; 
    right: calc(50% - 55px); 
    width: 26px; 
    height: 26px; 
    background: var(--secondary); 
    color: white; 
    border-radius: 50%; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    font-weight: 700; 
    font-size: 0.8rem; 
}
.process-step h4 { font-size: 1rem; margin-bottom: 5px; }
.process-step p { font-size: 0.8rem; color: var(--text-medium); }

/* =====================================================
   PROMOCIONES
   ===================================================== */
.promos-grid { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); 
    gap: 22px; 
}
.promo-card { 
    background: white; 
    border-radius: var(--radius-lg); 
    padding: 25px; 
    position: relative; 
    overflow: hidden; 
}
.promo-card::before { 
    content: ''; 
    position: absolute; 
    top: -40px; right: -40px; 
    width: 120px; height: 120px; 
    background: var(--primary-light); 
    border-radius: 50%; 
    opacity: 0.5; 
}
.promo-card .icon { font-size: 2.2rem; margin-bottom: 12px; }
.promo-card h3 { font-size: 1.2rem; margin-bottom: 8px; }
.promo-card p { color: var(--text-medium); font-size: 0.9rem; margin-bottom: 12px; }
.promo-price { font-family: 'Fredoka', sans-serif; font-size: 1.4rem; font-weight: 700; color: var(--secondary); }

/* =====================================================
   FIDELIDAD
   ===================================================== */
.loyalty-cards { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); 
    gap: 25px; 
    max-width: 900px; 
    margin: 0 auto; 
}
.loyalty-card { 
    background: linear-gradient(135deg, var(--bg-light), white); 
    border-radius: var(--radius-lg); 
    padding: 28px; 
    text-align: center; 
    border: 3px solid transparent; 
    transition: var(--transition); 
}
.loyalty-card:nth-child(1) { border-color: #CD7F32; }
.loyalty-card:nth-child(2) { border-color: #C0C0C0; }
.loyalty-card:nth-child(3) { border-color: #FFD700; }
.loyalty-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-hover); }
.loyalty-pts { font-family: 'Fredoka', sans-serif; font-size: 2.2rem; font-weight: 700; color: var(--primary); }
.loyalty-pts span { font-size: 0.9rem; color: var(--text-light); }
.loyalty-card h4 { font-size: 1.1rem; margin: 10px 0; }
.loyalty-card p { color: var(--text-medium); font-size: 0.9rem; }

/* =====================================================
   RESEÑAS
   ===================================================== */
.reviews-grid { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); 
    gap: 22px; 
}
.review-card { background: white; border-radius: var(--radius-lg); padding: 22px; box-shadow: var(--shadow-soft); }
.review-header { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.reviewer-avatar { 
    width: 45px; height: 45px; 
    background: linear-gradient(135deg, var(--primary), var(--secondary)); 
    border-radius: 50%; 
    display: flex; align-items: center; justify-content: center; 
    color: white; 
    font-weight: 700; 
}
.reviewer-info h5 { font-size: 0.95rem; }
.review-stars { color: var(--accent); font-size: 0.85rem; }
.review-card > p { color: var(--text-medium); font-style: italic; font-size: 0.9rem; }

/* =====================================================
   CONTACTO
   ===================================================== */
.contact-grid { 
    display: grid; 
    grid-template-columns: 1fr 1fr; 
    gap: 45px; 
    max-width: 1100px; 
    margin: 0 auto; 
}
.contact-info h2 { font-size: 2.2rem; margin-bottom: 18px; }
.contact-info > p { opacity: 0.9; margin-bottom: 25px; font-size: 1.05rem; }
.contact-item { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; }
.contact-icon { 
    width: 45px; height: 45px; 
    background: rgba(255,255,255,0.2); 
    border-radius: 50%; 
    display: flex; align-items: center; justify-content: center; 
    font-size: 1.2rem; 
}
.contact-item-text h5 { font-size: 0.8rem; opacity: 0.8; margin-bottom: 2px; font-weight: 400; }
.contact-item-text p { font-size: 1rem; margin: 0; }

.contact-form { background: white; border-radius: var(--radius-lg); padding: 30px; }
.contact-form h3 { color: var(--text-dark); font-size: 1.4rem; margin-bottom: 20px; }

/* =====================================================
   FOOTER
   ===================================================== */
footer { background: var(--text-dark); color: white; padding: 50px 5% 25px; }
.footer-grid { 
    display: grid; 
    grid-template-columns: 2fr 1fr 1fr 1fr; 
    gap: 35px; 
    max-width: 1200px; 
    margin: 0 auto 35px; 
}
.footer-brand .logo { margin-bottom: 15px; }
.footer-brand p { opacity: 0.8; font-size: 0.9rem; margin-bottom: 15px; }
.social-links { display: flex; gap: 10px; }
.social-link { 
    width: 38px; height: 38px; 
    background: rgba(255,255,255,0.1); 
    border-radius: 50%; 
    display: flex; align-items: center; justify-content: center; 
    color: white; 
    transition: var(--transition); 
}
.social-link:hover { background: var(--primary); transform: translateY(-3px); }
.footer-col h4 { font-size: 1rem; margin-bottom: 15px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; font-size: 0.9rem; opacity: 0.8; }
.footer-col ul a { transition: opacity 0.3s; }
.footer-col ul a:hover { opacity: 1; }
.footer-bottom { text-align: center; padding-top: 25px; border-top: 1px solid rgba(255,255,255,0.1); opacity: 0.7; font-size: 0.85rem; }

/* =====================================================
   CARRITO FLOTANTE
   ===================================================== */
.floating-cart { position: fixed; bottom: 25px; right: 25px; z-index: 1500; }
.cart-btn { 
    width: 60px; height: 60px; 
    background: linear-gradient(135deg, var(--primary), var(--primary-dark)); 
    border: none; 
    border-radius: 50%; 
    color: white; 
    font-size: 1.4rem; 
    cursor: pointer; 
    box-shadow: 0 8px 25px rgba(0,151,167,0.4); 
    transition: var(--transition); 
    position: relative; 
}
.cart-btn:hover { transform: scale(1.1); }
.cart-count { 
    position: absolute; top: -5px; right: -5px; 
    width: 22px; height: 22px; 
    background: var(--secondary); 
    border-radius: 50%; 
    display: flex; align-items: center; justify-content: center; 
    font-size: 0.75rem; font-weight: 700; 
}

/* =====================================================
   MODAL CARRITO
   ===================================================== */
.cart-modal { 
    display: none; 
    position: fixed; 
    inset: 0; 
    background: rgba(0,0,0,0.5); 
    z-index: 2000; 
    justify-content: flex-end; 
}
.cart-modal.active { display: flex; }
.cart-panel { 
    width: 100%; 
    max-width: 420px; 
    height: 100%; 
    background: white; 
    box-shadow: -10px 0 40px rgba(0,0,0,0.2); 
    display: flex; 
    flex-direction: column; 
    animation: slideIn 0.3s ease; 
}
@keyframes slideIn { from{transform:translateX(100%)} to{transform:translateX(0)} }

.cart-header { 
    padding: 20px; 
    border-bottom: 1px solid var(--primary-light); 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
}
.cart-header h3 { font-size: 1.3rem; color: var(--text-dark); }
.cart-close { background: none; border: none; font-size: 1.4rem; cursor: pointer; color: var(--text-medium); }

.cart-items { flex: 1; padding: 18px; overflow-y: auto; }
.cart-item { 
    display: flex; 
    gap: 12px; 
    padding: 12px; 
    background: var(--bg-light); 
    border-radius: var(--radius-md); 
    margin-bottom: 12px; 
}
.cart-item-img { 
    width: 55px; height: 55px; 
    background: var(--primary-light); 
    border-radius: var(--radius-sm); 
    display: flex; align-items: center; justify-content: center; 
    font-size: 1.4rem; 
}
.cart-item-info { flex: 1; }
.cart-item-name { font-weight: 600; color: var(--text-dark); margin-bottom: 3px; font-size: 0.9rem; }
.cart-item-price { color: var(--primary); font-weight: 700; font-size: 0.9rem; }
.cart-item-qty { display: flex; align-items: center; gap: 8px; margin-top: 6px; }
.qty-btn { 
    width: 26px; height: 26px; 
    border: 1px solid var(--primary-light); 
    background: white; 
    border-radius: 50%; 
    cursor: pointer; 
    font-size: 0.9rem; 
    transition: var(--transition); 
}
.qty-btn:hover { background: var(--primary); color: white; border-color: var(--primary); }

.cart-footer { padding: 20px; border-top: 1px solid var(--primary-light); }
.cart-total { display: flex; justify-content: space-between; align-items: center; margin-bottom: 15px; }
.cart-total-label { font-size: 1rem; color: var(--text-medium); }
.cart-total-value { font-family: 'Fredoka', sans-serif; font-size: 1.6rem; font-weight: 700; color: var(--primary); }
.btn-order { width: 100%; }

.cart-empty { text-align: center; padding: 40px 20px; color: var(--text-medium); }
.cart-empty-icon { font-size: 3rem; margin-bottom: 10px; opacity: 0.5; }

/* =====================================================
   NOTIFICACIONES
   ===================================================== */
.notification { 
    position: fixed; 
    bottom: 100px; 
    right: 30px; 
    background: #25D366; 
    color: white; 
    padding: 12px 20px; 
    border-radius: 50px; 
    font-weight: 600; 
    z-index: 3000; 
    animation: slideIn 0.3s ease; 
}

/* =====================================================
   PÁGINA DE BREADCRUMBS
   ===================================================== */
.breadcrumbs { 
    padding: 15px 5%; 
    background: white; 
    border-bottom: 1px solid var(--primary-light); 
}
.breadcrumbs a { color: var(--primary); }
.breadcrumbs span { color: var(--text-light); margin: 0 8px; }

/* =====================================================
   CTA BOX (Registro/Cupones)
   ===================================================== */
.cta-box { 
    background: linear-gradient(135deg, var(--secondary), #9C27B0); 
    border-radius: var(--radius-lg); 
    padding: 40px; 
    text-align: center; 
    color: white; 
    margin: 40px auto;
    max-width: 800px;
}
.cta-box h3 { font-size: 1.8rem; margin-bottom: 15px; }
.cta-box p { opacity: 0.9; margin-bottom: 25px; font-size: 1.1rem; }
.cta-box .btn { background: white; color: var(--secondary); }
.cta-box .btn:hover { transform: translateY(-3px); box-shadow: 0 8px 25px rgba(0,0,0,0.2); }

/* =====================================================
   RESPONSIVE
   ===================================================== */
@media (max-width: 1024px) {
    .hero-content, .contact-grid { grid-template-columns: 1fr; text-align: center; }
    .hero h1 { font-size: 2.5rem; }
    .hero-cta { justify-content: center; }
    /* CORREGIDO: Eliminado max-width restrictivo del hero-visual */
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    main { margin-top: 100px; }
    .header-contact { display: none; }
    .mobile-menu-btn { display: block; }
    .nav-list { 
        display: none; 
        flex-direction: column; 
        position: absolute; 
        top: 100%; left: 0; right: 0; 
        background: var(--primary-dark); 
        padding: 15px; 
    }
    .nav-list.active { display: flex; }
    .hero { padding: 40px 5% 60px; }
    .hero h1 { font-size: 2rem; }
    .section { padding: 50px 5%; }
    .section-header h1, .section-header h2 { font-size: 1.9rem; }
    .process-timeline { justify-content: center; }
    .footer-grid { grid-template-columns: 1fr; text-align: center; }
    .social-links { justify-content: center; }
    .form-row { grid-template-columns: 1fr; }
    .contact-grid { gap: 30px; }
}

@media (max-width: 480px) {
    .hero h1 { font-size: 1.7rem; }
    .btn { padding: 12px 20px; font-size: 0.9rem; }
    .floating-cart { bottom: 18px; right: 18px; }
    .cart-btn { width: 52px; height: 52px; }
    .form-container { padding: 25px; }
}
