/* Reset y tipografía */ 

:root{
  --brand: #301964;
  --bg: #edebe8;
  --text: #301964;
}
body {
  font-family: 'Segoe UI', system-ui, -apple-system, Arial, sans-serif;
  background-color: var(--bg);
  color: var(--text);
}


/* Rajdhani para títulos */
h1, h2, h3 {
  font-family: 'Rajdhani', 'Segoe UI', sans-serif;
  font-weight: 700;
  letter-spacing: .5px;
}


/* Header */
header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 30px;
  position: relative;
}
.logo img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  background: #ffffff;
  border-radius: 50%;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
  transition: transform 0.2s ease;
}
nav.desktop-menu ul {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}
nav.desktop-menu a {
  color: #301964;
  text-decoration: none;
  font-weight: bold;
  font-size: 18px;
}
nav.desktop-menu a:hover {
  text-decoration: underline;
}

/* Icono hamburguesa (invisible en desktop) */
.mobile-menu-icon {
  display: none;
  font-size: 28px;
  color: #301964;
  background: none;
  border: none;
  cursor: pointer;
}

/* Overlay global (no solo móvil) */
.overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.35);
  opacity: 0;
  transition: opacity .25s ease;
  z-index: 999; /* Debe ser < z-index de .mobile-menu */
}
.overlay.show {
  display: block;
  opacity: 1;
}

/* Bloqueo de scroll cuando el menú está abierto */
.no-scroll {
  overflow: hidden;
}

/* Panel móvil (oculto por defecto) */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 60%;
  height: 100%;
  background-color: #edebe8;
  box-shadow: 5px 0 10px rgba(0,0,0,0.2);
  padding: 80px 30px;
  transform: translateX(-100%);
  transition: transform 0.3s ease;
  z-index: 1000;
}
.mobile-menu.show {
  transform: translateX(0);
}
.mobile-menu a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #301964;
  text-decoration: none;
  font-size: 1.2rem;
  font-weight: bold;
  margin-bottom: 20px;
}
.mobile-menu a .mobile-arrow {
  font-size: 1.5rem;
  font-weight: bold;
}

/* Responsive: móvil */
@media (max-width: 768px) {
  nav.desktop-menu {
    display: none;
  }
  .mobile-menu-icon {
    display: block;
  }
  .logo {
    margin: 0 auto;
    display: block;
  }
  .mobile-menu {
    display: flex;
    flex-direction: column;
  }
}
/* Responsive: desktop */
@media (min-width: 769px) {
  .mobile-arrow {
    display: none;
  }
}

/* Contenido principal */
main {
  max-width: 1000px;
  margin: 40px auto;
  padding: 0 20px;
}
section {
  margin-bottom: 50px;
}

/* Animación Reveal */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.reveal.active {
  opacity: 1;
  transform: none;
}

/* Hero con background de imagen */
#hero {
  background: url('fondo.png') no-repeat center/cover;
  min-height: 80vh;
  display: flex;
  align-items: center;
  padding: 4rem 2rem;
  position: relative;
  color: #fff;
}


.service-item img {
  width: 500px;
  height: auto;
  display: block;
  border-radius: 8px;
}
.service-item h3 {
  text-align: center;
  margin-top: 0.5rem;
  font-size: 1.25rem;
  color: #301964;
}


.proceso-item img {
  width: 500px;
  height: auto;
  display: block;
  margin: 0 auto;
}
.proceso-item h3 {
  text-align: center;
  margin-top: 0.5rem;
  font-size: 1rem;
  color: #301964;
}


.social-icons {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex;
  flex-direction: row;   /* fila en lugar de columna */
  gap: 10px;             /* espacio entre iconos */
  z-index: 10000;
}

.social-icons a img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  background: #ffffff;
  border-radius: 50%;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
  transition: transform 0.2s ease;
}

.social-icons a img:hover {
  transform: scale(1.1);
}

/* = Contacto = */
#contacto {
  background: #edebe8;
  padding: 3rem 2rem;
  max-width: 700px;
  margin: 0 auto 4rem;
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

#contacto h2 {
  font-size: 28px;
  font-weight: 700;
  color: #301964;
  text-align: center;
  margin-bottom: 1.5rem;
}

