:root{
  --ink: #1b1b1b;
  --muted: rgba(0,0,0,.55);
  --muted-light: rgba(0,0,0,.40);
  --shadow: 0 18px 40px rgba(0,0,0,.14);
}

/* =========================
   BASE
========================= */

*{ box-sizing: border-box; }

html, body{
  height: 100%;
}

body{
  margin: 0;
  font-family: 'Josefin Sans', sans-serif;
  color: var(--ink);
  font-weight: 300;

  /* TEXTURA DE PAPEL */
  background:
    radial-gradient(circle at 50% 15%, rgba(255,255,255,0.55), rgba(255,255,255,0) 60%),
    radial-gradient(circle at 50% 85%, rgba(0,0,0,0.05), rgba(0,0,0,0) 60%),
    url("images/papertexture.jpg") repeat;

  background-size: auto, auto, 700px;
  background-attachment: fixed;
}

header {
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.page{
  min-height: 100vh;
  position: relative;
  overflow: hidden;
}

/* Espiral lateral (muy sutil) */
.page::after{
  content:"";
  position:absolute;
  top:100px;
  right:-35px;
  width:90px;
  height:70%;
  background:
    radial-gradient(circle at 60% 6%, rgba(0,0,0,.25) 0 6px, transparent 7px),
    radial-gradient(circle at 60% 22%, rgba(0,0,0,.25) 0 6px, transparent 7px),
    radial-gradient(circle at 60% 38%, rgba(0,0,0,.25) 0 6px, transparent 7px),
    radial-gradient(circle at 60% 54%, rgba(0,0,0,.25) 0 6px, transparent 7px),
    radial-gradient(circle at 60% 70%, rgba(0,0,0,.25) 0 6px, transparent 7px),
    radial-gradient(circle at 60% 86%, rgba(0,0,0,.25) 0 6px, transparent 7px);
  opacity:.18;
  pointer-events:none;
}

/* =========================
   NAV
========================= */

.nav{
  height: 130px;                 /* un poco más alto */
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  padding: 0 80px;
  border-bottom: 1px solid rgba(0,0,0,0.08);
  background-color: #FBFAF5;
  box-sizing: border-box;
}

.logo{
  justify-self: start;
}

.logo img{
  height: 85px;
}

.logo img:hover{
  opacity: 1;
}

.nav-links{
  justify-self: end;
  display: flex;
  gap: 104px;
}

.nav-links a{
  text-decoration: none;
  font-size: 12px;
  letter-spacing: .20em;
  color: black;
  transition: .3s;
}

.nav-links a:hover{
  color: rgba(0,0,0,.9);
}

.nav-links a.active{
  color: rgba(0,0,0,.8);
}

.hamburger{
  display: none; /* oculto por ahora, lo usaremos en responsive */
  background: none;
  border: none;
  cursor: pointer;
}

/* =========================
   HERO
========================= */

h1 {
  margin: 0 0 18px 0;
  font-size: 14px;
  letter-spacing: 5px;
  font-weight: 500;
  text-transform: uppercase;
  color: black;
}

h2{
  margin: 0 0 18px 0;
  font-size: 14px;
  letter-spacing: 5px;
  font-weight: 500;
  text-transform: uppercase;
}

h3{
  margin: 0 0 18px 0;
  font-size: 14px;
  letter-spacing: 1px;
  font-style: italic;
  font-weight: 350;
  text-transform: uppercase;
}

h4{
  margin: 0 0 18px 0;
  font-size: 13px;
  letter-spacing: 1px;
  font-weight: 500;
  text-transform: uppercase;
}

p{
  margin: 0;
  font-size: 16px;
  line-height: 1.9;
  letter-spacing: 0.9px; 
  color: black;
}


p strong{
  font-weight: 500;
  color: black;
}

.hero{
  position: relative;
  height: calc(100vh - 92px - 170px);
  min-height: 600px;
}

/* Centro */

.hero-center{
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  text-align: center;
  transform: translateY(10px);
  pointer-events: none;
}

.hero-center{
  position: absolute;
  inset: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  pointer-events: none;
}

.hero-image{
  width: 325px; /* ajusta tamaño */
  height: auto;
  opacity: 0.95;
}

/* =========================
   POLAROIDS
========================= */

.polaroid{
  position: absolute;
  width: 220px;
  padding: 14px 14px 28px;
}

.polaroid img{
  height: 430px;
  display: block;
}

/* Posiciones */

.p1{ left: 9%; transform: rotate(-6deg); }
.p2{ right: 18%; transform: rotate(7deg); }
.p3{ left: 5%;  bottom: -20%; transform: rotate(-10deg); }
.p4{ right: 18%; bottom: -20%; transform: rotate(9deg); }

/* =========================
   ABOUT PAGE (match screenshot)
========================= */

.about-page{
  /* Ajusta estos 2 valores si tu header/footer miden distinto */
  padding: 90px 110px;
  margin: 50px 0;
}

/* --- INTRO: texto izq + imagen der --- */
.about-intro{
  display: grid;
  grid-template-columns: 620px 1fr;
  column-gap: 120px;
  margin-bottom: 100px;
}

/* IMPORTANTÍSIMO: “mata” cualquier CSS viejo que ponga absolute */
.about-intro-image{
  position: static !important;
  width: 360px;         /* tamaño similar al screenshot */
  max-width: 100%;
}

/* --- BOTÓN debajo a la izquierda --- */
.about-intro-button{
  /* lo alineamos con el bloque de texto */
  max-width: 300px;
}

.about-intro-button a{
  display: inline-block;
}

.about-intro-button img{
  width: 190px;    /* tamaño parecido */
  height: auto;
  display: block;
  cursor: pointer;
  transition: .2s ease;
  box-shadow: #1b1b1b1a 0px 10px 30px; /* sombra sutil */
  border-radius: 15px;
}

.about-intro-button img:hover{
  transform: translateY(-2px);
  opacity: .85;
}

/* --- BULLETS: texto izq + imagen der --- */
.about-bullets{
display: grid;
  grid-template-columns: 620px 1fr;
  column-gap: 120px;
  align-items: start;
}

.about-bullets-text ul{
  margin: 0;
  padding: 0;
  list-style: none;     /* en el screenshot no se ven bullets redondos */
  font-size: 16px;
  line-height: 2.1;
  letter-spacing: 0.02em;
  color: rgba(0,0,0,.65);
}

/* Igual: mata absolute viejo */
.about-bullets-image{
  position: static !important;
  width: 320px;
  max-width: 100%;
  height: auto;
}

/* =========================
   SERVICES PAGE – LAYOUT ONLY
========================= */

main.services{
  position: relative;
  padding: 90px 110px 120px;
  text-align: center;
}

/* Intro paragraph centrado y con ancho controlado */
main.services > p{
  max-width: 760px;
  margin: 0 auto 40px;
}

/* Timeline centrado */
main.services > img{
  display: block;
  width: min(720px, 75vw);
  margin: 40px auto 100px;
}

/* =========================
   FAQ BLOCK
========================= */

.faqs{
  position: relative;
  max-width: 760px;
  margin: 0 auto 100px;
  text-align: left; /* preguntas alineadas izquierda */
}

/* Centrar el título FAQ */
.faqs > h2{
  text-align: center;
  margin-bottom: 60px;
}

/* Separación entre preguntas */
.faqs > h3{
  margin-top: 40px;
  margin-bottom: 10px;
}

/* Separación entre respuestas */
.faqs > p{
  margin-bottom: 30px;
}

/* =========================
   IMÁGENES DECORATIVAS
========================= */

/* Polaroid izquierda */
.faqs > img:first-of-type{
  position: absolute;
  left: -320px;
  bottom: 20px;
  width: 220px;
  transform: rotate(-7deg);
  pointer-events: none;
}

/* Signo pregunta derecha */
.faqs > img:last-of-type{
  position: absolute;
  right: -230px;
  top: 240px;
  width: 170px;
}

/* =========================
   CONTACT SECTION
========================= */

main.services > h4{
  text-align: center;
  margin-bottom: 20px;
}

main.services > a img{
  margin-top: 25px;
  width: 140px;
  transition: .2s ease;
  box-shadow: #1b1b1b1a 0px 10px 30px; /* sombra sutil */
  border-radius: 15px;
}

main.services > a img:hover{
  transform: translateY(-2px);
}


/* ===== PACKAGES SECTION ===== */
.packages{
  padding: 70px 90px;
  text-align: center;
}

/* títulos centrados como el mockup */
.packages-title{
  margin: 0 0 10px 0;
}

.packages-subtitle{
  margin: 0 0 45px 0;
  opacity: .8;
}

/* 3 tarjetas */
.packages-grid{
  display: grid;
  grid-template-columns: repeat(3, minmax(240px, 1fr));
  gap: 44px;
  align-items: start;
  margin-top: 50px;
}

/* tarjeta */
.package{
  border-radius: 28px;
  overflow: hidden; /* clave para que el top gris quede con bordes redondeados */
  box-shadow: 0 18px 40px rgba(0,0,0,.12);
}

/* parte superior (foto grande) */
.package-top{
  background: rgba(0,0,0,.18); /* gris como placeholder */
  height: 340px;
}

.package-photo{
  width: 100%;
  height: 100%;
  object-fit: cover;   /* llena como el mockup */
  display: block;
}

/* parte inferior (blanco) */
.package-bottom{
  padding: 26px 26px 30px 26px;
  background:#FBFAF5;
  height: 500px;
}

/* imagen “nombre del paquete” tipo label */
.package-name{
  max-width: 225px;
  display: block;
  margin: 0 auto 18px auto;
  margin-top: 25px;
  margin-bottom: 25px;
}

/* lista centrada como en el mockup */
.package-list{
  list-style: none;
  padding: 0;
  margin: 0 0 18px 0;
}

.package-list li{
  margin: 8px 0;
  line-height: 1.6;
  opacity: .85;
}

/* precio */
.package-price{
  margin: 10px 0 6px 0;
  font-weight: 600;
  font-size: 18px;
}

.package-rate{
  margin: 0;
  opacity: .75;
}

.services #disclaimer1{
  font-style: italic;
  font-size: 18px;
  letter-spacing: 1px;
  margin-bottom: 50px;
}

