/* =========================
   BASE + FONDO (IMAGEN)
========================= */
body {
    margin: 0;
    font-family: Arial, sans-serif;
}

/* Fondo con imagen */
body::before {
    content: "";
    position: fixed;
    inset: 0;
    background-image: url("multimedia/fondo.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -2;
}

/* Overlay oscuro para mejor lectura (opcional, puedes bajar/subir opacidad) */
body::after {
    content: "";
    position: fixed;
    inset: 0;
    background: rgba(2, 12, 30, 0.45);
    z-index: -1;
}

/* =========================
   HERO PRINCIPAL
========================= */
.hero {
    position: relative;
    min-height: 100vh;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    text-align: center;
    color: white;
}

/* TITULO */
.title {
    font-size: 4rem;
    font-weight: 800;
    margin: 0;
    letter-spacing: 1px;
}

/* SUBTITULO */
.subtitle {
    font-size: 1.3rem;
    max-width: 700px;
    margin-top: 15px;
    opacity: 0.9;
}

/* =========================
   MENU LATERAL DERECHO (COLUMNA)
========================= */
.side-menu {
  position: absolute;   /* ✅ ya no se queda fijo */
  top: 20px;
  right: 20px;

  display: flex;
  flex-direction: row;
  gap: 12px;

  z-index: 999;
}





/* BOTONES */
.side-menu a {
    width: 160px;
    padding: 14px 0;

    background-color: rgba(0, 0, 0, 0.6);
    color: white;

    text-align: center;
    text-decoration: none;
    border-radius: 10px;

    font-size: 1rem;
    font-weight: 600;

    transition: transform 0.25s ease, background-color 0.25s ease, color 0.25s ease;
}

/* HOVER */
.side-menu a:hover {
    background-color: #00c2ff;
    color: black;
    transform: translateX(-5px);
}

/* =========================
   TARJETAS HOME (3 CARDS)
========================= */
.features {
    margin-top: 60px;
    display: flex;
    gap: 30px;
    justify-content: center;
    align-items: stretch;
    flex-wrap: wrap;
}

.card {
    width: 320px;
    padding: 35px 25px;

    background: rgba(16, 31, 86, 0.45);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 18px;

    color: white;
    text-align: center;

    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    cursor: pointer;
}

.card .icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.card h3 {
    font-size: 1.4rem;
    margin-bottom: 12px;
    font-weight: 800;
}

.card p {
    font-size: 1rem;
    line-height: 1.5;
    opacity: 0.95;
}

.card:hover {
    transform: translateY(-12px) scale(1.03);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

/* =========================================
   QUIÉNES SOMOS (qs2) - AISLADO
========================================= */
.qs2-section{
  padding: 90px 20px 90px;
  background: linear-gradient(
    180deg,
    rgba(5, 20, 40, 0.55) 0%,
    rgba(5, 20, 40, 0.65) 50%,
    rgba(5, 20, 40, 0.55) 100%
  );
}

.qs2-container{
  max-width: 1280px;
  margin: 0 auto;
}

.qs2-title{
  text-align: center;
  margin-bottom: 44px;
}

.qs2-title h2{
  margin: 0;
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  font-weight: 900;
  letter-spacing: .3px;
  color: #fff;
}

.qs2-title h2 span{
  color: #00c2ff;
}

.qs2-underline{
  width: 120px;
  height: 6px;
  margin: 14px auto 0;
  border-radius: 999px;
  background: rgba(0, 194, 255, .95);
}

.qs2-grid-2{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 30px;
  margin-top: 10px;
}

.qs2-card{
  border-radius: 20px;
  padding: 34px 34px 32px;

  background: rgba(6, 22, 55, 0.35);
  border: 1px solid rgba(255,255,255,0.16);
  box-shadow: 0 26px 60px rgba(0,0,0,0.45);

  color: rgba(255,255,255,0.92);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.qs2-card:hover{
  transform: translateY(-8px);
  box-shadow: 0 34px 75px rgba(0,0,0,0.55);
  border-color: rgba(0,194,255,0.28);
}

.qs2-card-head{
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 18px;
}

.qs2-card-head h3{
  margin: 0;
  font-size: 1.9rem;
  font-weight: 900;
  color: #fff;
}

.qs2-icon-box{
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: grid;
  place-items: center;

  color: #00c2ff;
  background: rgba(0, 194, 255, 0.12);
  border: 1px solid rgba(0, 194, 255, 0.22);
}

.qs2-card p{
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.8;
}

.qs2-values{
  margin-top: 40px;
  border-radius: 20px;
  padding: 36px 36px 40px;

  background: rgba(6, 22, 55, 0.30);
  border: 1px solid rgba(255,255,255,0.16);
  box-shadow: 0 26px 60px rgba(0,0,0,0.45);
}

.qs2-values-head{
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 22px;
}

.qs2-values-head h3{
  margin: 0;
  font-size: 2rem;
  font-weight: 900;
  color: #fff;
}

.qs2-values-grid{
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 26px;
  margin-top: 6px;
}

.qs2-value{
  text-align: center;
  color: rgba(255,255,255,0.92);
  padding: 12px 10px;
  border-radius: 16px;
  transition: transform .25s ease;
}

.qs2-value:hover{
  transform: translateY(-6px);
}

.qs2-bubble{
  width: 74px;
  height: 74px;
  margin: 6px auto 14px;
  border-radius: 999px;

  display: grid;
  place-items: center;

  color: #00c2ff;
  background: rgba(0, 194, 255, 0.12);
  border: 1px solid rgba(0, 194, 255, 0.20);
}

.qs2-value h4{
  margin: 0;
  font-size: 1.25rem;
  font-weight: 900;
  color: #fff;
}

.qs2-value p{
  margin: 10px 0 0;
  font-size: 1rem;
  line-height: 1.55;
  opacity: 0.92;
}

/* Responsive qs2 */
@media (max-width: 980px){
  .qs2-grid-2{
    grid-template-columns: 1fr;
  }
  .qs2-values-grid{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 560px){
  .qs2-values-grid{
    grid-template-columns: 1fr;
  }
}

/* =========================================
   SERVICIOS (srv) - COMPLETO
   Pegalo al final del style.css
========================================= */

/* IMPORTANT: deja espacio por el menú fijo */
.srv-section{
  padding: 140px 20px 90px; /* top grande para que no tape el nav */
}

.srv-container{
  max-width: 1200px;
  margin: 0 auto;
}

.srv-title{
  text-align: center;
  color: #fff;
  margin-bottom: 34px;
}

.srv-title h1{
  margin: 0;
  font-size: clamp(2.6rem, 4.8vw, 3.6rem);
  font-weight: 900;
  letter-spacing: .3px;
}

.srv-title h1 span{
  color: #00c2ff;
}

.srv-underline{
  width: 130px;
  height: 6px;
  margin: 16px auto 18px;
  border-radius: 999px;
  background: rgba(0, 194, 255, .95);
}

.srv-title p{
  margin: 0 auto;
  max-width: 900px;
  line-height: 1.85;
  font-size: 1.05rem;
  opacity: .92;
}

/* GRID */
.srv-grid{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
  margin-top: 34px;
}

/* CARD PLAN */
.srv-plan{
  position: relative;
  border-radius: 22px;
  padding: 34px 28px 26px;

  background: rgba(6, 22, 55, 0.35);
  border: 1px solid rgba(255,255,255,0.18);
  box-shadow: 0 26px 60px rgba(0,0,0,0.45);

  color: rgba(255,255,255,0.95);
  text-align: center;

  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}

.srv-plan:hover{
  transform: translateY(-10px);
  box-shadow: 0 36px 85px rgba(0,0,0,0.55);
  border-color: rgba(0,194,255,0.35);
}

.srv-icon{
  width: 64px;
  height: 64px;
  border-radius: 14px;
  margin: 0 auto 18px;

  display: grid;
  place-items: center;

  font-size: 1.8rem;

  background: rgba(0, 194, 255, 0.12);
  border: 1px solid rgba(0, 194, 255, 0.22);
}

.srv-plan h2{
  margin: 0;
  font-size: 2.05rem;
  font-weight: 900;
  letter-spacing: .5px;
}

.srv-sub{
  margin: 12px 0 18px;
  opacity: .92;
  line-height: 1.65;
}

.srv-list{
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
  text-align: left;
  display: grid;
  gap: 12px;
}

.srv-list li{
  position: relative;
  padding-left: 34px;
  font-size: 1.0rem;
  line-height: 1.5;
  opacity: .95;
}

.srv-list li::before{
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;

  width: 24px;
  height: 24px;
  border-radius: 999px;

  display: grid;
  place-items: center;

  background: rgba(0, 194, 255, 0.16);
  color: #00c2ff;
  border: 1px solid rgba(0, 194, 255, 0.22);
  font-weight: 900;
}

.srv-tools{
  margin-top: 22px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.14);
  font-size: .98rem;
  opacity: .92;
}

.srv-tools span{
  color: #00c2ff;
  font-weight: 900;
}

/* POPULAR */
.srv-popular{
  border: 1px solid rgba(0, 194, 255, 0.45);
  box-shadow: 0 30px 80px rgba(0, 194, 255, 0.10);
  transform: translateY(-6px);
}

.srv-popular:hover{
  transform: translateY(-14px);
}

.srv-badge{
  position: absolute;
  left: 50%;
  top: -16px;
  transform: translateX(-50%);

  padding: 8px 18px;
  border-radius: 999px;

  background: rgba(0, 194, 255, 0.95);
  color: #042235;
  font-weight: 900;
  font-size: .9rem;
}

/* CTA */
.srv-cta{
  margin-top: 34px;
  border-radius: 22px;
  padding: 34px 26px;
  text-align: center;
  color: rgba(255,255,255,0.95);

  background: linear-gradient(
    90deg,
    rgba(0, 194, 255, 0.22),
    rgba(74, 133, 255, 0.18)
  );
  border: 1px solid rgba(255,255,255,0.16);
  box-shadow: 0 26px 60px rgba(0,0,0,0.45);
  backdrop-filter: blur(8px);
}

.srv-cta h3{
  margin: 0 0 10px;
  font-size: 1.8rem;
  font-weight: 900;
}

.srv-cta p{
  margin: 0 auto 18px;
  max-width: 760px;
  line-height: 1.7;
  opacity: .92;
  font-size: 1.05rem;
}

.srv-btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 18px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 900;

  color: #042235;
  background: rgba(0, 194, 255, 0.95);

  border: 1px solid rgba(0, 194, 255, 0.35);
  box-shadow: 0 18px 40px rgba(0,0,0,0.25);

  transition: transform .25s ease, filter .25s ease;
}

.srv-btn:hover{
  transform: translateY(-3px);
  filter: brightness(1.03);
}

/* Responsive */
@media (max-width: 980px){
  .srv-grid{
    grid-template-columns: 1fr;
  }
  .srv-popular{
    transform: none;
  }
}

@media (max-width: 560px){
  .srv-section{
    padding: 120px 14px 70px;
  }
  .srv-cta{
    padding: 22px 16px;
    border-radius: 18px;
  }
  .srv-cta h3{
    font-size: 1.4rem;
  }
  .srv-btn{
    width: 100%;
  }
}

/* =========================================
   CONTACTO (ctc) - estilo como la imagen
   Pegarlo al final del style.css
========================================= */

.ctc-section{
  padding: 120px 20px 90px;
  color: #fff;
}

.ctc-container{
  max-width: 1180px;
  margin: 0 auto;
}

.ctc-title{
  text-align: center;
  margin-bottom: 34px;
}

.ctc-title h2{
  margin: 0;
  font-size: clamp(2.2rem, 4.5vw, 3.2rem);
  font-weight: 900;
  letter-spacing: .3px;
}

.ctc-underline{
  width: 120px;
  height: 6px;
  margin: 14px auto 12px;
  border-radius: 999px;
  background: rgba(0, 194, 255, .95);
}

.ctc-title p{
  margin: 0 auto;
  max-width: 760px;
  opacity: .92;
  line-height: 1.7;
}

.ctc-grid{
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 18px;
  margin-top: 26px;
  align-items: start;
}

/* Tarjeta base (misma vibra que tus cards) */
.ctc-card{
  border-radius: 18px;
  padding: 22px;
  background: rgba(16, 31, 86, 0.38);
  border: 1px solid rgba(255,255,255,0.14);
  box-shadow: 0 22px 50px rgba(0,0,0,0.35);
  backdrop-filter: blur(8px);
}

.ctc-card h3, .ctc-card h4{
  margin: 0 0 14px;
  font-weight: 900;
}

.ctc-form h3{
  font-size: 1.8rem;
}

.ctc-form-grid{
  display: grid;
  gap: 14px;
  margin-top: 12px;
}

.ctc-label{
  display: grid;
  gap: 8px;
}

.ctc-label span{
  font-size: .95rem;
  opacity: .92;
  font-weight: 700;
}

.ctc-input, .ctc-textarea{
  width: 100%;
  padding: 14px 14px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(5, 12, 30, 0.25);
  color: #fff;
  outline: none;
}

.ctc-input::placeholder, .ctc-textarea::placeholder{
  color: rgba(255,255,255,0.55);
}

.ctc-input:focus, .ctc-textarea:focus{
  border-color: rgba(0, 194, 255, .65);
  box-shadow: 0 0 0 4px rgba(0, 194, 255, .12);
}

.ctc-btn{
  margin-top: 6px;
  border: none;
  border-radius: 12px;
  padding: 14px 16px;
  cursor: pointer;
  font-weight: 900;
  color: #fff;
  background: linear-gradient(90deg, rgba(0,194,255,.85), rgba(74,133,255,.85));
  box-shadow: 0 16px 40px rgba(0,0,0,0.25);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.ctc-btn:hover{
  transform: translateY(-1px);
  filter: brightness(1.03);
}

.ctc-btn-icon{
  display: inline-grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 10px;
  background: rgba(0,0,0,0.25);
}

/* Derecha */
.ctc-right{
  display: grid;
  gap: 14px;
}

.ctc-info-row{
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 14px;
  align-items: center;
}

.ctc-ico{
  width: 54px;
  height: 54px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(0, 194, 255, 0.12);
  border: 1px solid rgba(0, 194, 255, 0.22);
  color: #00c2ff;
  font-size: 1.25rem;
}

.ctc-info h4{
  margin: 0 0 6px;
  font-size: 1.1rem;
}

.ctc-info p{
  margin: 0;
  opacity: .92;
  line-height: 1.4;
}

.ctc-small{
  margin-top: 6px !important;
  font-size: .95rem;
  opacity: .85 !important;
}

/* Social */
.ctc-social h4{
  margin-bottom: 12px;
}
.ctc-social-icons{
  display: flex;
  gap: 12px;
}
.ctc-social-btn{
  width: 46px;
  height: 46px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  text-decoration: none;
  color: #fff;
  font-weight: 900;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(0,0,0,0.25);
  transition: transform .2s ease, background .2s ease;
}
.ctc-social-btn:hover{
  transform: translateY(-3px);
  background: rgba(0, 194, 255, 0.18);
}

/* Horarios */
.ctc-hours ul{
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
  opacity: .92;
}
.ctc-hours li span{
  font-weight: 900;
  color: rgba(0, 194, 255, .95);
}

/* ✅ Responsive: celulares */
@media (max-width: 980px){
  .ctc-grid{
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px){
  .ctc-section{
    padding: 105px 14px 70px;
  }
  .ctc-card{
    padding: 18px;
  }
  .ctc-info-row{
    grid-template-columns: 48px 1fr;
  }
  .ctc-ico{
    width: 48px;
    height: 48px;
    border-radius: 12px;
  }
  .ctc-btn{
    width: 100%;
  }
}
/* =========================================
   EXPERIENCIA (exp) - COMPLETO
   (incluye card-glass)
========================================= */

/* base glass reutilizable */
.card-glass{
  border-radius: 22px;
  background: rgba(6, 22, 55, 0.35);
  border: 1px solid rgba(255,255,255,0.16);
  box-shadow: 0 26px 60px rgba(0,0,0,0.45);
  backdrop-filter: blur(8px);
}

/* sección */
.exp-section{
  padding: 120px 20px 90px;
  color: #fff;
}

.exp-container{
  max-width: 1200px;
  margin: 0 auto;
}

/* título */
.exp-title{
  text-align: center;
  margin-bottom: 34px;
}

.exp-title h1{
  margin: 0;
  font-size: clamp(2.6rem, 4.8vw, 3.6rem);
  font-weight: 900;
  letter-spacing: .3px;
}

.exp-title h1 span{
  color: #00c2ff;
}

.exp-underline{
  width: 130px;
  height: 6px;
  margin: 16px auto 14px;
  border-radius: 999px;
  background: rgba(0, 194, 255, .95);
}

.exp-title p{
  margin: 0 auto;
  max-width: 820px;
  line-height: 1.75;
  opacity: .92;
  font-size: 1.05rem;
}

/* card grande */
.exp-profile{
  padding: 26px;
}

/* grid interno */
.exp-profile-grid{
  display: grid;
  grid-template-columns: 170px 1fr;
  gap: 24px;
  align-items: start;
}

/* avatar redondo + tamaño fijo (para que no se agrande raro) */
.exp-avatar{
  width: 150px;
  height: 150px;
  border-radius: 999px;
  overflow: hidden;
  border: 4px solid rgba(0,194,255,0.45);
  box-shadow: 0 20px 55px rgba(0,0,0,0.35);
  margin-top: 6px;
}

.exp-avatar img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* texto del perfil */
.exp-profile-content h2{
  margin: 0;
  font-size: 2rem;
  font-weight: 900;
}

.exp-role{
  margin-top: 6px;
  color: #00c2ff;
  font-weight: 800;
}

.exp-desc{
  margin: 14px 0 18px;
  opacity: .92;
  line-height: 1.7;
}

/* lista de items con icono */
.exp-list{
  display: grid;
  gap: 14px;
}

.exp-item{
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 14px;
  align-items: start;

  padding: 14px 14px;
  border-radius: 16px;

  background: rgba(0,0,0,0.12);
  border: 1px solid rgba(255,255,255,0.10);
}

.exp-ico{
  width: 54px;
  height: 54px;
  border-radius: 14px;
  display: grid;
  place-items: center;

  background: rgba(0, 194, 255, 0.12);
  border: 1px solid rgba(0, 194, 255, 0.22);
  color: #00c2ff;
  font-size: 1.25rem;
}

.exp-item h3{
  margin: 0 0 8px;
  font-size: 1.05rem;
  font-weight: 900;
}

.exp-item p{
  margin: 0;
  opacity: .92;
  line-height: 1.6;
}

/* cards inferiores */
.exp-cards{
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.exp-mini{
  padding: 18px 16px;
  text-align: center;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.exp-mini:hover{
  transform: translateY(-8px);
  border-color: rgba(0,194,255,0.28);
  box-shadow: 0 34px 75px rgba(0,0,0,0.55);
}

.exp-mini-ico{
  width: 62px;
  height: 62px;
  margin: 0 auto 12px;
  border-radius: 16px;
  display: grid;}


