* { box-sizing: border-box; }
html, body { height: 100%; }
body {
  margin: 0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, Noto Sans, Arial, "Apple Color Emoji", "Segoe UI Emoji";
  color: #fff;
}

/* HERO a pantalla completa */
.hero {
  min-height: 100svh;
  background-image: url("wallpaper.jpg"); /* asegúrate de tener esta imagen */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  display: grid;
  place-items: center;
  text-align: center;
  padding: clamp(16px, 2vw, 32px);
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.55), rgba(0,0,0,.35) 40%, rgba(0,0,0,.55));
}

/* Contenido centrado */
.content {
  position: relative;
  z-index: 1;
  max-width: min(900px, 92vw);
  line-height: 1.2;
  animation: fadeIn .7s ease both .1s;
}
h1 {
  margin: 0 0 .4rem;
  font-size: clamp(28px, 6vw, 56px);
  font-weight: 800;
  letter-spacing: -0.02em;
}
.subtitle {
  margin: 0;
  font-size: clamp(16px, 2.6vw, 22px);
  opacity: .95;
}

/* Botón de regreso (flecha) */
.back {
  position: fixed;
  top: 16px;
  left: 16px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(0,0,0,.5);
  backdrop-filter: blur(6px);
  text-decoration: none;
  color: #fff;
  font-weight: 600;
  line-height: 1;
  transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
  box-shadow: 0 4px 14px rgba(0,0,0,.25);
}
.back:hover { transform: translateY(-1px); background: rgba(0,0,0,.6); }
.back:active { transform: translateY(0); }
.back svg { width: 20px; height: 20px; flex: 0 0 20px; }

/* Logo al centro superior */
.logo-header {
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.logo {
  max-height: 60px;
  width: auto;
}

/* Animación */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: none; }
}

.benefits-container {
  max-width: 1000px;
  margin: 0 auto;
  overflow: hidden;
}

.benefits-title {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 8px;
  font-weight: 700;
  color: #222;
}

.benefits-subtitle {
  text-align: center;
  font-size: 1rem;
  margin-bottom: 24px;
  color: #555;
}

.benefits-grid {
  display: flex;
  flex-wrap: nowrap;
  width: 100%;
}

/* Tarjetas cuadradas, pegadas, sin borde ni sombra */
.benefit-card {
  flex: 1;
  height: 200px;
  background-color: #f0f0f0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease;
  border: none;          /* quitar borde */
  box-shadow: none;      /* quitar sombra */
  border-radius: 0;      /* sin esquinas redondeadas */
}

.benefit-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #ff7f50, #ff9950);
  transition: left 0.4s ease;
  z-index: 0;
}

.benefit-card .icon,
.benefit-card h3 {
  position: relative;
  z-index: 1;
  transition: color 0.3s ease, fill 0.3s ease;
}

.benefit-card .icon svg {
  width: 64px;
  height: 64px;
  fill: #222;
  margin-bottom: 16px;
  transition: fill 0.3s ease, transform 0.3s ease;
}

.benefit-card h3 {
  font-size: 1.15rem;
  font-weight: 600;
  color: #222;
}

.benefit-card:hover::before {
  left: 0;
}

.benefit-card:hover svg {
  fill: #fff; /* icono blanco */
}

.benefit-card:hover h3 {
  color: #fff; /* texto blanco */
}

.benefit-card:hover {
  transform: scale(1.05);
}

.benefit-detail-container {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 1000px;
  margin: 50px auto;
  gap: 40px;
}

.benefit-image img {
  width: 100%;
  max-width: 450px;
  border-radius: 8px;
  object-fit: cover;
}

.benefit-text {
  flex: 1;
}

.subtema {
  font-size: 1.5rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 8px;
}

.linea {
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, #ff7f50, #ff9950);
  margin-bottom: 16px;
}

.definicion {
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
}

/* Responsive: apilar en móvil */
@media (max-width: 768px) {
  .benefit-detail-container {
    flex-direction: column;
    gap: 24px;
    text-align: center;
  }

  .benefit-image img {
    max-width: 100%;
  }

  .benefit-text {
    width: 100%;
  }
}


.benefit-detail-container {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 1000px;
  margin: 50px auto;
  gap: 40px;
}

.benefit-image img {
  width: 100%;
  max-width: 450px;
  border-radius: 8px;
  object-fit: cover;
}

.benefit-text {
  flex: 1;
}