.services #disclaimer2{
  font-style: italic;
  font-size: 16.8px;
  letter-spacing: 1px;
  margin-bottom: 50px;
}

#booknow img {
  margin-top: 25px;
  width: 190px;
  transition: .2s ease;
  box-shadow: #1b1b1b1a 0px 10px 30px;
  border-radius: 15px;
}

#booknow img:hover {
  transform: translateY(-2px);
}


/* ===== WRAPPER ===== */

#titlecontact{
  text-align: center;
  margin-bottom: 40px;
}

.contact{
  max-width: 1100px;
  margin: 0 auto;
  padding: 90px 110px;
}

/* ===== TOP GRID (2 columnas) ===== */
.contact-top{
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 60px;
  align-items: start;
  margin-bottom: 40px;
}

.contact-photo{
  margin: 0;
}

.contact-photo img{
  width: 100%;
  height: auto;
  display: block;
}

/* ===== BODY FULL WIDTH ===== */
.contact-body{
  margin-bottom: 30px;
}

.contact-facts ul{
  margin: 0;
  padding-left: 20px;
  line-height: 2;
}

.contact-collage{
  display: block;
  margin: 80px auto 0;   /* auto = centrado horizontal */
  max-width: 500px;      /* ajusta tamaño */ 
}

#titlecontactform{
  text-align: center;
  margin-bottom: 40px;
}

