body {
    font-family: 'Segoe UI', system-ui, sans-serif;
    scroll-behavior: smooth;
}

.navbar {
    background: rgba(127, 138, 149, 0.95);
}
.navbar-brand, .nav-link {
    color: #fff !important;
}

section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    color: #fff;
}

.overlay {
    background: rgb(171 141 141 / 60%);
    width: 100%;
    padding: 120px 0;
}

h1, h2 {
    font-weight: 600;
}

#inicio {
   /* background: url('https://images.unsplash.com/photo-1529156069898-49953e39b3ac?q=80&w=1920') center/cover fixed no-repeat; */
}

#regular {
    background: url('https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?q=80&w=1920') center/cover fixed no-repeat;
}

#asilo {
    background: url('https://images.unsplash.com/photo-1509099836639-18ba1795216d?q=80&w=1920') center/cover fixed no-repeat;
}

#integracion {
    background: url('images/photo.jpeg') center/cover fixed no-repeat;
}

#contacto {
    background: #0c1926;
    min-height: auto;
}

.card {
    background: rgba(255,255,255,0.96);
    color: #1c2b3a;
    border-radius: 14px;
}

.hero-section {
  background-color: #9f9482; /* ajusta a tu tono */
  padding: 60px 20px;
}

.hero-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  gap: 60px;
}

/* TEXTO */
.hero-content {
  flex: 1;
}

.hero-content h1 {
  font-size: 42px;
  margin-bottom: 20px;
}

.hero-content h3 {
  margin-top: 25px;
  margin-bottom: 15px;
}

.hero-content p {
  line-height: 1.6;
  margin-bottom: 15px;
}

/* GRID SERVICIOS */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 25px;
}

.service-card {
  border: 2px solid rgba(255,255,255,0.6);
  border-radius: 12px;
  padding: 20px;
  background: rgba(255,255,255,0.05);
}

.service-card.full {
  grid-column: span 2;
}

/* BOTONES */
.hero-buttons {
  margin-top: 30px;
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.btn-primary {
  background: #1e1e1e;
  color: white;
  padding: 12px 24px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
}

.btn-outline {
  border: 2px solid #1e1e1e;
  color: #1e1e1e;
  padding: 12px 24px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
}

/* IMAGEN */
.hero-image {
  flex: 1;
}

.hero-image img {
  width: 100%;
  border-radius: 12px;
  display: block;
}

/* -------------------------
   RESPONSIVE
--------------------------*/

@media (max-width: 992px) {
  .hero-container {
    flex-direction: column;
  }

  .hero-image {
    order: -1; /* imagen arriba en tablet/móvil */
  }

  .hero-content h1 {
    font-size: 32px;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .service-card.full {
    grid-column: span 1;
  }
}

.footer {
  background-color: rgb(171 141 141 / 60%);
  color: #ffffff;
  padding-top: 50px;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  gap: 40px;
  padding: 0 20px 40px;
  flex-wrap: wrap;
}

.footer-logo img {
  max-width: 180px;
}

.footer-contact h4,
.footer-links h4 {
  margin-bottom: 15px;
  font-size: 18px;
}

.footer-item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  text-decoration: none;
  color: #ffffff;
  transition: 0.3s;
}

.footer-item:hover {
  color: #c7b299;
}

.footer-links a {
  display: block;
  margin-bottom: 10px;
  text-decoration: none;
  color: #ffffff;
  transition: 0.3s;
}

.footer-links a:hover {
  color: #c7b299;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.2);
  text-align: center;
  padding: 20px;
  font-size: 14px;
  background-color: #151515;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .footer-item {
    justify-content: center;
  }
}

.meta-section {
  padding: 80px 20px;
  background-color: #f5f4f2; /* tono muy suave neutro */
}

.meta-title {
  text-align: left;
  font-size: 42px;
  font-weight: 500;
  margin-bottom: 60px;
  color: #2e2e2e;
}

.meta-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.meta-card {
  background-color: #d8d2c8;
  padding: 40px 30px;
  border-radius: 12px;
  transition: 0.3s ease;
}

.meta-card:hover {
  transform: translateY(-5px);
}

