/* ===== RESET GENERAL ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

/* ===== HEADER ===== */
header {
  position: fixed;
  top: 0;
  width: 100%;
  height: 90px;
  background: #ffffff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 60px;
  z-index: 1000;
}

.logo-img {
  height: 120px;
  width: auto;
  margin-left: -50px; /* ajusta el valor a tu gusto */
}

/* ✅ Logo clickeable sin cambiar diseño */
.logo-link{
  display: flex;
  align-items: center;
  text-decoration: none;
  cursor: pointer;
}

/* ===== MENÚ (BASE ESCRITORIO) ===== */
.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
}

.nav-links a {
  color: #0ad5ba;
  text-decoration: none;
  font-weight: 500;
}

.nav-links a:hover {
  color: #0ad5ba;
}

.lang {
  background: #121243;
  padding: 6px 14px;
  border-radius: 4px;
  color: #ffffff;
}

/* ===== SECCIONES ===== */
.section {
  padding: 100px 60px;
  text-align: center;
}

/* ================================================= */
/* HOME – ÚNICO Y ESTABLE (NO SE PISA CON OTROS)      */
/* ================================================= */

/* Desktop / general */
.home{
  width: 100%;
  margin-top: 90px;                       /* compensa header fijo */
  min-height: 55vh;                       /* NO gigante */
  background-image: url('PAGINADEINICIO.jpg');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;                 /* look pro */
  background-color: #ffffff;
}

.home .content { max-width: 600px; }

.home h1 {
  font-size: 2.8em;
  margin-bottom: 20px;
}

.home p {
  font-size: 1.2em;
  margin-bottom: 25px;
}

/* ===== BOTÓN ===== */
.btn {
  background: #00bcd4;
  color: rgb(255, 255, 255);
  padding: 12px 25px;
  text-decoration: none;
  border-radius: 5px;
}

.btn:hover { background: #0097a7; }

/* ===== SERVICIOS (BASE, si lo usas en index) ===== */
.service-container {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.service-box {
  background: #f1f1f1;
  padding: 25px;
  border-radius: 10px;
  width: 300px;
}

.service-box:hover { transform: translateY(-8px); }

/* ===== CONTACTO (BASE) ===== */
.contact form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  max-width: 500px;
  margin: 20px auto;
}

.contact {
  background: #2f9e6f;
  padding: 60px 20px;
  margin-top: -20px;
}

input, textarea {
  padding: 10px;
  border-radius: 5px;
  border: 1px solid #ffffff;
}

button {
  background: #121243;
  color: rgb(255, 255, 255);
  padding: 10px;
  border-radius: 5px;
  border: none;
  cursor: pointer;
}

/* ===== FOOTER ===== */
footer {
  background: #121243;
  color: rgb(255, 255, 255);
  padding: 15px;
  text-align: center;
}

/* ===== BOTÓN WHATSAPP ===== */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  background: #0097a7;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  box-shadow: 0 6px 15px rgba(0,0,0,0.3);
}

.whatsapp-float img {
  width: 55px;
  height: 55px;
  object-fit: contain;
}

/* ===== NOTIFICACIÓN ===== */
.whatsapp-badge {
  position: absolute;
  top: -5px;
  right: -5px;
  width: 20px;
  height: 20px;
  background: #ff3b30;
  color: white;
  font-size: 12px;
  font-weight: bold;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid white;
}

/* ===== BOTÓN MENÚ MÓVIL ===== */
.menu-toggle {
  display: none;
  font-size: 18px;
  color: #0097a7;
  cursor: pointer;
  font-weight: 600;
}

/* ===================================== */
/* RESPONSIVE GENERAL (SIN CONFLICTOS)   */
/* ===================================== */
@media (max-width: 768px) {

  header {
    padding: 0 20px;
    height: 80px;
  }

  .logo-img {
    height: 120px;
    margin-left: -20px;
  }

  .section {
    padding: 80px 20px;
  }

  /* HOME móvil general */
  .home{
    margin-top: 80px;
    min-height: 45vh;
    background-size: cover;
    background-position: center;
  }

  .home h1 { font-size: 2em; }
  .home p { font-size: 1em; }

  .service-container {
    flex-direction: column;
    align-items: center;
  }

  .service-box { width: 90%; }

  .whatsapp-float {
    width: 55px;
    height: 55px;
  }
  .whatsapp-float img {
    width: 55px;
    height: 55px;
  }
}

/* ========================================================= */
/* FIX: Pantallas angostas-altas (iPhone 14 y similares)      */
/* ========================================================= */
@media (max-width: 420px) and (min-height: 800px){
  .home{
    background-size: contain;      /* se ve más completa */
    background-position: center top;
    min-height: 52vh;             /* sin verse gigante */
    background-color: #ffffff;
  }
}

/* ======================================= */
/* Redes sociales en la sección de contacto */
/* ======================================= */
.contact-socials {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: center;
  width: 100%;
}

.social-line {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 16px;
  color: #fff;
  width: max-content;
}

.social-line img {
  width: 25px;
  height: 25px;
  object-fit: contain;
}

.contact-socials a {
  color: #fff;
  text-decoration: none;
}

.contact-socials a:hover { text-decoration: underline; }

@media (max-width: 768px) {
  .contact-socials { width: 100%; gap: 12px; }
  .social-line { width: 100%; justify-content: center; gap: 8px; }
  .contact-socials a { font-size: 15px; }
}