#descriptioncontactform{
  text-align: center;
  line-height: 30px;
  letter-spacing: 0.9px;
}

/* WRAP centrado como screenshot */
.contact-form-wrap{
  display: grid;
  place-items: center;
  padding: 40px 16px 80px;
}

/* Tarjeta */
.contact-form{
  width: min(520px, 92vw);
  background: #fbfaf5;            /* crema */
  border-radius: 10px;
  padding: 34px 44px;
  box-shadow: 0 18px 40px rgba(0,0,0,.10);
  border: 1px solid rgba(0,0,0,.06);
}

/* Campos */
.field{
  margin-bottom: 22px;
}

.field label{
  display: block;
  margin-bottom: 10px;
  font-size: 14px;
  letter-spacing: .02em;
  color: rgba(0,0,0,.85);
}

/* Inputs como el screenshot: gris claro, sin borde duro */
.field input,
.field textarea{
  width: 100%;
  background: rgba(0,0,0,.05);
  border: 1px solid rgba(0,0,0,.00);
  border-radius: 2px;
  padding: 12px 14px;
  font: inherit;
  font-size: 14px;
  letter-spacing: .02em;
  color: rgba(0,0,0,.85);
  outline: none;
}

.field textarea{
  resize: vertical;
  min-height: 74px;
}

