
.google-sans-<uniquifier> {
    font-family: "Google Sans", sans-serif;
    font-optical-sizing: auto;
    font-weight: <weight>;
    font-style: normal;
    font-variation-settings:
      "GRAD" 0;
  }

  body {
    font-family: "Google Sans", sans-serif;
    background-color: #F6F6F6;

  }
  
  html {
    scroll-behavior: smooth;
  }
  
  #slider {
    height:60vh;
  }
  
  #slider .slides-wrapper {
    display:flex;
    width:100%;
    height:100%;
  }
  #slider h1 {
    font-weight: 700;
    letter-spacing: -0.02em;
  }
  
  #slider .slide {
    min-width:100%;
    height:60vh;
  }
/* Texto del slider */
#slider h1 {
    font-size: clamp(4rem, 4vw, 3.5rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    text-shadow: 0 2px 10px rgba(0,0,0,.4);
  }
  
  #slider p {
    font-size: clamp(1.5rem, 2vw, 1.3rem);
    max-width: 600px;
    line-height: 1.5;
    text-shadow: 0 1px 6px rgba(0,0,0,.4);
  }
    
  #slider .slide {
    position: relative;
  }
  
  #slider .slide::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
      to bottom,
      rgba(0,0,0,0.3),
      rgba(0,0,0,0.6)
    );
  }
  
  #slider .slide > * {
    position: relative;
    z-index: 2;
  }

  .slide-btn {
    margin-top: 1.5rem;
    background: #ffeb3b;
    color: #222;
    padding: 0.9rem 2rem;
    border-radius: 30px;
    font-weight: bold;
    text-decoration: none;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0,0,0,.25);
  }
  
  .slide-btn:hover {
    transform: translateY(-2px);
    background: #ffe000;
  }

  #testimonios {
    background: #F6F6F6;
    padding: 4rem 1.5rem;
  }
  
  .testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1100px;
    margin: 2rem auto 0;
  }
  
  .testimonial-card {
    background: #fff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.05);
    text-align: left;
  }
  
  .testimonial-text {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    color: #333;
  }
  
  .testimonial-card strong {
    display: block;
    color: #26B503;
    font-weight: 600;
  }
  
  .testimonial-card span {
    font-size: 0.9rem;
    color: #777;
  }

  /* ================================
   FORMULARIO – ESTILO COMPLETO
================================ */

* {
    box-sizing: border-box;
  }
  
  .form-card {
    background: #ffffff;
    max-width: 420px;
    margin: 2rem auto;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
    box-sizing: border-box;
  }
  
  .form-group {
    margin-bottom: 1.4rem;
  }
  
  .form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: .4rem;
    color: #333;
  }
  
  .form-group input,
  .form-group select {
    width: 100%;
    padding: 0.8rem 1rem;
    border-radius: 8px;
    border: 1px solid #ccc;
    font-size: 1rem;
    transition: all 0.2s ease;
    box-sizing: border-box;
  }
  
  .form-group input:focus,
  .form-group select:focus {
    outline: none;
    border-color: #26B503;
    box-shadow: 0 0 0 3px rgba(38,181,3,0.15);
  }
  
  /* Botón */
  .btn-form {
    width: 100%;
    margin-top: 1rem;
    padding: 1rem;
    font-size: 1.1rem;
    background: #ffeb3b;
    color: #222;
    border: none;
    border-radius: 30px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  
  .btn-form:hover {
    background: #ffe000;
    transform: translateY(-2px);
  }
  
  /* Texto inferior */
  .form-note {
    text-align: center;
    font-size: 0.85rem;
    color: #777;
    margin-top: 1rem;
  }
  #cta h2 {
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: -0.02em;
  }
  #cta {
    text-align: center;
  }
  
  #cta h2 {
    margin-bottom: 1.5rem;
  }

  /* Sección CTA */
#cta {
    background: #26B503;
    padding: 4rem 1.5rem;
    text-align: center;
  }
  
  /* Título del formulario */
  #cta h2 {

    margin-bottom: 2rem;
    font-size: 2rem;
    font-weight: 700;
  }
  
  /* Tarjeta del formulario */
  #cta .form-card {
    background: #ffffff;
    margin: 0 auto;
  }

  
  
  /* Responsive */
  @media (max-width: 768px) {
    .form-card {
      padding: 2rem 1.5rem;
    }
  }
  
  
  
/* Espaciado consistente para textos en secciones */
.section-content {
    padding: 0 2rem;
    max-width: 600px;
  }
  
  /* Mobile */
  @media (max-width: 768px) {
    .section-content {
      padding: 1rem 0;
      max-width: 100%;
    }
  }
  
  