:root {
  --navy: #07182f;
  --dark: #0b0b0b;
  --black: #000000;
  --gold: #c89122;
  --gold-light: #f4c45f;
  --white: #ffffff;
  --gray: #f4f4f4;
  --text: #333333;
  --shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background: var(--white);
  color: var(--text);
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  width: 100%;
  display: block;
}

.container {
  width: min(1180px, 92%);
  margin: auto;
}

.section {
  padding: 95px 0;
}

/* HEADER */

.header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background: rgba(7, 24, 47, 0.94);
  backdrop-filter: blur(12px);
  z-index: 1000;
  border-bottom: 1px solid rgba(244, 196, 95, 0.25);
}

.nav-container {
  height: 82px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-box {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
}

.logo-img {
  width: 58px;
  height: 58px;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid var(--gold);
  background: var(--white);
  padding: 4px;
}

.logo-box h2 {
  font-size: 22px;
  line-height: 1;
  letter-spacing: 2px;
}

.logo-box span {
  font-size: 13px;
  color: var(--gold-light);
  text-transform: uppercase;
}

.navbar {
  display: flex;
  align-items: center;
  gap: 28px;
}

.navbar a {
  color: var(--white);
  font-size: 15px;
  font-weight: 600;
  transition: 0.3s;
}

.navbar a:hover {
  color: var(--gold-light);
}

.btn-call {
  padding: 12px 22px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--black);
  border-radius: 50px;
  font-weight: 800;
  transition: 0.3s;
}

.btn-call:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(200, 145, 34, 0.35);
}

.menu-btn {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  font-size: 32px;
  cursor: pointer;
}

/* HERO */

.hero {
  min-height: 100vh;
  position: relative;
  background:
    linear-gradient(90deg, rgba(7, 24, 47, 0.92), rgba(7, 24, 47, 0.68), rgba(0, 0, 0, 0.15)),
    url("../img/imagen1.png") center/cover no-repeat;
  display: flex;
  align-items: center;
  padding-top: 90px;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-text {
  max-width: 680px;
  color: var(--white);
}

.tag,
.tag-dark {
  display: inline-block;
  padding: 8px 18px;
  border-radius: 50px;
  background: rgba(244, 196, 95, 0.15);
  color: var(--gold-light);
  border: 1px solid rgba(244, 196, 95, 0.35);
  font-weight: 700;
  margin-bottom: 20px;
}

.tag-dark {
  color: var(--gold);
  background: rgba(200, 145, 34, 0.12);
}

.hero h1 {
  font-size: clamp(42px, 7vw, 78px);
  line-height: 1.05;
  margin-bottom: 24px;
  font-weight: 900;
}

.hero p {
  font-size: 20px;
  max-width: 620px;
  color: #eeeeee;
  margin-bottom: 34px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 45px;
}

.btn-primary,
.btn-secondary {
  display: inline-block;
  padding: 15px 28px;
  border-radius: 50px;
  font-weight: 800;
  transition: 0.3s;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--black);
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(200, 145, 34, 0.4);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--gold-light);
}

.btn-secondary:hover {
  background: var(--gold-light);
  color: var(--black);
}