.meta-card h3 {
  margin-top: 20px;
  margin-bottom: 15px;
  font-size: 22px;
  color: #3a3a3a;
}

.meta-card p {
  font-size: 16px;
  line-height: 1.7;
  color: #444;
}

.meta-icon {
  width: 70px;
  height: 70px;
  background-color: #cfc7bb;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: #3a3a3a;
}

@media (max-width: 992px) {
  .meta-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .meta-title {
    font-size: 30px;
    text-align: center;
  }

  .meta-grid {
    grid-template-columns: 1fr;
  }

  .meta-card {
    text-align: center;
  }

  .meta-icon {
    margin: 0 auto;
  }
}

.fundadora-section {
  padding: 90px 20px;
}

.fundadora-title {
  font-size: 42px;
  font-weight: 500;
  margin-bottom: 10px;
  color: #2e2e2e;
}

.linkedin-link {
  display: inline-block;
  margin-bottom: 50px;
  text-decoration: none;
  font-weight: 500;
  color: #0a66c2;
  transition: 0.3s ease;
}

.linkedin-link:hover {
  opacity: 0.7;
}

.fundadora-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px 80px;
}

.fundadora-item {
  border-top: 1px solid #d6d1c8;
  padding-top: 20px;
}

.fundadora-item .numero {
  font-size: 14px;
  color: #999;
  display: block;
  margin-bottom: 10px;
}

.fundadora-item h3 {
  font-size: 22px;
  margin-bottom: 15px;
  color: #3a3a3a;
}

.fundadora-item p {
  font-size: 1

@media (max-width: 992px) {
  .fundadora-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .fundadora-title {
    font-size: 32px;
  }
}

@media (max-width: 600px) {
  .fundadora-title {
    font-size: 26px;
  }

  .fundadora-frase {
    font-size: 16px;
  }
}


.servicios-section {
  padding: 90px 20px;
}

.servicios-title {
  font-size: 42px;
  font-weight: 500;
  margin-bottom: 25px;
  color: #2f2f2f; /* negro elegante */
}

.servicios-subtitle {
  max-width: 900px;
  font-size: 19px;
  line-height: 1.7;
  color: #3f3f3f;
  margin-bottom: 60px;
}

.servicios-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 35px;
}

.servicio-card h3 {
  font-size: 21px;
  margin-top: 15px;
  margin-bottom: 12px;
  color: #2f2f2f;
}

.servicio-card p {
  font-size: 16px;
  line-height: 1.6;
  color: #4a4a4a;
}

.servicio-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: 4px;
  transition: transform 0.4s ease;
}

.servicio-card:hover img {
  transform: scale(1.03);
}

@media (max-width: 1200px) {
  .servicios-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .servicios-grid {
    grid-template-columns: 1fr;
  }

  .servicios-title {
    font-size: 30px;
  }
}

/* ===== SECCIÓN VISADOS ===== */
.section-visados {
    background-color: #d9d2c7; /* ocre claro */
    padding: 70px 0;
}

.section-visados h2 {
    font-size: 42px;
    font-weight: 700;
    color: #3a3a3a;
    margin-bottom: 40px;
}

.section-visados h3 {
    font-size: 20px;
    font-weight: 600;
    color: #2f2f2f;
    margin-bottom: 15px;
}

.section-visados p {
    color: #444;
    font-size: 15px;
    line-height: 1.6;
}

/* Imágenes */
.visado-img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    margin-top: 20px;
}


.visado-steps {
    margin-top: 60px;
}

.step-wrapper {
    margin-bottom: 40px;
}

.step-ribbon {
    background-color: #cfc6ba;
    padding: 22px 20px;
    text-align: center;
    position: relative;
}

/* cortes laterales */
.step-ribbon:before,
.step-ribbon:after {
    content: "";
    position: absolute;
    top: 0;
    width: 0;
    height: 0;
    border-top: 32px solid transparent;
    border-bottom: 32px solid transparent;
}

.step-ribbon:before {
    left: -18px;
    border-right: 18px solid #cfc6ba;
}

.step-ribbon:after {
    right: -18px;
    border-left: 18px solid #cfc6ba;
}

