/* ========== PALETA DE COLORES ========== */
:root {
  --primary: #C9A87C;
  --primary-dark: #B58E63;
  --primary-light: #EADFCB;
  --secondary: #5D7A5C;
  --secondary-light: #8F9E8A;
  --bg-light: #FEFAF5;
  --bg-soft: #F9F5EF;
  --text-dark: #2C2C2C;
  --text-muted: #6F7C6A;
  --border: #F0E5D8;
  --white: #FFFFFF;
  --shadow: rgba(93, 122, 92, 0.15);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--bg-light);
  color: var(--text-dark);
  line-height: 1.5;
  overflow-x: hidden;
}

section {
  scroll-margin-top: 80px;
}

h1, h2, h3, h4, .logo, .testimonial-name, .step-number, .faq-question, .artistic-text {
  font-family: 'Playfair Display', serif;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
  width: 100%;
}

/* ========== HEADER ========== */
header {
  background: rgba(254, 250, 245, 0.98);
  backdrop-filter: blur(10px);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid var(--border);
}
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
  flex-wrap: wrap;
}
.logo {
  font-size: 1.7rem;
  font-weight: 600;
  color: var(--secondary);
}
.logo span { color: var(--primary); }
.menu-icon {
  display: none;
  font-size: 1.8rem;
  cursor: pointer;
  color: var(--secondary);
  background: none;
  border: none;
}
.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}
.nav-links a {
  text-decoration: none;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  color: var(--secondary);
  transition: 0.2s;
}
.nav-links a:hover { color: var(--primary); }

/* ========== BUTTONS ========== */
.btn-primary, .btn-outline {
  display: inline-block;
  padding: 0.8rem 1.8rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  font-family: 'Inter', sans-serif;
  text-align: center;
}
.btn-primary {
  background: var(--primary);
  color: var(--text-dark);
  box-shadow: 0 6px 14px rgba(201,168,124,0.25);
  border: none;
}
.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(201,168,124,0.3);
}
.btn-outline {
  background: transparent;
  border: 1.5px solid var(--primary);
  color: var(--secondary);
}
.btn-outline:hover {
  background: var(--primary);
  color: white;
  transform: translateY(-2px);
}

/* ========== READ MORE BUTTON (nuevo) ========== */
.btn-readmore {
  background: transparent;
  border: 1px solid var(--primary);
  padding: 0.5rem 1.2rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--secondary);
  cursor: pointer;
  margin: 0.5rem 0 1rem;
  transition: all 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.btn-readmore:hover {
  background: var(--primary-light);
  border-color: var(--primary-dark);
}
.extra-about {
  overflow: hidden;
  transition: all 0.4s ease;
}
.extra-about.hidden-extra {
  display: none;
}
.extra-about:not(.hidden-extra) {
  display: block;
  margin-top: 0.5rem;
  animation: fadeSlide 0.5s ease;
}
@keyframes fadeSlide {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ========== MODAL ========== */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.7);
  backdrop-filter: blur(6px);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  animation: fadeModal 0.3s ease;
}
@keyframes fadeModal {
  from { opacity: 0; }
  to { opacity: 1; }
}
.modal-content {
  background: var(--bg-light);
  max-width: 550px;
  width: 90%;
  border-radius: 2rem;
  padding: 2rem;
  position: relative;
  box-shadow: 0 30px 40px rgba(0,0,0,0.2);
  border: 1px solid var(--border);
  max-height: 85vh;
  overflow-y: auto;
}
.modal-close {
  position: absolute;
  top: 1.2rem;
  right: 1.5rem;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--text-muted);
  transition: 0.2s;
}
.modal-close:hover { color: var(--primary); }
.modal-content h3 {
  font-size: 1.8rem;
  color: var(--secondary);
  margin-bottom: 1rem;
}
.modal-content h4 {
  font-size: 1.2rem;
  margin: 1rem 0 0.5rem;
  color: var(--primary-dark);
}
.modal-content p {
  margin-bottom: 0.8rem;
  color: var(--text-dark);
}
.modal-content ul {
  margin: 0.5rem 0 1rem 1.5rem;
  color: var(--text-muted);
}
.modal-content .modal-cta {
  margin-top: 1.5rem;
  text-align: center;
}
.service-card {
  cursor: pointer;
}