/* ===== COMMITMENT (CLÁSICO) ===== */
.commitment-container {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.commitment-box {
  background: #f1f1f1;
  padding: 25px;
  border-radius: 10px;
  width: 300px;
  text-align: center;
  position: relative;
}

.commitment-box:hover { transform: translateY(-8px); }

.commitment-image {
  width: 80px;
  height: 80px;
  object-fit: contain;
  margin-bottom: 15px;
}

/* ===== HERO SERVICES ===== */
.services-hero {
  width: 100%;
  min-height: 119vh;
  background-image: url("Karga.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  background-color: #ffffff;
  margin-top: 90px;
}

.services-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0);
}

.services-hero-content {
  position: relative;
  color: #fff;
  text-align: center;
  z-index: 1;
}

.services-hero-content h2 {
  font-size: 48px;
  font-weight: 700;
}

@media (max-width: 768px) {
  .services-hero {
    min-height: 40vh;
    margin-top: 80px;
    background-size: contain;
    background-position: center top;
  }
  .services { padding: 60px 20px; }
  .services h2 { font-size: 26px; margin-bottom: 30px; }
  .service-container { flex-direction: column; gap: 20px; }
  .service-box { width: 100%; padding: 22px; }
  .service-box h3 { font-size: 18px; }
  .service-box p { font-size: 15px; line-height: 1.6; }
}

/* ===== SERVICES SECTION (GRID PRO) ===== */
.services {
  background: #f7f9fb;
  padding: 80px 20px;
}

.services h2 {
  text-align: center;
  font-size: 2.4rem;
  margin-bottom: 60px;
  color: #1a1a1a;
}

.service-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 35px;
  max-width: 1200px;
  margin: auto;
}

.service-box {
  background: #ffffff;
  padding: 45px 30px;
  border-radius: 14px;
  text-align: center;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  position: relative;
}

.service-box::before {
  content: "✔";
  width: 60px;
  height: 60px;
  background: #2f9e6f;
  color: #ffffff;
  font-size: 26px;
  font-weight: bold;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
}

.service-box h3 {
  margin-top: 35px;
  font-size: 1.3rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 20px;
  line-height: 1.4;
}

.service-box p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.7;
}

.service-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.12);
}

/* ===== REUTILIZAR TARJETAS EN COMMITMENT (PRO) ===== */
.commitment-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.commitment-box {
  background: #ffffff;
  padding: 35px 30px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.commitment-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 35px rgba(0,0,0,0.12);
}

.commitment-box img { width: 70px; margin-bottom: 20px; }

.commitment-box h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: #1f2933;
}

.commitment-box p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #4b5563;
}

@media (max-width: 768px) {
  .commitment-container { justify-items: center; }
  .commitment-box { max-width: 360px; width: 100%; }
}

/* ===== ANIMACIONES SUAVES ===== */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.fade-up.show {
  opacity: 1;
  transform: translateY(0);
}

/* ================================================= */
/* NAV CORPORATIVO – SOLO ESCRITORIO (FIX)            */
/* ================================================= */
@media (min-width: 769px) {

  header {
    border-bottom: 1px solid rgba(0,0,0,0.08);
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
  }

  .nav-links {
    gap: 28px;
    align-items: center;
  }

  .nav-links a {
    position: relative;
    font-weight: 600;
    letter-spacing: 0.2px;
    padding: 10px 6px;
    color: #0ad5ba;
    transition: color 0.25s ease;
  }

  .nav-links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 6px;
    width: 0%;
    height: 2px;
    background: #0ad5ba;
    transition: width 0.25s ease;
  }

  .nav-links a:hover::after { width: 100%; }

  .nav-links li { position: relative; }

  .nav-links li:not(:last-child)::after {
    content: "";
    position: absolute;
    right: -14px;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 18px;
    background: rgba(0,0,0,0.10);
  }

  .nav-links .lang {
    background: rgba(18,18,67,0.06);
    color: #121243;
    border: 1px solid rgba(18,18,67,0.18);
    padding: 8px 14px;
    border-radius: 999px;
    font-weight: 700;
  }
}

/* ===================================== */
/* WhatsApp – Vibración 1s cada 10s       */
/* ===================================== */
.whatsapp-float { animation: wa-vibrate 10s ease-in-out infinite; }

@keyframes wa-vibrate {
  0%, 90% { transform: translateX(0); }
  92% { transform: translateX(-3px); }
  94% { transform: translateX(3px); }
  96% { transform: translateX(-3px); }
  98% { transform: translateX(3px); }
  100% { transform: translateX(0); }
}

/* ============================= */
/* SERVICES - ACORDEÓN CORPORATIVO */
/* ============================= */
.service-container.accordion{
  max-width: 1000px;
  margin: 40px auto 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.service-item{
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.06);
}

.service-head{
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
  padding: 20px 22px;
  background: #fff;
  border: none;
  cursor: pointer;
  font-weight: 700;
  color: #121243;
  text-align: left;
  font-size: 1.05rem;
}

.service-icon{
  font-size: 22px;
  font-weight: 900;
  color: #0097a7;
  transition: transform 0.25s ease;
}

.service-body{
  max-height: 0;
  overflow: hidden;
  padding: 0 22px;
  color: #444;
  line-height: 1.75;
  transition: max-height 0.35s ease, padding 0.35s ease;
}

.service-item.open .service-body{
  max-height: 800px;
  padding: 0 22px 22px;
}

.service-item.open .service-icon{ transform: rotate(45deg); }