.step-icon {
    font-size: 22px;
    margin-bottom: 10px;
    color: #3a3a3a;
}

.step-title {
    font-weight: 600;
    font-size: 15px;
    margin-bottom: 6px;
    color: #2f2f2f;
}

.step-text {
    font-size: 18px;
    color: #444;
}

/* ===== SECCIÓN RESIDENCIAS ===== */

.residencias-section {
    background-color: #f3efe9;
    padding: 80px 0;
}

.residencias-title {
    font-size: 42px;
    font-weight: 700;
    color: #2f2f2f;
    margin-bottom: 20px;
}

.residencias-title span {
    font-weight: 400;
}

.residencias-description {
    font-size: 18px;
    color: #4a4a4a;
    max-width: 1000px;
    margin-bottom: 50px;
}

.res-card {
    background: #f8f5f0;
    border: 2px solid #d8cfc2;
    border-radius: 14px;
    padding: 28px 30px;
    margin-bottom: 25px;
    transition: all 0.25s ease;
}

.res-card:hover {
    border-color: #c5b8a7;
    transform: translateY(-2px);
}

.res-card h4 {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
}

.res-card p {
    font-size: 16px;
    color: #555;
    margin: 0;
}

.residencias-footer {
    margin-top: 40px;
    font-size: 17px;
    color: #444;
}

/* ===== SECCIÓN ARRAIGOS ===== */

.arraigos-section {
    background-color: #f3efe9;
    padding: 80px 0;
}

.arraigos-title {
    font-size: 42px;
    font-weight: 700;
    color: #2f2f2f;
    margin-bottom: 20px;
}

.arraigos-title span {
    font-weight: 400;
}

.arraigos-text {
    font-size: 18px;
    color: #4a4a4a;
    max-width: 1000px;
    margin-bottom: 15px;
}

.arraigos-grid {
    margin-top: 50px;
}

.arraigo-card {
    background: #e7dfd4;
    border-radius: 16px;
    padding: 35px 30px;
    margin-bottom: 25px;
    transition: all 0.25s ease;
    height: 100%;
}

.arraigo-card:hover {
    transform: translateY(-3px);
}

.arraigo-icon {
    width: 60px;
    height: 60px;
    background: #ddd3c6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 22px;
    color: #4a4a4a;
}

.arraigo-card h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #333;
}

.arraigo-card p {
    font-size: 16px;
    color: #555;
    margin: 0;
}

.arraigos-footer {
    margin-top: 40px;
    font-size: 17px;
    color: #444;
}

/* ===== SECCIÓN NACIONALIDADES ===== */

.nacionalidades-section {
    background-color: #f3efe9;
    padding: 90px 0;
}

.nacionalidades-title {
    font-size: 44px;
    font-weight: 700;
    color: #2f2f2f;
    margin-bottom: 15px;
}

.nacionalidades-subtext {
    font-size: 18px;
    color: #4a4a4a;
    margin-bottom: 50px;
}

.nacionalidades-card {
    background: #e7dfd4;
    border-radius: 16px;
    padding: 35px 30px;
    height: 100%;
    transition: all 0.25s ease;
}

.nacionalidades-card:hover {
    transform: translateY(-4px);
}

.nacionalidades-icon {
    width: 60px;
    height: 60px;
    background: #ddd3c6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 22px;
    color: #4a4a4a;
}

.nacionalidades-card h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #333;
}

.nacionalidades-card p {
    font-size: 16px;
    color: #555;
    margin: 0;
}

.nacionalidades-footer {
    margin-top: 80px;
    font-size: 22px;
    font-style: italic;
    color: #2f2f2f;
    max-width: 1100px;
}

/* ===== REGULARIZACIÓN MASIVA 2026 ===== */

.regularizacion-section {
    background-color: #e6dccf; /* un poco más intenso que el resto */
    padding: 100px 0;
}

.regularizacion-title {
    font-size: 48px;
    font-weight: 700;
    color: #2f2f2f;
    margin-bottom: 25px;
}

.regularizacion-text {
    font-size: 18px;
    color: #333;
    max-width: 1100px;
    line-height: 1.7;
    margin-bottom: 60px;
}