/* ========== HERO ========== */
.hero {
  padding: 2rem 0;
  background: linear-gradient(120deg, #FFF9F2, #F6EFE6);
}
.hero-grid {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.hero-content {
  flex: 1;
  min-width: 280px;
}
.hero-image {
  flex: 0.9;
  text-align: center;
}
.hero-image img {
  width: 100%;
  max-width: 400px;
  border-radius: 40px;
  box-shadow: 0 20px 30px -8px rgba(0,0,0,0.1);
  animation: fadeInUp 1s ease-out, float 5s ease-in-out infinite;
  transform-origin: center;
}
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(30px) scale(0.96);
    filter: blur(4px);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
}
@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-8px); }
  100% { transform: translateY(0px); }
}
.hero-image:hover img {
  transform: scale(1.02);
  transition: transform 0.5s cubic-bezier(0.2, 0.9, 0.4, 1.1);
}
.hero-badge {
  background: var(--primary-light);
  padding: 0.3rem 1rem;
  border-radius: 50px;
  font-size: 0.8rem;
  display: inline-block;
  margin-bottom: 1rem;
}
.hero-content h1 {
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}
.hero-content p {
  font-size: 1.05rem;
  margin-bottom: 1.5rem;
  color: var(--text-muted);
}
.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}
.hero-stats {
  display: flex;
  gap: 1.5rem;
  border-top: 1px solid var(--border);
  padding-top: 1.5rem;
}
/* Nuevos estilos para la filosofía (sin números) */
.hero-stats-philosophy {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  border-top: 1px solid var(--border);
  padding-top: 1.5rem;
  margin-top: 0.5rem;
}

.philosophy-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(201, 168, 124, 0.12);
  padding: 0.5rem 1.2rem;
  border-radius: 60px;
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--secondary);
  transition: all 0.25s ease;
}

.philosophy-item i {
  font-size: 1.2rem;
  color: var(--primary);
}

.philosophy-item:hover {
  background: var(--primary-light);
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .hero-stats-philosophy {
    justify-content: center;
    gap: 0.8rem;
  }
  .philosophy-item {
    font-size: 0.85rem;
    padding: 0.4rem 1rem;
  }
  .philosophy-item i {
    font-size: 1rem;
  }
}


/* ========== ABOUT ========== */
.about-wrapper {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  align-items: center;
}
.about-text { flex: 1; }
.about-img { flex: 0.8; text-align: center; }
.about-img img {
  width: 100%;
  max-width: 340px;
  border-radius: 40px;
  animation: fadeInScale 1.2s ease-out;
  transition: transform 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
}
@keyframes fadeInScale {
  0% {
    opacity: 0;
    transform: scale(0.92) translateY(20px);
    filter: blur(3px);
  }
  100% {
    opacity: 1;
    transform: scale(1) translateY(0);
    filter: blur(0);
  }
}
.about-img:hover img {
  transform: scale(1.03);
}
.about-signature {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #F0EADE;
  padding: 0.4rem 1rem;
  border-radius: 50px;
  margin: 1rem 0;
}

/* ========== SERVICIOS Y BENEFICIOS ========== */
.services-grid, .benefits-grid, .method-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}
.service-card, .benefit-item, .step {
  background: var(--white);
  border-radius: 28px;
  padding: 1.8rem;
  text-align: center;
  border: 1px solid var(--border);
  transition: all 0.3s ease;
  will-change: transform, box-shadow, border-color;
}
.service-card:hover, .benefit-item:hover, .step:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 30px -12px var(--shadow);
}
.service-icon, .benefit-icon { 
  font-size: 2.5rem; 
  color: var(--primary); 
  margin-bottom: 1rem;
  display: inline-block;
  background: rgba(201,168,124,0.1);
  width: 70px;
  height: 70px;
  line-height: 70px;
  border-radius: 50%;
  transition: all 0.3s;
}
.service-card:hover .service-icon, .benefit-item:hover .benefit-icon {
  background: var(--primary);
  color: white;
  transform: scale(1.05);
}
.step-number {
  background: var(--primary-light);
  width: 48px;
  height: 48px;
  display: flex;
  margin: 0 auto 1rem;
  align-items: center;
  justify-content: center;
  border-radius: 60px;
  font-weight: 700;
  color: var(--primary);
}
.service-tag {
  margin-top: 1rem;
  font-size: 0.75rem;
  background: #F6F2EB;
  display: inline-block;
  padding: 0.2rem 1rem;
  border-radius: 50px;
}
.service-tag i {
  margin-right: 0.3rem;
  font-size: 0.7rem;
  color: var(--primary);
}