/* ================================= */
/* CONTACT US – ESTILO CORPORATIVO   */
/* ================================= */
.contact{
  background: linear-gradient(135deg, #0097a7, #0c8676);
  color: #ffffff;
}
.contact h2{
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.contact p{
  max-width: 620px;
  margin: 0 auto 20px;
  font-size: 1.05rem;
  opacity: .95;
}

.contact-divider{
  width: 80px;
  height: 4px;
  background: #ffffff;
  margin: 20px auto 30px;
  border-radius: 999px;
  opacity: 0.85;
}

.contact-card{
  background: #ffffff;
  max-width: 520px;
  margin: 0 auto 40px;
  padding: 36px 32px;
  border-radius: 18px;
  box-shadow: 0 25px 55px rgba(0,0,0,0.18);
}

.contact-card input,
.contact-card textarea{
  width: 100%;
  padding: 14px 16px;
  font-size: 15px;
  border-radius: 10px;
  border: 1px solid #e5e7eb;
  background: #f9fafb;
  outline: none;
  transition: all .25s ease;
}

.contact-card input:focus,
.contact-card textarea:focus{
  border-color: #2f9e6f;
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(47,158,111,0.25);
}

.contact-card textarea{
  min-height: 120px;
  resize: vertical;
}

.contact-card .btn{
  width: 100%;
  margin-top: 12px;
  padding: 14px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 12px;
  background: linear-gradient(135deg, #199e8cec, #0c8676);
  color: #ffffff;
  box-shadow: 0 15px 30px rgba(0,0,0,0.20);
  border: none;
}

.contact-card .btn:hover{ transform: translateY(-2px); }

@media (max-width: 768px){
  .contact-card{ padding: 28px 22px; border-radius: 16px; }
  .contact h2{ font-size: 2rem; }
}

/* ======================================= */
/* ABOUT US – IMAGEN + HIGHLIGHTS (PRO)     */
/* ======================================= */
.about-split{ background: #f7f9fb; }

.about-split-inner{
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 40px;
  align-items: stretch;
}

.about-split-media{
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 25px 55px rgba(0,0,0,0.12);
  border: 1px solid rgba(0,0,0,0.06);
  background: #fff;
}

.about-split-media img{
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  display: block;
}

.about-split-content{ text-align: left; }

.about-split-content h2{
  font-size: 2.3rem;
  font-weight: 800;
  color: #121243;
  margin-bottom: 12px;
}

.about-lead{
  font-size: 1.05rem;
  line-height: 1.85;
  color: #374151;
  margin-bottom: 22px;
}

.about-cards{
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.about-card{
  background: #ffffff;
  padding: 22px 22px;
  border-radius: 16px;
  border-left: 6px solid #0097a7;
  box-shadow: 0 18px 40px rgba(0,0,0,0.06);
  transition: transform .25s ease, box-shadow .25s ease;
}

.about-card:hover{
  transform: translateY(-5px);
  box-shadow: 0 28px 55px rgba(0,0,0,0.10);
}

.about-card h3{
  font-size: 1.05rem;
  font-weight: 900;
  letter-spacing: .6px;
  color: #121243;
  margin-bottom: 10px;
}

.about-card p{
  font-size: 0.95rem;
  line-height: 1.75;
  color: #4b5563;
  margin: 0;
}

@media (max-width: 900px){
  .about-split-inner{ grid-template-columns: 1fr; gap: 22px; }
  .about-split-media img{ min-height: 320px; }
  .about-split-content h2{ font-size: 2rem; }
}

/* ======================================= */
/* OUR COMMITMENT – IMÁGENES CORPORATIVAS  */
/* ======================================= */
.commitment-alt{ background: #ffffff; }

.commitment-alt-inner{
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.commitment-alt-inner h2{
  font-size: 2.3rem;
  font-weight: 800;
  color: #121243;
  margin-bottom: 50px;
}

.commitment-alt-grid{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 35px;
}

.commitment-alt-box{
  background: #f7f9fb;
  padding: 38px 30px;
  border-radius: 20px;
  border-top: 5px solid #0097a7;
  box-shadow: 0 20px 45px rgba(0,0,0,0.06);
  transition: transform .25s ease, box-shadow .25s ease;
}

.commitment-alt-box:hover{
  transform: translateY(-6px);
  box-shadow: 0 30px 60px rgba(0,0,0,0.10);
}

.commitment-img{
  width: 72px;
  height: 72px;
  object-fit: contain;
  margin: 0 auto 22px;
  display: block;
  filter: grayscale(100%);
  opacity: 0.85;
  transition: filter .25s ease, opacity .25s ease;
}

.commitment-alt-box:hover .commitment-img{
  filter: grayscale(0%);
  opacity: 1;
}

.commitment-alt-box h3{
  font-size: 1.15rem;
  font-weight: 800;
  margin-bottom: 16px;
  color: #121243;
  letter-spacing: 0.4px;
}

.commitment-alt-box p{
  font-size: 0.95rem;
  line-height: 1.75;
  color: #4b5563;
}

@media (max-width: 768px){
  .commitment-alt-inner h2{
    font-size: 2rem;
    margin-bottom: 40px;
  }
}

/* ======================================= */
/* CONTACT STRIP – ÚNICO (PC + MÓVIL PRO)  */
/* ======================================= */
.contact-strip{
  width: 100%;
  overflow-x: hidden;
  background: linear-gradient(135deg, #199e8cec, #0c8676);
  color: #fff;
  padding: 18px 0;
}

.contact-strip-inner{
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 60px;
}

.contact-strip-title{
  font-weight: 800;
  font-size: 18px;
  margin-bottom: 12px;
  text-align: left;
  opacity: .95;
}

/* Mostrar SOLO escritorio por defecto */
.contact-desktop{ display: block; }
.contact-mobile{ display: none; }

.contact-desktop-grid{
  display: grid;
  grid-template-columns: repeat(4, minmax(160px, 1fr));
  gap: 10px 14px;
}

.contact-chip{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-decoration: none;
  color: #fff;
  font-weight: 700;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 14px;
  padding: 10px 12px;
}

/* MÓVIL */
@media (max-width: 768px){
  .contact-strip-inner{ padding: 0 16px; }
  .contact-strip-title{ text-align: center; }

  .contact-desktop{ display: none; }
  .contact-mobile{ display: block; }

  .contact-mini{
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    margin-bottom: 10px;
  }

  .mini-pill, .contact-row{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-decoration: none;
    color: #fff;
    font-weight: 700;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: 14px;
    padding: 12px 12px;
    text-align: center;
    word-break: break-word;
  }

  .contact-more-btn{
    width: 100%;
    background: rgba(18,18,67,0.16);
    border: 1px solid rgba(255,255,255,0.18);
    color: #fff;
    font-weight: 800;
    border-radius: 14px;
    padding: 10px 12px;
    cursor: pointer;
  }

  .contact-more{
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transform: translateY(-6px);
    transition: max-height .35s ease, opacity .35s ease, transform .35s ease;
    margin-top: 10px;
  }

  .contact-more.open{
    max-height: 240px;
    opacity: 1;
    transform: translateY(0);
  }

  .contact-row{ margin-bottom: 10px; }
}

/* ===================================== */
/* FIX TÍTULO SERVICES EN MÓVIL           */
/* ===================================== */
@media (max-width: 768px) {
  .services-hero {
    min-height: 32vh;
    margin-top: 80px;
    background-position: center top;
  }
  .services { padding-top: 30px; }
  .services h2 { margin-top: 10px; font-size: 28px; }
}

/* ===================================== */
/* FIX FUERTE: redes sociales visibles    */
/* ===================================== */
.contact {
  overflow: visible !important;
  height: auto !important;
}

.contact-socials {
  display: flex !important;
  opacity: 1 !important;
  visibility: visible !important;
  margin-top: 22px;
  padding-bottom: 18px;
  position: relative;
  z-index: 5;
}

/* ===================================== */
/* REDUCIR ALTURA CONTACT EN MÓVIL        */
/* ===================================== */
@media (max-width: 768px) {
  .contact { padding-top: 35px; padding-bottom: 35px; }
  .contact-card { margin-bottom: 20px; }
  .contact-socials { margin-top: 15px; }
}

/* ===================================== */
/* MENÚ MÓVIL (ÚNICO, SOLO .active)       */
/* ===================================== */
@media (max-width: 768px){

  .menu-toggle{
    display: block;
    position: relative;
    z-index: 6001;
  }

  #navMenu.nav-links{
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    background: #121243;

    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 18px 0;

    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transform: translateY(-10px);
    pointer-events: none;

    transition: max-height .35s ease, opacity .35s ease, transform .35s ease;
    z-index: 6000;
  }

  #navMenu.nav-links.active{
    max-height: 520px;
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  #navMenu.nav-links a,
  #navMenu.nav-links button{
    color: #fff;
    font-size: 18px;
    width: 100%;
    text-align: center;
    padding: 10px 0;
  }
}

/* ===================================== */
/* FIX HOME EN PC (HERO REAL, NO FRANJA) */
/* ===================================== */

/* Tu home tiene class="section home", así que hereda padding.
   Aquí lo anulamos SOLO en home. */
#home.section.home,
.section.home{
  padding: 0 !important;          /* ✅ quita el padding de .section */
  margin-top: 90px !important;    /* ✅ separa por el header fijo */
  min-height: 130vh;  /* ✅ hero alto completo */
  height: auto !important;

  background-repeat: no-repeat !important;
  background-size: cover !important;          /* ✅ estilo Services */
  background-position: center center !important;
  background-color: #ffffff !important;
}

/* ===================================== */
/* HOME EN MÓVIL (MISMA LÓGICA, MÁS CÓMODO) */
/* ===================================== */
@media (max-width: 768px){
  #home.section.home,
  .section.home{
    margin-top: 80px !important;
    min-height: calc(55vh) !important;        /* puedes subir a 60vh si quieres */
    background-position: center top !important;
  }
}

/* ===================================== */
/* HOME – MÓVIL: IMAGEN COMPLETA HORIZONTAL */
/* ===================================== */

@media (max-width: 768px){
  #home.section.home,
  .section.home{

    /* Mantiene la franja intacta */
    padding-bottom: 0 !important;

    /* Imagen completa, sin recorte */
    background-size: contain !important;
    background-position: center top !important;
    background-repeat: no-repeat !important;

    /* Altura justa para imagen horizontal */
    min-height: auto !important;
    height: auto !important;

    /* Evita espacio blanco excesivo */
    aspect-ratio: 16 / 9;   /* ← CLAVE */
  }
}

/* ===================================================== */
/* MENÚ MÓVIL — MISMO ESTILO DE TU CAPTURA (OVERLAY PRO)  */
/* ===================================================== */
@media (max-width: 768px){

  /* Botón Menú */
  .menu-toggle{
    display: block;
    position: relative;
    z-index: 7001;
    font-size: 20px;
    font-weight: 700;
  }

  /* Contenedor del menú */
  #navMenu.nav-links{
    position: fixed;
    left: 0;
    top: 80px;                        /* debajo del header móvil */
    width: 100%;
    height: calc(45vh - 30px);       /* pantalla completa (como tu captura) */
    background: #0d1140;              /* azul oscuro */
    z-index: 7000;

    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;

    padding: 16px 0;
    margin: 0;
    list-style: none;

    /* oculto por defecto */
    opacity: 0;
    transform: translateY(-10px);
    pointer-events: none;

    transition: opacity .25s ease, transform .25s ease;

    /* si hay muchos items, que haga scroll */
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  /* Menú abierto */
  #navMenu.nav-links.active{
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  /* Items */
  #navMenu.nav-links li{
    width: 100%;
    text-align: center;
    padding: -40px 0;                  /* tamaño grande como la captura */
    position: relative;
  }

  /* Líneas separadoras */
  #navMenu.nav-links li::after{
    content: "";
    position: absolute;
    left: 12%;
    right: 12%;
    bottom: 0;
    height: 1px;
    background: rgba(255,255,255,0.35);
  }

  /* Quitar línea del último */
  #navMenu.nav-links li:last-child::after{
    display: none;
  }

  /* Links */
  #navMenu.nav-links a{
    display: block;
    width: 100%;
    color: #ffffff;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
  }

  /* Botón de idioma dentro del menú (Español) */
  #navMenu.nav-links .lang{
    display: block;
    width: 100%;
    background: transparent;
    border: none;
    cursor: pointer;

    color: #0ad5ba;                   /* verde como en tu captura */
    font-size: 18px;
    font-weight: 800;
    padding: 0;
  }

  /* Efecto al tocar (bonito en móvil) */
  #navMenu.nav-links a:active,
  #navMenu.nav-links .lang:active{
    opacity: 0.7;
  }
}