.subtema {
  font-size: 1.5rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 8px;
}

.linea {
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, #ff7f50, #ff9950);
  margin-bottom: 16px;
}

.definicion {
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
  .benefit-detail-container {
    flex-direction: column;
    gap: 24px;
    text-align: center;
  }

  .benefit-image img {
    max-width: 100%;
  }

  .benefit-text {
    width: 100%;
  }
}


.chart-detail-container {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 1000px;
  margin: 50px auto;
  gap: 40px;
}

.chart-left {
  flex: 1;
}

.chart-text {
  flex: 1;
}

.subtema {
  font-size: 1.5rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 8px;
}

.linea {
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, #ff7f50, #ff9950);
  margin-bottom: 16px;
}

.definicion {
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
}

/* Responsive: apilar en móvil */
@media (max-width: 768px) {
  .chart-detail-container {
    flex-direction: column;
    text-align: center;
    gap: 24px;
  }
}


.site-types {
  max-width: 1200px;
  margin: 50px auto;
  text-align: center;
}

.section-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.section-subtitle {
  font-size: 1rem;
  color: #555;
  margin-bottom: 40px;
}

/* Concept Map */
.concept-map {
  display: grid;
  grid-template-areas:
    ". landing ."
    "tienda central corporativo"
    ". blog ."
    ". portafolio .";
  grid-gap: 40px;
  justify-items: center;
  align-items: center;
  position: relative;
}

.node {
  background: #fff8f0;
  padding: 20px;
  border-radius: 12px;
  width: 180px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  transition: transform 0.3s, box-shadow 0.3s;
}

.node-icon {
  width: 50px;
  height: 50px;
  margin-bottom: 12px;
}

.node h3, .node h4 {
  margin: 0 0 8px 0;
  font-size: 1.1rem;
  color: #222;
}

.node p {
  font-size: 0.9rem;
  color: #555;
}

/* Hover efecto animalista: escala y sombra */
.node:hover {
  transform: scale(1.1) rotate(-2deg);
  box-shadow: 0 12px 24px rgba(0,0,0,0.2);
}

/* Posicionamiento de cada nodo */
.central { grid-area: central; }
.tienda { grid-area: tienda; }
.landing { grid-area: landing; }
.corporativo { grid-area: corporativo; }
.blog { grid-area: blog; }
.portafolio { grid-area: portafolio; }

/* Responsive */
@media (max-width: 768px) {
  .concept-map {
    display: flex;
    flex-direction: column;
    gap: 24px;
  }
}


.responsive-design-modern {
  max-width: 1000px;
  margin: 50px auto;
  text-align: center;
}

.section-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.section-subtitle {
  font-size: 1rem;
  color: #555;
  margin-bottom: 30px;
}

.table-wrapper {
  overflow-x: auto;
  margin-bottom: 30px;
}

.responsive-table-modern {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 12px; /* separa filas para efecto tarjeta */
}

.responsive-table-modern th,
.responsive-table-modern td {
  padding: 14px 20px;
  text-align: center;
  color: #222;
}