#contactForm {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

#contactForm label {
  font-weight: 600;
  color: #301964;
}

#contactForm input,
#contactForm textarea {
  padding: 0.75rem 1rem;
  border: 2px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
  font-family: inherit;
  color: #301964;
  background: #fff;
  transition: border-color 0.2s;
}

#contactForm input:focus,
#contactForm textarea:focus {
  border-color: #301964;
  outline: none;
}

#contactForm button {
  align-self: flex-start;
  background: #301964;
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  padding: 0.75rem 2rem;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.2s;
}

#contactForm button:hover {
  background: #4b338f;
}
/* === INFO DE CONTACTO === */
#info-contact {
  background: #301964;
  color: #fff;
  padding: 3rem 1rem;
}

.info-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2.5rem;
  max-width: 1000px;
  margin: 0 auto 2rem;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1rem;
}

.info-item img {
  width: 28px;
  height: 28px;
  filter: brightness(0) invert(1);
}

.info-item a {
  color: #fff;
  text-decoration: none;
  transition: opacity 0.2s;
}

.info-item a:hover {
  opacity: 0.8;
}

/* Dirección y derechos */
.info-footer {
  max-width: 1000px;
  margin: 0 auto;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.3);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1.5rem;
}

.address, .rights {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
}

.address img, .rights img {
  width: 20px;
  height: 20px;
  filter: brightness(0) invert(1);
}

.address span, .rights span {
  line-height: 1.4;
}
/* ================================
   Ajustes Globales para Responsive
   ================================ */

/* Asegurar encabezado y menú sobre el contenido */
header {
  position: relative;
  z-index: 1002;
}

/* El overlay y el panel móvil deben ir debajo del header */
.mobile-menu {
  z-index: 1001;
}
.overlay {
  z-index: 1000;
}

/* ================================
   Media Queries para pantallas ≤768px
   ================================ */
@media (max-width: 768px) {
  /* Mostrar solo icono hamburguesa */
  nav.desktop-menu {
    display: none;
  }
  .mobile-menu-icon {
    display: block;
    z-index: 1003; /* por encima de todo */
  }


  /* Asegurar que el panel móvil cubra el 60% */
  .mobile-menu {
    width: 60%;
  }


  /* Espacio inferior extra para no cortar contenido */
  section#quienes-somos {
    padding-bottom: 2rem;
  }
}
/* Logo por defecto (escritorio) */
.logo img {
  width: 120px;    /* antes 48px, ahora más grande */
  height: auto;
}

/* Móvil: un poco más pequeño que en escritorio */
@media (max-width: 768px) {
  .logo img {
    width: 80px;  /* ajusta según te guste */
  }
}

/* ————————————————
   Secciones Servicios y Proceso
   ———————————————— */
#servicios h2,
#proceso h2 {
  border-left: 12px solid #301964;  /* borde más grueso */
  padding-left: 1.5rem;             /* espacio entre borde y texto */
  font-size: 2.5rem;                /* letras más grandes */
  font-weight: 800;                 /* más gruesas */
  margin-bottom: 1.5rem;
}

/* ————————————————
   Hero: texto principal
   ———————————————— */
/* Base (desktop) */
#hero h1,
#hero .intro-text {
  display: inline-block;
  background-color: var(--brand);
  color: #fff;
  padding: 0.75rem 1.5rem;
  border-left: 12px solid var(--brand);
  box-shadow: 0 4px 12px rgba(0,0,0,0.25);
  font-size: 4rem; /* si prefieres, puedes quitarlo si ya lo define .intro-text */
}

/* Responsive: hero en móviles */
@media (max-width: 768px) {
  #hero h1,
  #hero .intro-text {
    font-size: 2.2rem;
    border-left-width: 8px;
    padding: 0.5rem 1rem;
  }
}

/* ─────────────────────────────────────────
   Sección Servicios y Nuestro Proceso
   ───────────────────────────────────────── */
#servicios h2,
#proceso h2 {
  /* más “espacio” a la izquierda (padding) */
  padding-left: 2.5rem;        /* antes 1.5rem */
  /* fondo negro como en el hero */
  background-color: #301964;
  /* texto en blanco para buen contraste */
  color: #fff;
  /* mismos tamaños y peso de letra que ya definiste */
}