/* ===== LÍNEAS DIVISORIAS MENÚ MÓVIL ===== */
@media (max-width: 768px){

  #navMenu.nav-links li{
    position: relative;
  }

  #navMenu.nav-links li::after{
    content: "";
    position: absolute;
    left: 0%;
    right: 0%;
    bottom: -3px;
    height: 0.6px;
    background-color: rgba(255, 255, 255, 0.4);
  }

  #navMenu.nav-links li:last-child::after{
    display: none;
  }
}

/* ===================================== */
/* SPLASH INTRO (SOLO MÓVIL - 2025 PRO)   */
/* ===================================== */
.splash{
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: none;
  align-items: center;
  justify-content: center;

  background: radial-gradient(circle at 30% 20%, rgba(47,158,111,.35), transparent 55%),
              radial-gradient(circle at 70% 80%, rgba(0,151,167,.35), transparent 55%),
              rgba(8,12,35,.88);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);

  /* ✅ CLAVE: no transparente por defecto */
  opacity: 1;
  transform: none;
}

.splash.is-visible{
  opacity: 1;
  transform: translateY(0);
}

.splash.is-hiding{
  opacity: 0;
  transform: translateY(10px);
}

.splash-card{
  width: min(420px, 86vw);
  padding: 26px 22px;
  border-radius: 22px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.16);
  box-shadow: 0 25px 60px rgba(0,0,0,.35);
  text-align: center;

  transform: scale(.98);
  animation: splashPop .9s ease forwards;
}