/* ========== SECTION HEADER ========== */
.section-header {
  text-align: center;
  margin-bottom: 2.5rem;
}
.section-header h2 {
  font-size: 2rem;
  display: inline-block;
  position: relative;
  margin-bottom: 1.2rem;
}
.section-header h2 i {
  color: var(--primary);
  margin: 0 0.2rem;
}
.section-header h2:after {
  content: '';
  position: absolute;
  bottom: -0.6rem;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--primary);
  border-radius: 4px;
}
.section-header p {
  color: var(--text-muted);
  font-size: 0.95rem;
}
.bg-soft { background-color: var(--bg-soft); }

/* ========== TESTIMONIALS ========== */
.testimonial-slider-container {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  overflow: hidden;
  background: var(--white);
  border-radius: 48px;
  padding: 1.5rem;
}
.testimonials-wrapper { display: flex; transition: transform 0.4s ease; }
.testimonial-card {
  flex: 0 0 100%;
  padding: 1rem;
  text-align: center;
}
.testimonial-quote { font-size: 2rem; color: var(--primary); opacity: 0.4; margin-bottom: 0.5rem; }
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: white;
  border: 1px solid #E2D5C8;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  cursor: pointer;
}
.btn-prev { left: 10px; }
.btn-next { right: 10px; }
.dots { text-align: center; margin-top: 1rem; }
.dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  background: #D9C9B0;
  border-radius: 50%;
  margin: 0 4px;
  cursor: pointer;
}
.dot.active { background: var(--primary); width: 20px; border-radius: 20px; }

/* ========== SECCIÓN ARTÍSTICA ========== */
.artistic-section {
  background: linear-gradient(135deg, #f7f2ea 0%, #ede4d8 100%);
  padding: 4rem 0;
  text-align: center;
}
.artistic-header h2 i {
  font-size: 1.6rem;
  margin: 0 0.25rem;
}
.artistic-slider {
  position: relative;
  max-width: 700px;
  margin: 0 auto;
  min-height: 250px;
}
.artistic-slide {
  display: none;
  opacity: 0;
  transition: opacity 0.6s ease;
  padding: 2rem;
  background: rgba(255,255,255,0.6);
  border-radius: 50px;
  backdrop-filter: blur(8px);
}
.artistic-slide.active {
  display: block;
  opacity: 1;
}
.quote-icon {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 1rem;
}
.artistic-text {
  font-size: 1.6rem;
  font-style: italic;
  line-height: 1.3;
  color: var(--text-dark);
  margin-bottom: 1rem;
}
.artistic-author {
  font-size: 0.9rem;
  color: #8f7a5f;
  font-weight: 500;
}
.artistic-dots {
  margin-top: 1.5rem;
}
.artistic-dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #D9C9B0;
  margin: 0 5px;
  cursor: pointer;
}
.artistic-dot.active {
  background: var(--primary);
  width: 25px;
  border-radius: 10px;
}

/* ========== FAQ ========== */
.faq-grid { max-width: 800px; margin: 0 auto; }
.faq-item {
  background: var(--white);
  border-radius: 24px;
  margin-bottom: 1rem;
  border: 1px solid var(--border);
  overflow: hidden;
}
.faq-question {
  display: flex;
  justify-content: space-between;
  padding: 1rem 1.5rem;
  cursor: pointer;
  font-weight: 600;
}
.faq-answer {
  max-height: 0;
  padding: 0 1.5rem;
  overflow: hidden;
  transition: max-height 0.3s ease;
  color: var(--text-muted);
}
.faq-item.active .faq-answer {
  max-height: 120px;
  padding: 0 1.5rem 1rem;
}
.faq-item.active .faq-question i { transform: rotate(180deg); }