/* aplicar igual en móvil */
@media (max-width: 768px) {
  #servicios h2,
  #proceso h2 {
    padding-left: 2rem;
    font-size: 2rem;           /* ajusta si hace falta */
    background-color: #301964;
    color: #fff;
  }
}

/* Estilos para el “icono hamburguesa” */
.mobile-menu-icon {
  background: none;
  border: none;
  padding: 0.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  z-index: 1003; /* por encima del header */
}

/* Las tres barras */
.mobile-menu-icon span {
  display: block;
  width: 24px;
  height: 3px;
  background-color: #301964;
  border-radius: 2px;
}

/* Ajuste móvil: posición absoluta a la izquierda */
@media (max-width: 768px) {
  .mobile-menu-icon {
    position: absolute;
    top: 50%;
    left: 1rem;
    transform: translateY(-50%);
  }
}
/* ===========================================================================
   Slider “Quiénes Somos” – Styles Consolidated
   =========================================================================== */

/* Contenedor principal del slider */
#quienes-somos .slider {
  background: #edebe8;
  padding: 2rem;
  position: relative;
  overflow: hidden;
  width: 100%;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  margin: 4rem auto;
  max-width: 1200px;
}

/* ——— Slider “Quiénes Somos” ——— */
#quienes-somos .slides {
  display: flex;
  transition: transform 0.6s ease-in-out;
}

#quienes-somos .slide {
  flex: 0 0 100%;
  margin-right: 1rem;
  border: 2px solid #301964;
  border-radius: 8px;
  display: flex;
  overflow: hidden;
}

#quienes-somos .slide:last-child {
  margin-right: 0;
}

#quienes-somos .slide-image {
  flex: 0 0 50%;
  max-width: 50%;
}

#quienes-somos .slide-text {
  flex: 0 0 50%;
  max-width: 50%;
  padding: 2rem;
  box-sizing: border-box;
}

#quienes-somos .slide-text h3,
#quienes-somos .slide-text p {
  margin: 0 0 1rem;
  color: #301964;
}


/* ─────────────────────────────────────────
   Ajustes de ancho, padding y bordes para
   cada slide “Quiénes Somos”
   ───────────────────────────────────────── */
#quienes-somos .slide {
  /* Bordes de color distintivo */
  border: 2px solid #301964;
  border-radius: 8px;
  /* Ocupa todo el ancho del viewport */
  flex: 0 0 100%;
  display: flex;
  align-items: center;
  /* Ya no centramos: arrancará en el padding */
  justify-content: flex-start;
  gap: 2rem;
  /* Reducimos el padding del contenedor */
  padding: 0;
}

/* Imagen: ahora 40% para dar más espacio al texto */
#quienes-somos .slide-image {
  flex: 0 0 40%;
  max-width: 40%;
}
#quienes-somos .slide-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* Texto: 60%, con más padding a la derecha */
#quienes-somos .slide-text {
  flex: 0 0 60%;
  max-width: 60%;
  padding: 0 4rem 0 2rem;  /* top 0, right 4rem, bottom 0, left 2rem */
  box-sizing: border-box;
}
#quienes-somos .slide-text h3 {
  font-size: 30px;
  font-weight: 700;
  color: #301964;
  margin-bottom: 1rem;
}
#quienes-somos .slide-text p {
  font-size: 30px;
  line-height: 1.6;
  color: #301964;
}

/* Fondos independientes para cada slide */
#quienes-somos .slide:nth-of-type(1) { background-color: #edebe8; }
#quienes-somos .slide:nth-of-type(2) { background-color: #fefaf5; }
#quienes-somos .slide:nth-of-type(3) { background-color: #fcf4e5; }

/* Botones de navegación Prev/Next */
#quienes-somos .slider-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(48,25,100,0.8);
  color: #fff;
  border: none;
  font-size: 2rem;
  width: 48px;
  height: 48px;
  cursor: pointer;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
}
#quienes-somos .slider-nav.prev { left: 1rem; }
#quienes-somos .slider-nav.next { right: 1rem; }