@keyframes splashPop{
  from{ transform: scale(.96); opacity: .6; }
  to{ transform: scale(1); opacity: 1; }
}

.splash-logo{
  width: 100%;
  max-width: 200px;      /* ← controla el tamaño real del logo */
  height: auto;

  object-fit: contain;
  display: block;
  margin: 12px auto 14px;

  transform: scale(1.05); /* pequeño boost visual */
  filter: drop-shadow(0 12px 28px rgba(0,0,0,.45));
}

.splash-name{
  color: #fff;
  font-weight: 900;
  font-size: 22px;
  letter-spacing: .4px;
  margin-bottom: 6px;
}

.splash-sub{
  color: rgba(255,255,255,.85);
  font-size: 14px;
  line-height: 1.55;
  margin-bottom: 14px;
}

.splash-dots{
  display: flex;
  gap: 8px;
  justify-content: center;
  align-items: center;
}

.splash-dots span{
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: rgba(255,255,255,.85);
  animation: dotPulse 1s ease-in-out infinite;
}

.splash-dots span:nth-child(2){ animation-delay: .12s; }
.splash-dots span:nth-child(3){ animation-delay: .24s; }

@keyframes dotPulse{
  0%, 100%{ transform: translateY(0); opacity: .6; }
  50%{ transform: translateY(-4px); opacity: 1; }
}

/* Respeta usuarios con “reducir movimiento” */
@media (prefers-reduced-motion: reduce){
  .splash, .splash-card, .splash-dots span{
    animation: none !important;
    transition: none !important;
  }
}

/* ===================================== */
/* FORZAR SPLASH PRIMERO (sin ver la web) */
/* ===================================== */
html.splash-active body > *:not(#splash){
  visibility: hidden;
}

html.splash-active body{
  overflow: hidden;
}

/* ===== CONTACT PRO 2025 ===== */
#contact.contact{
  background: linear-gradient(135deg, #0b2b4a, #0c8676);
  color: #fff;
  padding: 90px 60px;
}

#contact .contact-card{
  background: rgba(255,255,255,.96);
  border-radius: 22px;
  box-shadow: 0 30px 70px rgba(0,0,0,.25);
  border: 1px solid rgba(255,255,255,.25);
}

/* contenedor 2 columnas (sin cambiar HTML) */
#contact.contact{
  position: relative;
}

/* “layout” usando lo que ya tienes */
#contact h2,
#contact > p,
#contact .contact-card,
#contact .contact-socials{
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}

/* tarjeta más premium */
#contact .contact-card{
  padding: 34px 32px;
  margin-top: 26px;
}

/* inputs estilo corporativo */
#contact .contact-card input,
#contact .contact-card textarea{
  background: #fff;
  border-radius: 14px;
  border: 1px solid rgba(15,23,42,.12);
  padding: 14px 16px;
}

#contact .contact-card input:focus,
#contact .contact-card textarea:focus{
  border-color: rgba(10, 76, 255, .45);
  box-shadow: 0 0 0 4px rgba(10, 76, 255, .12);
}

/* botón más corporativo */
#contact .contact-card .btn{
  border-radius: 14px;
  background: linear-gradient(135deg, #0b2b4a, #0097a7);
  font-weight: 800;
  letter-spacing: .2px;
}

/* redes: estilo “chip” */
#contact .contact-socials{
  margin-top: 22px;
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

