/* Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --sk-green: #233616;
  --sk-gold: #d9a63a;
  --sk-ivory: #faf7f2;
  --sk-char: #121212;
  --sk-wine: #5a2831;

  --font-display: "Playfair Display", serif;
  --font-body: "Inter", sans-serif;

  --radius: 0.75rem;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--sk-char);
  background-color: var(--sk-ivory);
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Typography */
h1,
h2,
h3 {
  font-family: var(--font-display);
  line-height: 1.2;
  font-weight: 400;
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 500;
  border-radius: 2rem;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background-color: var(--sk-gold);
  color: var(--sk-char);
}

.btn-primary:hover {
  background-color: #c89530;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(217, 166, 58, 0.3);
}

.btn-secondary {
  background-color: transparent;
  color: var(--sk-ivory);
  border: 2px solid var(--sk-ivory);
}

.btn-secondary:hover {
  background-color: rgba(250, 247, 242, 0.1);
  transform: translateY(-2px);
}

.btn-outline {
  background-color: transparent;
  color: var(--sk-wine);
  border: 2px solid var(--sk-wine);
}

.btn-outline:hover {
  background-color: var(--sk-wine);
  color: var(--sk-ivory);
  transform: translateY(-2px);
}

.btn-whatsapp {
  background-color: #25d366;
  color: white;
}

.btn-whatsapp:hover {
  background-color: #20ba5a;
  transform: translateY(-2px);
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1.125rem;
}

.btn-block {
  width: 100%;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: transparent;
  transition: var(--transition);
}

.header.scrolled {
  background-color: var(--sk-ivory);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
}

.header-logo {
  display: flex;
  align-items: center;
}

.logo-img {
  height: 50px;
  width: 50px;
  object-fit: contain;
}

.header-nav {
  display: flex;
  gap: 2rem;
}

.nav-link {
  color: var(--sk-ivory);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
  position: relative;
}

.header.scrolled .nav-link {
  color: var(--sk-char);
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--sk-gold);
  transition: width 0.3s;
}

.nav-link:hover::after {
  width: 100%;
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.mobile-menu-toggle span {
  display: block;
  width: 25px;
  height: 3px;
  background-color: var(--sk-char);
  transition: var(--transition);
}

@media (max-width: 768px) {
  .header-nav {
    display: none;
    position: absolute;
    top: 100%;
    right: 1.5rem;
    left: 1.5rem;
    flex-direction: column;
    gap: 1rem;
    background-color: var(--sk-ivory);
    padding: 1.5rem;
    border-radius: var(--radius);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    z-index: 999;
  }

  .header-nav.open {
    display: flex;
  }

  .nav-link {
    color: var(--sk-char); /* para asegurar buen contraste en el fondo claro */
  }

  .mobile-menu-toggle {
    display: flex;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
  }

  .mobile-menu-toggle span {
    width: 22px;
    height: 2.5px;
  }

  .icon-card {
    width: 42px;
    height: 42px;
  }

  .feature-icon svg {
    width: 20px;
    height: 20px;
  }

  .proceso-section .timeline-icon {
    width: 52px;
    height: 52px;
    margin: 0 auto 0.85rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: rgba(250, 247, 242, 0.1);
    border: 1px solid rgba(217, 166, 58, 0.35);
  }

  .proceso-section .timeline-icon svg {
    width: 24px;
    height: 24px;
  }

  .faq-icon {
    font-size: 1.1rem;
  }

  /* Resto de tus reglas responsive... */
}
.mobile-menu-toggle.open span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.mobile-menu-toggle.open span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.open span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}


/* Hero */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-color: var(--sk-green);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(35, 54, 22, 0.6), rgba(35, 54, 22, 0.8));
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: var(--sk-ivory);
  max-width: 900px;
}

.hero-title {
  color: var(--sk-ivory);
  margin-bottom: 1.5rem;
}

.hero-subtitle {
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  margin-bottom: 2.5rem;
  opacity: 0.95;
  line-height: 1.6;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Masterclass Section */
.masterclass-section {
  background:
    radial-gradient(circle at top left, rgba(217, 166, 58, 0.14), transparent 30%),
    linear-gradient(180deg, #fffdf9 0%, #f7efe2 100%);
}

.masterclass-card {
  display: grid;
  grid-template-columns: minmax(320px, 0.95fr) minmax(0, 1.1fr);
  gap: 2rem;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.9);
  border: 1px solid #e7ddcf;
  border-radius: 1.4rem;
  padding: 1.4rem;
  box-shadow: 0 22px 50px rgba(18, 18, 18, 0.07);
}

.masterclass-media {
  position: relative;
  min-height: 460px;
  overflow: hidden;
  border-radius: 1rem;
  background-color: var(--sk-green);
}

.masterclass-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(35, 54, 22, 0.04), rgba(35, 54, 22, 0.18));
}

