:root {
  --primary: #0095f6;
  --primary-hover: #1877f2;
  --accent: #ff3040;
  --text-dark: #000000;
  --text-medium: #262626;
  --text-light: #737373;
  --white: #ffffff;
  --light-bg: #fafafa;
  --border-color: #dbdbdb;
  --card-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: #000000;
  line-height: 1.5;
  background-color: #ffffff;
  -webkit-font-smoothing: antialiased;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.section {
  padding: 80px 0;
  position: relative;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: #000000;
  line-height: 1.2;
}

.section-subtitle {
  font-size: 1.1rem;
  color: #262626;
  margin: 0 auto 40px;
  max-width: 700px;
}

.highlight {
  color: #ff0159;
}

.btn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.95rem;
}

.btn-primary {
  background-color: #ff8400;
  color: #ffffff;
  border: none;
}

.btn-primary:hover {
  background-color: #ff5500;
}

.btn-outline {
  background-color: transparent;
  color: #000000;
  border: 1px solid #dbdbdb;
}

.btn-outline:hover {
  background-color: #fafafa;
}

/* ============================================
   SECCIÓN TIKTOK PROMO - ESTILOS COMPLETOS
   ============================================ */

.tiktok-promo {
  position: relative;
  padding: 80px 0;
  background: #010101;
  overflow: hidden;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* Glow decorativo superior */
.tiktok-promo::before {
  content: '';
  position: absolute;
  top: -120px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 250px;
  background: radial-gradient(ellipse, rgba(254, 44, 85, 0.15) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

/* Glow decorativo inferior */
.tiktok-promo::after {
  content: '';
  position: absolute;
  bottom: -120px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 250px;
  background: radial-gradient(ellipse, rgba(37, 244, 238, 0.1) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.tiktok-promo__container {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Badge superior */
.tiktok-promo__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(254, 44, 85, 0.1);
  border: 1px solid rgba(254, 44, 85, 0.25);
  border-radius: 999px;
  padding: 6px 16px;
  font-size: 0.8rem;
  font-weight: 600;
  color: #FE2C55;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 32px;
}

.tiktok-promo__badge svg {
  width: 16px;
  height: 16px;
  fill: #FE2C55;
}

/* Layout principal */
.tiktok-promo__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* Columna de texto */
.tiktok-promo__content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.tiktok-promo__title {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800;
  line-height: 1.15;
  color: #FFFFFF;
  letter-spacing: -0.02em;
  text-wrap: balance;
}

.tiktok-promo__title span.tt-red {
  color: #FE2C55;
}

.tiktok-promo__title span.tt-cyan {
  color: #25F4EE;
}

.tiktok-promo__desc {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #8A8B91;
  max-width: 480px;
}

.tiktok-promo__desc strong {
  color: #F1F1F2;
  font-weight: 600;
}

/* Lista de beneficios */
.tiktok-promo__list {
  list-style: none;
  padding: 0;
  margin: 8px 0 0 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.tiktok-promo__list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.95rem;
  color: #F1F1F2;
  line-height: 1.5;
}

.tiktok-promo__list li .tt-check {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(37, 244, 238, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}

.tiktok-promo__list li .tt-check svg {
  width: 12px;
  height: 12px;
  stroke: #25F4EE;
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Precio */
.tiktok-promo__price-row {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-top: 4px;
}

.tiktok-promo__price {
  font-size: 2rem;
  font-weight: 800;
  color: #FFFFFF;
  letter-spacing: -0.02em;
}

.tiktok-promo__price-sub {
  font-size: 0.85rem;
  color: #8A8B91;
  font-weight: 400;
}

/* Botones */
.tiktok-promo__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 4px;
}

.tiktok-promo__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 12px;
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
}

.tiktok-promo__btn--primary {
  background: #FE2C55;
  color: #FFFFFF;
  box-shadow: 0 4px 24px rgba(254, 44, 85, 0.3);
}

.tiktok-promo__btn--primary:hover {
  background: #e0234a;
  transform: translateY(-2px);
  box-shadow: 0 6px 32px rgba(254, 44, 85, 0.4);
}

.tiktok-promo__btn--secondary {
  background: rgba(255, 255, 255, 0.06);
  color: #F1F1F2;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.tiktok-promo__btn--secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.tiktok-promo__btn svg {
  width: 18px;
  height: 18px;
}

/* Columna visual / Card */
.tiktok-promo__card {
  position: relative;
  background: #161823;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  gap: 28px;
  overflow: hidden;
}

/* Efecto glitch sutil en la card */
.tiktok-promo__card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #25F4EE, #FE2C55, #25F4EE);
  background-size: 200% 100%;
  animation: tiktok-gradient-slide 4s linear infinite;
}

@keyframes tiktok-gradient-slide {
  0% { background-position: 0% 0%; }
  100% { background-position: 200% 0%; }
}

/* Icono TikTok grande */
.tiktok-promo__icon-wrap {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: rgba(254, 44, 85, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
}

.tiktok-promo__icon-wrap svg {
  width: 32px;
  height: 32px;
}

.tiktok-promo__card-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1.35;
}

/* Modulos mini-lista */
.tiktok-promo__modules {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.tiktok-promo__module-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.04);
  transition: border-color 0.3s ease;
}

.tiktok-promo__module-item:hover {
  border-color: rgba(254, 44, 85, 0.2);
}

.tiktok-promo__module-num {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: rgba(254, 44, 85, 0.12);
  color: #FE2C55;
  font-size: 0.75rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.tiktok-promo__module-text {
  font-size: 0.85rem;
  color: #F1F1F2;
  line-height: 1.4;
}

/* Card footer */
.tiktok-promo__card-footer {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.tiktok-promo__card-footer-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.tiktok-promo__card-footer span {
  font-size: 0.8rem;
  color: #8A8B91;
  line-height: 1.4;
}

.tiktok-promo__card-footer span strong {
  color: #25F4EE;
  font-weight: 600;
}

/* Linea separadora inferior */
.tiktok-promo__divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.06), transparent);
  margin-top: 0;
}

/* Responsive TikTok */
@media (max-width: 900px) {
  .tiktok-promo {
    padding: 60px 0;
  }

  .tiktok-promo__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .tiktok-promo__desc {
    max-width: 100%;
  }
}

@media (max-width: 600px) {
  .tiktok-promo {
    padding: 48px 0;
  }

  .tiktok-promo__card {
    padding: 28px 20px;
  }

  .tiktok-promo__actions {
    flex-direction: column;
  }

  .tiktok-promo__btn {
    justify-content: center;
    width: 100%;
  }

  .tiktok-promo__price-row {
    flex-wrap: wrap;
    gap: 6px;
  }
}

/* ============================================
   FIN SECCIÓN TIKTOK
   ============================================ */

/* Header */
header {
  background-color: #ffffff;
  border-bottom: 1px solid #dbdbdb;
  padding: 15px 0;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1000;
}

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

.logo {
  display: flex;
  align-items: center;
  font-size: 1.2rem;
  font-weight: 700;
}

.logo span {
  margin-right: 10px;
  font-size: 1.4rem;
}

.nav-menu {
  display: flex;
}

.nav-item {
  margin-left: 30px;
  font-weight: 500;
  font-size: 0.95rem;
  color: #262626;
}

.nav-item a {
  transition: color 0.3s;
}

.nav-item a:hover {
  color: #0095f6;
}

.mobile-toggle {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: #000000;
}

/* Hero Section */
.hero {
  padding: 150px 0 100px;
  position: relative;
  background-color: #ffffff;
}

.hero-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

.hero-content {
  flex: 1;
  max-width: 600px;
}

.hero-tag {
  display: inline-block;
  text-transform: uppercase;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1px;
  color: #ff3040;
  margin-bottom: 20px;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.1;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: #262626;
  margin-bottom: 30px;
  max-width: 500px;
}

.hero-image {
  flex: 1;
  position: relative;
}

.hero-image-main {
  width: 400px;
  height: 400px;
  border-radius: 50%;
  overflow: hidden;
  margin-left: auto;
  position: relative;
  z-index: 2;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

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

.floating-element {
  position: absolute;
  border-radius: 8px;
  background-color: #ffffff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  padding: 15px;
  z-index: 3;
}

.floating-element.element-1 {
  bottom: 3%;
  right: 85%;
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fb9505;
  color: #ffffff;
}

.floating-element.element-2 {
  top: 21%;
  left: 95%;
  width: 90px;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #571cc6;
  color: #ffffff;
  font-size: 1.8rem;
}

.floating-element.element-3 {
  top: 1%;
  right: 85%;
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #ff0159;
  color: #ffffff;
  font-size: 1.7rem;
}

.floating-element.element-4 {
  bottom: 20%;
  left: 80%;
  width: 120px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fafafa;
  color: #000000;
  border: 1px solid #dbdbdb;
}

/* About Section */
.about {
  background-color: #ffffff;
  border-top: 1px solid #dbdbdb;
  border-bottom: 1px solid #dbdbdb;
}

.about-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.about-content {
  padding: 20px 0;
}

.about-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 30px;
  color: #000000;
}

.about-text {
  margin-bottom: 30px;
  color: #262626;
  font-size: 1.1rem;
}

.about-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 20px;
}

.gallery-item {
  border-radius: 8px;
  overflow: hidden;
  height: 200px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.gallery-item:hover {
  transform: scale(1.05);
}

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

/* Services Section */
.services {
  background-color: #fafafa;
}

.services-header {
  text-align: center;
  margin-bottom: 60px;
}

.services-subtitle {
  color: #262626;
  font-size: 1.1rem;
  margin-bottom: 20px;
  margin: 0 auto 20px;
  max-width: 700px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.service-card {
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  padding: 40px 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background-color: #fafafa;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.8rem;
  color: #0095f6;
  transition: all 0.3s ease;
}

.service-card:hover .service-icon {
  background-color: #0095f6;
  color: #ffffff;
  transform: rotateY(180deg);
}

.service-title {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: #000000;
}

.service-description {
  color: #262626;
  margin-bottom: 20px;
  font-size: 0.95rem;
}

/* Workshops Section */
.workshops {
  background-color: #ffffff;
  border-top: 1px solid #dbdbdb;
  border-bottom: 1px solid #dbdbdb;
}

.workshops-header {
  text-align: center;
  margin-bottom: 60px;
}

.workshops-subtitle {
  color: #262626;
  font-size: 1.1rem;
  margin: 0 auto 20px;
  max-width: 700px;
}

.workshop-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.workshop-card {
  background-color: #ffffff;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.workshop-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.workshop-image {
  height: 200px;
  overflow: hidden;
}

.workshop-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.workshop-card:hover .workshop-image img {
  transform: scale(1.1);
}

.workshop-content {
  padding: 25px;
}

.workshop-title {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: #000000;
}

.workshop-description {
  color: #262626;
  margin-bottom: 25px;
  font-size: 0.95rem;
}

.workshop-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background-color: #ff3040;
  color: #ffffff;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 500;
  z-index: 2;
}

/* Consultancy Section */
.consultancy {
  background-color: #fafafa;
}

.consultancy-container {
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.consultancy-content {
  padding: 50px;
}

.consultancy-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 30px;
  color: #000000;
}

.consultancy-text {
  margin-bottom: 30px;
  color: #262626;
  font-size: 1.1rem;
}

.consultancy-features {
  margin-bottom: 40px;
}

.feature-item {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.feature-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #fafafa;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  color: #0095f6;
  font-size: 1rem;
}

.feature-text {
  color: #262626;
  font-weight: 500;
  font-size: 1rem;
}

.consultancy-image {
  height: 100%;
}

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

/* Contact Section */
.contact {
  background-color: #fafafa;
}

.contact-container {
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.contact-content {
  padding: 50px;
}

.contact-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 30px;
  color: #000000;
}

.contact-text {
  margin-bottom: 40px;
  color: #262626;
  font-size: 1.1rem;
}

.contact-links {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 30px;
}

.contact-link {
  display: flex;
  align-items: center;
  padding: 15px;
  background-color: #fafafa;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.contact-link:hover {
  background-color: #0095f6;
  color: #ffffff;
}

.contact-link:hover .contact-icon {
  background-color: #ffffff;
  color: #0095f6;
}

.contact-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  color: #0095f6;
  font-size: 1.2rem;
  transition: all 0.3s ease;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.contact-link-text {
  font-weight: 500;
  font-size: 1rem;
}

.contact-image {
  height: 100%;
}

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

/* Footer */
footer {
  background-color: #000000;
  color: #ffffff;
  padding: 80px 0 30px;
}

.footer-container {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 50px;
  margin-bottom: 50px;
}

.footer-logo {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
}

.footer-logo span {
  margin-right: 10px;
}

.footer-text {
  color: #737373;
  margin-bottom: 30px;
  font-size: 0.95rem;
  max-width: 400px;
}

.footer-title {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 15px;
}

.footer-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 2px;
  background-color: #0095f6;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.footer-link {
  color: #737373;
  transition: color 0.3s ease;
  font-size: 0.95rem;
}

.footer-link:hover {
  color: #0095f6;
}

/* Estilos base para los iconos sociales del footer con mayor especificidad */
footer .social-links {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

footer .social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: transparent;
  color: #ffffff;
  transition: all 0.3s ease;
  text-decoration: none;
  border: 2px solid #ffffff;
}

footer .social-link span {
  color: #ffffff !important;
  font-size: 18px;
  transition: color 0.3s ease;
}

/* Hover específico para Instagram - magenta */
footer .social-link.instagram:hover {
  background-color: #e1306c !important;
  transform: translateY(-3px);
}

/* Hover específico para Facebook - azul */
footer .social-link.facebook:hover {
  background-color: #1877f2 !important;
  transform: translateY(-3px);
}

/* Hover específico para LinkedIn - celeste */
footer .social-link.linkedin:hover {
  background-color: #0a66c2 !important;
  transform: translateY(-3px);
}

.copyright {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #737373;
  font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 1200px) {
  .hero-title {
    font-size: 3rem;
  }

  .hero-image-main {
    width: 350px;
    height: 350px;
  }

  .floating-element {
    transform: scale(0.8);
  }
}

@media (max-width: 992px) {
  .section-title {
    font-size: 2rem;
  }

  .hero-container {
    flex-direction: column;
    text-align: center;
  }

  .hero-content {
    padding-right: 0;
    margin-bottom: 50px;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-image-main {
    width: 300px;
    height: 300px;
    margin: 0 auto;
  }

  .floating-element {
    display: none;
  }

  .about-container,
  .consultancy-container,
  .contact-container {
    grid-template-columns: 1fr;
  }

  .about-gallery {
    order: -1;
  }

  .services-grid,
  .workshop-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-container {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 70px);
    background-color: #ffffff;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px;
    transition: left 0.3s ease;
    z-index: 1000;
    border-top: 1px solid #dbdbdb;
  }

  .nav-menu.active {
    left: 0;
  }

  .nav-item {
    margin-left: 0;
  }

  .mobile-toggle {
    display: block;
  }

  .hero-title {
    font-size: 2rem;
  }

  .section {
    padding: 60px 0;
  }

  .services-grid,
  .workshop-cards {
    grid-template-columns: 1fr;
  }

  .about-gallery {
    grid-template-columns: 1fr;
  }

  .consultancy-content,
  .contact-content {
    padding: 40px 30px;
  }
}

@media (max-width: 576px) {
  .hero {
    padding: 120px 0 60px;
  }

  .hero-title {
    font-size: 1.8rem;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .hero-image-main {
    width: 250px;
    height: 250px;
  }

  .footer-container {
    grid-template-columns: 1fr;
  }

  .btn {
    padding: 10px 20px;
    font-size: 0.9rem;
  }
}

/* Estilos para la sección de testimonios */
.testimonials-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}

@media (min-width: 768px) {
  .testimonials-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.testimonial-box {
  transition: transform 0.3s ease;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

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

.testimonial-box img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  object-fit: cover;
}

.elementor-image-box-title {
  font-size: 20px;
  font-weight: 600;
  margin: 15px 0 5px;
  color: #333;
}

.destaque {
  color: #ff0159;
  font-weight: 700;
}

/* FAQ Styles */
.faq {
  background-color: #fafafa;
}

.faq-header {
  text-align: center;
  margin-bottom: 60px;
}

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

.faq-item {
  background: #ffffff;
  border-radius: 12px;
  margin-bottom: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.faq-question {
  padding: 25px 30px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #ffffff;
  transition: all 0.3s ease;
}

.faq-question:hover {
  background: #f8f9fa;
}

.faq-question h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #000000;
  margin: 0;
  line-height: 1.4;
  flex: 1;
  padding-right: 20px;
}

.faq-question i {
  color: #0095f6;
  font-size: 1rem;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 30px;
  transition: max-height 0.3s ease, padding 0.3s ease;
  background: #ffffff;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 25px 30px;
}

.faq-answer p {
  color: #262626;
  line-height: 1.6;
  margin: 0;
  font-size: 0.95rem;
}

@media (max-width: 768px) {
  .faq-question {
    padding: 20px;
  }

  .faq-question h3 {
    font-size: 1rem;
    padding-right: 15px;
  }

  .faq-answer {
    padding: 0 20px;
  }

  .faq-item.active .faq-answer {
    padding: 20px;
  }
}

/* WhatsApp Float Button */
.whatsapp-float {
  position: fixed !important;
  width: 60px !important;
  height: 60px !important;
  bottom: 40px !important;
  right: 40px !important;
  background-color: #25d366 !important;
  color: #FFF !important;
  border-radius: 50px !important;
  text-align: center !important;
  font-size: 30px !important;
  box-shadow: 2px 2px 10px rgba(0,0,0,0.2) !important;
  z-index: 999999 !important;
  display: flex !important;
  align-items: center;
  justify-content: center;
  text-decoration: none !important;
  transition: all 0.3s ease;
}

.whatsapp-float:hover {
  background-color: #128C7E !important;
  transform: scale(1.1);
}

.whatsapp-float i {
  margin: 0 !important;
}

@media (max-width: 768px) {
  .whatsapp-float {
    width: 50px !important;
    height: 50px !important;
    bottom: 20px !important;
    right: 20px !important;
    font-size: 25px !important;
  }
}