.responsive-table-modern th {
  background: linear-gradient(90deg, #ff7f50, #ff9950);
  color: #fff;
  font-weight: 700;
  border-radius: 12px 12px 0 0;
}

.responsive-table-modern tbody tr {
  background: #fff8f0;
  border-radius: 12px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.responsive-table-modern tbody tr:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 20px rgba(0,0,0,0.15);
}

.icon {
  font-size: 1.2rem;
  margin-right: 8px;
}

/* Explicación */
.importance-text-modern {
  text-align: left;
  background: #fff8f0;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.importance-text-modern h3 {
  font-size: 1.4rem;
  margin-bottom: 12px;
  color: #222;
}

.importance-text-modern p {
  font-size: 1rem;
  line-height: 1.6;
  color: #555;
}

/* Responsive */
@media (max-width: 768px) {
  .responsive-table-modern th,
  .responsive-table-modern td {
    padding: 12px 8px;
  }
}


.seo-section {
  max-width: 1100px;
  margin: 50px auto;
  padding: 20px;
  display: flex;
  justify-content: center;
}

.seo-container {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  flex-wrap: wrap;
}

.seo-image {
  flex: 1;
  text-align: center;
}

.seo-icon {
  width: 150px;
  height: 150px;
}

.seo-text {
  flex: 2;
}

.section-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.section-subtitle {
  font-size: 1.2rem;
  color: #555;
  margin-bottom: 20px;
}

.seo-description p {
  font-size: 1rem;
  line-height: 1.6;
  color: #333;
  margin-bottom: 20px;
}

/* Tips con barras */
.seo-tips .tip {
  margin-bottom: 15px;
}

.seo-tips span {
  font-weight: 600;
  color: #222;
  display: block;
  margin-bottom: 6px;
}

.progress-bar {
  background: #f0f0f0;
  border-radius: 12px;
  overflow: hidden;
  height: 16px;
}

.progress {
  background: linear-gradient(90deg, #ff7f50, #ff9950);
  height: 100%;
  width: 0;
  border-radius: 12px;
  animation: fillProgress 1.5s forwards;
  --width: 0;
}

@keyframes fillProgress {
  to {
    width: var(--width);
  }
}

/* Tarjetas de consejos */
.seo-cards {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.seo-cards .card {
  background: #fff8f0;
  border-radius: 12px;
  padding: 15px;
  flex: 1;
  min-width: 200px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  transition: transform 0.3s, box-shadow 0.3s;
  text-align: center;
}

.seo-cards .card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 24px rgba(0,0,0,0.2);
}

.card-icon {
  font-size: 2rem;
  margin-bottom: 10px;
}

/* Gráficos circulares */
.seo-graphs {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-top: 30px;
  flex-wrap: wrap;
}

.circular-chart {
  width: 80px;
  height: 80px;
}

.circle-bg {
  fill: none;
  stroke: #eee;
  stroke-width: 3.8;
}

.circle {
  fill: none;
  stroke-width: 3.8;
  stroke-linecap: round;
  transform: rotate(-90deg);
  transform-origin: center;
  animation: progressCircle 1.5s ease-out forwards;
}

.circular-chart text {
  font-size: 0.5rem;
  text-anchor: middle;
  fill: #333;
}

@keyframes progressCircle {
  from { stroke-dasharray: 0, 100; }
}

/* Botón */
.seo-button {
  margin-top: 30px;
}

.seo-button button {
  background: linear-gradient(90deg, #ff7f50, #ff9950);
  color: #fff;
  padding: 12px 25px;
  border: none;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s;
}

.seo-button button:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

/* Responsive */
@media (max-width: 768px) {
  .seo-container {
    flex-direction: column;
    text-align: center;
  }
  .seo-cards, .seo-graphs {
    justify-content: center;
  }
}

.security-section {
  max-width: 1100px;
  margin: 50px auto;
  padding: 20px;
  text-align: center;
}

.section-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.section-subtitle {
  font-size: 1.2rem;
  color: #555;
  margin-bottom: 30px;
}

/* Cards de seguridad */
.security-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.card {
  background: #fff8f0;
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
  cursor: pointer;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.2);
}

.card-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 15px;
}

.card h4 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: #222;
}

.card p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.5;
}

/* Explicación adicional */
.security-text {
  margin-top: 30px;
  background: #fff8f0;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  font-size: 1rem;
  color: #333;
}

/* Responsive */
@media (max-width: 768px) {
  .security-cards {
    grid-template-columns: 1fr;
  }
}


.speed-section {
  max-width: 1100px;
  margin: 50px auto;
  padding: 20px;
  text-align: center;
}

.section-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.section-subtitle {
  font-size: 1.2rem;
  color: #555;
  margin-bottom: 40px;
}

.speed-container {
  overflow-x: auto;
  padding-bottom: 20px;
}

.speed-timeline {
  display: flex;
  gap: 30px;
  min-width: 800px; /* permite scroll horizontal si es necesario */
}

.speed-step {
  background: #fff8f0;
  border-radius: 12px;
  padding: 20px;
  min-width: 180px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  transition: transform 0.3s, box-shadow 0.3s;
}

.speed-step:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.2);
}

.icon-circle {
  width: 60px;
  height: 60px;
  margin: 0 auto 15px;
  border-radius: 50%;
  background: linear-gradient(90deg, #ff7f50, #ff9950);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: #fff;
  transition: transform 0.3s;
}

.speed-step:hover .icon-circle {
  transform: scale(1.2);
}

.speed-step h4 {
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: #222;
}

.speed-step p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.5;
}

/* Scroll oculto para estética */
.speed-container::-webkit-scrollbar {
  height: 8px;
}
.speed-container::-webkit-scrollbar-thumb {
  background: #ff7f50;
  border-radius: 4px;
}