.masterclass-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.masterclass-copy {
  padding: 0.4rem 0.4rem 0.4rem 0;
}

.masterclass-copy .section-title,
.masterclass-copy .section-subtitle {
  text-align: left;
}

.masterclass-copy .section-title {
  margin-bottom: 1rem;
}

.masterclass-copy .section-subtitle {
  margin-bottom: 1.5rem;
  max-width: 58ch;
}

.masterclass-kicker {
  display: inline-flex;
  align-items: center;
  padding: 0.4rem 0.9rem;
  margin-bottom: 1rem;
  border-radius: 999px;
  background-color: var(--sk-green);
  color: var(--sk-ivory);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.masterclass-highlights {
  display: grid;
  gap: 0.85rem;
  margin-bottom: 1.75rem;
}

.masterclass-note {
  padding: 0.95rem 1rem;
  border-radius: 0.9rem;
  background-color: #fff;
  border-left: 4px solid var(--sk-gold);
  color: #43382e;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.04);
}

/* Sections */
.section {
  padding: 5rem 0;
}

#cotizador {
  scroll-margin-top: 12px;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--sk-wine);
  text-align: center;
  margin-bottom: 1rem;
}

.section-subtitle {
  text-align: center;
  font-size: 1.25rem;
  color: var(--sk-char);
  opacity: 0.8;
  margin-bottom: 3rem;
}

.section-title-light {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--sk-ivory);
  text-align: center;
  margin-bottom: 1rem;
}

.section-subtitle-light {
  text-align: center;
  font-size: 1.25rem;
  color: var(--sk-ivory);
  opacity: 0.9;
  margin-bottom: 3rem;
}