/* ========== CONTACTO ========== */
.contact-grid {
  display: flex;
  gap: 2.5rem;
  align-items: center;
  flex-wrap: wrap;
}
.contact-image {
  flex: 1;
  min-width: 200px;
  text-align: center;
}
.contact-image img {
  width: 100%;
  max-width: 320px;
  border-radius: 2rem;
  box-shadow: 0 20px 30px -12px rgba(0,0,0,0.15);
  transition: all 0.4s cubic-bezier(0.2,0.9,0.4,1.1);
}
.contact-image img:hover {
  transform: scale(1.02);
}
.contact-form-card {
  flex: 1.2;
  background: var(--white);
  border-radius: 2rem;
  padding: 2rem;
  box-shadow: 0 15px 35px rgba(93, 122, 92, 0.08);
  border: 1px solid var(--border);
  transition: transform 0.3s ease;
}
.contact-form-card h3 {
  font-family: 'Playfair Display', serif;
  margin-bottom: 1.2rem;
}
.contact-form-card h3 i {
  color: var(--primary);
  margin-right: 0.5rem;
}
.form-group {
  margin-bottom: 1.2rem;
}
.form-group input, .form-group textarea {
  width: 100%;
  padding: 0.9rem 1.2rem;
  border: 1px solid var(--border);
  border-radius: 2rem;
  font-family: 'Inter', sans-serif;
  background: var(--bg-light);
  transition: all 0.2s;
  font-size: 0.95rem;
}
.form-group input:focus, .form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(201,168,124,0.2);
}
.btn-whatsapp-submit {
  background: #25D366;
  color: white;
  border: none;
  width: 100%;
  padding: 0.9rem;
  border-radius: 3rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  transition: all 0.2s;
  cursor: pointer;
  font-size: 1rem;
}
.btn-whatsapp-submit:hover {
  background: #128C7E;
  transform: translateY(-2px);
}
.social-links-mini {
  margin-top: 1rem;
  text-align: center;
}
.social-links-mini p {
  margin: 1rem 0 0.5rem;
  font-size: 0.8rem;
}
.social-links {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 0.5rem;
}
.social-icon {
  color: var(--secondary);
  font-size: 1.6rem;
  transition: 0.2s;
}
.social-icon:hover {
  color: var(--primary);
  transform: translateY(-3px);
}

/* ========== FOOTER ========== */
footer {
  background: #EFE8DF;
  padding: 2rem 0;
  text-align: center;
}
.copyright { margin-top: 0.5rem; font-size: 0.75rem; }

/* ========== ANIMACIONES FADE-UP SCROLL ========== */
.fade-up {
  opacity: 0;
  transform: translateY(35px);
  transition: opacity 0.7s cubic-bezier(0.2, 0.9, 0.4, 1.1), transform 0.7s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }

/* ========== SCROLL TOP BUTTON ========== */
.scroll-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: var(--primary);
  color: var(--text-dark);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
  z-index: 99;
  box-shadow: 0 5px 12px rgba(0,0,0,0.15);
}
.scroll-top.visible {
  opacity: 1;
  visibility: visible;
}