/* Responsive */
@media (max-width: 768px) {
  .speed-timeline {
    flex-direction: column;
    min-width: 100%;
    gap: 20px;
  }
}

.store-section {
  max-width: 1200px;
  margin: 50px auto;
  padding: 20px;
  color: #000; /* Texto principal en negro */
}

/* Banner principal */
.store-banner {
  background: linear-gradient(90deg, #ff7f50, #ff9950);
  color: #fff; /* Texto del banner sigue blanco para contraste */
  padding: 60px 20px;
  border-radius: 12px;
  text-align: center;
  margin-bottom: 50px;
}

.store-banner h2 {
  font-size: 2rem;
  margin-bottom: 15px;
}

.store-banner p {
  font-size: 1.2rem;
  margin-bottom: 25px;
}

.store-banner button {
  padding: 12px 30px;
  background: #fff;
  color: #ff7f50;
  border: none;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.3s;
}

.store-banner button:hover {
  transform: scale(1.05);
}

/* Ventajas */
.store-benefits h3 {
  text-align: center;
  margin-bottom: 30px;
  font-size: 1.8rem;
  color: #000;
}

.benefits-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-bottom: 50px;
}

.benefits-cards .card {
  background: #fff8f0;
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
  cursor: pointer;
}

.benefits-cards .card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.2);
}

.benefits-cards .card span {
  font-size: 2rem;
  margin-bottom: 10px;
  display: block;
}

.benefits-cards .card h4,
.benefits-cards .card p {
  color: #000; /* Texto negro */
}

/* Productos */
.store-products h3 {
  text-align: center;
  margin-bottom: 30px;
  font-size: 1.8rem;
  color: #000;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
  margin-bottom: 50px;
}

.product-card {
  background: #fff;
  border-radius: 12px;
  padding: 15px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  transition: transform 0.3s, box-shadow 0.3s;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.2);
}

.product-card img {
  width: 100%;
  border-radius: 12px;
  margin-bottom: 10px;
}

.product-card h4,
.product-card p {
  color: #000; /* Texto negro */
}

.product-card button {
  margin-top: 10px;
  padding: 8px 20px;
  border: none;
  background: linear-gradient(90deg, #ff7f50, #ff9950);
  color: #fff;
  border-radius: 25px;
  cursor: pointer;
  transition: transform 0.3s;
}

.product-card button:hover {
  transform: scale(1.05);
}

/* Indicadores de confianza */
.store-trust h3 {
  text-align: center;
  margin-bottom: 30px;
  font-size: 1.8rem;
  color: #000;
}

.trust-cards {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-bottom: 50px;
}

.trust-card {
  background: #fff8f0;
  padding: 20px;
  border-radius: 12px;
  text-align: center;
  width: 150px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.trust-card span {
  font-size: 2rem;
  display: block;
  margin-bottom: 10px;
}

.trust-card p {
  color: #000; /* Texto negro */
}

/* Testimonios */
.store-testimonials h3 {
  text-align: center;
  margin-bottom: 30px;
  font-size: 1.8rem;
  color: #000;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.testimonial-card {
  background: #fff8f0;
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  font-style: italic;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  color: #000; /* Texto negro */
}

.social-section {
  max-width: 1100px;
  margin: 50px auto;
  padding: 20px;
  color: #000;
  text-align: center;
}

.section-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.section-subtitle {
  font-size: 1.2rem;
  color: #333;
  margin-bottom: 40px;
}

.social-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
  margin-bottom: 30px;
}

.social-card {
  background: #fff8f0;
  border-radius: 12px;
  padding: 25px 20px;
  width: 160px;
  transition: transform 0.3s, box-shadow 0.3s;
  cursor: pointer;
}

.social-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.2);
}

.social-icon {
  width: 50px;
  height: 50px;
  margin-bottom: 15px;
}

.social-card h4 {
  font-size: 1.1rem;
  color: #000;
}

/* Texto adicional */
.social-text {
  max-width: 800px;
  margin: 0 auto;
  font-size: 1rem;
  line-height: 1.6;
  color: #000;
}


.hosting-section {
  max-width: 1100px;
  margin: 50px auto;
  padding: 20px;
  color: #000;
  text-align: center;
}

.hosting-section .section-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.hosting-section .section-subtitle {
  font-size: 1.2rem;
  color: #333;
  margin-bottom: 40px;
}

