* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  background: #f5f5f7;
  color: #111;
}

/* HERO */

.hero {
  min-height: 100vh;
  padding: 32px 7%;
  color: white;
  background:
    linear-gradient(90deg, rgba(37,60,179,0.95), rgba(248,57,31,0.65), rgba(249,148,35,0.25)),
    linear-gradient(135deg, #050505, #171717);
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.logo-img {
  width: 520px;
  max-width: 55vw;
  height: auto;
  display: block;
  margin-left: -35px;
}

.nav-button,
.main-button {
  display: inline-block;
  background: #F99423;
  color: #111;
  padding: 15px 26px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  text-align: center;
}

.hero-content {
  max-width: 760px;
  margin-top: 150px;
}

.eyebrow {
  color: #F99423;
  font-size: 18px;
  margin-bottom: 24px;
  font-weight: 700;
}

h1 {
  font-size: clamp(52px, 8vw, 105px);
  line-height: 0.95;
  letter-spacing: -4px;
  margin-bottom: 30px;
}

.hero-text {
  max-width: 620px;
  font-size: 22px;
  line-height: 1.5;
  color: #f1f1f1;
  margin-bottom: 36px;
}

/* TEXTOS BOTONES */

.mobile-text {
  display: none;
}

/* INTRO */

.intro {
  padding: 90px 7% 40px;
  max-width: 850px;
}

.line {
  width: 48px;
  height: 3px;
  background: #F8391F;
  margin-bottom: 24px;
}

h2 {
  font-size: clamp(34px, 5vw, 62px);
  line-height: 1;
  letter-spacing: -2px;
  margin-bottom: 20px;
}

.intro p,
.form-box p,
.split-dark p,
.gallery p {
  font-size: 20px;
  line-height: 1.5;
  color: #444;
}

/* CARDS */

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding: 30px 7% 90px;
}

.card {
  background: white;
  border-radius: 28px;
  padding: 36px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.08);
  border-top: 5px solid #F99423;
}

.card h3 {
  font-size: 28px;
  margin-bottom: 14px;
}

.card p {
  font-size: 18px;
  line-height: 1.5;
  color: #555;
}

/* SPLIT / FORMULARIO */

.split {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  background: white;
}

.split-dark {
  background: #253CB3;
  color: white;
  padding: 90px 7%;
}

.split-dark p {
  color: #f1f1f1;
}

.preapertura-list {
  list-style: disc;
  margin-top: 20px;
  padding-left: 24px;
  color: white;
  font-size: 20px;
  line-height: 1.5;
}

.preapertura-list li {
  display: list-item;
  margin-bottom: 10px;
}

.form-box {
  padding: 70px 7%;
}