#contact .social-line{
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.18);
  padding: 10px 14px;
  border-radius: 999px;
}

#contact .contact-socials a{
  color: #fff;
  font-weight: 700;
}

/* Responsive */
@media (max-width: 768px){
  #contact.contact{
    padding: 60px 20px;
  }
  #contact .contact-card{
    padding: 26px 20px;
  }
}

/* ===== CONTACT: PANEL CORPORATIVO (1 columna) ===== */
#contact.contact{
  padding: 90px 60px;
  color: #fff;
  background:
    radial-gradient(circle at 20% 15%, rgba(255,255,255,.12), transparent 45%),
    radial-gradient(circle at 80% 85%, rgba(255,255,255,.10), transparent 45%),
    linear-gradient(135deg, #0b2b4a, #0c8676);
}

#contact h2{
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 900;
  letter-spacing: -0.4px;
  margin-bottom: 10px;
}

#contact > p{
  max-width: 720px;
  margin: 0 auto 16px;
  font-size: 1.05rem;
  opacity: .95;
  line-height: 1.7;
}

/* divider elegante */
#contact .contact-divider{
  width: 88px;
  height: 4px;
  margin: 18px auto 28px;
  border-radius: 999px;
  background: rgba(255,255,255,.85);
}

/* tarjeta form premium */
#contact .contact-card{
  max-width: 640px;   /* más ancho y elegante */
  margin: 0 auto 22px;
  padding: 34px 32px;
  border-radius: 24px;
  background: rgba(255,255,255,.96);
  border: 1px solid rgba(255,255,255,.35);
  box-shadow: 0 30px 70px rgba(0,0,0,.25);
}

/* inputs */
#contact .contact-card input,
#contact .contact-card textarea{
  background: #fff;
  border-radius: 14px;
  border: 1px solid rgba(15,23,42,.12);
  padding: 14px 16px;
  font-size: 15px;
}

/* focus */
#contact .contact-card input:focus,
#contact .contact-card textarea:focus{
  border-color: rgba(10, 76, 255, .45);
  box-shadow: 0 0 0 4px rgba(10, 76, 255, .12);
}

/* botón corporativo */
#contact .contact-card .btn{
  width: 100%;
  border-radius: 14px;
  padding: 14px 16px;
  background: linear-gradient(135deg, #0b2b4a, #0097a7);
  font-weight: 800;
  letter-spacing: .2px;
  border: none;
  box-shadow: 0 16px 35px rgba(0,0,0,.22);
}

/* barra de redes tipo “contact bar” */
#contact .contact-socials{
  max-width: 640px;
  margin: 0 auto;
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;

  padding: 12px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.18);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

#contact .social-line{
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.15);
  transition: transform .2s ease;
}
#contact .social-line:hover{ transform: translateY(-2px); }

#contact .social-line img{
  width: 28px;          /* tamaño real del logo */
  height: 28px;
  padding: 0;           /* ❌ elimina el achique */
  background: none;     /* ❌ quita el círculo */
  border-radius: 0;     /* ❌ sin forma extra */
  object-fit: contain;  /* mantiene proporción */
}

#contact .contact-socials a{
  color: #fff;
  font-weight: 800;
  text-decoration: none;
}

@media (max-width: 768px){
  #contact.contact{ padding: 60px 20px; }
  #contact .contact-card{ padding: 26px 20px; border-radius: 20px; }
  #contact .contact-socials{ border-radius: 18px; } /* en móvil se ve mejor así */
}

/* ======================================= */
/* NUESTRO COMPROMISO – CORPORATIVO 2025   */
/* (sin cambiar tu HTML)                   */
/* ======================================= */

#commitment.commitment-alt{
  background:
    radial-gradient(circle at 20% 15%, rgba(0,151,167,.08), transparent 55%),
    radial-gradient(circle at 80% 85%, rgba(47,158,111,.08), transparent 55%),
    #ffffff;
  padding-top: 90px;
  padding-bottom: 90px;
}

#commitment .commitment-alt-inner{
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

/* Título principal (más corporativo) */
#commitment .commitment-alt-inner h2{
  font-size: clamp(30px, 3.6vw, 44px);
  font-weight: 900;
  letter-spacing: -0.4px;
  color: #0f172a;
  margin-bottom: 14px;
}

/* Si quieres un subtítulo en el futuro, ya queda listo */
#commitment .commitment-sub{
  max-width: 780px;
  margin: 0 auto 44px;
  font-size: 1.05rem;
  line-height: 1.7;
  color: #475569;
  opacity: .95;
}

/* Grid pro */
#commitment .commitment-alt-grid{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  align-items: stretch;
}

/* Tarjeta corporativa */
#commitment .commitment-alt-box{
  position: relative;
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(15,23,42,.08);
  border-radius: 22px;
  padding: 34px 30px 30px;
  box-shadow: 0 18px 45px rgba(0,0,0,.06);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
  overflow: hidden;
}

/* Acento superior (marca) */
#commitment .commitment-alt-box::before{
  content:"";
  position:absolute;
  top:0;
  left:0;
  right:0;
  height: 5px;
  background: linear-gradient(90deg, #0097a7, #0097a7);
}

/* Detalle sutil de fondo */
#commitment .commitment-alt-box::after{
  content:"";
  position:absolute;
  right: -60px;
  top: -60px;
  width: 140px;
  height: 140px;
  border-radius: 999px;
  background: rgba(0,151,167,.10);
  filter: blur(0px);
}

/* Hover corporativo (sutil, no exagerado) */
#commitment .commitment-alt-box:hover{
  transform: translateY(-4px);
  box-shadow: 0 26px 60px rgba(0,0,0,.10);
  border-color: rgba(0,151,167,.28);
}

