/* General Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;


overflow-x: hidden;
/* overflow: visible;  o auto, según el caso */
word-wrap: break-word; /* importante para palabras largas */
word-break: break-word;
overflow-wrap: break-word;
/* white-space: normal; */

}






body {
    
    width: 100%;
    
  font-family: 'Lato', sans-serif;
  color: #333;
  line-height: 1.6;
  background-color: #f9f9f9;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

h1, h2, h3 {
  font-weight: 700;
  margin-bottom: 20px;
}

p {
  margin-bottom: 20px;
  font-size:120%;
}

/* Hero Section */
#hero {
  background: url('fondo.jpg') no-repeat center center/cover;
  color: white;
  text-align: center;
  padding: 100px 20px;
}

#hero_corto {
  background: url('fondo.jpg') no-repeat center center/cover;
  color: white;
  text-align: center;
  padding: 10px 2px;
}

#hero h1 {
  font-size: 4rem;
  margin-bottom: 20px;
}

#hero_corto h1 {
  font-size: 4rem;
  margin-bottom: 2px;
}

#hero p {
  margin-bottom: 20px;
  font-size:140%;
}

#hero .btn {
  background-color: #20193f;
  color: #20193f;
  padding: 15px 30px;
  text-decoration: none;
  font-size: 1rem;
  border-radius: 5px;
  transition: background 0.3s ease;
}

#hero .btn:hover {
  background-color: #20193f;
}

/* Benefits Section */
#benefits {
  background-color: #fff;
  padding: 60px 20px;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.benefit {
  text-align: center;
}

.benefit h3 {
  margin-bottom: 10px;
  font-size: 1.5rem;
}

/* Examples Section */
#examples {
  background-color: #f1f1f1;
  padding: 60px 20px;
}

.examples-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* Testimonials Section */
#testimonials {
  background-color: #fff;
  padding: 60px 20px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.testimonial {
  text-align: center;
}

.testimonial p {
  font-style: italic;
  margin-bottom: 10px;
}

.testimonial h4 {
  font-weight: bold;
}

/* Process Section */
#process {
  background-color: #f1f1f1;
  padding: 60px 20px;
}

#process ol {
  list-style: none;
  counter-reset: step;
}

#process li {
  font-size: 1.2rem;
  padding-left: 30px;
  position: relative;
  margin-bottom: 10px;
}

#process li::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: 0;
  top: 0;
  width: 20px;
  height: 20px;
  background-color: #ff4757;
  color: white;
  text-align: center;
  line-height: 20px;
  border-radius: 50%;
}


 .boton-azul {
            background-color: #003366; /* Azul más oscuro */
            color: yellow;
            padding: 20px 40px; /* Botón más grande */
            border: none;
            font-size: 20px; /* Texto más grande */
            font-weight: bold; /* Texto en negrita */
            cursor: pointer;
            border-radius: 8px;
            text-align: center;
            transition: background-color 0.3s ease;
        }

        .boton-azul:hover {
            background-color: #002244; /* Azul aún más oscuro al pasar el ratón */
        }


/* Call to Action Section */
#cta {
  background-color: #20193f; /* #ff4757 color antiguo, azul: #170761, rojo:  https://dequeuniversity.com/rules/axe/4.9/color-contrast */
  color: white;
  text-align: center;
  padding: 60px 20px;
}

#cta h2 {
  margin-bottom: 20px;
}

#cta .btn {
  background-color: #20193f; /* white */
  color: /* #0011FF; */  /* #ff4757  */ #20193f;  /**/  
  padding: 15px 30px;
  text-decoration: none;
  font-size: 1rem;
  border-radius: 5px;
  transition: background 0.3s ease;
}

#cta .btn:hover {
  background-color: #20193f;
}

/* Responsive Design */
@media (max-width: 768px) {
  .benefits-grid, .examples-grid, .testimonials-grid {
    grid-template-columns: 1fr;
  }
  
  #hero h1 {
    font-size: 2rem;
  }


}


form {
  max-width: 600px;
  margin: 30px auto;
  padding: 20px;
  background-color: #f4f4f4;
  border-radius: 12px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  font-family: Arial, sans-serif;
}

form label {
  display: block;
  margin-bottom: 6px;
  font-weight: bold;
  font-size: 1rem;
}

form input[type="text"],
form input[type="email"],
form textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 20px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
  box-sizing: border-box;
}

form textarea {
  resize: vertical;
  min-height: 80px;
}

form button {
  background-color: #002f6c;
  color: yellow;
  padding: 12px 24px;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

form button:hover {
  background-color: #001e4d;
}