form {
  margin-top: 28px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

input,
select,
textarea {
  width: 100%;
  padding: 16px;
  border: 1px solid #ddd;
  border-radius: 14px;
  font-size: 16px;
  margin-bottom: 14px;
  font-family: inherit;
}

textarea {
  resize: vertical;
}

.checkbox {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 14px;
  color: #333;
  margin: 6px 0 18px;
}

.checkbox input {
  width: auto;
  margin-top: 3px;
}

button {
  width: 100%;
  padding: 18px 24px;
  border: none;
  border-radius: 999px;
  background: #F8391F;
  color: white;
  font-size: 18px;
  font-weight: 900;
  cursor: pointer;
}

/* GALERÍA */

.gallery {
  padding: 90px 7%;
  background: #f5f5f7;
}

/* FOOTER */

footer {
  background: #111;
  color: white;
  text-align: center;
  padding: 28px;
}

footer p {
  color: white;
}

footer a {
  color: #F99423;
  font-weight: 800;
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}

/* ANIMACIÓN */

.hero-content,
.intro,
.cards,
.split,
.gallery {
  opacity: 0;
  transform: translateY(40px);
  animation: aparecer 1s ease forwards;
}

.intro { animation-delay: 0.2s; }
.cards { animation-delay: 0.4s; }
.split { animation-delay: 0.6s; }
.gallery { animation-delay: 0.8s; }

@keyframes aparecer {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* MÓVIL */

@media (max-width: 900px) {

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

  .hero {
    min-height: 100vh;
    padding: 24px 24px 70px;
  }

  .navbar{
    flex-direction:column;
    align-items:flex-start;
    gap:18px;
    width:100%;
  }

  .logo-img{
    width: 320px;
    max-width: 320px;
    height:auto;

    margin-left: 15px;
  }

  .nav-button {
    align-self: flex-start;
    padding: 14px 28px;
    font-size: 18px;
    line-height: 1.1;
  }

  .hero-content {
    margin-top: 90px;
    width: 100%;
    max-width: 100%;
  }

  .eyebrow {
    font-size: 22px;
    line-height: 1.25;
  }

  h1 {
    font-size: 54px;
    line-height: 0.98;
    letter-spacing: -2px;
  }

  .hero-text {
    font-size: 24px;
    line-height: 1.45;
  }

  .main-button {
    padding: 17px 32px;
    font-size: 20px;
  }

  .desktop-text {
    display: none;
  }

  .mobile-text {
    display: inline;
  }

  .intro {
    padding: 70px 24px 28px;
  }

  h2 {
    font-size: 42px;
    letter-spacing: -1px;
  }

  .intro p,
  .form-box p,
  .split-dark p,
  .gallery p {
    font-size: 20px;
  }

  .cards {
    grid-template-columns: 1fr;
    padding: 24px 24px 70px;
  }

  .card {
    padding: 32px;
  }

  .split {
    grid-template-columns: 1fr;
  }

  .split-dark,
  .form-box {
    padding: 60px 24px;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .gallery {
    padding: 70px 24px;
  }

  footer {
    padding: 28px 24px;
  }
}
.thank-you {
  min-height: 100vh;
  background: linear-gradient(
    135deg,
    #243bb8 0%,
    #b12217 60%,
    #4d2d12 100%
  );

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  text-align: center;
  padding: 40px;
  color: white;
}

.thank-logo {
  width: 280px;
  margin-bottom: 40px;
}

.thank-you h1 {
  font-size: 4rem;
  margin-bottom: 20px;
}

.thank-you p {
  max-width: 700px;
  font-size: 1.3rem;
  margin-bottom: 15px;
}

.highlight {
  font-weight: 700;
  color: #f89b24;
  margin-top: 15px;
}
.thank-you {
  min-height: 100vh;
  background: linear-gradient(
    135deg,
    #243bb8 0%,
    #b12217 60%,
    #4d2d12 100%
  );

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  text-align: center;
  padding: 40px;
  color: white;
}

.thank-logo {
  width: 280px;
  margin-bottom: 40px;
}

.thank-you h1 {
  font-size: 4rem;
  margin-bottom: 20px;
}

.thank-you p {
  max-width: 700px;
  font-size: 1.3rem;
  margin-bottom: 15px;
}

.highlight {
  font-weight: 700;
  color: #f89b24;
  margin-top: 15px;
}
.whatsapp-button{
    display:inline-block;
    margin-top:20px;
    margin-bottom:15px;
    background:#25D366;
    color:white;
    padding:18px 40px;
    border-radius:999px;
    text-decoration:none;
    font-weight:700;
}

.whatsapp-button:hover{
    opacity:.9;
}
.pricing{
    padding:120px 8%;
    background:#f7f7f7;
}

.pricing-header{
    text-align:center;
    max-width:700px;
    margin:0 auto 60px;
}

.pricing-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:30px;
    max-width:900px;
    margin:auto;
}

.pricing-card{
    background:#fff;
    padding:50px;
    border-radius:30px;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
    position:relative;
}

.pricing-card.featured{
    background:#111;
    color:#fff;
}

.pricing-label{
    position:absolute;
    top:20px;
    right:20px;
    background:#f7a021;
    color:#000;
    padding:8px 14px;
    border-radius:999px;
    font-weight:700;
}

.price{
    font-size:4rem;
    font-weight:800;
    margin:20px 0;
}

.pricing-card ul{
    list-style:none;
    padding:0;
}

.pricing-card li{
    margin-bottom:14px;
}

@media (max-width: 900px){

    .pricing{
        padding:80px 24px;
    }

    .pricing-grid{
        grid-template-columns:1fr;
    }

    .pricing-card{
        padding:35px;
    }

    .price{
        font-size:3rem;
    }

}