@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Google+Sans:ital,opsz,wght@0,17..18,400..700;1,17..18,400..700&family=Nunito:ital,wght@0,200..1000;1,200..1000&family=Outfit:wght@100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Google+Sans:ital,opsz,wght@0,17..18,400..700;1,17..18,400..700&family=Noto+Sans:ital,wght@0,100..900;1,100..900&family=Nunito:ital,wght@0,200..1000;1,200..1000&family=Outfit:wght@100..900&display=swap");
:root {
  --primary-color: #6E8BFA;
  --secondary-color: #d8d8d8;
  --overlay-color: rgba(0, 0, 0, 0.3);
  --text-color: #333;
  --colornav: rgba(117, 144, 253, 0.959);
  --carousel-max-width: 70%;
  --button-size: 40px;
  --border-radius: 8px;
  --spacing-md: 2rem;
  --spacing-sm: 0.5rem;
  --breakpoint-md: 768px;
  --breakpoint-lg: 1024px;
  --cardscolor: #ffffff28;
  --hover-color: #4a6dfa;
  --colorfooter: #1e3a5f;
  --cardscolor2: #ffffff65;
  --secondary-color2: #ffffff36;
}

.header {
  font-family: "Outfit", sans-serif;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 6em;
  background: linear-gradient(135deg, rgba(30, 58, 95, 0.9058823529) 0%, rgba(44, 85, 138, 0.8980392157) 25%, rgba(90, 132, 187, 0.8980392157) 50%, rgba(64, 112, 175, 0.8980392157) 75%, rgba(44, 85, 138, 0.9058823529) 90%, rgba(30, 58, 95, 0.9098039216) 100%);
  background-size: 200% 200%;
  animation: shine 6s ease-in-out infinite;
  color: var(--secondary-color);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 3em;
  z-index: 1000;
}
@keyframes shine {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
.header .logo {
  display: flex;
  align-items: center;
  font-size: 2rem;
  width: 20%;
  min-width: 120px;
}
.header .nav {
  display: flex;
  justify-content: space-between;
}
.header .nav ul {
  display: flex;
  list-style: none;
  gap: 2em;
  padding: 0;
  margin: 0;
}
.header .nav li {
  transition: transform 0.3s ease;
}
.header .nav li a {
  position: relative;
  color: #fff;
  text-decoration: none;
  font-weight: bold;
}
.header .nav li a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -3px;
  width: 0;
  height: 2px;
  background: #fff;
  transform: translateX(-50%);
  transition: width 0.2s ease;
}
.header .nav li a:hover::after {
  width: 100%;
}

nav ul li:hover {
  transform: scale(1.07);
}

/* Por defecto: desktop visible, mobile oculto */
.nav-desktop {
  display: flex;
}

.nav-mobile {
  display: none;
}

/* 📱 Responsive para móviles */
@media screen and (max-width: 768px) {
  .header {
    flex-direction: column;
    height: auto;
    padding: 1em;
    text-align: center;
  }
  .header .logo {
    width: 100%;
    justify-content: center;
  }
  .header .nav ul {
    flex-direction: column;
    gap: 1em;
  }
  /* Ocultar desktop en mobile */
  .header .nav-desktop {
    display: none;
  }
  /* Mostrar mobile en mobile */
  .header .nav-mobile {
    display: flex;
    flex-direction: column;
    top: 100%;
    right: 0;
    text-align: center;
    padding: 1em 0;
  }
}
@media (prefers-reduced-motion: reduce) {
  .offcanvas {
    transition: transform 0.4s ease, opacity 0.4s ease !important;
  }
}
.offcanvas-body {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  height: 100%;
}

.nav-scope .pe-3 {
  gap: 3em;
}

body {
  font-family: "Outfit", sans-serif;
  font-weight: 400;
  color: var(--text-color);
  margin: 0;
  padding-top: 70px;
  background-color: var(--secondary-color);
}

main {
  opacity: 0;
  transition: opacity 1s ease;
}

