/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body, html {
  height: 100%;
  width: 100%;
  overflow-x: hidden;
}

/* Hero */
.hero {
  position: relative;
  height: 100vh;
  width: 100%;
  background: url("../images/hero3.png") no-repeat center center/cover;
  transform: scaleX(-1); /* invierte solo la imagen */
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.1);
}

.content {
  transform: scaleX(-1); /* devuelve el contenido a normal */
  display: flex;
  justify-content: flex-end;
  align-items: center;
  height: 100%;
  width: 85%;
  padding-right: 3%;
}

.text-box {
  max-width: 420px;
  background: rgba(255, 255, 255, 0.85);
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.text-box h1 {
  font-size: 2rem;
  margin-bottom: 15px;
  line-height: 1.3;
}

.text-box p {
  font-size: 1rem;
  margin-bottom: 15px;
}

.text-box ul {
  margin-bottom: 20px;
  list-style: none;
}

.text-box ul li {
  margin-bottom: 8px;
  font-size: 0.95rem;
}

/* Formulario multipaso */
.form-card {
  background: #fff;
  color: #333;
  padding: 20px;
  border-radius: 10px;
  margin-top: 15px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.form-step {
  display: none;
  text-align: center;
}

.form-step.active {
  display: block;
}

.form-step h3 {
  margin-bottom: 15px;
  font-size: 1.1rem;
}

.option {
  display: inline-block;
  margin: 8px;
  padding: 12px 20px;
  border: none;
  border-radius: 6px;
  background-color: #007BFF;
  color: #fff;
  cursor: pointer;
  font-size: 16px;
  transition: background 0.3s;
}

.option:hover {
  background-color: #0056b3;
}

input[type="text"],
input[type="email"],
input[type="tel"] {
  width: 100%;
  padding: 12px;
  margin-bottom: 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
}

.btn {
  width: 100%;
  padding: 14px;
  border: none;
  border-radius: 6px;
  background-color: #28a745;
  color: #fff;
  font-size: 18px;
  cursor: pointer;
}

.btn:hover {
  background-color: #218838;
}

/* Services */
.services {
  padding: 60px 10%;
  background: #f9f9f9;
  text-align: center;
}

.services h2 {
  font-size: 2rem;
  margin-bottom: 40px;
}

.services-grid {
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap;
}

.service {
  background: white;
  border-radius: 10px;
  padding: 20px;
  width: 280px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  text-align: center;
}

.service img {
  width: 100%;
  border-radius: 8px;
  margin-bottom: 15px;
}

/* Why Us */
.why-us {
  padding: 60px 15%;
  background: white;
  text-align: center;
}

.why-us h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}

.why-us ul {
  list-style: none;
  font-size: 1.1rem;
  line-height: 1.8;
}

/* FAQ */
.faq {
  padding: 60px 15%;
  background: #f9f9f9;
}

.faq h2 {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 40px;
}

.faq-item {
  margin-bottom: 20px;
}

.faq-item h3 {
  font-size: 1.2rem;
  margin-bottom: 5px;
  color: #333;
}

/* CTA */
.cta {
  padding: 80px 15%;
  background: #28a745;
  color: white;
  text-align: center;
}

.cta h2 {
  font-size: 2rem;
  margin-bottom: 15px;
}

.cta p {
  font-size: 1.1rem;
  margin-bottom: 25px;
}

.cta .btn {
  background: white;
  color: #28a745;
  padding: 12px 30px;
  border-radius: 5px;
  font-size: 1.1rem;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s;
}

.cta .btn:hover {
  background: #f1f1f1;
}