.hero-info {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.hero-info div {
  min-width: 145px;
  padding: 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.hero-info strong {
  display: block;
  color: var(--gold-light);
  font-size: 25px;
}

.hero-info span {
  font-size: 14px;
  color: #eeeeee;
}

/* SECTION TITLE */

.section-title {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 55px;
}

.section-title span {
  color: var(--gold);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.section-title h2 {
  font-size: clamp(32px, 5vw, 48px);
  color: var(--navy);
  margin: 10px 0;
}

.section-title p {
  font-size: 17px;
  color: #666666;
}

.section-title.light h2,
.section-title.light p {
  color: var(--white);
}

/* SERVICES */

.services {
  background: var(--gray);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.service-card {
  background: var(--white);
  padding: 35px 28px;
  border-radius: 24px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(200, 145, 34, 0.12);
  transition: 0.3s;
}

.service-card:hover {
  transform: translateY(-10px);
  border-color: var(--gold);
}

.icon {
  width: 70px;
  height: 70px;
  border-radius: 20px;
  background: linear-gradient(135deg, var(--navy), var(--black));
  color: var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  margin-bottom: 22px;
}

.service-card h3 {
  color: var(--navy);
  font-size: 22px;
  margin-bottom: 12px;
}

.service-card p {
  color: #666666;
}

/* ABOUT */

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 55px;
  align-items: center;
}

.about-img img {
  border-radius: 28px;
  box-shadow: var(--shadow);
  height: 540px;
  object-fit: cover;
}

.about-text h2 {
  font-size: clamp(32px, 5vw, 48px);
  color: var(--navy);
  line-height: 1.15;
  margin-bottom: 22px;
}

.about-text p {
  margin-bottom: 18px;
  color: #555555;
}

.about-list {
  display: grid;
  gap: 12px;
  margin: 25px 0 32px;
}

.about-list div {
  background: var(--gray);
  padding: 14px 18px;
  border-radius: 14px;
  font-weight: 700;
  color: var(--navy);
}
 /* PROCESS */
  /* Process */
/*
.process {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(rgba(248, 250, 252, 0.94), rgba(248, 250, 252, 0.94)),
    url("../img/imagen3.png") center / cover;
}

.process::before {
  content: "";
  position: absolute;
  top: -130px;
  left: -130px;
  width: 330px;
  height: 330px;
  border: 55px solid rgba(213, 155, 43, 0.08);
  border-radius: 50%;
}

.process-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.process-grid::before {
  content: "";
  position: absolute;
  top: 49px;
  right: 17%;
  left: 17%;
  height: 2px;
  background: repeating-linear-gradient(
    90deg,
    var(--gold-500) 0,
    var(--gold-500) 8px,
    transparent 8px,
    transparent 15px
  );
}

.process-card {
  position: relative;
  z-index: 1;
  padding: 30px;
  text-align: center;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.process-number {
  position: absolute;
  top: 20px;
  right: 22px;
  color: var(--gray-200);
  font-size: 2rem;
  font-weight: 950;
}

.process-icon {
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  margin: 0 auto 22px;
  color: var(--navy-950);
  background: linear-gradient(135deg, var(--gold-500), var(--gold-400));
  border: 7px solid var(--cream);
  border-radius: 50%;
  box-shadow: 0 10px 25px rgba(213, 155, 43, 0.2);
  font-size: 1.35rem;
  font-weight: 900;
}

.process-card h3 {
  margin-bottom: 10px;
  color: var(--navy-900);
  font-size: 1.28rem;
}

.process-card p {
  color: var(--gray-500);
} */

/* SIMPLE PROCESS */
.simple-process {
  background: var(--gray); /* Si quieres que el fondo sea blanco, cambialo a var(--white) */
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.process-card {
  background: var(--white);
  padding: 35px 28px;
  border-radius: 24px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(200, 145, 34, 0.12);
  transition: 0.3s;
  text-align: center; /* CENTRA EL TEXTO (El h3 y el p) */
}

.process-card:hover {
  transform: translateY(-10px);
  border-color: var(--gold);
}

/* Diseño del icono y centrado del cuadrito */
.process-card .icon {
  width: 70px;
  height: 70px;
  border-radius: 20px;
  background: linear-gradient(135deg, var(--navy), var(--black));
  color: var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  margin: 0 auto 22px auto; /* CENTRA EL ICONO HORIZONTALMENTE */
}

.process-card h3 {
  color: var(--navy);
  font-size: 22px;
  margin-bottom: 12px;
}

.process-card p {
  color: #666666;
}
/* WHY */

.why {
  background:
    linear-gradient(rgba(7, 24, 47, 0.94), rgba(7, 24, 47, 0.94)),
    url("../img/imagen3.png") center/cover no-repeat;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.why-card {
  background: rgba(255, 255, 255, 0.08);
  padding: 32px 24px;
  border-radius: 22px;
  border: 1px solid rgba(244, 196, 95, 0.25);
  color: var(--white);
  transition: 0.3s;
}

.why-card:hover {
  background: rgba(244, 196, 95, 0.13);
  transform: translateY(-8px);
}

.why-card h3 {
  color: var(--gold-light);
  margin-bottom: 12px;
  font-size: 22px;
}

/* GALLERY */

.gallery {
  background: var(--white);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}

.gallery-grid img {
  height: 260px;
  object-fit: cover;
  border-radius: 22px;
  box-shadow: var(--shadow);
  transition: 0.3s;
}

.gallery-grid img:hover {
  transform: scale(1.04);
}

/* CONTACT */

.contact {
  background: var(--gray);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 50px;
  align-items: center;
}

.contact-info h2 {
  font-size: clamp(32px, 5vw, 48px);
  color: var(--navy);
  line-height: 1.15;
  margin-bottom: 20px;
}

.contact-info p {
  color: #555555;
  margin-bottom: 28px;
}

.contact-box {
  background: var(--white);
  border-left: 5px solid var(--gold);
  padding: 18px 22px;
  border-radius: 16px;
  margin-bottom: 16px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.contact-box strong {
  display: block;
  color: var(--navy);
}

.contact-box a,
.contact-box span {
  color: #555555;
}

.contact-form {
  background: var(--white);
  padding: 38px;
  border-radius: 28px;
  box-shadow: var(--shadow);
}
.contact-form p {
  color: #555555;
  margin-bottom: 28px;
}
.contact-form h3 {
  font-size: 28px;
  color: var(--navy);
  margin-bottom: 22px;
}

.form-group {
  margin-bottom: 16px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 16px 18px;
  border-radius: 14px;
  border: 1px solid #dddddd;
  font-size: 16px;
  outline: none;
  transition: 0.3s;
  font-family: Arial, Helvetica, sans-serif;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(200, 145, 34, 0.14);
}

/* Estilos para los títulos del formulario y la validación */
.form-group label {
  display: block;
  margin-bottom: 8px;
  color: var(--navy);
  font-weight: 700;
  font-size: 14px;
}

/* Letras rojas de error */
.error-msg {
  color: #d93025;
  font-size: 13px;
  display: block;
  margin-top: 5px;
  font-weight: 600;
}

/* Borde rojo cuando hay error */
.form-group input.error-border,
.form-group select.error-border,
.form-group textarea.error-border {
  border-color: #d93025;
  background-color: #fff8f8;
}

.full {
  width: 100%;
  font-size: 16px;
}

.form-note {
  text-align: center;
  margin-top: 15px;
  color: #777777;
  font-size: 14px;
}

/* FOOTER */

.footer {
  background: var(--dark);
  color: var(--white);
  padding: 45px 0;
  text-align: center;
}

.footer h2 {
  color: var(--gold-light);
  letter-spacing: 2px;
}

.footer p {
  margin-top: 8px;
  color: #cccccc;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin: 25px 0;
  flex-wrap: wrap;
}

.footer-links a {
  color: var(--white);
  transition: 0.3s;
}

.footer-links a:hover {
  color: var(--gold-light);
}

.copy {
  font-size: 14px;
}

/* WHATSAPP */

.whatsapp {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  z-index: 999;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
  transition: 0.3s;
}

.whatsapp:hover {
  transform: scale(1.1);
}

/* ANIMATION */

.reveal {
  opacity: 0;
  transform: translateY(35px);
  transition: 0.8s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* RESPONSIVE */

@media (max-width: 992px) {
  .navbar {
    position: absolute;
    top: 82px;
    left: 0;
    width: 100%;
    background: var(--navy);
    flex-direction: column;
    padding: 25px;
    display: none;
  }

  .navbar.active {
    display: flex;
  }

  .menu-btn {
    display: block;
  }

  .btn-call {
    display: none;
  }

  .services-grid,
  .process-grid,
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-img img {
    height: 420px;
  }
}

@media (max-width: 600px) {
  .section {
    padding: 70px 0;
  }

  .hero {
    text-align: center;
  }

  .hero-buttons,
  .hero-info {
    justify-content: center;
  }

  .hero p {
    font-size: 17px;
  }

  .services-grid,
  .process-grid,
  .why-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .contact-form {
    padding: 28px 22px;
  }

  .logo-box h2 {
    font-size: 18px;
  }

  .logo-box span {
    font-size: 11px;
  }

}