/* ========== TALLER ========== */
.workshops-section {
  padding: 4rem 0;
  background: linear-gradient(135deg, #FFF9F2 0%, #FDF5EC 100%);
  position: relative;
}
.workshop-single-card {
  max-width: 900px;
  margin: 0 auto;
  background: var(--white);
  border-radius: 2.5rem;
  padding: 2.5rem;
  box-shadow: 0 20px 40px rgba(93, 122, 92, 0.12);
  border: 1px solid var(--border);
  transition: all 0.3s ease;
}
.workshop-single-card:hover {
  transform: translateY(-5px);
}
.workshop-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--primary-light);
  padding: 0.4rem 1.2rem;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary-dark);
  margin-bottom: 1.2rem;
}
.workshop-title {
  font-size: 1.9rem;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 1rem;
  line-height: 1.2;
}
.workshop-intro {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-bottom: 1.8rem;
  border-left: 3px solid var(--primary);
  padding-left: 1.2rem;
}
.workshop-themes {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-bottom: 2rem;
  justify-content: center;
}
.theme-badge {
  background: rgba(201, 168, 124, 0.12);
  padding: 0.4rem 1rem;
  border-radius: 40px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--secondary);
  transition: all 0.2s;
}
.theme-badge i {
  font-size: 0.5rem;
  margin-right: 0.4rem;
  color: var(--primary);
  vertical-align: middle;
}
.theme-badge:hover {
  background: var(--primary-light);
  transform: translateY(-2px);
}
.workshop-details {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
  padding: 1rem 0;
  border-top: 1px dashed var(--border);
  border-bottom: 1px dashed var(--border);
}
.detail-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}
.detail-item i {
  color: var(--primary);
  font-size: 1.1rem;
}
.workshop-cta {
  text-align: center;
  margin-top: 1.5rem;
}
.btn-workshop {
  background: #25D366;
  color: white;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.9rem 2rem;
  font-size: 1rem;
  box-shadow: 0 8px 18px rgba(37, 211, 102, 0.2);
}
.btn-workshop:hover {
  background: #128C7E;
  transform: translateY(-3px);
}
.cta-note {
  font-size: 0.8rem;
  color: #7A6E62;
  margin-top: 1rem;
}
.cta-note i {
  margin-right: 0.3rem;
  color: #e67e22;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 768px) {
  .container { padding: 0 1.2rem; }
  .menu-icon { 
    display: block; 
    z-index: 1001;
  }
  .nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
  }
  .nav-overlay.active {
    opacity: 1;
    visibility: visible;
  }
  .nav-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--bg-light);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 1.5rem 0;
    margin: 0;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-20px);
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
  }
  .nav-links.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  .nav-links li {
    width: 100%;
    text-align: center;
  }
  
  /* ===== MEJORA DE SEPARACIÓN ENTRE SECCIONES EN MÓVIL ===== */
  section {
    padding: 3rem 0;
  }
  .hero {
    padding: 2rem 0 3rem 0;
  }
  section:not(#home) {
    border-top: 1px solid var(--border);
  }
  .bg-soft {
    background-color: var(--bg-soft);
  }
  .workshops-section {
    border-top: 1px solid var(--border);
  }
  .section-header {
    margin-bottom: 2rem;
  }
  .section-header h2 {
    font-size: 1.8rem;
  }
  .section-header h2:after {
    width: 50px;
    height: 2px;
    bottom: -0.5rem;
  }
  
  .hero-grid { flex-direction: column; }
  .hero-image { order: 1; margin-bottom: 1.5rem; }
  .hero-content { order: 2; text-align: center; }
  .hero-image img { max-width: 260px; }
  .hero-buttons { justify-content: center; }
  .hero-stats { justify-content: center; gap: 1rem; }
  .hero-content h1 { font-size: 2rem; text-align: center; }
  .services-grid, .benefits-grid, .method-steps {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .about-wrapper { flex-direction: column-reverse; text-align: center; }
  
  /* Efecto móvil: transiciones suaves para color/borde/sombra */
  .service-card, .benefit-item, .step, .workshop-single-card {
    transition: border-color 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease, transform 0.2s ease;
    will-change: border-color, box-shadow, background-color;
  }
  .service-card.card-highlight, 
  .benefit-item.card-highlight, 
  .step.card-highlight, 
  .workshop-single-card.card-highlight {
    border-color: var(--primary);
    box-shadow: 0 12px 24px rgba(201, 168, 124, 0.2);
    background-color: #FFFCF8;
    transform: scale(1.01);
  }

  .artistic-header h2 i {
    font-size: 0.9rem;
    margin: 0 0.15rem;
  }
  .artistic-text {
    font-size: 1.2rem;
  }
  
  .contact-grid {
    flex-direction: column;
    gap: 1.5rem;
  }
  .contact-image {
    order: 1;
    max-width: 200px;
    margin: 0 auto;
  }
  .contact-image img {
    max-width: 180px;
    border-radius: 1.5rem;
  }
  .contact-form-card {
    order: 2;
    width: 100%;
    padding: 1.5rem;
  }
  .contact-form-card h3 {
    font-size: 1.3rem;
    text-align: center;
  }
  
  .slider-btn { width: 32px; height: 32px; }
  .workshop-single-card {
    padding: 1.5rem;
  }
  .workshop-title {
    font-size: 1.5rem;
  }
  .workshop-intro {
    font-size: 0.95rem;
  }
  .theme-badge {
    font-size: 0.75rem;
  }
  .detail-item {
    font-size: 0.8rem;
  }
  .workshop-details {
    gap: 1rem;
  }
}

@media (max-width: 480px) {
  .hero-content h1 { font-size: 1.8rem; }
  .contact-image {
    max-width: 150px;
  }
  .contact-image img {
    max-width: 140px;
  }
  .artistic-header h2 i {
    font-size: 0.8rem;
  }
  section {
    padding: 2.5rem 0;
  }
}
/* ========== RESPONSIVE MENU MEJORADO ========== */
@media (max-width: 1024px) {
  .menu-icon { 
    display: block; 
    z-index: 1001;
  }
  .nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
  }
  .nav-overlay.active {
    opacity: 1;
    visibility: visible;
  }
  .nav-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--bg-light);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 1.5rem 0;
    margin: 0;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-20px);
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
  }
  .nav-links.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  .nav-links li {
    width: 100%;
    text-align: center;
  }
}

@media (min-width: 1025px) {
  .nav-links {
    gap: 1.2rem;
  }
  .nav-links a {
    font-size: 0.9rem;
    white-space: nowrap;
  }
}