/* Experiencia Section */
.experiencia-section {
  background-color: var(--sk-ivory);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.feature-card {
  background-color:var(--sk-ivory);
  padding: 2.5rem 2rem;
  border-radius: var(--radius);
  border-top: 3px solid var(--sk-gold);
  border-bottom: 1px solid #d4cfc4;
  border-left: 1px solid #d4cfc4;
  border-right: 1px solid #d4cfc4;
  transition: var(--transition);
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}
.icon-card{
      background-color: #f7efe2;
      width: 48px;
      height: 48px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
}
.feature-icon {
    color: #d9a63a;
  /* font-size: 3rem;
  margin-bottom: 1rem; */
}

.feature-title {
  color: var(--sk-wine);
  margin-bottom: 1rem;  margin-top: 1rem;
}

.feature-text {
  color: var(--sk-char);
  opacity: 0.8;
  line-height: 1.7;
}

/* Elegancia Section */
.elegancia-section {
  background-color: var(--sk-ivory);
}

.split-layout {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 4rem;
  align-items: center;
}

.split-image img {
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.split-content {
  position: relative;
}

.gold-accent {
  width: 60px;
  height: 3px;
  background-color: var(--sk-gold);
  margin-bottom: 1.5rem;
}

.section-text {
  margin-bottom: 1.5rem;
  line-height: 1.7;
  opacity: 0.9;
}

/* Proceso Section */
.proceso-section {
  background-color: var(--sk-green);
  color: var(--sk-ivory);
}

.timeline {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 3rem;
  flex-wrap: wrap;
}

.timeline-item {
  flex: 1;
  min-width: 180px;
  max-width: 220px;
  text-align: center;
}

.timeline-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  filter: grayscale(1) brightness(2);
}

.timeline-title {
  color: var(--sk-gold);
  margin-bottom: 0.75rem;
  font-size: 1.25rem;
}

.timeline-text {
  color: var(--sk-ivory);
  opacity: 0.9;
  font-size: 0.95rem;
  line-height: 1.6;
}

.timeline-connector {
  width: 40px;
  height: 2px;
  background-color: var(--sk-gold);
  opacity: 0.5;
  flex-shrink: 0;
}

/* Pasión Section */
.pasion-section {
  background-color: var(--sk-ivory);
}

.quote-block {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3rem;
}

.quote-mark {
  font-size: 5rem;
  color: var(--sk-gold);
  line-height: 1;
  font-family: var(--font-display);
}

.quote-text {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  color: var(--sk-wine);
  font-family: var(--font-display);
  font-style: italic;
  margin-bottom: 1rem;
  line-height: 1.4;
}

.quote-author {
  color: var(--sk-char);
  opacity: 0.7;
  font-weight: 500;
}

.media-slider {
  overflow: hidden;
  border-radius: var(--radius);
}

.slider-track {
  display: flex;
  gap: 1rem;
  animation: slide 20s linear infinite;
}

.slider-image {
  min-width: 600px;
  height: 400px;
  object-fit: cover;
  border-radius: var(--radius);
}

@keyframes slide {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}

/* Sabores Section */
.sabores-section {
  background-color: white;
}

.gallery-masonry {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  transition: var(--transition);
}

.gallery-item:hover {
  transform: scale(1.02);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  color: white;
  font-weight: 500;
}

.testimonials {
  padding: 5rem 0;
  background-color: #f7efe2; /* similar al resto de la web */
}

.testimonials-grid {
  display: grid;
  gap: 2rem;
  max-width: 1000px;
  margin: 3rem auto 0;
}

.testimonial-card {
  background-color: #fff;
  border-radius: var(--radius);
  padding: 2rem 2.25rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  border: 1px solid #e0d8c8;
}

.testimonial-text {
  font-size: 0.98rem;
  line-height: 1.8;
  color: #4a4135;
  margin-bottom: 1rem;
}

.testimonial-author {
  font-weight: 600;
  color: var(--sk-char);
  font-size: 0.95rem;
}

/* Desktop: 3 columnas, Tablet: 2 columnas, Mobile: 1 columna */
@media (min-width: 992px) {
  .testimonials-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 640px) and (max-width: 991px) {
  .testimonials-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 639px) {
  .testimonials {
    padding: 3.5rem 0;
  }

  .testimonial-card {
    padding: 1.5rem 1.75rem;
  }
}

/* Por qué SK Section */
.porque-section {
  background-color: white;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.benefit-card {
  background-color: var(--sk-ivory);
  padding: 2.5rem 2rem;
  border-radius: var(--radius);
  border-left: 4px solid var(--sk-gold);
  transition: var(--transition);
}

.benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.benefit-badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  /* background-color: var(--sk-green); */
  color: var(--sk-gold);
  border-color: var(--sk-gold);
  border: 1px solid #d9a63a;
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: 1rem;
  margin-bottom: 0.75rem;
}

.benefit-badge-result {
  background-color: #e9e2de;
  color: var(--sk-wine);
  border: 1px solid #e9e2de;
  font-size: 0.875rem;
  font-weight: 400;
  border-radius: 1rem;
  margin-bottom: 0.75rem;
  padding: 0.25rem 0.75rem;
  display: inline-block;

  
}

.benefit-fact {
  font-weight: 600;
  color: var(--sk-char);
  margin-bottom: 1rem;
  font-size: 1.125rem;
}

.benefit-arrow {
  font-size: 2rem;
  color: var(--sk-gold);
  margin: 1rem 0;
}

.benefit-result {
  color: var(--sk-wine);
  font-weight: 500;
  line-height: 1.6;
  font-size: 1.125rem;
}

/* CTA Section */
.cta-section {
  background-color: var(--sk-green);
  color: var(--sk-ivory);
  text-align: center;
}

.cta-content {
  max-width: 800px;
  margin: 0 auto;
}

.cta-title {
  color: var(--sk-ivory);
  margin-bottom: 1.5rem;
}

.cta-text {
  font-size: 1.25rem;
  margin-bottom: 2.5rem;
  opacity: 0.95;
  line-height: 1.7;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Cotizador Section */
.cotizador-section {
  background: linear-gradient(180deg, #ffffff 0%, #f7efe2 100%);
}

.cotizador-card {
  background-color: #fff;
  border: 1px solid #e4dac8;
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.07);
}

.cotizador-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.category-chip {
  border: 1px solid #d9c9a9;
  background-color: #fff;
  color: var(--sk-wine);
  border-radius: 999px;
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.category-chip:hover,
.category-chip.active {
  border-color: var(--sk-gold);
  background-color: #f8f0e2;
}

.cotizador-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.cotizador-control {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.cotizador-control label {
  font-weight: 600;
}

.cotizador-control input,
.cotizador-control select {
  border: 1px solid #d4cfc4;
  border-radius: 0.6rem;
  padding: 0.7rem 0.8rem;
  background-color: #fff;
  font: inherit;
}

.cotizador-value {
  color: var(--sk-wine);
  font-weight: 600;
}

.cotizador-result {
  margin-top: 1.25rem;
  background-color: #faf7f2;
  border: 1px solid #e6dfd3;
  border-radius: 0.75rem;
  padding: 1rem 1.1rem;
}

.cotizador-result-title {
  color: var(--sk-wine);
  font-weight: 700;
}

.cotizador-result-amount {
  font-size: 1.4rem;
  font-family: var(--font-display);
  color: var(--sk-green);
  margin-top: 0.25rem;
}

.cotizador-result-copy {
  font-size: 0.92rem;
  opacity: 0.85;
}

.cotizador-actions {
  margin-top: 1.2rem;
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}

@media (max-width: 1024px) {
  .cotizador-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.footer-logo-img {
  height: 80px;
  width: 80px;
  object-fit: contain;
}

.footer-nav {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-link {
  color: var(--sk-ivory);
  text-decoration: none;
  opacity: 0.8;
  transition: opacity 0.3s;
}

.footer-link:hover {
  opacity: 1;
  color: var(--sk-gold);
}

/* Modal */
.modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.modal.active {
  display: flex;
}

.modal-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(4px);
}

.modal-content {
  position: relative;
  background-color: white;
  border-radius: var(--radius);
  padding: 3rem 2.5rem;
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.3);
  animation: modalEnter 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes modalEnter {
  from {
    opacity: 0;
    transform: scale(0.95) translateY(20px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.modal-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: none;
  border: none;
  font-size: 2rem;
  color: var(--sk-char);
  cursor: pointer;
  line-height: 1;
  opacity: 0.6;
  transition: opacity 0.3s;
}

.modal-close:hover {
  opacity: 1;
}

.modal-title {
  color: var(--sk-wine);
  margin-bottom: 0.5rem;
}

.modal-subtitle {
  color: var(--sk-char);
  opacity: 0.7;
  margin-bottom: 2rem;
  line-height: 1.6;
}

/* Form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-label {
  font-weight: 500;
  color: var(--sk-char);
  font-size: 0.95rem;
}

.form-input,
.form-textarea {
  padding: 0.75rem 1rem;
  border: 2px solid #e5e5e5;
  border-radius: 0.5rem;
  font-family: var(--font-body);
  font-size: 1rem;
  transition: var(--transition);
  background-color: white;
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--sk-gold);
  box-shadow: 0 0 0 3px rgba(217, 166, 58, 0.1);
}

.form-textarea {
  resize: vertical;
  min-height: 100px;
}

.form-error {
  color: #dc2626;
  font-size: 0.875rem;
  display: none;
}

.form-group.error .form-input,
.form-group.error .form-textarea {
  border-color: #dc2626;
}

.form-group.error .form-error {
  display: block;
}

.redes-sociales{
    display: flex;
    flex-direction: row;
    justify-content: center;
   
}
.redes-sociales a{
    padding: 1rem;
     color: white;
}
.redes-sociales a:hover{
    padding: 1rem;
    color: white;
    background-color: var(--sk-gold);
}

/* preguntas frecuentes */
/* FAQ Section – acordeón */
.faq-section {
  padding: 5rem 0;
  background-color: #f7efe2;
}

.faq-search {
  max-width: 760px;
  margin: 0 auto 1.25rem;
}

.faq-search-label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--sk-wine);
}

.faq-search-input {
  width: 100%;
  border: 1px solid #d8cfbf;
  border-radius: 999px;
  padding: 0.75rem 1rem;
  font: inherit;
  background-color: #fff;
}

.faq-list {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background-color: #fff;
  border-radius: var(--radius);
  border: 1px solid #e0d8c8;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
  overflow: hidden;
}

/* Botón de cabecera del acordeón */
.faq-header {
  width: 100%;
  padding: 1rem 1.5rem;
  background: transparent;
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  text-align: left;
}

.faq-question {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--sk-char);
}

.faq-icon {
  font-size: 1.25rem;
  line-height: 1;
  transition: transform 0.2s ease;
}

/* Cuerpo del acordeón (contenido) */
.faq-body {
  max-height: 0;
  overflow: hidden;
  padding: 0 1.5rem;
  transition: max-height 0.25s ease, padding-bottom 0.25s ease;
}

.faq-body p {
  font-family: var(--font-body);
  font-size: 0.98rem;
  line-height: 1.7;
  color: #4a4135;
  opacity: 0.9;
  padding: 0.5rem 0 1rem 0;
}

/* Estado abierto */
.faq-item.open .faq-body {
  max-height: 300px; /* suficiente para la mayoría de respuestas */
  padding-bottom: 0.75rem;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg); /* convierte + en x */
}

/* SEO Categories Section */
.seo-categories-section {
  background-color: #fff;
}

.seo-categories-grid {
  max-width: 980px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1rem;
}

.seo-category-link {
  display: block;
  background-color: #faf7f2;
  border: 1px solid #e4dac8;
  border-radius: 0.65rem;
  padding: 1rem 1.1rem;
  color: var(--sk-wine);
  text-decoration: none;
  font-weight: 600;
  line-height: 1.45;
  transition: var(--transition);
}

.seo-category-link:hover {
  border-color: var(--sk-gold);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
}

@media (max-width: 768px) {
  .cotizador-card {
    padding: 1.2rem;
  }

  .cotizador-grid {
    grid-template-columns: 1fr;
  }

  .cotizador-control select {
    min-height: 52px;
    padding: 0.85rem 1rem;
    font-size: 1rem;
  }

  #quick-subcategoria {
    min-height: 56px;
    font-size: 1.05rem;
    font-weight: 500;
  }

  .faq-section {
    padding: 3.5rem 0;
  }

  .faq-header {
    padding: 0.9rem 1.25rem;
  }

  .faq-body {
    padding: 0 1.25rem;
  }
}

/* preguntas frecuentes */




/* Toast */
.toast {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background-color: var(--sk-green);
  color: var(--sk-ivory);
  padding: 1rem 1.5rem;
  border-radius: 0.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  transform: translateX(400px);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 3000;
}

.toast.show {
  transform: translateX(0);
}

.toast-message {
  font-weight: 500;
}

/* Animations */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.fade-up.delay-1 {
  animation-delay: 0.2s;
}

.fade-up.delay-2 {
  animation-delay: 0.4s;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s, transform 0.6s;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 768px) {
  .header-nav {
    display: none;
  }

  .mobile-menu-toggle {
    display: flex;
  }

  .hero-cta {
    flex-direction: column;
    align-items: stretch;
  }

  .features-grid,
  .benefits-grid {
    grid-template-columns: 1fr;
  }

  .split-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .masterclass-card {
    grid-template-columns: 1fr;
    padding: 1rem;
  }

  .masterclass-media {
    min-height: 320px;
  }

  .masterclass-copy {
    padding: 0.25rem;
  }

  .timeline {
    flex-direction: column;
    gap: 2rem;
  }

  .timeline-connector {
    width: 2px;
    height: 40px;
  }

  .carousel-prev {
    left: 10px;
  }

  .carousel-next {
    right: 10px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .cta-buttons {
    flex-direction: column;
  }

  .footer-nav {
    flex-direction: column;
    gap: 1rem;
  }
}

@media (max-width: 480px) {
  .section {
    padding: 3rem 0;
  }

  .container {
    padding: 0 1rem;
  }

  .modal-content {
    padding: 2rem 1.5rem;
  }

  .masterclass-media {
    min-height: 260px;
  }
}


/* ===== Footer ===== */
.site-footer {
  background-color: var(--sk-green);
  color: var(--sk-ivory);
  padding: 3.5rem 0 2.5rem;
  margin-top: 4rem;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
  justify-content: space-between;
  align-items: flex-start;
}

.footer-brand {
  max-width: 320px;
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
}

.footer-tagline {
  font-family: var(--font-body);
  font-size: 0.95rem;
  line-height: 1.7;
  opacity: 0.9;
}

.footer-nav-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-link {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--sk-ivory);
  text-decoration: none;
  opacity: 0.9;
  transition: opacity 0.2s ease;
}

.footer-link:hover {
  opacity: 1;
}

.footer-link-button {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  text-align: left;
}

.footer-contact-title {
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.footer-address {
  font-style: normal;
  font-size: 0.9rem;
  line-height: 1.7;
  opacity: 0.9;
}

.footer-bottom {
  border-top: 1px solid rgba(250, 247, 242, 0.12);
  margin-top: 2.5rem;
  padding-top: 1.25rem;
}

.footer-bottom-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem;
  font-size: 0.85rem;
  opacity: 0.85;
}

/* Responsive */
@media (max-width: 768px) {
  .site-footer {
    padding: 3rem 0 2rem;
  }

  .footer-inner {
    flex-direction: column;
  }

  .footer-bottom-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* BOTÓN FLOTANTE WHATSAPP */
.floating-whatsapp {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999;
  background-color: #25d366;
  color: #fff;
  padding: 12px 18px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(0,0,0,0.25);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.floating-whatsapp img {
  width: 22px;
  height: 22px;
}

.floating-whatsapp:hover {
  transform: scale(1.05);
  box-shadow: 0 5px 14px rgba(0,0,0,0.3);
}

/* Solo se muestra en MOBILE */
@media (min-width: 769px) {
  .floating-whatsapp {
    display: none;
  }
}