/* Indicadores (dots) */
#quienes-somos .slider-dots {
  text-align: center;
  margin-top: 1.5rem;
}
#quienes-somos .slider-dots .dot {
  display: inline-block;
  width: 12px;
  height: 12px;
  margin: 0 6px;
  background: #ccc;
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.3s;
}
#quienes-somos .slider-dots .dot.active {
  background: #301964;
}

/* ===========================================================================
   Responsive: versiones para móviles y tabletas (≤768px)
   =========================================================================== */

/* Mobile: apilado, con bordes y padding adaptados */

/* Responsive: versiones para móviles y tabletas (≤768px) */
@media (max-width: 768px) {
  #quienes-somos .slide {
    flex-direction: column;
    padding: 1rem;
  }
  #quienes-somos .slide-image {
    flex: 0 0 auto;
    width: 100%;
    max-width: 100%;
    margin-bottom: 1rem;
  }
  #quienes-somos .slide-text {
    flex: 0 0 auto;
    width: 100%;
    max-width: 100%;
    padding: 0 1.5rem;
  }

  /* Ahora sí dentro del mismo @media */
  #quienes-somos .slide-text h3 {
    font-size: 22px;
    text-align: center;
  }
  #quienes-somos .slide-text p {
    font-size: 15px;
    text-align: center;
  }
}  /* ← cierre correcto del @media */

/* ——— Flip‑card base y espaciados definitivos ——— */
.flip-card {
  perspective: 1000px;
  margin: 1rem auto 3rem;
  width: 300px;
  aspect-ratio: 1 / 1;    /* obliga a que height = width */
  box-sizing: border-box;
}

@media (max-width: 768px) {
  .flip-card {
    width: 200px;
    aspect-ratio: 1 / 1;  /* mantiene el cuadrado en móvil */
    margin-bottom: 2.5rem;
  }
}


.flip-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  transition: transform 0.6s;
}
.flip-card-inner.flipped {
  transform: rotateY(180deg);
}

.flip-card-front,
.flip-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  border: 2px solid #301964;
  background-color: #fffdf0;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  padding: 0.5rem;
}
.flip-card-front img {
  width: 100%;
  height: 100%;
  object-fit: contain;    /* rellena el contenedor sin deformarse */
}
.flip-card-back {
  transform: rotateY(180deg);
}
.flip-card-back p {
  margin: 0;
  color: #301964;
  font-weight: bold;
  text-align: center;
  font-size: 0.8rem;
}


/* ——— Separación títulos vs grids ——— */
#servicios h2,
#proceso h2 {
  margin-bottom: 4rem;
}
#servicios .services-grid,
#proceso .proceso-grid {
  margin-top: 2rem;
}
#servicios,
#proceso {
  padding: 1rem 0 2rem;
}
/* ─── Grid definitivo para Servicios y Proceso ─── */
.services-grid,
.proceso-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  column-gap: 4rem;   /* separación horizontal */
  row-gap: 6rem;      /* separación vertical */
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (max-width: 768px) {
  .services-grid,
  .proceso-grid {
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    column-gap: 2rem;
    row-gap: 4rem;
  }
}

/* ===== Solo versión WEB (≥769px) ===== */
@media (min-width: 769px) {

  /* Usamos flex para controlar filas exactas y centrar la última incompleta */
  .services-grid,
  .proceso-grid {
    display: flex;           /* sobreescribe el grid actual */
    flex-wrap: wrap;
    justify-content: center; /* centra cada fila */
    column-gap: 4rem;        /* separación horizontal */
    row-gap: 6rem;           /* separación vertical */
    max-width: 1200px;
    margin: 0 auto;
  }

  /* 3 columnas fijas por fila: (100% - 2 gaps) / 3 */
  .services-grid > .service-item,
  .proceso-grid > .proceso-item {
    flex: 0 1 calc((100% - 8rem) / 3); /* 8rem = 2 * 4rem */
    max-width: calc((100% - 8rem) / 3);
    display: flex;            /* centra el contenido (flip-card o img) dentro */
    justify-content: center;
  }
}

/* Hotfix temporal: si falla JS, muestra el contenido igual */
.reveal { opacity: 1 !important; transform: none !important; }