/* Placeholder suave */
.field input::placeholder,
.field textarea::placeholder{
  color: rgba(0,0,0,.45);
}

/* Focus sutil (no azul agresivo) */
.field input:focus,
.field textarea:focus{
  background: rgba(0,0,0,.045);
  border-color: rgba(0,0,0,.10);
}

/* Error debajo */
.error{
  display: block;
  margin-top: 8px;
  font-size: 12px;
  color: rgba(140, 0, 0, .85);
  min-height: 14px; /* para que no salte el layout */
}

/* Botón minimal (no está en tu screenshot, pero limpio) */
.submit-btn{
  width: 100%;
  margin-top: 6px;
  padding: 12px 14px;
  border: 0;
  border-radius: 8px;
  background: #EEEDE9;
  box-shadow: 0 5px 10px rgba(0,0,0,0.18);
  color: black;
  font: inherit;
  letter-spacing: .06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: .2s ease;
}

.submit-btn:hover{
  transform: translateY(-1px);
  opacity: .92;
}

.form-status{
  margin: 14px 0 0;
  text-align: center;
  font-size: 13px;
  color: rgba(0,0,0,.65);
}

/* =========================
   FOOTER
========================= */

.footer{
  height: 230px;
  display: grid;
  place-items: center;
  padding-bottom: 30px;
  background-image: url("images/curva.png");
  background-repeat: no-repeat;
  background-position: center bottom;  /* ajusta posición */
  background-size: 100% auto;          /* ocupa todo el ancho */
}

.footer-logo img{
  width: 80px;
}

.social{
  display: flex;
  gap: 14px;
}

.social a{
  text-decoration: none;
  color: rgba(0,0,0,.6);
  transition: .3s;
}

.social a:hover{
  color: rgba(0,0,0,.9);
  transform: translateY(-2px);
}

.social i{
  font-size: 18px;
}

.credit{
  font-size: 14px;
  color: black;
}