.banner {
  text-align: center;
  margin: 4em 0;
  font-family: "Noto Sans", sans-serif;
  font-weight: 300;
  font-size: 1.5rem;
}
.banner h1 {
  display: inline-block;
  max-width: 80%;
  font-weight: 300;
  font-size: 4rem;
  color: var(--text-color);
  font-style: italic;
  margin-bottom: 6%;
}
.banner h3 {
  font-weight: 400;
  font-size: 1.5rem;
  color: var(--text-color);
  margin: 0;
  font-style: italic;
}

body {
  margin: 0;
  background: linear-gradient(to right, #646464 0%, #9e9e9e 20%, #d9d9d9 50%, #9e9e9e 80%, #646464 100%);
}

.texto-secundario {
  max-width: 90%;
  text-align: center;
  margin: 0 auto 4em;
  font-size: 1.2rem;
  line-height: 1.6;
  color: var(--text-color);
}

.services {
  padding: 2em;
  text-align: center;
}
.services h1 h1, .services h3 h1 {
  font-size: 2rem;
}
.services h1, .services h3 {
  margin-bottom: 1em;
  font-weight: 400;
}
.services .service-list {
  display: flex;
  justify-content: space-between;
  gap: 8%;
  max-width: 90%;
  margin: auto;
  flex-wrap: wrap;
}
.services .service {
  flex: 1;
  max-width: 80%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.services .icon {
  width: 5em;
  height: 5em;
  margin-bottom: 1em;
}
.services .buuutn {
  margin-top: 2em;
  padding: 0.8em 1.5em;
  background: var(--primary-color);
  color: #fff;
  border-radius: var(--border-radius);
  border: none;
  cursor: pointer;
  font-weight: bold;
  transition: transform 0.3s ease, background 0.3s ease;
}
.services .buuutn:hover {
  transform: scale(1.05);
  background: var(--hover-color);
}

@media screen and (max-width: 768px) {
  .service-list {
    flex-direction: column;
    gap: 2em;
    max-width: 100%;
  }
  .service {
    max-width: 100%;
    margin-bottom: 2em;
  }
  .icon {
    width: 4em;
    height: 4em;
  }
  .buuutn {
    width: 100%;
    font-size: 1rem;
  }
}
.footer {
  background: var(--colorfooter);
  color: #fff;
  text-align: left;
  padding: 1em;
  display: flex;
  flex-direction: row;
  font-size: 0.8rem;
  margin: 0;
  background: linear-gradient(135deg, #1e3a5f 0%, #2c548a 25%, #4b76ad 50%, #3668aa 75%, #2c548a 90%, #1e3a5f 100%);
  background-size: 200% 200%;
  animation: shine 5s ease-in-out infinite;
}

@keyframes shine {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
.container {
  max-width: 95%;
  margin-left: 1.5em;
  align-content: center;
}

.logo-footer {
  width: 15%;
  border-right: 2px solid white;
}

.margenchico {
  margin: 0.5em 0;
}
.margenchico a {
  color: #fff;
  text-decoration: none;
}

@media screen and (max-width: 768px) {
  .footer {
    flex-direction: column;
    text-align: center;
    font-size: 0.9rem;
    padding: 1.5em;
  }
  .container {
    margin-left: 0;
    max-width: 100%;
  }
  .logo-footer {
    width: 40%;
    border-right: none;
    margin: 0 auto 1em;
  }
  .margenchico {
    margin: 0.8em 0;
  }
}
.carousel {
  position: relative;
  max-width: var(--carousel-max-width);
  margin: var(--spacing-md) auto;
  overflow: hidden;
  border-radius: var(--border-radius);
}
.carousel .carousel-innerisimo {
  display: flex;
  transition: transform 0.5s ease-in-out;
}
.carousel .slide {
  position: relative;
  min-width: 90rem;
  background-color: rgba(0, 0, 0, 0);
  display: flex;
  margin: 1rem 5rem;
  gap: 2rem;
  justify-content: center;
}
.carousel .slide img {
  width: 50%;
  display: block;
}
.carousel .slide .caption {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  position: absolute;
  top: 0;
  left: 5%;
  right: 5%;
  color: white;
  font-size: 2.5rem;
  font-weight: bold;
  text-align: center;
  line-height: 1.4;
  z-index: 2;
}
.carousel .prev, .carousel .next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: var(--button-size);
  height: var(--button-size);
  background: var(--overlay-color);
  color: var(--secondary-color);
  border: none;
  cursor: pointer;
  font-size: 1em;
  border-radius: 50%;
  transition: background 0.3s ease;
  z-index: 3;
}
.carousel .prev:hover, .carousel .next:hover {
  background: rgba(0, 0, 0, 0.6);
}
.carousel .prev {
  left: var(--spacing-sm);
}
.carousel .next {
  right: var(--spacing-sm);
}
.carousel .indicators {
  position: absolute;
  bottom: 1em;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: var(--spacing-sm);
  z-index: 3;
}
.carousel .indicators .dot {
  width: 0.75em;
  height: 0.75em;
  background: var(--overlay-color);
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.3s ease;
}
.carousel .indicators .dot.active {
  background: var(--primary-color);
}
.carousel .indicators .dot:hover {
  background: rgba(255, 255, 255, 0.8);
}

@media screen and (max-width: 768px) {
  .carousel .caption {
    font-size: 1.2rem;
    left: 2%;
    right: 2%;
    text-align: center;
  }
  .carousel .prev,
  .carousel .next {
    width: 2em;
    height: 2em;
    font-size: 0.9em;
  }
  .carousel .indicators .dot {
    width: 0.6em;
    height: 0.6em;
  }
  .carusel-oculto {
    display: none;
  }
}
.titulo-carousel {
  font-size: 2rem;
  text-align: center;
  margin: 1rem 0;
  color: #000000;
  font-weight: 300;
}

.encolumnado {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
  justify-content: center;
  align-items: center;
}

.info {
  text-align: center;
  padding: var(--spacing-md);
  background-color: var(--cardscolor);
  color: var(--text-color);
  max-width: 95%;
  margin: 0 auto;
  border-radius: var(--border-radius);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}
.info .info-header {
  display: flex;
  justify-content: center;
  align-items: center;
}
.info .info-header .info-logo {
  max-width: 25em;
  width: 100%;
  height: auto;
  border-radius: var(--border-radius);
}
.info .columns {
  display: flex;
  justify-content: center;
  gap: var(--spacing-md);
  flex-wrap: wrap;
  max-width: 90%;
  margin: 0 auto;
  text-align: center;
  border-bottom: 2px solid var(--text-color);
}
.info .columns p {
  flex: 1 1 250px;
  font-size: 1.2rem;
  line-height: 1.6;
}

.director-photo {
  width: 10em;
  height: 13.4em;
  border-radius: 15%;
  box-shadow: 0 0 1rem 0 rgba(0, 0, 0, 0.7);
}

div > h4 {
  font-weight: normal;
  margin-top: 0.5em;
}

.secciondirector {
  margin-top: var(--spacing-lg);
  border-bottom: 2px solid var(--text-color);
  max-width: 90%;
  margin-left: auto;
  margin-right: auto;
  border-bottom: 2px solid var(--text-color);
}

@media (max-width: var(--breakpoint-md)) {
  .info .info-logo {
    max-width: 15em;
  }
  .info .columns {
    flex-direction: column;
    align-items: center;
  }
  .info .columns p {
    text-align: center;
    font-size: 1rem;
  }
  .director-photo {
    width: 7em;
    height: 7em;
  }
}
.seccionvalores {
  background-color: var(--cardscolor);
  padding: 1.3rem;
  border-radius: var(--border-radius);
  font-size: 1.2em;
  text-align: left;
  transition: box-shadow 0.1s ease, transform 0.1s ease;
  width: 30rem;
}
.seccionvalores:hover {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  border: 1px solid var(--text-color);
  transform: scale(1.01);
}

.seccionvalores > h3 {
  border-bottom: 2px solid var(--text-color);
  padding: 0.3rem;
}

.container-valores {
  display: flex;
  justify-content: center;
  gap: var(--spacing-md);
  max-width: 90%;
  margin: 3rem auto;
}

@media screen and (min-resolution: 1.25dppx) {
  .seccionvalores {
    font-size: 0.9em;
    width: 24rem;
  }
}
@media screen and (max-width: 768px) {
  .seccionvalores {
    font-size: 0.9em;
    width: 100%;
    margin: 0 3em;
    text-align: center;
  }
  .container-valores {
    flex-direction: column;
    flex-wrap: wrap;
    align-items: center;
    align-content: center;
    gap: 1.5rem;
  }
}
.servicios {
  display: flex;
  justify-content: space-around;
  gap: 2em;
  padding: 3em 2em;
  margin: 0 auto;
  max-width: 1500px;
  flex-wrap: wrap;
}

.tarjeta {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 28em;
  width: 30%;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  background-color: #e5e5e5;
  transition: transform 0.3s ease;
}
.tarjeta:hover {
  transform: translateY(-5px);
}
.tarjeta .contenido {
  padding: 1.5em;
  flex: 1;
}
.tarjeta .contenido h3 {
  color: var(--primary-color);
  font-weight: 700;
  margin-bottom: 1em;
  border-bottom: 2px solid #4a6fa5;
  padding-bottom: 0.5em;
}
.tarjeta .contenido p {
  color: #222;
  line-height: 1.6;
}
.tarjeta .imagen {
  position: relative;
  height: 45%;
  overflow: hidden;
}
.tarjeta .imagen img {
  width: 100%;
  height: 106%;
  object-fit: cover;
}
.tarjeta .imagen::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.4), transparent), linear-gradient(to bottom, rgb(229, 229, 229), transparent);
}

@media screen and (max-width: 768px) {
  .servicios {
    flex-direction: column;
    align-items: center;
    gap: 1.5em;
    padding: 2em 1em;
  }
  .tarjeta {
    width: 90%;
    height: auto;
  }
  .tarjeta .contenido h3 {
    font-size: 1.2rem;
  }
  .tarjeta .contenido p {
    font-size: 1rem;
  }
}
.por-que-elegirnos {
  padding: 2em;
  margin: 2em;
  text-align: center;
  border-top: 2px solid var(--text-color);
}
.por-que-elegirnos h2 {
  color: #1e3a5f;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 2em;
  display: flex;
  align-items: center;
  justify-content: center;
}
.por-que-elegirnos .bloques {
  display: flex;
  justify-content: center;
  gap: 3em;
}
.por-que-elegirnos .bloque {
  background-color: rgba(255, 255, 255, 0.4431372549);
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  padding: 2em;
  width: 90%;
  max-width: 20em;
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.por-que-elegirnos .bloque:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}
.por-que-elegirnos .bloque h3 {
  color: #1e3a5f;
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 1em;
  border-bottom: 2px solid #4a6fa5;
  padding-bottom: 0.5em;
}
.por-que-elegirnos .bloque ul {
  list-style: none;
  padding: 0;
}
.por-que-elegirnos .bloque ul li {
  color: #333;
  margin-bottom: 0.6em;
  position: relative;
  padding-left: 1.2em;
}
.por-que-elegirnos .bloque ul li::before {
  content: "•";
  color: #4a6fa5;
  position: absolute;
  left: 0;
}

.logoabout {
  width: 15%;
}

.tituloapilado {
  display: flex;
  flex-direction: column;
  align-items: center;
}

@media screen and (max-width: 768px) {
  .por-que-elegirnos {
    padding: 1.5em;
    margin: 1em;
  }
  .por-que-elegirnos h2 {
    font-size: 1.5rem;
    margin-bottom: 1.5em;
    text-align: center;
  }
  .por-que-elegirnos .bloques {
    flex-direction: column;
    gap: 1.5em;
  }
  .por-que-elegirnos .bloque {
    width: 100%;
    max-width: none;
    text-align: center;
  }
  .por-que-elegirnos .bloque h3 {
    font-size: 1.1rem;
  }
  .por-que-elegirnos .bloque ul li {
    text-align: left;
    font-size: 0.95rem;
  }
  .logoabout {
    width: 40%;
  }
}
@media screen and (max-width: 768px) {
  h1, h2, h3 {
    font-size: 1.2rem;
  }
  .banner {
    margin: 1.5em 0;
    font-size: 1rem;
  }
  .contenedor-doble {
    flex-direction: column;
    gap: 1em;
  }
}
.container, .info, .servicios, .service-list {
  max-width: 100%;
  overflow-x: hidden;
}

@media screen and (max-width: 768px) {
  .servicios, .service-list, .bloques {
    flex-direction: column;
    align-items: center;
    gap: 1.5em;
  }
}
img, .logo-footer, .info-logo {
  max-width: 100%;
  height: auto;
}

@media screen and (max-width: 768px) {
  .tarjeta {
    width: 90%;
    height: auto;
    margin-bottom: 1.5em;
  }
  .banner h1 {
    font-size: 2rem;
    max-width: 95%;
  }
  .footer {
    flex-direction: column;
    padding: 1.5em;
  }
  .footer .margenchico {
    text-align: center;
  }
}
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 5em;
  background: linear-gradient(135deg, rgba(30, 58, 95, 0.9058823529) 0%, rgba(44, 85, 138, 0.8980392157) 25%, rgba(90, 132, 187, 0.8980392157) 50%, rgba(64, 112, 175, 0.8980392157) 75%, rgba(44, 85, 138, 0.9058823529) 90%, rgba(30, 58, 95, 0.9098039216) 100%);
  background-size: 200% 200%;
  animation: shine 6s ease-in-out infinite;
  color: var(--secondary-color);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 3em;
  z-index: 1000;
}
.header .logo {
  font-size: 1.5rem;
  width: auto;
  min-width: 80px;
}
.header .nav ul {
  display: flex;
  list-style: none;
  gap: 2em;
  padding: 0;
  margin: 0;
}
.header .nav li a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
}
.header {
  /* Botón hamburguesa */
}
.header .hamburger {
  display: none; /* oculto en desktop */
  flex-direction: column;
  justify-content: center;
  cursor: pointer;
}
.header .hamburger span {
  height: 3px;
  width: 25px;
  background: #fff; /* color visible */
  margin: 4px 0;
  border-radius: 2px;
  transition: 0.4s;
}

@media screen and (max-width: 768px) {
  .header {
    height: auto;
    flex-direction: row;
    justify-content: space-between;
  }
  .header .logo {
    font-size: 1.2rem;
  }
  .header .nav ul {
    display: none;
    flex-direction: column;
    background: #1e3a5f;
    position: absolute;
    top: 100%;
    right: 0;
    width: 100%;
    text-align: center;
    padding: 1em 0;
  }
  .header .nav ul.active {
    display: flex;
  }
  .header .hamburger {
    display: flex;
  }
}
.header .logo {
  max-width: 80px;
  height: auto;
}

@media screen and (max-width: 768px) {
  .header .nav ul {
    display: none;
  }
  .header .hamburger {
    display: flex;
    flex-direction: column;
    cursor: pointer;
  }
  .header .hamburger span {
    height: 3px;
    width: 25px;
    background: #fff;
    margin: 4px 0;
  }
}
.bg-body-tertiary {
  background-color: transparent !important;
}

.fondoanimado {
  background: linear-gradient(135deg, rgba(30, 58, 95, 0.9058823529) 0%, rgba(44, 85, 138, 0.8980392157) 25%, rgba(90, 132, 187, 0.8980392157) 50%, rgba(64, 112, 175, 0.8980392157) 75%, rgba(44, 85, 138, 0.9058823529) 90%, rgba(30, 58, 95, 0.9098039216) 100%);
  background-size: 200% 200%;
  animation: shine 10s ease-in-out infinite;
}

.cartaservicio-contenedor {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
  padding: 0 3rem 4rem;
}
@media (max-width: 768px) {
  .cartaservicio-contenedor {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

.cartaservicio-card {
  display: flex;
  background-color: var(--cardscolor2);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.4);
  transition: box-shadow 0.05s ease;
  height: auto;
  width: 35rem;
}
.cartaservicio-card:hover {
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.6);
}

.cartaservicio-imagen {
  flex: 1.5;
  background-color: #444;
  border-right: 2px solid #333;
}
.cartaservicio-imagen img {
  filter: blur(0.2px) brightness(0.9);
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cartaservicio-imagen .imagen1 {
  object-position: 10% center;
}
.cartaservicio-imagen .imagen2 {
  filter: blur(0.5px);
}

.cartaservicio-contenido {
  flex: 2;
  padding: 0.5rem;
  color: #f5f5f5;
}
.cartaservicio-contenido .cartaservicio-titulo {
  font-size: 1.1rem;
  margin: 0.4rem;
  color: #555555;
}
.cartaservicio-contenido .cartaservicio-texto {
  font-size: 0.75rem;
  line-height: 1.3;
  color: #5e5e5e;
  margin: 0rem;
}
.cartaservicio-contenido .cartaservicio-fecha {
  font-size: 0.75rem;
  color: #888;
}

.cartaservicio-tituloprincipal {
  font-size: 1.5rem;
  text-align: center;
  margin: 2rem 20rem;
  padding: 1rem;
  border-bottom: 2px solid #333;
}

.centrar {
  display: flex;
  justify-content: center;
}

@media screen and (max-width: 768px) {
  .cartaservicio-contenedor {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 0 1rem 2rem;
  }
  .cartaservicio-card {
    flex-direction: column;
    width: 100%;
    height: auto;
  }
  .cartaservicio-imagen {
    flex: none;
    width: 100%;
    height: 180px;
    border-right: none;
    border-bottom: 2px solid #333;
  }
  .cartaservicio-imagen img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .cartaservicio-contenido {
    flex: none;
    padding: 1rem;
    text-align: center;
  }
  .cartaservicio-contenido .cartaservicio-titulo {
    font-size: 1rem;
    margin: 0.5rem 0;
  }
  .cartaservicio-contenido .cartaservicio-texto {
    font-size: 0.85rem;
    line-height: 1.4;
    margin-bottom: 0.6rem;
  }
  .cartaservicio-contenido .cartaservicio-fecha {
    font-size: 0.75rem;
  }
  .cartaservicio-tituloprincipal {
    margin: 1.5rem 2rem;
    font-size: 1.3rem;
  }
}
.cartaservicio-card {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  -webkit-tap-highlight-color: transparent;
}
.cartaservicio-card .cartaservicio-detalle {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, opacity 0.4s ease;
  opacity: 0;
  padding: 0 1rem;
  color: #ddd;
  font-size: 0.95rem;
  line-height: 1.5;
  border-top: 1px solid #333;
}
.cartaservicio-card.activo .cartaservicio-detalle {
  max-height: 500px;
  opacity: 1;
}

@media (min-width: 768px) {
  .cartaservicio-card .cartaservicio-detalle {
    max-height: none;
    opacity: 1;
    padding: 0.5rem 2rem 0rem 0rem;
  }
}
.cartaservicio-texto {
  padding-left: 1.2rem;
}

.cliente-logo {
  width: 13%;
}

.container-img {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

.titulo-confian {
  font-size: 1.5rem;
  text-align: center;
  margin: 2rem 20rem;
  padding: 1rem;
  border-bottom: 2px solid #333;
}

@media screen and (max-width: 768px) {
  .cliente-logo {
    width: 27%;
    margin: 0.5em;
  }
  .titulo-confian {
    font-size: 1.2rem;
    margin: 1rem;
  }
  .container-img {
    gap: 1rem;
  }
}
.nuevocarrusel {
  position: relative;
  max-width: 900px;
  margin: 2rem auto;
  overflow: hidden;
  padding: 3rem 6rem;
  background-color: var(--secondary-color2);
  border-radius: var(--border-radius);
  border: 1px solid rgb(170, 170, 170);
}
.nuevocarrusel .nuevocarrusel-inner {
  display: flex;
  transition: transform 0.5s ease-in-out;
}
.nuevocarrusel .nuevocarrusel-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 100%;
  gap: 2rem;
}
.nuevocarrusel .nuevocarrusel-slide .nuevocarrusel-card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  text-align: center;
  padding: 1rem;
  width: 40%;
}
.nuevocarrusel .nuevocarrusel-slide .nuevocarrusel-card img {
  width: 100%;
  height: 35rem;
  object-fit: cover;
  object-position: center;
  border-radius: 8px;
}
.nuevocarrusel .nuevocarrusel-slide .nuevocarrusel-card .img-left {
  object-position: 33% center;
}
.nuevocarrusel .nuevocarrusel-slide .nuevocarrusel-card p {
  margin-top: 0.5rem;
  font-size: 1rem;
  color: #333;
}
.nuevocarrusel .nuevocarrusel-slide .nuevocarrusel-card2 {
  width: 70%;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  text-align: center;
  padding: 1rem;
}
.nuevocarrusel .nuevocarrusel-prev, .nuevocarrusel .nuevocarrusel-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  cursor: pointer;
  font-size: 2rem;
  border-radius: 50%;
  padding: 0.3rem 1rem;
  z-index: 10;
}
.nuevocarrusel .nuevocarrusel-prev {
  left: 10px;
}
.nuevocarrusel .nuevocarrusel-next {
  right: 10px;
}
.nuevocarrusel .nuevocarrusel-indicators {
  text-align: center;
  margin-top: 1rem;
}
.nuevocarrusel .nuevocarrusel-indicators .nuevocarrusel-dot {
  height: 12px;
  width: 12px;
  margin: 0 5px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  cursor: pointer;
  z-index: 20;
}
.nuevocarrusel .nuevocarrusel-indicators .nuevocarrusel-dot.active {
  background-color: #333;
}

.nuevocarrusel::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.3), transparent 8%), linear-gradient(to bottom, rgba(0, 0, 0, 0.3), transparent 8%), linear-gradient(to right, rgba(0, 0, 0, 0.4), transparent 8%), linear-gradient(to left, rgba(0, 0, 0, 0.4), transparent 8%);
}

.colordefondocarousel {
  padding: 2rem 0;
  margin: 1rem 0;
  background-color: var(--secondary-color2);
}

.parte-contacto {
  max-width: 800px;
  margin: 3rem auto;
  padding: 2rem;
  background: #f9f9f9;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.parte-contacto .parte-contacto-titulo {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 2rem;
  color: #003366;
}
.parte-contacto .parte-contacto-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.parte-contacto .parte-contacto-form .parte-contacto-grupo {
  display: flex;
  flex-direction: column;
}
.parte-contacto .parte-contacto-form .parte-contacto-grupo label {
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #333;
}
.parte-contacto .parte-contacto-form .parte-contacto-grupo input, .parte-contacto .parte-contacto-form .parte-contacto-grupo select, .parte-contacto .parte-contacto-form .parte-contacto-grupo textarea {
  padding: 0.8rem;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}
.parte-contacto .parte-contacto-form .parte-contacto-grupo input:focus, .parte-contacto .parte-contacto-form .parte-contacto-grupo select:focus, .parte-contacto .parte-contacto-form .parte-contacto-grupo textarea:focus {
  border-color: #003366;
  outline: none;
}
.parte-contacto .parte-contacto-form .parte-contacto-btn {
  align-self: center;
  background: #003366;
  color: #fff;
  padding: 0.8rem 2rem;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s ease;
}
.parte-contacto .parte-contacto-form .parte-contacto-btn:hover {
  background: #0055aa;
}

/*# sourceMappingURL=main.css.map */