/* Icono dentro de “badge” circular */
#commitment .commitment-img{
  width: 72px;
  height: 72px;
  object-fit: contain;
  margin: 0 auto 18px;
  display: block;

  padding: 14px;
  border-radius: 999px;
  background: rgba(0,151,167,.10);
  border: 1px solid rgba(0,151,167,.20);

  /* más corporativo: sin grayscale */
  filter: none;
  opacity: 1;

  transition: transform .22s ease, background .22s ease, border-color .22s ease;
}

#commitment .commitment-alt-box:hover .commitment-img{
  transform: translateY(-2px);
  background: rgba(0,151,167,.14);
  border-color: rgba(0,151,167,.28);
}

/* Título de cada tarjeta */
#commitment .commitment-alt-box h3{
  font-size: 1.12rem;
  font-weight: 900;
  color: #0f172a;
  margin-bottom: 14px;
  letter-spacing: .2px;
}

/* Texto / listas (si ya convertiste a .k-list, queda perfecto) */
#commitment .commitment-alt-box p,
#commitment .commitment-alt-box .k-list{
  text-align: left;
  font-size: .98rem;
  line-height: 1.75;
  color: #475569;
}

/* Si aún tienes texto con <br>, al menos mejora espaciado */
#commitment .commitment-alt-box p{
  margin: 0;
}

/* Responsive */
@media (max-width: 768px){
  #commitment.commitment-alt{
    padding-top: 70px;
    padding-bottom: 70px;
  }
  #commitment .commitment-alt-box{
    padding: 30px 22px 26px;
    border-radius: 20px;
  }
}

/* ===================================== */
/* HOME SLIDER PRO – FADE (PC + MÓVIL)    */
/* ===================================== */

.home{
  position: relative;   /* necesario para capas */
  overflow: hidden;
}

/* Capas de fondo */
.home-bg{
  position: absolute;
  inset: 0;

  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;          /* PC y MÓVIL */

  opacity: 0;
  transition: opacity 1s ease;     /* velocidad del fade */
  will-change: opacity;
}

/* Capa activa */
.home-bg.is-active{
  opacity: 1;
}

/* Contenido siempre encima */
.home .content{
  position: relative;
  z-index: 2;
}

/* ======================================= */
/* LOCATION – ENTRE CONTACT Y COMMITMENT  */
/* ======================================= */
.location{
  background:
    radial-gradient(circle at 20% 20%, rgba(0,151,167,.08), transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(47,158,111,.08), transparent 50%),
    #ffffff;
  padding: 90px 60px;
}

.location-inner{
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.location h2{
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 900;
  color: #121243;
  margin-bottom: 10px;
}

.location p{
  max-width: 720px;
  margin: 0 auto 22px;
  font-size: 1.05rem;
  line-height: 1.7;
  color: #475569;
}

.map-embed{
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 30px 70px rgba(0,0,0,.20);
  border: 1px solid rgba(0,0,0,.08);
  margin-bottom: 16px;
}

.map-embed iframe{
  width: 100%;
  height: 100%;
  border: 0;
}

.map-btn{
  display: inline-block;
  padding: 12px 20px;
  border-radius: 999px;
  background: linear-gradient(135deg, #0097a7, #0c8676);
  color: #fff;
  text-decoration: none;
  font-weight: 800;
  box-shadow: 0 15px 30px rgba(0,0,0,.22);
}

.map-btn:hover{ opacity: .9; }

@media (max-width: 768px){
  .location{ padding: 60px 20px; }
}

/* ======================================= */
/* LOCATION – CORPORATIVO (KARGA)          */
/* ======================================= */
#location.location{
  /* Fondo suave corporativo, coherente con tu web */
  background:
    radial-gradient(circle at 18% 18%, rgba(0,151,167,.10), transparent 55%),
    radial-gradient(circle at 82% 82%, rgba(47,158,111,.10), transparent 55%),
    linear-gradient(180deg, #ffffff 0%, #f7f9fb 100%);
  padding: 90px 60px;
}

#location .location-inner{
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

/* Título con look corporativo */
#location h2{
  font-size: clamp(30px, 3.6vw, 44px);
  font-weight: 900;
  letter-spacing: -0.4px;
  color: #121243;
  margin-bottom: 10px;
}

/* Texto alineado y elegante */
#location p{
  max-width: 760px;
  margin: 0 auto 26px;
  font-size: 1.05rem;
  line-height: 1.75;
  color: #475569;
}

/* Mapa como “card” premium */
#location .map-embed{
  width: 100%;
  max-width: 980px;
  margin: 0 auto 16px;

  aspect-ratio: 16 / 9;
  border-radius: 22px;
  overflow: hidden;

  background: rgba(255,255,255,0.92);
  border: 1px solid rgba(15,23,42,0.10);
  box-shadow: 0 28px 70px rgba(0,0,0,0.14);

  position: relative;
}

/* iframe limpio */
#location .map-embed iframe{
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* Botón coherente con tu estilo */
#location .map-btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  padding: 12px 20px;
  border-radius: 999px;

  background: linear-gradient(135deg, #0b2b4a, #0097a7);
  color: #fff;
  text-decoration: none;
  font-weight: 900;
  letter-spacing: .2px;

  box-shadow: 0 16px 35px rgba(0,0,0,.20);
  transition: transform .2s ease, opacity .2s ease;
}

#location .map-btn:hover{
  transform: translateY(-2px);
  opacity: .95;
}

/* Separador sutil hacia “Nuestro Compromiso” */
#location.location::after{
  content:"";
  display:block;
  width: 120px;
  height: 4px;
  margin: 34px auto 0;
  border-radius: 999px;
  background: rgba(18,18,67,0.12);
}