/* =========================
   RESPONSIVE
========================= */
/* =========================
   MOBILE (iPhone 15 ~ 430px) — HOME
========================= */
@media (max-width: 430px){

  h1 {
    letter-spacing: 2px;
  }


h2{
  letter-spacing: 2px;
  margin-bottom: 10px;
}


  p{
  margin: 0;
  font-size: 16px;
  line-height: 1.4;
  letter-spacing: 0.9px; 
  color: black;
  text-align: start;
}
  
  /* ---------- NAV: logo centro + hamburguesa derecha ---------- */
  .nav{
    height: 80px;
    padding: 0 18px;
    grid-template-columns: 1fr auto 1fr; /* centro real */
  }

  /* BOTÓN */
  .hamburger{
    display: block;
    grid-column: 3;
    justify-self: end;
    width: 44px;
    height: 44px;
    background: transparent;
    border: 0;
    padding: 0;
    cursor: pointer;
    position: relative;
  }

  /* 3 líneas */
  .hamburger span,
  .hamburger::before,
  .hamburger::after{
    content: "";
    position: absolute;
    left: 50%;
    width: 22px;
    height: 2px;
    background: rgba(0,0,0,.55);
    transform: translateX(-50%);
    border-radius: 2px;
  }

  .hamburger span{ top: 50%; transform: translate(-50%, -50%); }
  .hamburger::before{ top: 16px; }
  .hamburger::after{ bottom: 16px; }

  .logo{
    justify-self: center;
    grid-column: 2;
  }

  .logo img{
    height: 58px;
  }

  .nav-links{
    display: none; /* ocultar menú desktop */
  }

  .nav-links.is-open{
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: absolute;
  top: 80px;            /* altura del header mobile */
  left: 0;
  right: 0;
  padding: 18px;
  background: #FBFAF5;
  border-bottom: 1px solid rgba(0,0,0,0.08);
  z-index: 999;
}

  /* centro del hero: usamos grid para empujar contenido al medio */
  .hero-center{
    position: relative;
    min-height: calc(100vh - 80px - 230px);
  }

  .hero-image{
    width: 200px; /* logo en el medio */
    margin-top: 25px;
  }

  /* ---------- POLAROIDS: solo 2 (p2 arriba, p3 abajo) ---------- */
  .polaroid{
    width: 165px;
    padding: 12px 12px 22px;
  }

  .polaroid img{
    width: 100%;
    height: auto; /* mata el height fijo desktop */
    display: block;
  }

  /* Oculta las otras dos */
  .p1, .p2,
  .p4{
    display: none;
  }

  /* Abajo del logo */
  .p3{
    left: 50%;
    margin-bottom: 70px;
    transform: translateX(-50%) rotate(6deg);
    width: 250px;
  }

  /* ---------- opcional: quita espiral lateral en mobile si estorba ---------- */
  .page::after{
    opacity: 0; /* o display:none; si prefieres */
  }

  .about-bullets-text ul {
    line-height: 1;
  }


  .footer{
    height: 150px;
    padding-bottom: 3px; 
  }

  .footer-logo img{
  width: 65px;
}

.social i{
  font-size: 16px;
}

/* contenedor general */
  .about-page{
    padding: 40px;
    margin: 0;
  }

  /* ---------- INTRO (texto + polaroid + botón) ---------- */
  .about-intro{
    grid-template-columns: 1fr;   /* 1 columna */
    column-gap: 0;
    row-gap: 22px;
    margin-bottom: 55px;
    justify-items: center;        /* centra hijos (img y botón) */
    text-align: center;           /* centra el texto */
  }

  .about-intro-text{
    max-width: 340px;
    margin: 0 auto;
  }

  .about-intro-image{
    width: 220px;
    max-width: 85vw;
    margin: 8px auto 0;
  }

  .about-intro-button{
    max-width: none;
    display: flex;
    justify-content: center;
    margin-top: 8px;
  }

  .about-intro-button img{
    width: 170px;
  }

  /* ---------- BULLETS (titulo + lista + polaroid) ---------- */
  .about-bullets{
    grid-template-columns: 1fr;  /* 1 columna */
    row-gap: 18px;
    text-align: center;
  }

  .about-bullets-text{
    max-width: 340px;
    margin: 0 auto;
  }

  .about-bullets-text h2{
    text-align: center;
    margin-bottom: 14px;
  }

  .about-bullets-text ul{
    text-align: start;
    padding: 0;
    margin: 0;
    line-height: 2;
  }

  .about-bullets-image{
    width: 240px;
    max-width: 90vw;
    margin: 10px auto 0;
  }


  main.services{
    padding: 46px 22px 80px;
  }

  /* el texto principal más angosto como tu wireframe */
  main.services > p{
    max-width: 320px;
    margin: 0 auto 26px;
    text-align: center;
    margin-bottom: 70px;
  }

  /* timeline centrado y más pequeño */
  main.services > img{
    width: min(330px, 86vw);
    margin: 26px auto 70px;
  }

  /* =========================
     FAQS
  ========================= */
  .faqs{
    max-width: 330px;
    margin: 0 auto 70px;
    text-align: left;
  }

  .faqs > h2{
    text-align: center;
    margin-bottom: 36px;
    letter-spacing: 2px;
  }

  .faqs > h3{
    margin-top: 28px;
    margin-bottom: 8px;
    letter-spacing: 0px;
    line-height: 1.5;
  }

  .faqs > p{
    margin-bottom: 22px;
  }

  /* en mobile NO queremos decoraciones flotando (wireframe limpio) */
  .faqs > img:first-of-type,
  .faqs > img:last-of-type{
    display: none;
  }

  /* =========================
     BOTÓN CONTACT (imagen)
  ========================= */
  main.services > a img{
    width: 120px;
    margin: 18px auto 0;
    display: block;
  }

  main.services > p {
    text-align: start;
  }

  /* =========================
     PACKAGES (1 columna)
  ========================= */
  .packages{
    padding: 40px 18px 10px;
  }

  .packages-grid{
    grid-template-columns: 1fr;
    gap: 70px;
  }

  .package{
    max-width: 320px;
    margin: 0 auto;
    border-radius: 24px;
  }

  .package-top{
    height: 240px;
  }

  .package-bottom{
    max-width: 300px;
    height: auto;
  }

  .package-bottom p{
    text-align: center;
  }

  .package-name{
    max-width: 220px;
    margin: 14px auto 16px;
  }

  .package-list li{
    margin: 6px 0;
  }

  /* disclaimers centrados y con ancho controlado */
  .services #disclaimer1{
    max-width: 300px;
    margin: 28px auto 0;
    margin-bottom: 25px;
    text-align: center;
  }

  .services h3{
    font-weight: 400;
  }

  .services #disclaimer2{
    letter-spacing: 0px;
  }

  .services #booknow img {
    margin-top: 20px;
    width: 170px;
  }

  main.contact{
    padding: 28px 18px 70px;  /* menos padding lateral */
    max-width: 100%;
  }

  /* Título arriba centrado */
  #titlecontact{
    margin-top: 18px;
  }

  /* GRID a 1 columna */
  .contact-top{
    grid-template-columns: 1fr;
    gap: 18px;
    margin-bottom: 18px;
  }

  .contact-photo img{
    width: 220px;
    margin: 0 auto;
  }

  /* Texto superior: centrado y con ancho controlado */
  .contact-toptext{
    max-width: 320px;
    margin: 0 auto;
  }

  /* Párrafos full width -> centrados y angostos */
  .contact-body{
    max-width: 320px;
    margin: 0 auto 18px;
    text-align: center;
  }

  /* Fun facts centrado y con bullets tipo guion */
  .contact-facts{
    max-width: 320px;
    margin: 0 auto 26px;
    margin-top: 60px;
  }

  .contact-facts ul{
    list-style: none;
    padding-left: 0;
  }

  .contact-facts li{
    margin: 10px 0;
  }

  .contact-facts li::before{
    content: "- ";
  }

  /* Collage centrado */
  .contact-collage{
    display: block;
    margin: 26px auto 0;
    width: min(280px, 86vw);
    max-width: none;
  }

  /* Bloque de booking/form */
  #titlecontactform{
    margin: 34px 0 16px;
  }

  #descriptioncontactform{
    max-width: 325px;
    margin: 0 auto 18px;
    text-align: center;
    line-height: 1.8;
  }

  .contact-form{
    width: min(320px, 92vw);
    padding: 22px 18px;
    box-shadow: 0 2px 8px rgba(0,0,0,0);
  }

  .field{
    margin-bottom: 18px;
  }

  .field label{
    margin-bottom: 8px;
    font-size: 13px;
  }

  .field input,
  .field textarea{
    padding: 11px 12px;
    font-size: 13px;
  }

  .submit-btn{
    padding: 12px;
    font-size: 13px;
  }

  }