.hosting-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-bottom: 30px;
}

.hosting-card {
  background: #fff8f0;
  border-radius: 12px;
  padding: 25px 20px;
  width: 300px;
  transition: transform 0.3s, box-shadow 0.3s;
  cursor: pointer;
  text-align: left;
}

.hosting-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.2);
}

.hosting-icon {
  width: 50px;
  height: 50px;
  margin-bottom: 15px;
}

.hosting-card h4 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: #000;
}

.hosting-card p {
  font-size: 0.95rem;
  margin-bottom: 10px;
  color: #000;
}

.hosting-card ul {
  list-style: disc;
  margin-left: 20px;
  color: #000;
}

.hosting-info {
  max-width: 800px;
  margin: 0 auto;
  font-size: 1rem;
  line-height: 1.6;
  color: #000;
}


.maintenance-section {
  max-width: 1100px;
  margin: 50px auto;
  padding: 20px;
  text-align: center;
  color: #000;
}

.maintenance-section .section-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.maintenance-section .section-subtitle {
  font-size: 1.2rem;
  color: #333;
  margin-bottom: 40px;
}

.timeline-container {
  display: flex;
  flex-direction: column;
  gap: 30px;
  position: relative;
}

.timeline-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  position: relative;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: 25px;
  top: 0;
  bottom: 0;
  width: 4px;
  background: #ff7f50;
  border-radius: 2px;
  z-index: -1;
}

.timeline-icon {
  background: #fff8f0;
  border-radius: 50%;
  padding: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform 0.3s, box-shadow 0.3s;
}

.timeline-icon:hover {
  transform: scale(1.2);
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.icon-svg {
  width: 40px;
  height: 40px;
}

.timeline-content h4 {
  font-size: 1.1rem;
  margin-bottom: 5px;
  color: #000;
}

.timeline-content p {
  font-size: 0.95rem;
  color: #000;
  line-height: 1.5;
}


.marketing-section {
  max-width: 1200px;
  margin: 50px auto;
  padding: 20px;
  color: #000;
  text-align: center;
}

.marketing-section .section-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.marketing-section .section-subtitle {
  font-size: 1.2rem;
  color: #333;
  margin-bottom: 40px;
}

.dashboard-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-bottom: 30px;
}

.dashboard-card {
  background: #fff8f0;
  border-radius: 12px;
  padding: 25px 20px;
  width: 260px;
  transition: transform 0.3s, box-shadow 0.3s;
  cursor: pointer;
  text-align: center;
}

.dashboard-card:hover {
  transform: translateY(-10px) scale(1.05);
  box-shadow: 0 12px 25px rgba(0,0,0,0.2);
}

.dashboard-icon {
  width: 50px;
  height: 50px;
  margin-bottom: 15px;
}

.dashboard-card h4 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: #000;
}

.dashboard-card p {
  font-size: 0.95rem;
  color: #000;
  line-height: 1.4;
}

.marketing-info {
  max-width: 800px;
  margin: 0 auto;
  font-size: 1rem;
  line-height: 1.6;
  color: #000;
}

/* Contenedor principal */
.casos-exito {
  background: #ffffff;
  padding: 60px 20px;
  color: #111;
  font-family: Arial, sans-serif;
}

.casos-exito .container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

/* Títulos */
.casos-exito h2 {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 15px;
  color: #111;
}

.casos-exito .intro {
  font-size: 1.1rem;
  color: #444;
  margin-bottom: 40px;
}

/* Grid */
.casos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
}

/* Tarjetas */
.caso {
  background: #f9f9f9;
  padding: 25px;
  border-radius: 15px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
}

.caso:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0,0,0,0.2);
}

.caso img {
  width: 120px;
  margin-bottom: 15px;
}

.caso h3 {
  font-size: 1.5rem;
  color: #111;
  margin-bottom: 10px;
}

.caso p {
  font-size: 1rem;
  color: #333;
}

/* Inspiración */
.inspiracion h3 {
  font-size: 2rem;
  margin-bottom: 15px;
  color: #111;
}

.inspiracion p {
  font-size: 1.1rem;
  color: #444;
  margin-bottom: 25px;
}

/* Botón */
.btn {
  display: inline-block;
  padding: 12px 25px;
  background: #4f46e5;
  color: #fff;
  font-weight: bold;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.3s;
}

.btn:hover {
  background: #3730a3;
}
