/* Reset y estilos base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: 'Inter', 'Segoe UI', Arial, sans-serif;
    background: #ffffff;
    color: #222;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4 { letter-spacing: -0.02em; }

/* Secciones modernas tipo tarjeta */
.about, .products, .services, .clients, .testimonials, .faq, .contact {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.products h2, .about h2, .services h2, .clients h2, .testimonials h2, .faq h2, .contact h2 {
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 2rem;
    color: #b80000;
}

/* Botón CTA v2 */
.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #ffffff, #f3f3f3);
    color: #b80000;
    padding: 0.9rem 1.6rem;
    text-decoration: none;
    border-radius: 999px;
    font-weight: 800;
    font-size: 1rem;
    transition: all 0.25s ease;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    border: 1px solid #eee;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

/* Header y navegación */
header {
    background: #ffffff;
    color: #b80000;
    padding: 0.6rem 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    border-bottom: 1px solid #eee;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo-container {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 1rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.logo {
    height: 64px;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 1rem;
    margin: 0;
    padding: 0;
}

nav a {
    color: #b80000;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.2s;
    padding: 0.4rem 0.8rem;
    border-radius: 8px;
}

nav a:hover {
    color: #8b0000;
    background: rgba(184, 0, 0, 0.08);
}

.contact-badges {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.contact-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: #25D366;
    color: #fff;
    padding: 0.45rem 0.75rem;
    border-radius: 999px;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 6px 14px rgba(37, 211, 102, 0.25);
    border: 1px solid rgba(0,0,0,0.05);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.contact-badge .fa-whatsapp { font-size: 1rem; }

.contact-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 14px rgba(0,0,0,0.2);
}

.contact-badge.minorista { background: linear-gradient(135deg, #25D366, #20b357); }
.contact-badge.mayorista { background: linear-gradient(135deg, #128C7E, #0e6f64); }

/* Slider */
.slider-section {
    position: relative;
    height: 500px;
    overflow: hidden;
}

.slider {
    position: relative;
    height: 100%;
    width: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide.active {
    opacity: 1;
}

.slide img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.slide-caption {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
    background: linear-gradient(180deg, rgba(184,0,0,0.85), rgba(184,0,0,0.7));
    padding: 2rem;
    border-radius: 16px;
    max-width: 640px;
    margin: 0 2rem;
    backdrop-filter: blur(2px);
}

.slide-caption h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.slide-caption p {
    font-size: 1.2rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    margin-bottom: 1.5rem;
}

.cta-button {
    display: inline-block;
    background: #fff;
    color: #b80000;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 25px;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cta-button:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(184, 0, 0, 0.8);
    color: #fff;
    border: none;
    padding: 1rem;
    cursor: pointer;
    font-size: 1.5rem;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 3;
}

.slider-btn:hover {
    background: rgba(184, 0, 0, 1);
    transform: translateY(-50%) scale(1.1);
}

.slider-btn.prev {
    left: 20px;
}

.slider-btn.next {
    right: 20px;
}

.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 3;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: #fff;
    transform: scale(1.2);
}

.dot:hover {
    background: rgba(255, 255, 255, 0.8);
}

/* Feature band debajo del slider */
.feature-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  background: #b80000;
  color: #fff;
  padding: 1rem 1.25rem;
  align-items: center;
}
.feature-band .feature-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 12px;
  padding: 0.85rem 1rem;
  font-weight: 700;
  text-transform: none;
}
.feature-band .feature-item i { font-size: 1.1rem; }
@media (max-width: 768px) {
  .feature-band { grid-template-columns: 1fr; }
}

/* Secciones principales */
.about, .products, .services, .clients, .testimonials, .faq, .contact {
    max-width: 1200px;
    margin: 3rem auto;
    padding: 3rem 2rem;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(184, 0, 0, 0.1);
}

.about h2, .products h2, .services h2, .clients h2, .testimonials h2, .faq h2, .contact h2 {
    color: #b80000;
    margin-bottom: 2rem;
    text-align: center;
    font-size: 2.5rem;
    position: relative;
}

.about h2::after, .products h2::after, .services h2::after, .clients h2::after, .testimonials h2::after, .faq h2::after, .contact h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: #b80000;
    border-radius: 2px;
}

/* Sección Nosotros */
/* TikTok embed in About */
.tiktok-profile-embed { width: 100%; }
.tiktok-embed { width: 100% !important; max-width: 720px; margin: 0 auto; }
@media (max-width: 768px) {
    .tiktok-embed { max-width: 100%; }
}
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 2rem;
}

.about-content p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.about-img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.mision-vision {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

.mision-vision div {
    background: #fff0f0;
    padding: 2rem;
    border-radius: 10px;
    border-left: 5px solid #b80000;
}

.mision-vision h3 {
    color: #b80000;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.valores {
    margin-top: 2rem;
}

.valores h3 {
    color: #b80000;
    margin-bottom: 1rem;
    text-align: center;
    font-size: 1.8rem;
}

.valores ul {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    padding: 0;
    list-style: none;
    flex-wrap: wrap;
}

.valores li {
    background: #b80000;
    color: #fff;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-weight: 500;
    transition: transform 0.3s ease;
}

.valores li:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(184, 0, 0, 0.3);
}

/* Sección Productos */
.products {
    padding: 4rem 0;
}

.products h2 {
    text-align: center;
    color: #b80000;
    margin-bottom: 3rem;
    font-size: 2.5rem;
}

/* Imagen de productos */
.product-image-container {
    text-align: center;
    margin-bottom: 3rem;
}

.products-showcase {
    width: 100%;
    max-width: 500px;
    height: 300px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(184, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.products-showcase:hover {
    transform: scale(1.02);
}

/* Categorías */
.categories-container {
    background: linear-gradient(180deg, #ffffff, #fcfcfc);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
    border: 1px solid #f0f0f0;
}

.categories-container h3 {
    color: #b80000;
    font-size: 2rem;
    margin-bottom: 2.5rem;
    text-align: center;
    border-bottom: 2px solid #ffe3e3;
    padding-bottom: 1rem;
}

.categories-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.category-column {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid #eef2f7;
}

.category-column h4 {
    color: #b80000;
    font-size: 1.3rem;
    margin-bottom: 1.2rem;
    font-weight: 800;
    text-align: center;
    border-bottom: 1px dashed #ffd6d6;
    padding-bottom: 0.6rem;
}

.category-list-vertical {
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
}

.category-item-with-image {
    display: flex;
    flex-direction: column; /* imagen arriba */
    align-items: stretch;
    gap: 0.8rem;
    background: #fff;
    padding: 1rem 1.1rem;
    border-radius: 14px;
    border: 1px solid #edf0f3;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.category-item-with-image:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 30px rgba(184, 0, 0, 0.12);
    border-color: #ffd6d6;
}

.category-image {
    width: 100%;
    aspect-ratio: 490 / 398;
    height: auto;
    object-fit: cover;
    border-radius: 12px;
    border: 2px solid #eef2f7;
}

.category-content {
    flex: 1;
}

.category-label span:last-child {
    font-weight: 700;
}

.category-item {
    position: relative;
}

.category-checkbox {
    display: none;
}

.category-label {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    background: #f8f9fa;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    color: #333;
    font-size: 1rem;
}

.category-label:hover {
    background: #fff0f0;
    border-color: #b80000;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(184, 0, 0, 0.1);
}

.category-checkbox:checked + .category-label {
    background: #b80000;
    color: #fff;
    border-color: #b80000;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(184, 0, 0, 0.3);
}

.checkbox-custom {
    width: 18px;
    height: 18px;
    border: 2px solid #ccc;
    border-radius: 3px;
    display: inline-block;
    position: relative;
    transition: all 0.3s ease;
}

.category-checkbox:checked + .category-label .checkbox-custom {
    background: #fff;
    border-color: #fff;
}

.category-checkbox:checked + .category-label .checkbox-custom:after {
    content: "✓";
    position: absolute;
    top: -2px;
    left: 2px;
    color: #b80000;
    font-weight: bold;
    font-size: 14px;
}

/* Sección Servicios */
.services-list {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2rem;
    justify-content: center;
}

.service {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 1.4rem;
    background: linear-gradient(135deg, #ffffff, #f8f9fa);
    border-radius: 999px;
    border: 1px solid #e9ecef;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: all 0.2s ease;
    white-space: nowrap;
    min-width: fit-content;
}

.service:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(184, 0, 0, 0.1);
    border-color: #ffd6d6;
}

.service .icon {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
}

.service h4 {
    color: #b80000;
    margin: 0;
    font-size: 0.95rem;
    font-weight: 700;
}

.service p {
    display: none;
}

/* Sección Clientes */
.clients-logos {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
    align-items: center;
    margin-top: 2rem;
}

.clients-logos img {
    width: 100%;
    filter: grayscale(100%);
    opacity: 0.8;
    transition: all 0.25s ease;
}

.clients-logos img:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: translateY(-2px);
}

/* Sección Testimonios */
.testimonial-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.testimonial {
    background: linear-gradient(135deg, #fff0f0, #fef7f7);
    padding: 1.8rem;
    border-radius: 16px;
    text-align: center;
    border: 1px solid #f0d0d0;
    box-shadow: 0 8px 20px rgba(184, 0, 0, 0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    height: fit-content;
}

.testimonial:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(184, 0, 0, 0.12);
}

.testimonial img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    margin-bottom: 1rem;
    border: 3px solid #b80000;
    object-fit: cover;
}

.testimonial blockquote {
    font-style: italic;
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 1.2rem;
    color: #333;
    min-height: 3.5rem;
}

.testimonial p {
    color: #b80000;
    font-weight: 700;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.testimonial .company {
    color: #666;
    font-size: 0.85rem;
    font-style: italic;
    font-weight: 500;
}

/* Sección FAQ */
.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

.faq-column {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: linear-gradient(135deg, #ffffff, #fefefe);
    border-radius: 12px;
    border: 1px solid #e9ecef;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 8px 20px rgba(184, 0, 0, 0.1);
    transform: translateY(-2px);
}

.faq-question {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.2rem 1.5rem;
    background: linear-gradient(135deg, #b80000, #a00000);
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    user-select: none;
}

.faq-question:hover {
    background: linear-gradient(135deg, #a00000, #900000);
}

.faq-icon {
    font-size: 1.2rem;
    color: #fff;
    flex-shrink: 0;
}

.faq-question h4 {
    margin: 0;
    font-size: 1rem;
    font-weight: 600;
    flex-grow: 1;
    color: white;
}

.faq-arrow {
    font-size: 0.9rem;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-arrow {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    background: #fafafa;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 1.5rem;
}

.faq-answer p {
    margin: 0;
    line-height: 1.6;
    color: #333;
    font-size: 0.95rem;
}

/* Sección Contacto */
.contact-info {
    display: grid;
    grid-template-columns: 60% 40%;
    gap: 2rem;
    align-items: flex-start;
    margin-top: 2rem;
}

.contact-data {
    padding-right: 1rem;
}

.contact-info p {
    margin: 1rem 0;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-info i {
    color: #b80000;
    width: 20px;
    text-align: center;
}

.contact-info a {
    color: #b80000;
    text-decoration: none;
    font-weight: bold;
}

.contact-info a:hover {
    text-decoration: underline;
}

.contact-hours {
    margin-top: 0;
    margin-left: 0px important;
    margin-right: 1.5rem !important;
    padding: 1.8rem;
    background: linear-gradient(135deg, #fff0f0, #fef7f7);
    border-radius: 12px;
    border: 1px solid #f0d0d0;
    box-shadow: 0 4px 12px rgba(184, 0, 0, 0.08);
    height: fit-content;
}

.contact-hours h4 {
    color: #b80000;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 1.1rem;
    font-weight: 700;
}

.schedule-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.2rem;
}

.schedule-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.8rem 1rem;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 8px;
    border: 1px solid rgba(184, 0, 0, 0.1);
    transition: all 0.2s ease;
}

.schedule-item:hover {
    background: rgba(255, 255, 255, 0.8);
    transform: translateX(4px);
}

.schedule-item i {
    color: #b80000;
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
}

.schedule-info {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.schedule-days {
    font-weight: 600;
    color: #333;
    font-size: 0.95rem;
}

.schedule-time {
    color: #b80000;
    font-weight: 700;
    font-size: 1rem;
}

.whatsapp-note {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem 1rem;
    background: rgba(37, 211, 102, 0.1);
    border-radius: 8px;
    border: 1px solid rgba(37, 211, 102, 0.2);
    margin-top: 1rem;
}

.whatsapp-note i {
    color: #25d366;
    font-size: 1.1rem;
}

.whatsapp-note span {
    color: #2d5a3d;
    font-size: 0.9rem;
    font-weight: 500;
}

.contact-img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Footer mejorado */
footer {
    background: #b80000;
    color: #fff;
    padding: 3rem 0 1rem 0;
    margin-top: 3rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 0 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    margin-bottom: 1rem;
    font-size: 1.3rem;
    color: #ffb3b3;
}

.footer-section p {
    margin: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-section i {
    width: 20px;
    text-align: center;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    text-align: center;
    line-height: 40px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 1rem;
    letter-spacing: 1px;
}

/* Links de consulta de comprobante electrónico */
.invoice-links {
    padding: 1.5rem 2rem;
    background: #8b0000; /* tono más oscuro que el footer para diferenciar */
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.invoice-links h4 {
    color: #fff;
    margin: 0 0 0.75rem 0;
    font-weight: 700;
    letter-spacing: 0.3px;
}
.invoice-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    align-items: center;
}
.invoice-list li { margin: 0; }
.invoice-list a {
    color: #ffffff;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.35);
    padding: 0.5rem 0.75rem;
    border-radius: 999px;
    transition: all 0.2s ease-in-out;
    font-weight: 700;
}
.invoice-list a:hover {
    color: #8b0000;
    background: #ffffff;
}
@media (max-width: 600px) {
    .invoice-links {
        padding: 1rem 1.25rem;
    }
    .invoice-list {
        gap: 0.5rem;
    }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 900px) {
    .logo-container {
        flex-direction: column;
        gap: 1rem;
    }
    
    nav ul {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }
    
    .slide-caption h2 {
        font-size: 2rem;
    }
    
    .slide-caption p {
        font-size: 1rem;
    }
    
    .slider-btn {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .mision-vision {
        grid-template-columns: 1fr;
    }
    
    .valores ul {
        justify-content: center;
    }
    
    .clients-logos {
        gap: 2rem;
    }
    
    .clients-logos img {
        height: 60px;
    }
    
    .testimonial-list {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }
    .testimonial {
        padding: 1.5rem;
    }
    .testimonial blockquote {
        font-size: 0.95rem;
        min-height: auto;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .faq-question {
        padding: 1rem;
        gap: 0.8rem;
    }
    
    .faq-question h4 {
        font-size: 0.9rem;
    }
    
    .faq-item.active .faq-answer {
        padding: 1.2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 900px) {
    .product-main {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem;
    }
    
    .category-list {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1rem;
    }
}

@media (max-width: 768px) {
    header .logo { height: 56px; }

    .logo-container { gap: 0.75rem; }
    nav ul { display: none; }

    .contact-badges { gap: 0.4rem; }
    .contact-badge { padding: 0.4rem 0.6rem; font-size: 0.9rem; }

    .services-list { gap: 0.8rem; }
    .service { padding: 0.8rem 1.2rem; font-size: 0.9rem; }
    .contact-info { 
        grid-template-columns: 1fr; 
        gap: 1.5rem;
    }
    
    .contact-data {
        padding-right: 0;
    }
    
    .contact-hours {
        margin-top: 1rem;
        margin-left: 0;
    }
    .footer-content { grid-template-columns: 1fr; text-align: center; }

    .categories-grid { grid-template-columns: 1fr; gap: 2rem; }
    .category-column { padding: 1.5rem; }
    .category-item-with-image { padding: 0.8rem; }
    .category-image { width: 100%; aspect-ratio: 490 / 398; height: auto; }
}

@media (max-width: 420px) {
    header .logo { height: 48px; }
    .contact-badge span { display: none; }
    .contact-badge .fa-whatsapp { font-size: 1.1rem; }
}

@media (max-width: 600px) {
    .about, .products, .services, .clients, .testimonials, .faq, .contact {
        padding: 2rem 1rem;
    }
    
    .products h2 {
        font-size: 2rem;
    }
    
    .product-main {
        padding: 2rem 1rem;
        gap: 1.5rem;
    }
    
    .product-intro h3 {
        font-size: 1.5rem;
    }
    
    .categories-container {
        padding: 2rem 1rem;
    }
    
    .categories-container h3 {
        font-size: 1.6rem;
    }
    
    .category-section h4 {
        font-size: 1.2rem;
    }
    
    .category-list {
        grid-template-columns: 1fr;
    }
    
    .category-label {
        padding: 1rem;
        gap: 0.8rem;
        font-size: 0.9rem;
    }
    
    .slide-caption {
        margin: 0 1rem;
        padding: 1.5rem;
    }
    
    .slide-caption h2 {
        font-size: 1.5rem;
    }
    
    .cta-button {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
    
    .product-types {
        grid-template-columns: 1fr;
    }
    
    .services-list {
        grid-template-columns: 1fr;
    }
    
    .valores ul {
        flex-direction: column;
        align-items: center;
    }
    
    .clients-logos {
        flex-direction: column;
        gap: 1rem;
    }
    
    /* .contact-info {
        grid-template-columns: 1fr;
    } */
    
    .slider-section {
        height: 400px;
    }
    
    .slider-dots {
        bottom: 10px;
    }
    
    .dot {
        width: 10px;
        height: 10px;
    }
}

/* Animaciones */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* --- Overrides: Productos --- */
.category-checkbox, .checkbox-custom { display: none !important; }
.category-label { display: block; padding: 0.25rem 0 0; background: transparent; border: none; border-radius: 0; cursor: default; transition: none; font-weight: 800; color: #222; font-size: 1.05rem; }
.category-label:hover { background: transparent !important; border-color: transparent !important; transform: none !important; box-shadow: none !important; }
.category-checkbox:checked + .category-label { background: transparent !important; color: #222 !important; border-color: transparent !important; transform: none !important; box-shadow: none !important; }
.category-checkbox:checked + .category-label .checkbox-custom { display: none !important; }
.category-subitems { list-style: none; margin: 0; padding: 0.6rem 0 0; display: flex; flex-wrap: wrap; gap: 0.5rem; }
.category-subitems li { list-style: none; display: inline-flex; align-items: center; gap: 0.35rem; padding: 0.38rem 0.65rem; background: #fff5f5; border: 1px solid #ffd6d6; color: #b80000; border-radius: 999px; font-size: 0.9rem; font-weight: 600; line-height: 1; }
.category-subitems li::before { content: none !important; }
}

.about, .products, .services, .clients, .testimonials, .faq, .contact {
    animation: fadeIn 0.8s ease-out;
}

/* Scroll suave */
html {
    scroll-behavior: smooth;
}

/* Mejoras de accesibilidad */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    html {
        scroll-behavior: auto;
    }
}

/* Lista estilizada de datos de contacto */
.contact-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 1rem; }
.contact-list li { display: grid; grid-template-columns: 28px 1fr; align-items: start; column-gap: 0.8rem; padding: 0.6rem 0; border-bottom: 1px solid #f2f2f2; }
.contact-list li:last-child { border-bottom: none; }
.contact-icon i { color: #b80000; font-size: 1.1rem; line-height: 1.6rem; }
.contact-item { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.contact-label { font-weight: 700; color: #222; }
.contact-value { color: #333; }
.contact-value a { color: #b80000; font-weight: 700; text-decoration: none; }
.contact-value a:hover { text-decoration: underline; }
.contact-info {
    display: grid;
    grid-template-columns: 60% 40%;
    gap: 2rem;
    align-items: flex-start;
    margin-top: 2rem;
}

.contact-data {
    padding-right: 1rem;
}

.contact-info p {
    margin: 1rem 0;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-info i {
    color: #b80000;
    width: 20px;
    text-align: center;
}

.contact-info a {
    color: #b80000;
    text-decoration: none;
    font-weight: bold;
}

.contact-info a:hover {
    text-decoration: underline;
}

.contact-hours {
    margin-top: 0;
    margin-left: 1.5rem;
    padding: 1.8rem;
    background: linear-gradient(135deg, #fff0f0, #fef7f7);
    border-radius: 12px;
    border: 1px solid #f0d0d0;
    box-shadow: 0 4px 12px rgba(184, 0, 0, 0.08);
    height: fit-content;
}

.contact-hours h4 {
    color: #b80000;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 1.1rem;
    font-weight: 700;
}

.schedule-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.2rem;
}

.schedule-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.8rem 1rem;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 8px;
    border: 1px solid rgba(184, 0, 0, 0.1);
    transition: all 0.2s ease;
}

.schedule-item:hover {
    background: rgba(255, 255, 255, 0.8);
    transform: translateX(4px);
}

.schedule-item i {
    color: #b80000;
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
}

.schedule-info {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.schedule-days {
    font-weight: 600;
    color: #333;
    font-size: 0.95rem;
}

.schedule-time {
    color: #b80000;
    font-weight: 700;
    font-size: 1rem;
}

.whatsapp-note {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem 1rem;
    background: rgba(37, 211, 102, 0.1);
    border-radius: 8px;
    border: 1px solid rgba(37, 211, 102, 0.2);
    margin-top: 1rem;
}

.whatsapp-note i {
    color: #25d366;
    font-size: 1.1rem;
}

.whatsapp-note span {
    color: #2d5a3d;
    font-size: 0.9rem;
    font-weight: 500;
}

.contact-img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Footer mejorado */
footer {
    background: #b80000;
    color: #fff;
    padding: 3rem 0 1rem 0;
    margin-top: 3rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 0 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    margin-bottom: 1rem;
    font-size: 1.3rem;
    color: #ffb3b3;
}

.footer-section p {
    margin: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-section i {
    width: 20px;
    text-align: center;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    text-align: center;
    line-height: 40px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 1rem;
    letter-spacing: 1px;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 900px) {
    .logo-container {
        flex-direction: column;
        gap: 1rem;
    }
    
    nav ul {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }
    
    .slide-caption h2 {
        font-size: 2rem;
    }
    
    .slide-caption p {
        font-size: 1rem;
    }
    
    .slider-btn {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .mision-vision {
        grid-template-columns: 1fr;
    }
    
    .valores ul {
        justify-content: center;
    }
    
    .clients-logos {
        gap: 2rem;
    }
    
    .clients-logos img {
        height: 60px;
    }
    
    .testimonial-list {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }
    .testimonial {
        padding: 1.5rem;
    }
    .testimonial blockquote {
        font-size: 0.95rem;
        min-height: auto;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .faq-question {
        padding: 1rem;
        gap: 0.8rem;
    }
    
    .faq-question h4 {
        font-size: 0.9rem;
    }
    
    .faq-item.active .faq-answer {
        padding: 1.2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 900px) {
    .product-main {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem;
    }
    
    .category-list {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1rem;
    }
}

@media (max-width: 768px) {
    header .logo { height: 56px; }

    .logo-container { gap: 0.75rem; }
    nav ul { display: none; }

    .contact-badges { gap: 0.4rem; }
    .contact-badge { padding: 0.4rem 0.6rem; font-size: 0.9rem; }

    .services-list { gap: 0.8rem; }
    .service { padding: 0.8rem 1.2rem; font-size: 0.9rem; }
    .contact-info { 
        grid-template-columns: 1fr; 
        gap: 1.5rem;
    }
    
    .contact-data {
        padding-right: 0;
    }
    
    .contact-hours {
        margin-top: 1rem;
        margin-left: 0;
    }
    .footer-content { grid-template-columns: 1fr; text-align: center; }

    .categories-grid { grid-template-columns: 1fr; gap: 2rem; }
    .category-column { padding: 1.5rem; }
    .category-item-with-image { padding: 0.8rem; }
    .category-image { width: 100%; aspect-ratio: 490 / 398; height: auto; }
}

@media (max-width: 420px) {
    header .logo { height: 48px; }
    .contact-badge span { display: none; }
    .contact-badge .fa-whatsapp { font-size: 1.1rem; }
}

@media (max-width: 600px) {
    .about, .products, .services, .clients, .testimonials, .faq, .contact {
        padding: 2rem 1rem;
    }
    
    .products h2 {
        font-size: 2rem;
    }
    
    .product-main {
        padding: 2rem 1rem;
        gap: 1.5rem;
    }
    
    .product-intro h3 {
        font-size: 1.5rem;
    }
    
    .categories-container {
        padding: 2rem 1rem;
    }
    
    .categories-container h3 {
        font-size: 1.6rem;
    }
    
    .category-section h4 {
        font-size: 1.2rem;
    }
    
    .category-list {
        grid-template-columns: 1fr;
    }
    
    .category-label {
        padding: 1rem;
        gap: 0.8rem;
        font-size: 0.9rem;
    }
    
    .slide-caption {
        margin: 0 1rem;
        padding: 1.5rem;
    }
    
    .slide-caption h2 {
        font-size: 1.5rem;
    }
    
    .cta-button {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
    
    .product-types {
        grid-template-columns: 1fr;
    }
    
    .services-list {
        grid-template-columns: 1fr;
    }
    
    .valores ul {
        flex-direction: column;
        align-items: center;
    }
    
    .clients-logos {
        flex-direction: column;
        gap: 1rem;
    }
    
    /* .contact-info {
        grid-template-columns: 1fr;
    } */
    
    .slider-section {
        height: 400px;
    }
    
    .slider-dots {
        bottom: 10px;
    }
    
    .dot {
        width: 10px;
        height: 10px;
    }
}

/* Animaciones */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.about, .products, .services, .clients, .testimonials, .faq, .contact {
    animation: fadeIn 0.8s ease-out;
}

/* Scroll suave */
html {
    scroll-behavior: smooth;
}

/* Mejoras de accesibilidad */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    html {
        scroll-behavior: auto;
    }
}

/* Lista estilizada de datos de contacto */
.contact-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 1rem; }
.contact-list li { display: grid; grid-template-columns: 28px 1fr; align-items: start; column-gap: 0.8rem; padding: 0.6rem 0; border-bottom: 1px solid #f2f2f2; }
.contact-list li:last-child { border-bottom: none; }
.contact-icon i { color: #b80000; font-size: 1.1rem; line-height: 1.6rem; }
.contact-item { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.contact-label { font-weight: 700; color: #222; }
.contact-value { color: #333; }
.contact-value a { color: #b80000; font-weight: 700; text-decoration: none; }
.contact-value a:hover { text-decoration: underline; }
.contact-info {
    display: grid;
    grid-template-columns: 60% 40%;
    gap: 2rem;
    align-items: flex-start;
    margin-top: 2rem;
}

.contact-data {
    padding-right: 1rem;
}

.contact-info p {
    margin: 1rem 0;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-info i {
    color: #b80000;
    width: 20px;
    text-align: center;
}

.contact-info a {
    color: #b80000;
    text-decoration: none;
    font-weight: bold;
}

.contact-info a:hover {
    text-decoration: underline;
}

.contact-hours {
    margin-top: 0;
    margin-left: 1.5rem;
    padding: 1.8rem;
    background: linear-gradient(135deg, #fff0f0, #fef7f7);
    border-radius: 12px;
    border: 1px solid #f0d0d0;
    box-shadow: 0 4px 12px rgba(184, 0, 0, 0.08);
    height: fit-content;
}

.contact-hours h4 {
    color: #b80000;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 1.1rem;
    font-weight: 700;
}

.schedule-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.2rem;
}

.schedule-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.8rem 1rem;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 8px;
    border: 1px solid rgba(184, 0, 0, 0.1);
    transition: all 0.2s ease;
}

.schedule-item:hover {
    background: rgba(255, 255, 255, 0.8);
    transform: translateX(4px);
}

.schedule-item i {
    color: #b80000;
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
}

.schedule-info {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.schedule-days {
    font-weight: 600;
    color: #333;
    font-size: 0.95rem;
}

.schedule-time {
    color: #b80000;
    font-weight: 700;
    font-size: 1rem;
}

.whatsapp-note {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem 1rem;
    background: rgba(37, 211, 102, 0.1);
    border-radius: 8px;
    border: 1px solid rgba(37, 211, 102, 0.2);
    margin-top: 1rem;
}

.whatsapp-note i {
    color: #25d366;
    font-size: 1.1rem;
}

.whatsapp-note span {
    color: #2d5a3d;
    font-size: 0.9rem;
    font-weight: 500;
}

.contact-img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Footer mejorado */
footer {
    background: #b80000;
    color: #fff;
    padding: 3rem 0 1rem 0;
    margin-top: 3rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 0 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    margin-bottom: 1rem;
    font-size: 1.3rem;
    color: #ffb3b3;
}

.footer-section p {
    margin: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-section i {
    width: 20px;
    text-align: center;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    text-align: center;
    line-height: 40px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 1rem;
    letter-spacing: 1px;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 900px) {
    .logo-container {
        flex-direction: column;
        gap: 1rem;
    }
    
    nav ul {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }
    
    .slide-caption h2 {
        font-size: 2rem;
    }
    
    .slide-caption p {
        font-size: 1rem;
    }
    
    .slider-btn {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .mision-vision {
        grid-template-columns: 1fr;
    }
    
    .valores ul {
        justify-content: center;
    }
    
    .clients-logos {
        gap: 2rem;
    }
    
    .clients-logos img {
        height: 60px;
    }
    
    .testimonial-list {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }
    .testimonial {
        padding: 1.5rem;
    }
    .testimonial blockquote {
        font-size: 0.95rem;
        min-height: auto;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .faq-question {
        padding: 1rem;
        gap: 0.8rem;
    }
    
    .faq-question h4 {
        font-size: 0.9rem;
    }
    
    .faq-item.active .faq-answer {
        padding: 1.2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 900px) {
    .product-main {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem;
    }
    
    .category-list {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1rem;
    }
}

@media (max-width: 768px) {
    header .logo { height: 56px; }

    .logo-container { gap: 0.75rem; }
    nav ul { display: none; }

    .contact-badges { gap: 0.4rem; }
    .contact-badge { padding: 0.4rem 0.6rem; font-size: 0.9rem; }

    .services-list { gap: 0.8rem; }
    .service { padding: 0.8rem 1.2rem; font-size: 0.9rem; }
    .contact-info { 
        grid-template-columns: 1fr; 
        gap: 1.5rem;
    }
    
    .contact-data {
        padding-right: 0;
    }
    
    .contact-hours {
        margin-top: 1rem;
        margin-left: 0;
    }
    .footer-content { grid-template-columns: 1fr; text-align: center; }

    .categories-grid { grid-template-columns: 1fr; gap: 2rem; }
    .category-column { padding: 1.5rem; }
    .category-item-with-image { padding: 0.8rem; }
    .category-image { width: 100%; aspect-ratio: 490 / 398; height: auto; }
}

@media (max-width: 420px) {
    header .logo { height: 48px; }
    .contact-badge span { display: none; }
    .contact-badge .fa-whatsapp { font-size: 1.1rem; }
}

@media (max-width: 600px) {
    .about, .products, .services, .clients, .testimonials, .faq, .contact {
        padding: 2rem 1rem;
    }
    
    .products h2 {
        font-size: 2rem;
    }
    
    .product-main {
        padding: 2rem 1rem;
        gap: 1.5rem;
    }
    
    .product-intro h3 {
        font-size: 1.5rem;
    }
    
    .categories-container {
        padding: 2rem 1rem;
    }
    
    .categories-container h3 {
        font-size: 1.6rem;
    }
    
    .category-section h4 {
        font-size: 1.2rem;
    }
    
    .category-list {
        grid-template-columns: 1fr;
    }
    
    .category-label {
        padding: 1rem;
        gap: 0.8rem;
        font-size: 0.9rem;
    }
    
    .slide-caption {
        margin: 0 1rem;
        padding: 1.5rem;
    }
    
    .slide-caption h2 {
        font-size: 1.5rem;
    }
    
    .cta-button {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
    
    .product-types {
        grid-template-columns: 1fr;
    }
    
    .services-list {
        grid-template-columns: 1fr;
    }
    
    .valores ul {
        flex-direction: column;
        align-items: center;
    }
    
    .clients-logos {
        flex-direction: column;
        gap: 1rem;
    }
    
    /* .contact-info {
        grid-template-columns: 1fr;
    } */
    
    .slider-section {
        height: 400px;
    }
    
    .slider-dots {
        bottom: 10px;
    }
    
    .dot {
        width: 10px;
        height: 10px;
    }
}

/* Animaciones */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }