/* ═══════════════════════════════════════
   servicios.css · Roch's
   Paleta: #07072B · #183672 · #09AA93 · #fff
   ═══════════════════════════════════════ */

/* ── Variables & Reset ── */
:root {
  --navy:   #07072B;
  --navy2:  #183672;
  --teal:   #09AA93;
  --teal2:  #0F6C80;
  --ice:    #A8D7E8;
  --bg:     #F6F8FB;
  --white:  #ffffff;
  --ink:    #0E1720;
  --muted:  rgba(14,23,32,.58);
  --card-shadow: 0 14px 32px rgba(0,0,0,.09);
  --radius: 20px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: 'Arial', sans-serif;
  background: var(--bg);
  color: var(--ink);
}

/* ── NAV (igual al home) ── */
.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1% 1%;
  background-color: var(--navy);
  position: sticky;
  top: 0;
  z-index: 1000;
}
header .logo img { height: 50px; width: auto; margin-left: 60%; }
nav ul { list-style: none; display: flex; margin: 0; padding: 0; }
nav ul li { margin: 0 15px; }
nav ul li a {
  text-decoration: none;
  color: #fff;
  font-size: 16px;
  padding: 7px 2px;
  border-radius: 5px;
  transition: background-color .3s, color .3s;
}
nav ul li a:hover { background-color: #66B2FF; color: #003366; }
.nav-active { border-bottom: 2px solid var(--teal); }

.menu-toggle {
  display: none;
  cursor: pointer;
  background: none;
  border: none;
  font-size: 28px;
  color: #fff;
  position: absolute;
  top: 15px;
  right: 20px;
  z-index: 1100;
}

@media (max-width: 768px) {
  .menu-toggle { display: block; }
  nav ul {
    display: none;
    flex-direction: column;
    align-items: center;
    background-color: #13508b;
    position: absolute;
    top: 60px; left: 0;
    width: 100%;
    padding: 10px 0;
  }
  nav ul.active { display: flex; }
  nav ul li { margin: 10px 0; }
}

/* Large Logo Section Styles */
.large-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px 0;
    background-color: #ffffff; /* Fondo blanco para destacar el logo */
}

.large-logo img {
    width: 200px; /* Tamaño del logo grande */
    max-width: 100%;
    height: auto;
}



 /* Section Inicio */

.hero{
  position: relative;
  height: 520px;          /* ajusta */
  overflow: hidden;
  border-radius: 0px;    /* opcional */
}

.hero__bg{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 140%;
  object-fit: cover;      /* clave para que se vea pro */
  object-position: right center;
  transform: scale(1.02); /* leve zoom para evitar bordes */
}

.hero__overlay{
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  padding: 42px;
  /* Esto es el “oscurecido” para que el texto se lea */
  background: linear-gradient(
    90deg,
    rgba(7,7,43,.78) 0%,
    rgba(7,7,43,.55) 42%,
    rgba(7,7,43,.10) 75%,
    rgba(7,7,43,.00) 100%
  );
}

.hero__content{
  max-width: 520px;
  color: #F2F7FF;
  text-align: left;
}

.hero__title{
  margin: 0;
  font-size: 54px;
  line-height: 1.02;
  font-weight: 900;
}

.hero__kicker{
  font-weight: 950;
  margin-right: 45%;
}

.hero__accent{
  color: #A8D7E8; /* celeste claro Roch’s */
  font-weight: 950;
}

.hero__text{
  margin-top: 14px;
  font-size: 16px;
  opacity: .85;
}

.hero__cta{
  margin-top: 18px;
  display: flex;
  gap: 12px;
}

.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 14px;
  font-weight: 900;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,.14);
  color: #F2F7FF;
}

.btn--primary{
  background: rgba(9,170,147,.35);
  border-color: rgba(9,170,147,.55);
}

.btn--ghost{
  background: rgba(255,255,255,.06);
}

.hero__stats{
  margin-top: 22px;
  display: flex;
  gap: 16px;
}

.stat{
  display: flex;
  gap: 10px;
  align-items: baseline;
  padding: 10px 12px;
  border-radius: 16px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  backdrop-filter: blur(8px);
}

.stat__num{
  font-size: 28px;
  font-weight: 950;
  color: #A8D7E8;
}

.stat__txt{
  font-size: 12px;
  opacity: .85;
  line-height: 1.1;
}

/* responsive rápido */
@media (max-width: 820px){
  .hero{ height: 620px; }
  .hero__overlay{ padding: 26px; background: rgba(7,7,43,.65); }
  .hero__title{ font-size: 40px; }
  .hero__bg{ object-position: 70% center; }
  .hero__stats{ flex-wrap: wrap; }
}
/* Final de Section Inicio*/
/* Inicio de Section Servicios*/
:root{
  --rochs-navy:#07072B;
  --rochs-navy2:#183672;
  --rochs-teal:#0F6C80;   /* teal del botón */
  --rochs-ice:#A8D7E8;

  --ink:#0E1720;
  --muted: rgba(14,23,32,.62);

  --card-shadow: 0 14px 28px rgba(0,0,0,.10);
  --card-shadow-hover: 0 22px 44px rgba(0,0,0,.16);
}

.rochs-services{
  /* fondo CLARO, nada de glass */
  background: #F6F8FB;
  padding: 56px 0 64px;
}

.rochs-services__container{
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.rochs-services__head{
  display:flex;
  align-items:center;
  justify-content:center;
  gap: 14px;
}

.rochs-services__rule{
  width: 120px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(15,108,128,.35), transparent);
}

.rochs-services__title{
  margin: 0;
  font-size: 38px;
  line-height: 1.1;
  color: var(--ink);
  font-weight: 900;
  letter-spacing: -0.3px;
}

.rochs-services__sub{
  margin: 10px 0 0;
  text-align:center;
  color: var(--muted);
  font-size: 14px;
}

.rochs-services__grid{
  margin-top: 26px;
  display:grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

/* CARD (sin blur) */
.rochs-card{
  background: #fff;
  border: 1px solid rgba(0,0,0,.06);
  border-radius: 18px;
  padding: 18px 18px 16px;
  box-shadow: var(--card-shadow);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;

  /* IMPORTANTÍSIMO: matar cualquier blur heredado */
  backdrop-filter: none !important;
  filter: none !important;

  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
  will-change: transform;
}

.rochs-card:hover{
  transform: translateY(-7px);
  box-shadow: var(--card-shadow-hover);
  border-color: rgba(15,108,128,.18);
}

.rochs-card__icon{
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display:grid;
  place-items:center;
  margin: 0 0 10px 0; /* iconito arriba a la izquierda */
  background: #F3FAFC;
  border: 1px solid rgba(15,108,128,.12);
  font-size: 22px;
}

.rochs-card__h{
  margin: 6px 0 6px;
  font-size: 15px;
  line-height: 1.25;
  color: var(--ink);
  font-weight: 900;
}

.rochs-card__p{
  margin: 0;
  font-size: 13px;
  color: var(--muted);
}

/* CTA */
.rochs-services__cta{
  display:flex;
  justify-content:center;
  margin-top: 4%;
}

/* Botón sin difuminado */
.rochs-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 12px 26px;
  border-radius: 14px;
  background: var(--rochs-teal);
  color: #fff;
  text-decoration:none;
  font-weight: 900;
  letter-spacing: .2px;
  border: 1px solid rgba(0,0,0,.08);

  /* Mata glow/blurs */
  box-shadow: none !important;
  filter: none !important;
  backdrop-filter: none !important;
  text-shadow: none !important;

  transition: transform .12s ease, background .12s ease;
}

.rochs-btn:hover{
  transform: translateY(-1px);
  background: #0C5E70;
}

/* Responsive */
@media (max-width: 980px){
  .rochs-services__grid{ grid-template-columns: 1fr 1fr; }
  .rochs-services__title{ font-size: 32px; }
}
@media (max-width: 560px){
  .rochs-services__grid{ grid-template-columns: 1fr 1fr; gap: 12px; }
  .rochs-services__rule{ width: 70px; }
  .rochs-card{ padding: 14px 12px; }
}
/* Final de Section Servicios*/

/* Inicio de Section Conversemos*/
/* Mid Hero (reutilizable, sin choque con .hero) */
.midhero{
  position: relative;
  height: 520px;      /* ajusta si quieres */
  overflow: hidden;
  border-radius: 0px;
}

.midhero__bg{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 140%;              /* MISMO comportamiento que tu hero */
  object-fit: cover;
  object-position: right center;
  transform: scale(1.02);
}

.midhero__overlay{
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  padding: 42px;
  background: linear-gradient(
    90deg,
    rgba(7,7,43,.78) 0%,
    rgba(7,7,43,.55) 42%,
    rgba(7,7,43,.10) 75%,
    rgba(7,7,43,.00) 100%
  );
}

.midhero__content{
  max-width: 520px;
  color: #F2F7FF;
  text-align: left;
}

.midhero__title{
  margin: 0;
  font-size: 35px;
  line-height: 1.02;
  font-weight: 900;
}

.midhero__kicker{
  font-weight: 100;
  margin-right: 50%;
}

.midhero__accent{
  color: #A8D7E8;
  font-weight: 100;
}

.midhero__text{
  margin-top: 14px;
  font-size: 16px;
  opacity: .85;
}

.midhero__cta{
  margin-top: 18px;
  display: flex;
  gap: 12px;
}

.midbtn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 14px;
  font-weight: 900;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,.14);
  color: #F2F7FF;
}

.midbtn--primary{
  background: rgba(9,170,147,.35);
  border-color: rgba(9,170,147,.55);
}

.midbtn--ghost{
  background: rgba(255,255,255,.06);
}

.midhero__stats{
  margin-top: 22px;
  display: flex;
  gap: 16px;
}

.midstat{
  display: flex;
  gap: 10px;
  align-items: baseline;
  padding: 10px 12px;
  border-radius: 16px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  backdrop-filter: blur(8px);
}

.midstat__num{
  font-size: 28px;
  font-weight: 950;
  color: #A8D7E8;
}

.midstat__txt{
  font-size: 12px;
  opacity: .85;
  line-height: 1.1;
}

/* Responsive */
@media (max-width: 820px){
  .midhero{ height: 620px; }
  .midhero__overlay{ padding: 26px; background: rgba(7,7,43,.65); }
  .midhero__title{ font-size: 40px; }
  .midhero__bg{ object-position: 70% center; }
  .midhero__stats{ flex-wrap: wrap; }
}
/* Inicio de Section Marcas*/

/* Final de Section Marcas*/
.clientsStrip{
  background: #EEF2F6;                 /* gris claro como la referencia */
  border-top: 1px solid rgba(0,0,0,.06);
  border-bottom: 1px solid rgba(0,0,0,.06);
  padding: 14px 0;
}

.clientsStrip__inner{
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.svcTitle{
  display:flex;
  align-items:center;
  justify-content:center;
  gap: 18px;
  margin: 0 auto;
  margin-top: 3%;
  margin-bottom: 3%;
}

.svcTitle__text{
  margin: 0;
  font-size: 42px;        /* ajusta si quieres */
  font-weight: 950;
  color: #0E1720;
  letter-spacing: -0.3px;
  text-align: center;
}

.svcTitle__line{
  height: 2px;
  width: min(220px, 22vw); /* líneas adaptativas */
  background: linear-gradient(
    90deg,
    transparent,
    rgba(102,178,255,.55),
    transparent
  );
  border-radius: 999px;
}

/* responsive */
@media (max-width: 720px){
  .svcTitle__text{ font-size: 32px; }
  .svcTitle__line{ width: min(140px, 18vw); }
}

/* fila de logos */
.clientsStrip__row{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  flex-wrap: nowrap;
  overflow-x: auto;                     /* si no caben, scroll */
  padding-bottom: 6px;
  margin-bottom: 3%;
}

/* oculta scrollbar fea (sin romper) */
.clientsStrip__row::-webkit-scrollbar{
  height: 8px;
}
.clientsStrip__row::-webkit-scrollbar-thumb{
  background: rgba(0,0,0,.12);
  border-radius: 999px;
}
.clientsStrip__row::-webkit-scrollbar-track{
  background: transparent;
}

/* Fila: sin scrollbar en desktop */
.clientsStrip__row{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  flex-wrap: nowrap;

  overflow-x: hidden;   /* <-- clave: evita que aparezca la barra */
  overflow-y: visible;  /* permite “lift” del hover */
  padding-bottom: 0;    /* ya no necesitamos espacio para scrollbar */
}

/* Logo: redondeado con card blanca */
.clientsStrip__logo{
  flex: 1 1 0;
  min-width: 0;
  max-width: calc((100% - 5 * 16px) / 6);
  height: 90px;
  object-fit: contain;
  padding: 14px 12px;

  background: #fff;
  border-radius: 16px;
  border: 1px solid rgba(0,0,0,.06);
  box-shadow: 0 4px 12px rgba(0,0,0,.07);

  opacity: 1;
  filter: none;
  transform: translateY(0);
  transition: transform .18s ease, box-shadow .18s ease;
  cursor: pointer;
}

.clientsStrip__logo:hover{
  opacity: 1;
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0,0,0,.12);
}

/* En móvil: scroll horizontal, logos redondeados con tamaño fijo */
@media (max-width: 720px){
  .clientsStrip__row{
    justify-content: flex-start;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    gap: 12px;
    padding-bottom: 8px;
  }
  .clientsStrip__logo{
    flex: 0 0 auto;
    min-width: 100px;
    max-width: 100px;
    height: 80px;
    border-radius: 16px;
    padding: 10px 8px;
  }
}
/* Final de Section Marcas*/

/* ── BOTÓN CATÁLOGO ── */
.catalog-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 32px 0 36px;
}

.catalog-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 36px;
  border-radius: 14px;
  background: var(--rochs-teal);
  color: #fff;
  text-decoration: none;
  font-weight: 900;
  font-size: 16px;
  letter-spacing: .2px;
  border: 1px solid rgba(0,0,0,.08);
  box-shadow: 0 8px 24px rgba(15,108,128,.25);
  transition: transform .15s ease, background .15s ease, box-shadow .15s ease;
}

.catalog-btn:hover {
  transform: translateY(-2px);
  background: #0C5E70;
  box-shadow: 0 14px 32px rgba(15,108,128,.35);
}

.catalog-cta__note {
  font-size: 13px;
  color: var(--muted);
  text-align: center;
}

/* FOOTER */

#footer {
  background-color: #07072B;
  color: #f1f1f1;
  padding: 50px 20px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.footer-container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 15px;
  text-align: center;
}

#footer h2 {
  font-size: 25px;
  margin-bottom: 25px;
  color: #ffffff;
  margin-top: -1%;

}

.social-links {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 30px;
}

.social-links a img {
  width: 45px;
  height: 45px;
  transition: transform 0.3s ease, filter 0.3s ease;
}

.social-links a img:hover {
  transform: scale(1.15);
}

/* Texto final */
.footer-copy {
  font-size: 14px;
  color: #fff;
  margin-top: 20px;
  margin-bottom: -1%;
}

/* FOOTER END */

@media (max-width: 600px) {
  #footer {
    padding: 30px 15px;
  }

  #footer h2 {
    font-size: 20px;
    margin-bottom: 20px;
  }

  .social-links {
    flex-direction: row;
    align-items: center;
    gap: 15px;
    margin-bottom: 5%;
  }

  .social-links a img {
    width: 40px;
    height: 40px;
  }

  .footer-copy {
    font-size: 12px;
    line-height: 1.4;
    margin-bottom: 10%;
  }
}


/* Evita que headers internos hereden estilos del NAV */
section header{ background: transparent; }