/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
}

/* HEADER */
.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 7%;
  background: white;
}

/* LOGO */
.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-main {
  font-size: 22px;
  font-weight: 900;
  color: #00346E;
}

.logo-sub {
  font-size: 13px;
  font-weight: 800;
  color: #007A2F;
  margin-top: 4px;
  letter-spacing: 1px;
}

/* MENU */
.site-nav {
  display: flex;
  gap: 30px;
}

.nav-link {
  text-decoration: none;
  font-weight: 700;
  color: #1f2933;
}

.nav-link.active {
  color: #007A2F;
}

/* BOTON */
.header-cta {
  background: #007A2F;
  color: white;
  padding: 12px 20px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 800;
}

/* HERO */
.hero {
  height: 600px;
  background: linear-gradient(
      to right,
      rgba(0, 52, 110, 0.9),
      rgba(0, 52, 110, 0.4)
    ),
    url('../assets/hero-construccion.jpg');
    
  background-size: cover;
  background-position: center;

  display: flex;
  align-items: center;
  padding: 0 7%;
}

/* TEXTO HERO */
.hero-content {
  max-width: 600px;
  color: white;
}

.eyebrow {
  color: #00c853;
  font-weight: 800;
  margin-bottom: 10px;
}

.hero h1 {
  font-size: 60px;
  font-weight: 900;
  margin-bottom: 20px;
}

.hero p {
  margin-bottom: 25px;
  line-height: 1.6;
}

/* BOTONES */
.hero-actions {
  display: flex;
  gap: 15px;
}

.btn {
  padding: 12px 20px;
  border-radius: 6px;
  font-weight: 800;
  text-decoration: none;
}

.btn.primary {
  background: #007A2F;
  color: white;
}

.btn.ghost {
  border: 1px solid white;
  color: white;
}

/* SERVICIOS */
.services-section {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 55px;
  padding: 70px 7%;
  background: #ffffff;
}

.services-intro h2 {
  font-size: 34px;
  line-height: 1.1;
  color: #00346E;
  margin-bottom: 18px;
}

.services-intro p {
  color: #4b5563;
  line-height: 1.7;
  margin-bottom: 25px;
}

.services-link {
  color: #007A2F;
  font-weight: 800;
  text-decoration: none;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
}

.service-card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  text-align: center;
  box-shadow: 0 18px 40px rgba(0, 30, 70, 0.14);
  border: 1px solid #e6edf3;
  transition: 0.3s;
}

.service-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 25px 60px rgba(0, 30, 70, 0.25);
}

/* IMÁGENES */
.service-img {
  height: 125px;
  background-size: cover;
  background-position: center;
  transition: 0.4s;
}

.img-obras {
  background-image: url('../assets/obras.jpg');
}

.img-mantencion {
  background-image: url('../assets/mantencion.jpg');
}

.img-generales {
  background-image: url('../assets/servicios.jpg');
}

.img-especiales {
  background-image: url('../assets/proyectos.jpg');
}

/* ICONO */
.service-icon {
  width: 54px;
  height: 54px;
  margin: -27px auto 16px;
  border-radius: 50%;
  background: #fff;
  color: #007A2F;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 900;
  box-shadow: 0 8px 22px rgba(0,0,0,0.18);
}

.service-card h3 {
  color: #00346E;
  font-size: 18px;
  margin-bottom: 12px;
}

.service-card p {
  color: #4b5563;
  font-size: 14px;
  line-height: 1.6;
  padding: 0 22px 30px;
}

/* RESPONSIVE */
@media (max-width: 1000px) {
  .services-section {
    grid-template-columns: 1fr;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}
/* PAGINA NOSOTROS */

.about-hero {
  height: 420px;
  background:
    linear-gradient(to right, rgba(0, 52, 110, 0.9), rgba(0, 52, 110, 0.3)),
    url('../assets/hero-construccion.jpg');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  padding: 0 7%;
  color: white;
}

.about-hero-content {
  max-width: 700px;
}

.about-hero h1 {
  font-size: 64px;
  font-weight: 900;
  margin-bottom: 18px;
}

.about-hero p {
  font-size: 20px;
}

/* QUIENES SOMOS */

.about-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  padding: 85px 7%;
  align-items: center;
  background: white;
}

.green-line {
  display: block;
  width: 55px;
  height: 4px;
  background: #007A2F;
  margin-bottom: 22px;
  border-radius: 20px;
}

.about-text h2 {
  font-size: 42px;
  line-height: 1.15;
  color: #00346E;
  margin-bottom: 25px;
}

