:root
{
  --bg:#f6fbff;
  --primary: #F54D29;
  --primary-700: rgb(20, 19, 19);
  --muted:#6b7c93;
  --card:#ffffff;
  --radius:12px;
  --container: 100%;
  --accent: #e06144;
  font-family: Inter, system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial;
}

*
{
  box-sizing:border-box
}

body
{
  margin:0;
  background:var(--bg);
  color:#0f1724;
  line-height:1.5;
}

.container
{
  max-width:var(--container);
  margin:0px auto;
  padding:0px 60px;
}

#enviar
{
  background:var(--primary);
  color:#fff;
  border:none;
  padding:12px 20px;
  border-radius:10px;
  font-weight:600;
  cursor:pointer;
  transition: background 0.3s;
}

/* HEADER */
.site-header
{
  display: flex;
  flex-direction: column;
  align-items: center;
  background: white;
}

/* TOP BAR */
.top-bar{
  width: 100%;
  background-color: #000;
  color: #fff;
  font-size: 14px;
}

.top-inner{
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 35px;
}

.numero-ayuda a{
  color: #fff;
  text-decoration: none;
  margin-left: 5px;
  font-family: 'Roboto', sans-serif;
  font-weight: 500;
  font-size: 14px;
}

/* Redes sociales */
.redes-cabecera a{
  color: #fff;
  margin-left: 15px;
  text-decoration: none;
  font-size: 16px;
}

.redes-cabecera a:hover{
  color: #F54D29;
}

/* MAIN HEADER */
.main-header
{
  padding: 10px 0;
  width: 840px;
}

.header-inner
{
  display:flex;
  justify-content:space-between;
  align-items: center;
  width: 100%;
  max-width: var(--container);
}

.brand img{display:block; max-height:120px;}
.nav a{margin-left:18px;color: black;text-decoration:none;font-weight:600}
.btn-ghost{background: #F54D29; padding:8px 14px;border-radius:8px;color: white !important;}

/* HERO */
.hero
{
  display:flex;
  flex-wrap:wrap;
  justify-content:space-between;
  gap:28px;
  padding:30px 40px;
}

.hero > div:first-child{flex:1; min-width:280px;}
.hero aside.card{ min-width:280px;}
.hero h1{font-size:36px;margin:0;color: black;}
.hero p{color:var(--muted);margin-top:12px;font-size:16px}

.cta-buttons
{
  display: flex;
  gap: 12px;
  align-items: center;
}

/* CTA botones */
.cta-buttons .btn-primary
{
  background:var(--primary);
  color:#fff;
  padding:12px 18px;
  border-radius:10px;
  text-decoration:none;
  display:inline-block;
  font-weight:600;
  transition: background 0.3s;
}
.cta-buttons .btn-primary:hover{background:var(--primary-700);}
.cta-buttons .btn-outline
{
  padding:12px 18px;
  border-radius:10px;
  border:1px solid var(--primary);
  text-decoration:none;
  color:var(--primary);
  display:inline-block;
  transition: background 0.3s, color 0.3s;
}
.cta-buttons .btn-outline:hover{
  background:var(--primary);
  color:#fff;
}

/* FORMULARIO */
.card{
  background:var(--card);
  padding:18px;
  border-radius:var(--radius);
  box-shadow:0 6px 20px rgba(15,23,36,0.06);
}

/**/

.hero.container 
{
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 20px;
}

.hero-content 
{
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 40px;
  flex-direction: column;
}

.hero-text 
{
  min-width: 320px;
}

/* Card principal */
#form-demo 
{
  width: 100%;
  background: #ffffff;
  padding: 32px 28px;
  border-radius: 20px;
  box-shadow: 0 12px 24px rgba(0,0,0,0.15);
  font-family: 'Poppins', sans-serif;
  margin: 0px auto;
}

  #form-demo h3 
  {
    text-align: center;
    font-weight: 700;
    color: #222;
    margin-top: 0px;
    margin-bottom: 28px;
    font-size: 1.8rem;
  }

  /* Inputs y selects */
  .form-control {
    width: 100%;
    padding: 12px 15px;
    border-radius: 10px;
    border: 1.5px solid #ddd;
    transition: 0.3s;
    font-size: 0.95rem;
    background: white;
  }

  .form-control:focus {
    border-color: #4caf50;
    box-shadow: 0 0 6px rgba(76, 175, 80, 0.3);
    outline: none;
  }

  .form-label {
    font-weight: 500;
    margin-bottom: 6px;
    display: block;
    color: #555;
  }

  /* Filas de 2 campos */
  .row.flex-wrap {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
  }

  .row.flex-wrap .col-xs-6 {
    flex: 1;
    min-width: calc(50% - 10px); /* Dos columnas con espacio */
  }

  /* Captcha y botón */
  #captcha {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 25px;
    gap: 14px;
    flex-wrap: wrap;
  }

  /* Botón */
  #enviar 
  {
    color: white;
    border: none;
    padding: 12px 24px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 12px;
    cursor: pointer;
    transition: 0.3s;
    display: flex;
    align-items: center;
    gap: 6px;
  }

  #enviar:hover {
    transform: translateY(-2px);
  }

  /* Responsive: en pantallas pequeñas, cada campo ocupa 100% */
  @media (max-width: 600px) 
  {
    .row.flex-wrap .col-xs-6 {
      flex: 1 1 100%;
    }
  }