/* Responsive */
@media (max-width: 768px){
  #location.location{ padding: 60px 20px; }
  #location .map-embed{
    max-width: 100%;
    border-radius: 18px;
  }
}

/* ==============================
   PERFIL TIPO "CONTACT CARD"
   ============================== */
.profile-contact{
  padding: 70px 20px;
  background: #ffffff;
}

.profile-card{
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
}

.profile-photo-wrap{
  width: 220px;
  height: 220px;
  margin: 0 auto 18px;
  border-radius: 999px;
  background: #ffffff;
  padding: 10px; /* “aro” blanco */
  box-shadow: 0 18px 45px rgba(0,0,0,0.18);
}

.profile-photo{
  width: 100%;
  height: 100%;
  border-radius: 999px;
  object-fit: cover;
  display: block;
}

.profile-name{
  font-size: 26px;
  font-weight: 800;
  color: #111827;
  margin-top: 8px;
}

.profile-country{
  font-size: 16px;
  color: #9ca3af;
  font-weight: 600;
  margin-top: 4px;
}

.profile-actions{
  margin-top: 26px;
  display: flex;
  justify-content: center;
  gap: 22px;
}

.profile-icon{
  width: 64px;
  height: 64px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;

  background: #ffffff;
  border: 2px solid #0b2b4a;
  color: #0b2b4a;

  box-shadow: 0 12px 30px rgba(0,0,0,0.12);
  transition: transform .2s ease, opacity .2s ease;
}

.profile-icon:hover{
  transform: translateY(-2px);
  opacity: .95;
}

/* ===== MENSAJE BAJO PERFIL ===== */
.profile-message{
  max-width: 520px;
  margin: 22px auto 0;
  font-size: 15.5px;
  line-height: 1.75;
  color: #6b7280; /* gris elegante */
  text-align: center;
}

/* ===== NOMBRE PERFIL – TIPOGRAFÍA ESPECIAL ===== */
.profile-name{
  font-family: 'Great Vibes', cursive;
  font-size: 38px;
  font-weight: 400;
}

/* ===== PERFIL PRO: tarjeta + glow suave ===== */
.profile-contact{
  background:
    radial-gradient(circle at 20% 15%, rgba(0,151,167,.10), transparent 55%),
    radial-gradient(circle at 80% 85%, rgba(47,158,111,.10), transparent 55%),
    #ffffff;
  padding: 80px 20px;
}

.profile-card{
  position: relative;
  max-width: 620px;
  margin: 0 auto;
  padding: 26px 18px 22px;
  border-radius: 26px;

  background: rgba(255,255,255,.86);
  border: 1px solid rgba(15,23,42,0.10);
  box-shadow: 0 28px 70px rgba(0,0,0,0.12);

  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);

  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.profile-card:hover{
  transform: translateY(-6px);
  box-shadow: 0 38px 90px rgba(0,0,0,0.16);
  border-color: rgba(0,151,167,.22);
}

/* brillo sutil decorativo */
.profile-card::before{
  content:"";
  position:absolute;
  inset: -1px;
  border-radius: 26px;
  background: linear-gradient(135deg, rgba(0,151,167,.18), rgba(47,158,111,.18));
  filter: blur(18px);
  opacity: .35;
  z-index: -1;
}

/* ===== FOTO PRO: aro degradado ===== */
.profile-photo-wrap{
  position: relative;
  width: 220px;
  height: 220px;
  padding: 10px;
  border-radius: 999px;
  margin: 0 auto 16px;

  background: #fff;
  box-shadow: 0 20px 55px rgba(0,0,0,0.18);
}

.profile-photo-wrap::before{
  content:"";
  position:absolute;
  inset: -4px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(0,151,167,1), rgba(47,158,111,1));
  z-index: -1;
  opacity: .85;
}

.profile-photo{
  border-radius: 999px;
  transition: transform .25s ease;
}

.profile-card:hover .profile-photo{
  transform: scale(1.02);
}

/* ===== ICONOS: más animados ===== */
.profile-actions{
  margin-top: 22px;
  gap: 16px;
  flex-wrap: wrap;
}

.profile-icon{
  transition: transform .18s ease, box-shadow .18s ease, opacity .18s ease;
}

.profile-icon:hover{
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 18px 40px rgba(0,0,0,0.16);
}

.profile-icon:active{
  transform: translateY(0) scale(0.98);
  opacity: .9;
}

/* ========================================= */
/* PERFIL CARD HORIZONTAL – SOLO ESCRITORIO  */
/* ========================================= */
/* ========================================= */
/* PERFIL CARD – SOLO ESTIRAR EN ESCRITORIO  */
/* ========================================= */
@media (min-width: 900px){

  .profile-card{
    max-width: 980px;   /* más ancho */
    padding-left: 40px;
    padding-right: 40px;
  }
}

/* ===================================== */
/* HOME: Imagen COMPLETA (solo escritorio) */
/* ===================================== */
@media (min-width: 769px){

  /* Home como hero pero mostrando imagen completa */
  #home.section.home,
  .section.home{
    padding: 0 !important;
    margin-top: 90px !important;         /* header fijo */
    height: auto !important;
    min-height: auto !important;

    /* Mostrar imagen completa (sin recorte) */
    background-size: contain !important;
    background-position: center top !important;
    background-repeat: no-repeat !important;

    /* Para que el “espacio” se vea elegante si sobran bordes */
    background-color: #ffffff !important;

    /* Proporción tipo banner (ajusta si tu imagen es otra) */
    aspect-ratio: 16 / 9;
  }

  /* Si estás usando el slider por capas, aplica lo mismo */
  .home-bg{
    background-size: contain !important;
    background-position: center top !important;
    background-repeat: no-repeat !important;
    background-color: #ffffff !important;
  }
}