/* =========================
   TABLET (iPad Pro)
========================= */
@media (max-width: 1024px) and (min-width: 431px){

  /* ---------- NAV ---------- */
  .nav{
    padding: 0 40px;
    height: 100px;
  }

  .logo img{
    height: 70px;
  }

  .nav-links{
    gap: 50px;
  }

  /* ---------- HERO ---------- */
  .hero-image{
    width: 260px;
  }

  /* Polaroids más centradas y menos extremas */
  .polaroid{
    width: 180px;
  }

  .polaroid img{
    height: auto;
    width: 250px;
  }

  .p1 {
    top: 100px;
    }

  .p2 {
    top: 100px;
    }

  .p3 {
    left: 8%;
    bottom: 50px;
    }

  .p4 {
    bottom: 50px;
    }

  /* ---------- ABOUT ---------- */
  .about-page{
    padding: 60px 60px;
  }

  .about-intro{
    grid-template-columns: 1fr 1fr;
    column-gap: 60px;
  }

  .about-intro-image{
    width: 280px;
  }

  .about-bullets{
    grid-template-columns: 1fr 1fr;
    column-gap: 60px;
  }

  .about-bullets-image{
    width: 260px;
  }

  /* ---------- SERVICES ---------- */

  .faqs > h3 {
    line-height: 1.5;
  }

  main.services{
    padding: 70px 60px 100px;
  }

  main.services > p{
    max-width: 600px;
  }

  .faqs{
    max-width: 600px;
  }

  /* Packages → 2 columnas en vez de 3 */
  .packages-grid{
    grid-template-columns: repeat(1, 1fr);
    gap: 40px;
  }

  .package{
    max-width: 420px;
    margin: 0 auto;
  }

  /* ---------- CONTACT ---------- */

  
#descriptioncontactform {
    max-width: 700px;
    margin: 0 auto 30px;
  }

  .contact{
    padding: 60px 60px;
  }

  .contact-top{
    grid-template-columns: 280px 1fr;
    gap: 40px;
  }

  .contact-collage{
    max-width: 380px;
  }

  .contact-form{
    width: min(500px, 90%);
  }

}