/**/

.features 
{
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 28px;
  flex-wrap: wrap;
}

.features .f {
  background: #ffffff;
  border-radius: 14px;
  padding: 15px 15px;
  text-align: center;
  box-shadow: 0 6px 20px rgba(0,0,0,0.06);
  transition: all 0.3s ease;
  width: 210px;
}

.features .f:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.1);
}

.features .f .icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 14px;
  color: #4f46e5; /* Azul suave */
}

.features .f:nth-child(2) .icon { color: #10b981; } /* Verde */
.features .f:nth-child(3) .icon { color: #f59e0b; } /* Amarillo */

.iti
{
  width: 100%;
}

.features .f strong {
  display: block;
  font-size: 1.1em;
  margin-bottom: 6px;
  color: #222;
}

.features .f .muted {
  color: #666;
  font-size: 0.95em;
}

/* FEATURES / FUNCIONES */


.features-header {
  text-align: center;
  margin-bottom: 36px;
}

.features-header h2 
{
  font-size: 36px;
  color: var(--primary-700);
  margin-bottom: 12px;
  margin-top: 40px;
  position: relative;
  display: inline-block;
}

.features-header h2::after {
  content: "";
  display: block;
  height: 4px;
  width: 60px;
  background: var(--primary);
  margin: 8px auto 0;
  border-radius: 2px;
}

.features-header p {
  font-size: 16px;
  color: var(--muted);
  max-width: 650px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Lista de funciones */
.features-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 700px;
  padding: 0;
  list-style: none;
}

.features-lists
{
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  align-items: center;
  gap: 30px;
}

.features-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 16px;
  color: var(--muted);
  padding: 10px 12px;
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 4px 15px rgba(15,23,36,0.06);
  transition: transform 0.3s, box-shadow 0.3s;
}

.features-list li:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(15,23,36,0.1);
}

.features-list li span {
  color: var(--primary);
  font-weight: bold;
  margin-top: 2px;
}

/* BENEFICIOS */
.benefits .benefit-cards{
  display:flex;
  flex-wrap:wrap;
  gap:20px;
  margin-top:24px;
}

.benefits .benefit
{
  flex:1;
  min-width:220px;
  background:#fff;
  padding:18px;
  border-radius:var(--radius);
  box-shadow:0 4px 15px rgba(15,23,36,0.06);
  text-align:center;
  transition: transform 0.3s, box-shadow 0.3s;
}

.benefits .benefit:hover
{
  transform: translateY(-4px);
  box-shadow:0 8px 20px rgba(15,23,36,0.1);
}

.benefits .benefit img{width:80px;height:80px;margin-bottom:12px}
.benefits .benefit h3{margin:0 0 8px;color:var(--primary-700)}
.benefits .benefit p{color:var(--muted);font-size:14px}
.benefits .benefit svg
{
  width: 100px;
  height: 100px;
}

.benefits h2
{
  margin-top: 0px;
}