.about-text p {
  color: #4b5563;
  line-height: 1.8;
  margin-bottom: 18px;
}

.about-image {
  height: 360px;
  border-radius: 14px;
  background-image: url('../assets/obras.png');
  background-size: cover;
  background-position: center;
  box-shadow: 0 18px 45px rgba(0, 30, 70, 0.18);
}

/* MISION */

.mission-section {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 70px;
  padding: 90px 7%;
  background: linear-gradient(135deg, #00346E, #007A2F);
  color: white;
}

.mission-text h2 {
  font-size: 40px;
  margin-bottom: 22px;
}

.mission-text p {
  line-height: 1.8;
  margin-bottom: 18px;
  color: rgba(255,255,255,0.9);
}

.mission-values {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 35px;
}

.mission-values article {
  padding: 15px 20px;
  border-left: 1px solid rgba(255,255,255,0.25);
}

.mission-values span {
  font-size: 34px;
  display: block;
  margin-bottom: 12px;
}

.mission-values h3 {
  font-size: 20px;
  margin-bottom: 8px;
}

.mission-values p {
  color: rgba(255,255,255,0.85);
  line-height: 1.6;
}

/* VALORES */

.values-section {
  padding: 75px 7%;
  background: #ffffff;
  text-align: center;
}

.values-section h2 {
  font-size: 34px;
  color: #00346E;
  margin-bottom: 45px;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.values-grid article {
  padding: 25px;
  border-right: 1px solid #d8e1ea;
}

.values-grid article:last-child {
  border-right: none;
}

.values-grid span {
  font-size: 38px;
  display: block;
  margin-bottom: 15px;
}

.values-grid h3 {
  color: #00346E;
  margin-bottom: 10px;
}

.values-grid p {
  color: #4b5563;
  line-height: 1.6;
}

/* RESPONSIVE NOSOTROS */

@media (max-width: 900px) {
  .about-section,
  .mission-section {
    grid-template-columns: 1fr;
  }

  .values-grid,
  .mission-values {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-hero h1 {
    font-size: 46px;
  }
}

@media (max-width: 600px) {
  .values-grid,
  .mission-values {
    grid-template-columns: 1fr;
  }

  .values-grid article {
    border-right: none;
    border-bottom: 1px solid #d8e1ea;
  }
}
/* PAGINA SERVICIOS */

.services-hero {
  height: 430px;
  background:
    linear-gradient(to right, rgba(0, 52, 110, 0.92), rgba(0, 52, 110, 0.35)),
    url('../assets/hero-construccion.jpg');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  padding: 0 7%;
  color: white;
}

.services-hero-content {
  max-width: 850px;
}

.services-hero h1 {
  font-size: 58px;
  line-height: 1.05;
  font-weight: 900;
  margin-bottom: 22px;
}

.services-hero p {
  font-size: 19px;
  line-height: 1.7;
  max-width: 760px;
}

.service-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
  padding: 85px 7%;
  background: #ffffff;
}

.service-detail.reverse {
  background: #f4f7fa;
}

.service-detail.reverse .service-detail-image {
  order: 2;
}

.service-detail.reverse .service-detail-text {
  order: 1;
}

.service-detail-image {
  min-height: 360px;
  border-radius: 16px;
  background-size: cover;
  background-position: center;
  box-shadow: 0 20px 50px rgba(0, 30, 70, 0.18);
}

.obras-bg {
  background-image: url('../assets/obras.png');
}

.mantencion-bg {
  background-image: url('../assets/mantencion.png');
}

.servicios-bg {
  background-image: url('../assets/servicios.png');
}

.proyectos-bg {
  background-image: url('../assets/proyectos.png');
}

.service-detail-text h2 {
  font-size: 42px;
  color: #00346E;
  margin-bottom: 22px;
}

.service-detail-text p {
  color: #4b5563;
  line-height: 1.8;
  margin-bottom: 18px;
  font-size: 17px;
}

.services-cta {
  text-align: center;
  padding: 80px 7%;
  background: linear-gradient(135deg, #00346E, #007A2F);
  color: white;
}

.services-cta h2 {
  font-size: 38px;
  max-width: 760px;
  margin: 0 auto 28px;
}

/* RESPONSIVE SERVICIOS */

@media (max-width: 900px) {
  .service-detail,
  .service-detail.reverse {
    grid-template-columns: 1fr;
  }

  .service-detail.reverse .service-detail-image,
  .service-detail.reverse .service-detail-text {
    order: initial;
  }

  .services-hero h1 {
    font-size: 42px;
  }
}
/* FOOTER */

.site-footer {
  background: #061527;
  color: white;
  padding: 50px 7% 25px;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.15);
  padding-bottom: 30px;
}

.footer-content h3 {
  font-size: 22px;
  margin-bottom: 12px;
}

.footer-content p {
  color: rgba(255,255,255,0.75);
  line-height: 1.6;
  max-width: 520px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  font-weight: 600;
}

.footer-links a:hover {
  color: #00c853;
}

.footer-bottom {
  padding-top: 22px;
  color: rgba(255,255,255,0.6);
  font-size: 14px;
}

/* PAGINAS LEGALES */

.legal-hero {
  padding: 90px 7%;
  background: linear-gradient(135deg, #00346E, #007A2F);
  color: white;
}

.legal-hero h1 {
  font-size: 48px;
  margin-bottom: 15px;
}

.legal-content {
  padding: 70px 7%;
  max-width: 1000px;
}

.legal-content h2 {
  color: #00346E;
  margin: 35px 0 15px;
  font-size: 28px;
}

.legal-content p,
.legal-content li {
  color: #4b5563;
  line-height: 1.8;
  margin-bottom: 14px;
}

.legal-content ul {
  padding-left: 22px;
}

@media (max-width: 700px) {
  .footer-content {
    flex-direction: column;
  }

  .legal-hero h1 {
    font-size: 36px;
  }
}
.legal-btn {
  margin-top: 25px;
}
/* PÁGINAS DOCUMENTOS COMPLIANCE */

.legal-hero {
  padding: 90px 7%;
  background: linear-gradient(135deg, #00346E, #007A2F);
  color: white;
}

.legal-hero h1 {
  font-size: 48px;
  margin-bottom: 15px;
}

.legal-hero p {
  font-size: 18px;
  line-height: 1.7;
  max-width: 800px;
  color: rgba(255,255,255,0.9);
}

.legal-content {
  padding: 70px 7%;
    max-width: 900px;
    margin: 0 auto;
    text-align: left;
}

.legal-content h2 {
  color: #00346E;
  margin: 35px 0 15px;
  font-size: 28px;
}

.legal-content p {
  text-align: left;
  max-width: 700px;
  margin: 0 auto 15px;
}



.legal-content li {
  color: #4b5563;
  line-height: 1.8;
  margin-bottom: 14px;
}

.legal-content ul {
  padding-left: 22px;
  margin-bottom: 25px;
}

.legal-content .btn {
  margin-top: 25px;
}
/* DOCUMENTOS COMPLIANCE */

.compliance-docs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin-top: 30px;
}

.doc-card {
  display: block;
  background: white;
  padding: 28px;
  border-radius: 14px;
  text-decoration: none;
  border: 1px solid #e3eaf1;
  box-shadow: 0 14px 35px rgba(0, 30, 70, 0.10);
  transition: all 0.25s ease;
}

.doc-card h3 {
  color: #00346E;
  margin-bottom: 12px;
  font-size: 21px;
}

.doc-card p {
  color: #4b5563;
  line-height: 1.6;
  font-size: 15px;
}

.doc-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 45px rgba(0, 30, 70, 0.18);
  border-color: #007A2F;
}

@media (max-width: 900px) {
  .compliance-docs {
    grid-template-columns: 1fr;
  }
}
.legal-content h2 {
  text-align: center;
}

.legal-content p {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 15px;
}

.doc-card {
  padding: 32px;
}
.denuncias-section {
  padding: 70px 7%;
  max-width: 800px;
  margin: 0 auto;
}

.denuncias-intro {
  text-align: center;
  margin-bottom: 40px;
}

.denuncia-form {
  background: white;
  padding: 30px;
  border-radius: 12px;
  border: 1px solid #e3eaf1;
}

.denuncia-form label {
  display: block;
  margin-top: 15px;
  font-weight: 600;
  color: #00346E;
}

.denuncia-form input,
.denuncia-form select,
.denuncia-form textarea {
  width: 100%;
  padding: 12px;
  margin-top: 5px;
  border-radius: 8px;
  border: 1px solid #ccc;
}

.denuncia-form button {
  margin-top: 20px;
}
/* CANAL DE DENUNCIAS FULL PRO */

.denuncia-page {
  background: #eef2f7;
  padding: 70px 7%;
}

.denuncia-card {
  background: #ffffff;
  max-width: 980px;
  margin: 0 auto;
  padding: 60px 70px;
  border-radius: 18px;
  box-shadow: 0 20px 55px rgba(0, 30, 70, 0.10);
}

.denuncia-heading {
  text-align: center;
  margin-bottom: 55px;
}

.denuncia-heading h2 {
  color: #00346E;
  font-size: 40px;
  margin-bottom: 22px;
}

.denuncia-heading p {
  color: #18344f;
  font-size: 22px;
  line-height: 1.6;
  max-width: 850px;
  margin: 0 auto;
}

.denuncia-form-pro label {
  display: block;
  color: #18344f;
  font-size: 22px;
  font-weight: 500;
  margin: 32px 0 12px;
}

.denuncia-form-pro input,
.denuncia-form-pro select,
.denuncia-form-pro textarea {
  width: 100%;
  border: 1px solid #9ed0ff;
  border-radius: 9px;
  padding: 18px 20px;
  font-family: inherit;
  font-size: 20px;
  color: #18344f;
  background: #ffffff;
  outline: none;
}

.denuncia-form-pro textarea {
  resize: vertical;
}

.denuncia-form-pro input::placeholder,
.denuncia-form-pro textarea::placeholder {
  color: #8aa0b5;
}

.denuncia-form-pro input:focus,
.denuncia-form-pro select:focus,
.denuncia-form-pro textarea:focus {
  border-color: #007A2F;
  box-shadow: 0 0 0 4px rgba(0, 122, 47, 0.12);
}

.file-box {
  position: relative;
  border: 2px dashed #3aa0ff;
  border-radius: 14px;
  height: 170px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1688ff;
  font-size: 24px;
  background: #ffffff;
  cursor: pointer;
  margin-top: 10px;
}

.file-box input {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
}

.file-box span {
  pointer-events: none;
}

.radio-group {
  display: grid;
  gap: 12px;
}

.radio-group label {
  margin: 0;
  background: #f1f8fc;
  border-radius: 12px;
  padding: 18px 22px;
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 21px;
  color: #18344f;
  cursor: pointer;
}

.radio-group input {
  width: 22px;
  height: 22px;
  accent-color: #007A2F;
}

.form-note {
  color: #4b5563;
  font-size: 16px;
  line-height: 1.7;
  margin-top: 28px;
  text-align: center;
}

.denuncia-submit {
  display: block;
  margin: 45px auto 0;
  background: #061527;
  color: white;
  border: none;
  padding: 18px 54px;
  border-radius: 999px;
  font-size: 21px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.25s ease;
}

.denuncia-submit:hover {
  background: #007A2F;
  transform: translateY(-2px);
}

@media (max-width: 800px) {
  .denuncia-card {
    padding: 35px 22px;
  }

  .denuncia-heading h2 {
    font-size: 32px;
  }

  .denuncia-heading p,
  .denuncia-form-pro label,
  .radio-group label {
    font-size: 18px;
  }

  .denuncia-form-pro input,
  .denuncia-form-pro select,
  .denuncia-form-pro textarea {
    font-size: 17px;
  }
}
/* =========================================================
   AJUSTES PROFESIONALES AGREGADOS
   Sistemas internos + navegación + responsive general
   ========================================================= */

/* Mejor experiencia general */
html {
  scroll-behavior: smooth;
}

body {
  color: #1f2933;
  background: #ffffff;
}

a {
  transition: color 0.25s ease, background 0.25s ease, transform 0.25s ease, border-color 0.25s ease;
}

/* Header más robusto cuando se agregan más enlaces */
.site-header {
  gap: 24px;
  position: sticky;
  top: 0;
  z-index: 50;
  box-shadow: 0 8px 24px rgba(0, 30, 70, 0.06);
}

.site-nav {
  align-items: center;
  flex-wrap: wrap;
  row-gap: 10px;
}

.nav-link {
  position: relative;
  white-space: nowrap;
}

.nav-link:hover,
.nav-link.active {
  color: #007A2F;
}

.nav-link.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 3px;
  border-radius: 999px;
  background: #007A2F;
}

.header-cta:hover,
.btn.primary:hover {
  background: #005f25;
  transform: translateY(-2px);
}

.btn.ghost:hover {
  background: rgba(255,255,255,0.12);
  transform: translateY(-2px);
}

/* Página Sistemas: si el grid tiene solo 2 tarjetas, las centra y las deja pro */
.services-grid:has(.service-card:nth-child(2):last-child) {
  grid-template-columns: repeat(2, minmax(260px, 1fr));
  max-width: 820px;
  margin: 0 auto;
}

.service-card .services-link {
  display: inline-block;
  margin: 0 0 30px;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(0, 122, 47, 0.08);
}

.service-card .services-link:hover {
  background: #007A2F;
  color: #ffffff;
  transform: translateY(-2px);
}

/* Tarjetas internas / sistemas */
.system-note {
  max-width: 820px;
  margin: 35px auto 0;
  padding: 18px 22px;
  border-left: 4px solid #007A2F;
  border-radius: 12px;
  background: #f4f7fa;
  color: #4b5563;
  line-height: 1.7;
}

.system-badge {
  display: inline-block;
  margin-bottom: 14px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(0, 52, 110, 0.08);
  color: #00346E;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* Responsive general del header */
@media (max-width: 1100px) {
  .site-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .site-nav {
    gap: 18px;
  }

  .header-cta {
    align-self: flex-start;
  }
}

@media (max-width: 700px) {
  .site-header {
    padding: 18px 6%;
  }

  .logo-main {
    font-size: 18px;
  }

  .logo-sub {
    font-size: 11px;
  }

  .site-nav {
    width: 100%;
    gap: 12px;
  }

  .nav-link {
    font-size: 14px;
  }

  .header-cta {
    width: 100%;
    text-align: center;
  }

  .hero,
  .services-hero,
  .about-hero {
    height: auto;
    min-height: 430px;
    padding: 80px 6%;
  }

  .hero h1 {
    font-size: 40px;
    line-height: 1.08;
  }

  .hero-extra h2 {
    font-size: 24px;
  }

  .services-section {
    padding: 55px 6%;
  }

  .services-grid:has(.service-card:nth-child(2):last-child) {
    grid-template-columns: 1fr;
    max-width: 420px;
  }
}

@media (max-width: 420px) {
  .hero h1,
  .about-hero h1,
  .services-hero h1,
  .legal-hero h1 {
    font-size: 34px;
  }

  .services-intro h2,
  .about-text h2,
  .service-detail-text h2,
  .mission-text h2,
  .services-cta h2 {
    font-size: 30px;
  }
}
/* =========================
   RESPONSIVE MOBILE FIX
   ========================= */
@media (max-width: 768px) {

  /* HEADER */
  .site-header {
    flex-direction: column;
    align-items: flex-start;
    padding: 15px;
  }

  .site-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 10px;
  }

  .nav-link {
    font-size: 14px;
  }

  .header-cta {
    width: 100%;
    text-align: center;
    margin-top: 15px;
    padding: 12px;
  }

  /* HERO */
  .hero {
    height: auto;
    padding: 60px 20px;
  }

  .hero-content h1 {
    font-size: 32px;
    line-height: 1.2;
  }

  .hero-content p {
    font-size: 15px;
  }

  .hero-extra h2 {
    font-size: 20px;
  }

  /* SERVICES GRID */
  .services-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  /* CARDS */
  .service-card {
    padding: 20px;
  }

  /* FOOTER */
  .footer-content {
    flex-direction: column;
    gap: 20px;
  }

}
/* =========================
   CONTACTO - ESTILO
   ========================= */

.contact-page {
  padding: 60px 20px;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

/* CARD INFO */
.contact-info-card {
  background: #ffffff;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.contact-info-card h2 {
  margin-bottom: 20px;
}

.contact-info-item {
  margin-bottom: 18px;
}

.contact-info-item strong {
  display: block;
  font-size: 14px;
  color: #64748b;
}

.contact-info-item span {
  font-size: 15px;
  color: #0f172a;
}

.contact-note {
  margin-top: 20px;
  font-size: 14px;
  color: #64748b;
}

/* FORM */
.contact-form-card {
  background: #ffffff;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.contact-form-card h2 {
  margin-bottom: 10px;
}

.contact-form {
  display: flex;
  flex-direction: column;
}

.contact-form label {
  margin-top: 15px;
  font-weight: 600;
  font-size: 14px;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  margin-top: 6px;
  padding: 12px;
  border-radius: 10px;
  border: 1px solid #e2e8f0;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  outline: none;
  border-color: #008a3d;
  box-shadow: 0 0 0 2px rgba(0, 138, 61, 0.15);
}

/* BOTÓN */
.contact-submit {
  margin-top: 25px;
  padding: 14px;
  border: none;
  border-radius: 12px;
  background: #008a3d;
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.2s;
}

.contact-submit:hover {
  background: #007233;
}

/* =========================
   RESPONSIVE CONTACTO
   ========================= */

@media (max-width: 768px) {

  .contact-layout {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .contact-info-card,
  .contact-form-card {
    padding: 20px;
  }

}
/* =========================
   LEGAL (PRIVACIDAD / COMPLIANCE)
   ========================= */

.legal-page {
  padding: 60px 20px;
}

.legal-card {
  max-width: 900px;
  margin: 0 auto;
  background: #ffffff;
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

/* TÍTULOS */
.legal-card h2 {
  margin-top: 30px;
  margin-bottom: 10px;
  font-size: 20px;
  color: #0f172a;
}

/* TEXTO */
.legal-card p {
  font-size: 15px;
  line-height: 1.7;
  color: #334155;
  margin-bottom: 15px;
}

/* RESPONSIVE */
@media (max-width: 768px) {

  .legal-card {
    padding: 25px;
  }

  .legal-card h2 {
    font-size: 18px;
  }

}
/* =========================
   DOCUMENTOS LEGALES PRO
   ========================= */

.legal-document-section {
  padding: 70px 20px;
  background: #f8fafc;
}

.legal-document-layout {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 32px;
  align-items: start;
}

.legal-document-sidebar {
  background: #ffffff;
  border-radius: 18px;
  padding: 28px;
  box-shadow: 0 14px 35px rgba(15, 23, 42, 0.08);
  position: sticky;
  top: 110px;
}

.sidebar-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #008a3d;
  margin-bottom: 10px;
}

.legal-document-sidebar h3 {
  color: #003b73;
  font-size: 24px;
  margin-bottom: 12px;
}

.legal-document-sidebar p {
  color: #475569;
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 22px;
}

.sidebar-info {
  border-top: 1px solid #e2e8f0;
  padding-top: 16px;
  margin-top: 16px;
}

.sidebar-info strong {
  display: block;
  color: #0f172a;
  font-size: 14px;
  margin-bottom: 5px;
}

.sidebar-info span {
  display: block;
  color: #64748b;
  font-size: 14px;
  line-height: 1.5;
}

.document-download {
  display: block;
  margin-top: 24px;
  background: #008a3d;
  color: #ffffff;
  text-align: center;
  padding: 13px 18px;
  border-radius: 12px;
  font-weight: 700;
  text-decoration: none;
  transition: 0.2s ease;
}

.document-download:hover {
  background: #007233;
  transform: translateY(-1px);
}

.legal-document-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 42px;
  box-shadow: 0 14px 35px rgba(15, 23, 42, 0.08);
}

.document-intro {
  padding-bottom: 24px;
  border-bottom: 1px solid #e2e8f0;
  margin-bottom: 28px;
}

.document-badge {
  display: inline-block;
  background: #e8f7ef;
  color: #008a3d;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 7px 11px;
  border-radius: 999px;
  margin-bottom: 14px;
}

.legal-document-card h2 {
  color: #003b73;
  font-size: 24px;
  line-height: 1.25;
  margin-bottom: 12px;
}

.legal-document-card p {
  color: #334155;
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 14px;
}

.document-block {
  padding: 26px 0;
  border-bottom: 1px solid #e2e8f0;
}

.document-block:last-of-type {
  border-bottom: none;
}

.document-list {
  margin: 18px 0 0 0;
  padding: 0;
  list-style: none;
}

.document-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
  color: #334155;
  font-size: 15px;
  line-height: 1.7;
}

.document-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #008a3d;
  font-weight: 900;
}

.document-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 32px;
}

.btn-primary,
.btn-secondary {
  display: inline-block;
  padding: 14px 20px;
  border-radius: 12px;
  font-weight: 800;
  text-decoration: none;
  transition: 0.2s ease;
}

.btn-primary {
  background: #008a3d;
  color: #ffffff;
}

.btn-primary:hover {
  background: #007233;
  transform: translateY(-1px);
}

.btn-secondary {
  background: #f1f5f9;
  color: #003b73;
}

.btn-secondary:hover {
  background: #e2e8f0;
  transform: translateY(-1px);
}

/* Responsive documentos */
@media (max-width: 900px) {
  .legal-document-layout {
    grid-template-columns: 1fr;
  }

  .legal-document-sidebar {
    position: static;
  }
}

@media (max-width: 600px) {
  .legal-document-section {
    padding: 45px 16px;
  }

  .legal-document-card,
  .legal-document-sidebar {
    padding: 24px;
  }

  .legal-document-card h2 {
    font-size: 21px;
  }

  .document-actions {
    flex-direction: column;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
    text-align: center;
  }
}