/* PLANS */
.plans
{
  display:flex;
  flex-direction: column;
  flex-wrap:wrap;
  gap:16px;
  margin:36px 0;
}

.plans-header 
{
  text-align: center;
}

.plans-header h2 
{
  font-size: 36px;
  color: var(--primary-700);
  margin-bottom: 12px;
  position: relative;
  display: inline-block;
  margin-top: 0px;
}

.plans-header h2::after {
  content: "";
  display: block;
  height: 4px;
  width: 60px;
  background: var(--primary);
  margin: 8px auto 0;
  border-radius: 2px;
}

.plans-header p {
  font-size: 16px;
  color: var(--muted);
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.6;
}

/* TESTIMONIOS */
.testimonials .testimonial-cards
{
  display:flex;
  flex-wrap:wrap;
  gap:18px;
  margin:24px 0;
}

.testimonials .testimonial
{
  flex:1;
  min-width:220px;
  background:#fff;
  padding:18px;
  border-radius:var(--radius);
  box-shadow:0 4px 15px rgba(15,23,36,0.06);
  background: url(comillas.png) no-repeat top left;
  background-size: 50px 50px;
}

.testimonials .testimonial p
{ font-style:italic;
  color:#334155;
  margin-bottom:8px
}

.testimonials .testimonial strong
{
  color:var(--primary-700)
}

/* CTA FINAL */
.cta-demo-iso 
{
  background: linear-gradient(135deg, #e1edff, #f6fbff);
  border-radius: var(--radius);
  margin: 36px 0px 30px 0px;
  padding: 20px;
}

.cta-demo-iso .cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  max-width: var(--container);
  margin: 0 auto;
  flex-wrap: wrap;
}

.cta-demo-iso .cta-text {
  flex: 1 1 400px;
}

.cta-demo-iso h2 {
  color: var(--primary-700);
  font-size: 36px;
  margin-bottom: 26px;
  margin-top: 0px;
}

.cta-demo-iso p {
  color: var(--muted);
  font-size: 16px;
  margin-bottom: 18px;
  line-height: 1.6;
}

.cta-demo-iso .btn-primary 
{
  display: block;
  width: 200px;
  margin-top: 15px;
  padding: 14px 22px;
  border-radius: 12px;
  font-weight: 600;
  background: var(--primary);
  color: #fff;
  text-decoration: none;
  transition: background 0.3s;
  text-align: center;
}

.cta-demo-iso .btn-primary:hover {
  background: var(--primary-700);
}

.cta-demo-iso .cta-image {
  flex: 1 1 400px;
  text-align: center;
}

.cta-demo-iso .cta-image img 
{
  width: 250px;
  height: auto;
}

/* RESPONSIVE */
@media(max-width:900px)
{
  .cta-demo-iso .cta-inner 
  {
    flex-direction: column-reverse;
    text-align: center;
  }

  .cta-demo-iso .cta-text, .cta-demo-iso .cta-image 
  {
    flex: 1 1 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}

/* FOOTER */
.site-footer{
  background:#0f1724;
  color:#fff;
  padding:40px 20px 20px
}
.footer-cols{
  display:flex;
  gap:24px;
  flex-wrap:wrap;
  margin-bottom:20px
}

.footer-cols > div{flex:1;min-width:220px}
.footer-cols h4{margin-bottom:12px;color:#fff}
.footer-cols p, .footer-cols a{color:#fff;text-decoration:none;font-size:14px}
.footer-cols a:hover{color:var(--accent)}
.footer-social a{margin-right:12px;color:#fff;font-size:16px}
.footer-social a:hover{color:var(--accent)}
.footer-bottom{text-align:center;font-size:12px;color:#6b7c93}

/* RESPONSIVE */
@media(max-width:900px)
{
  .hero{flex-direction:column;gap:18px;padding:28px 0}
  .benefits .benefit-cards{flex-direction:column}
  .testimonials .testimonial-cards{flex-direction:column}
  .footer-cols{flex-direction:column}
  .cta-buttons .btn-primary, .cta-buttons .btn-outline{width:100%;margin-bottom:12px;text-align:center}
  .cta-demo .btn-primary{width:100%}
}

a{color:var(--primary);}
