:root {
  --color-red-500: oklch(.637 .237 25.331);
  --color-green-50: oklch(.982 .018 155.826);
  --color-green-200: oklch(.925 .084 155.995);
  --color-green-500: oklch(.723 .219 149.579);
  --color-green-600: oklch(.627 .194 149.214);
  --color-green-700: oklch(.527 .154 150.069);
  --color-green-900: oklch(.393 .095 152.535);
  --color-blue-50: oklch(.97 .014 254.604);
  --color-blue-100: oklch(.932 .032 255.585);
  --color-blue-200: oklch(.882 .059 254.128);
  --color-blue-300: oklch(.809 .105 251.813);
  --color-blue-400: oklch(.707 .165 254.624);
  --color-blue-500: oklch(.623 .214 259.815);
  --color-blue-600: oklch(.546 .245 262.881);
  --color-blue-700: oklch(.488 .243 264.376);
  --color-blue-800: oklch(.424 .199 265.638);
  --color-blue-900: oklch(.379 .146 265.522);
  --color-gray-50: oklch(.985 .002 247.839);
  --color-gray-100: oklch(.967 .003 264.542);
  --color-gray-200: oklch(.928 .006 264.531);
  --color-gray-300: oklch(.872 .01 258.338);
  --color-gray-500: oklch(.551 .027 264.364);
  --color-gray-600: oklch(.446 .03 256.802);
  --color-gray-700: oklch(.373 .034 259.733);
  --color-white: #fff;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;

  font-family: system-ui, sans-serif;
}

html {
  scroll-behavior: smooth;
  min-width: 384px;
}

.container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

.whatsapp-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.whatsapp-btn img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
}

.whatsapp-tooltip {
  position: absolute;
  bottom: 70px;
  right: 0;
  background-color: #25D366;
  color: white;
  padding: 8px 12px;
  border-radius: 4px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}

.whatsapp-btn:hover .whatsapp-tooltip {
  opacity: 1;
}

/* Encabezado */
.navbar {
  width: 100%;
  position: fixed;
  top: 0;
  background: #ffffff;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  z-index: 10;
  opacity: 0;
  animation: slideDown 0.2s ease-out forwards;
  animation-delay: 0.5s;
}

@keyframes slideDown {
  0% {
    transform: translateY(-100px);
    opacity: 0;
  }

  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

.menu ul li a {
  position: relative;
  text-decoration: none;
  color: #1c1d1f;
  font-weight: 500;
  padding-bottom: 4px;
  transition: color 0.3s ease;
}

.menu ul li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0%;
  height: 2px;
  background-color: #0057ff;
  transition: width 0.3s ease;
}

.menu ul li a:hover {
  color: #0057ff;
}

.menu ul li a:hover::after {
  width: 100%;
}

.menu ul li a.active {
  color: #0057ff;
}

.menu ul li a.active::after {
  width: 100%;
}


.nav-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100% !important;
  margin: auto;
  max-width: 1472px;
  height: 80px;
  padding: 0px 32px !important;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-img {
  width: 50px;
  height: 50px;
  object-fit: contain;
}


.logo-text h1 {
  font-size: 16px;
  color: var(--color-blue-800);
  font-weight: 400;
}

.logo-text p {
  font-size: 0.8rem;
  color: #777;
}

/* Menu */
.menu ul {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.menu a {
  font-family: system-ui, sans-serif;
  text-decoration: none;
  color: var(--color-gray-700);
  font-weight: 500;
  transition: color 0.3s;
}

.menu a:hover {
  color: #0056d2;
}

.btn-primary {
  background: var(--color-blue-600);
  color: var(--color-white);
  padding: 12px 24px;
  border-radius: 6px;
  text-decoration: none;
  transition: transform 0.3s ease, background-color 0.3s ease;
  display: inline-block;
}

.btn-primary:hover {
  transform: translateY(-2px) scale(1.03);
  background-color: var(--color-blue-700);
}


.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  font-size: 24px;
}

.mobile-menu {
  display: none;
  position: absolute;
  top: 80px;
  left: 0;
  right: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(4px);
  box-shadow: 0 8px 20px rgba(8, 15, 32, 0.06);
  z-index: 55;
  padding: 8px 0 20px 0;
  transform: translateY(-15px);
  opacity: 0;
  transition: transform 0.28s cubic-bezier(.25, .1, .25, 1),
    opacity 0.28s ease;
}

.mobile-menu.open {
  display: block;
  transform: translateY(0);
  opacity: 1;
}

.mobile-menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mobile-menu ul li {
  margin: 0;
}

.mobile-menu ul li a,
.mobile-menu ul li button {
  display: block;
  width: 100%;
  text-align: left;
  padding: 12px 16px;
  font-size: 1rem;
  color: #1f2937;
  background: transparent;
  border: none;
  text-decoration: none;
  font-weight: 500;
  transition: background 0.18s ease, color 0.18s ease;
  border-radius: 6px;
  box-sizing: border-box;
}

.mobile-menu ul li a:hover,
.mobile-menu ul li button:hover {
  background: #eff6ff;
  color: #1e40af;
}

.mobile-menu ul li a {
  position: relative;
  padding-bottom: 6px;
}

.mobile-menu ul li a::after {
  content: "";
  position: absolute;
  left: 16px;
  bottom: 8px;
  width: 0%;
  height: 2px;
  background-color: #0b5cff;
  transition: width 0.25s ease;
}

.mobile-menu ul li a:hover::after,
.mobile-menu ul li a.active::after {
  width: calc(100% - 32px);
}

.mobile-menu a.active,
.mobile-menu a.active:hover {
  color: #0b5cff;
}

@media (max-width: 1400px) {

  .nav-content {
    max-width: 1216px;
  }

}

@media (max-width: 1200px) {

  .nav-content {
    max-width: 960px;
  }
}

@media (max-width: 1024px) {

  .nav-content {
    max-width: 760px;
  }
}

@media (max-width: 768px) {

  .menu-toggle {
    display: inline-flex;
    align-items: cent er;
    justify-content: center;
    font-size: 28px;
    padding: 10px;
  }

  .menu,
  .btn-primary.desktop {
    display: none !important;
  }

  .mobile-menu {
    display: none;
    position: absolute;
    top: 80px;
    left: 0;
    right: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(4px);
    box-shadow: 0 8px 20px rgba(8, 15, 32, 0.06);
    z-index: 55;
    padding: 20px 16px;
    flex-direction: column;
    gap: 8px;
    transform: translateY(-15px);
    opacity: 0;
    transition: transform 0.28s cubic-bezier(.25, .1, .25, 1), opacity 0.28s ease;
  }

  .mobile-menu.open {
    display: flex;
    transform: translateY(0);
    opacity: 1;
  }

  .mobile-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
  }

  .mobile-menu ul li a {
    display: block;
    width: 100%;
    padding: 12px 16px;
    font-size: 16px;
    color: #1f2937;
    text-decoration: none;
    border-radius: 6px;
    transition: background 0.18s ease, color 0.18s ease;
  }

  .mobile-menu ul li a:hover {
    background: #eff6ff;
    color: #1e40af;
  }
}


@media (max-width: 480px) {

  .menu-toggle {
    font-size: 28px;
    padding: 10px;
  }

  .mobile-menu {
    width: 100%;
    max-width: none;
    padding: 30px 20px;
  }

  .mobile-menu ul li a {
    font-size: 18px;
    padding: 14px 0;
  }
}

.hero {
  height: 650px;
  background: url('../img/banner.jpg') center/cover no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  z-index: 0;
  margin-top: 80px;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #107086;
  opacity: 0.9;
  z-index: 1;
}

.scroll-down {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  color: color-mix(in oklch, var(--color-white) 70%, transparent);
  cursor: pointer;
  z-index: 3;
  animation: floatArrow 2.5s ease-in-out infinite;
}

.scroll-down i {
  font-size: 26px;
}

@keyframes floatArrow {
  0% {
    transform: translateX(-50%) translateY(0);
  }

  50% {
    transform: translateX(-50%) translateY(-10px);
  }

  100% {
    transform: translateX(-50%) translateY(0);
  }
}



.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  padding: 0 1rem;
  animation: fadeUp 0.9s ease-out forwards;
  opacity: 0;
}

@keyframes fadeUp {
  0% {
    transform: translateY(50px);
    opacity: 0;
  }

  100% {
    transform: translateY(0);
    opacity: 1;
  }
}


.hero-content h2 {
  font-size: 72px;
  margin-bottom: 1.5rem;
  font-weight: 400;
  line-height: 72px;
  color: #fff;
}

.hero-content p {
  font-size: 24px;
  margin-bottom: 4rem;
  line-height: 32px;
  color: #fff;
}

.btn-secondary {
  font-size: 16px;
  line-height: 24px;
  background: #fff;
  color: var(--color-blue-900);
  padding: 16px 32px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 400;
  transition: transform 0.3s ease, background-color 0.3s ease;
  display: inline-block;
}

.btn-secondary:hover {
  transform: translateY(-2px) scale(1.03);
  background-color: var(--color-blue-50);
}

/* Responsive hero */
@media (max-width: 1400px) {}

@media (max-width: 1200px) {}

@media (max-width: 1024px) {}

@media (max-width: 768px) {

  .hero-content {
    max-width: 592px;
    padding: 0 24px;
  }

  .hero-content h2 {
    font-size: 48px;
    line-height: 48px;
    margin-bottom: 24px;
  }

  .hero-content p {
    font-size: 20px;
    line-height: 28px;
    margin-bottom: 48px;
  }
}


/* Seccion Carrusel*/
.section-carousel {
  width: 100%;
  padding: 100px 0;
  background: var(--color-gray-50);
}

.carousel-container {
  width: 90%;
  max-width: 1400px;
  margin: 0 auto;
}

.carousel-header {
  text-align: center;
  margin-bottom: 56px;
}

.carousel-title {
  font-size: 48px;
  line-height: 48px;
  margin-bottom: 16px;
  color: var(--color-blue-900);
  font-weight: 400;
}

.carousel-wrapper {
  overflow: hidden;
  width: 100%;
  max-width: calc((410px * 3) + (30px * 2));
  margin: 0 auto;
  position: relative;
}

.carousel-track {
  display: flex;
  gap: 30px;
  transition: transform 0.4s ease;
}

.carousel-item {
  min-width: min(410px, 100%);
  height: 400px;
  border-radius: 18px;
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
}

.carousel-item:hover .card-number {
  opacity: 1;
}

.carousel-image {
  position: relative;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.4s ease;
}

.carousel-item:hover .carousel-image {
  transform: scale(1.11);
}

.card-number {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 48px;
  height: 48px;
  background: #107086;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 16px;
  font-weight: 600;
  opacity: 0.8;
  transition: opacity 0.3s ease;
  z-index: 15;
}

.carousel-image video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  transform: translate(-50%, -50%);
  object-fit: cover;
  object-position: center;
  border-radius: inherit;
}

.carousel-image::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
      rgba(0, 0, 0, 0.90),
      rgba(0, 0, 0, 0.50),
      rgba(0, 0, 0, 0));
  z-index: 2;
  pointer-events: none;
}

.carousel-content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 25px;
  color: white;
  z-index: 10;
  transition: transform 0.4s ease;
  transform: translateY(0px);
}

.carousel-item:hover .carousel-content {
  transform: translateY(-10px);
}

.line {
  width: 48px;
  height: 4px;
  background: var(--color-blue-500);
  margin-bottom: 16px;
  transition: width 0.3s ease;
}

.carousel-item:hover .line {
  width: 94px;
}

.content-title {
  font-size: 20px;
  margin-bottom: 8px;
  font-weight: 600;
}

.content-desc {
  font-size: 14px;
  opacity: 0.9;
  color: #e5e5e5;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: none;
  background: var(--color-white);
  color: #13B6CB;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.18);
  cursor: pointer;
  font-size: 16px;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition:
    background-color 0.3s ease,
    color 0.3s ease,
    transform 0.25s ease,
    box-shadow 0.3s ease;
}

.prev-btn {
  left: 10px;
}

.next-btn {
  right: 10px;
}

.carousel-btn:hover {
  background: #13B6CB;
  color: white;
  transform: translateY(-50%) scale(1.12);
  box-shadow: 0 10px 18px rgba(0, 0, 0, 0.28);
}

.carousel-btn:disabled {
  opacity: 0.45;
  cursor: not-allowed;
  transform: translateY(-50%);
  box-shadow: none;
}

.carousel-dots {
  margin-top: 25px;
  display: flex;
  justify-content: center;
  gap: 10px;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 5px;
  background: #b5c4e3;
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot.active {
  background: #13B6CB;
  width: 32px;
  height: 8px;
}

/* Responsive Carrusel */
@media screen and (max-width: 1400px) {
  .section-carousel {
    padding: 100px 20px;
  }

  .carousel-container {
    width: 95%;
    margin: 0 auto;
  }

  .carousel-wrapper {
    max-width: calc((360px * 3) + (30px * 2));
  }

  .carousel-item {
    min-width: 360px;
    height: 400px;
  }

  .carousel-btn {
    width: 48px;
    height: 48px;
  }

  .dot {
    width: 8px;
    height: 8px;
  }

  .dot.active {
    width: 32px;
    height: 8px;
  }
}

@media screen and (max-width: 1200px) {
  .section-carousel {
    padding: 100px 16px;
  }

  .carousel-container {
    width: 95%;
    margin: 0 auto;
  }

  .carousel-wrapper {
    max-width: calc((278px * 3) + (30px * 2));
  }

  .carousel-item {
    min-width: 278px;
    height: 400px;
  }

  .carousel-btn {
    width: 48px;
    height: 48px;
  }

  .dot {
    width: 8px;
    height: 8px;
  }

  .dot.active {
    width: 32px;
    height: 8px;
  }
}

@media screen and (max-width: 1024px) {
  .section-carousel {
    padding: 80px 16px;
  }

  .carousel-container {
    width: 95%;
    margin: 0 auto;
  }

  .carousel-wrapper {
    max-width: calc((305px * 2) + 30px);
    margin: 0 auto;
  }

  .carousel-item {
    min-width: 305px;
    height: 400px;
  }

  .carousel-btn {
    width: 44px;
    height: 44px;
  }

  .dot {
    width: 8px;
    height: 8px;
  }

  .dot.active {
    width: 32px;
    height: 8px;
  }
}

@media screen and (max-width: 768px) {
  .section-carousel {
    padding: 60px 12px;
  }

  .carousel-container {
    width: 95%;
    margin: 0 auto;
  }

  .carousel-wrapper {
    max-width: 90%;
    margin: 0 auto;
  }

  .carousel-title {
    font-size: 36px;
    line-height: 40px;
  }

  .carousel-item {
    width: 100%;
    height: auto;
    aspect-ratio: 496 / 400;
  }

  .carousel-btn {
    width: 40px;
    height: 40px;
  }

  .dot {
    width: 6px;
    height: 6px;
  }

  .dot.active {
    width: 24px;
    height: 6px;
  }
}

/* Seccion Servicios*/
.services {
  padding: 100px 0px;
  background: var(--color-gray-50);
  text-align: center;
}

.services h2 {
  font-size: 48px;
  line-height: 48px;
  color: var(--color-blue-900);
  margin-bottom: 16px;
  font-weight: 400;
}

.section-subtitle {
  color: var(--color-gray-600);
  font-weight: 400;
  font-size: 20px;
  line-height: 28px;
  margin-bottom: 3.5rem;
  text-align: center;
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
  width: 90%;
  max-width: 900px;
  margin: auto;
}

.service-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  color: white;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: height 0.4s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  height: 290px;
  transform: translateY(-5px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

.card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #107086;
  opacity: 0.8;
  z-index: 1;
}

.service-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 1rem;
  padding-left: 3rem;
  text-align: left;
  height: 100%;
  margin-top: 105px;
}

.service-header {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.service-header h3 {
  font-size: 1.6rem;
  font-weight: 500;
  color: #fff;
  margin: 0;
}

/* Ícono */
.icon {
  font-size: 2.5rem;
  color: #fff;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.service-card:hover .icon {
  transform: scale(1.18);
}

.service-content h3 {
  font-size: 30px;
  line-height: 36px;
  font-weight: 400;
  color: #fff;
}

.description,
.card-button {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.service-card:hover .description,
.service-card:hover .card-button {
  opacity: 1;
  transform: translateY(0);
}

.description {
  line-height: 28px;
  font-weight: 400;
  font-size: 18px;
  margin-top: 0.3rem;
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

.reveal.show {
  opacity: 1;
  transform: translateY(0);
}


/* ===== Botón ===== */
.card-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 0.5rem;
  padding: 12px 24px;
  background-color: var(--color-white);
  color: var(--color-blue-900);
  border-radius: 10px;
  text-decoration: none;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  transition:
    background-color 0.3s ease,
    padding-right 0.3s ease;
}

.card-button:hover {
  background-color: var(--color-blue-50);
}

.arrow-icon {
  font-size: 13px;
  transition: transform 0.3s ease;
  margin-left: 5px;
}

.card-button:hover {
  padding-right: 30px;
}

.card-button:hover .arrow-icon {
  transform: translateX(6px);
}

@media (max-width: 1024px) {

  .services {
    padding: 80px 0;
  }

  .service-list {
    width: 92%;
    max-width: 850px;
    gap: 1.5rem;
  }

  .service-card {
    height: 150px;
  }

  .service-card:hover {
    height: 270px;
    transform: translateY(-5px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
  }

  .service-content {
    padding-left: 2.5rem;
    margin-top: 110px;
    padding-right: 2rem;
    gap: 0.8rem;
  }

}

@media (max-width: 768px) {

  #servicios .container {
    padding: 0 1.2rem;
  }

  #servicios h2 {
    font-size: 30px;
    line-height: 38px;
  }

  .section-subtitle {
    font-size: 17px;
  }

  .service-list {
    gap: 2rem;
  }

  .service-card {
    height: 130px;
  }

  .service-card:hover {
    height: 250px;
    transform: translateY(-5px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
  }


  .service-content {
    padding-left: 1.8rem;
    padding-right: 1.5rem;
    margin-top: 95px;
    gap: 0.6rem;
  }

  .service-header {
    gap: 0.7rem;
  }

  .service-content h3 {
    font-size: 22px;
    line-height: 28px;
  }

  .description {
    font-size: 15px;
    line-height: 24px;
  }

  .card-button {
    padding: 9px 18px;
    font-size: 14px;
    border-radius: 8px;
  }
}

@media (max-width: 480px) {

  #servicios .container {
    padding: 0 1rem;
  }

  #servicios h2 {
    font-size: 36px;
    line-height: 40px;
    margin-bottom: 16px;
  }

  .section-subtitle {
    font-size: 20px;
    line-height: 20px;
    margin-bottom: 64px;
  }

  .service-list {
    gap: 1.5rem;
  }

  .service-card {
    height: 145px;
  }

  .service-card:hover {
    height: 280px;
    transform: translateY(-5px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
  }

  .card-overlay {
    border-radius: 10px;
  }

  .service-content {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    margin-top: 75px;
    gap: 0.5rem;
  }

  .service-header {
    gap: 1rem;
  }

  .service-content h3 {
    font-size: 22px;
    line-height: 26px;
  }

  .description {
    font-size: 13px;
    line-height: 22px;
  }

  .card-button {
    padding: 8px 16px;
    font-size: 13px;
    border-radius: 7px;
  }
}


/* ====== MANAGER SECTION ====== */

.manager-message {
  position: relative;
  padding: 100px 0;
  overflow: visible;
  background-color: var(--color-gray-50);
}

.manager-message .titulo {
  font-size: 48px;
  line-height: 48px;
  color: var(--color-blue-900);
  margin-bottom: 16px;
  font-weight: 400;
  text-align: center;
}

.manager-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .08;
}

.manager-bg-circle {
  position: absolute;
  top: 50%;
  left: 0;
  width: 24rem;
  height: 24rem;
  background: #2563eb;
  border-radius: 50%;
  filter: blur(48px);
  transform: translateY(-50%);
}

.manager-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
  grid-template-columns: 1fr;
}

@media(min-width: 1024px) {
  .manager-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.manager-image-wrap {
  position: relative;
}

.manager-image {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  box-shadow: 0 30px 60px rgba(4, 9, 20, .15);
  z-index: 5;
}

.manager-image img {
  width: 100%;
  height: auto;
  max-height: 500px;
  object-fit: cover;
  display: block;
}

.manager-image-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to top, rgba(3, 37, 86, 0.35), transparent 50%);
}

.dec-left,
.dec-right {
  position: absolute;
  width: 128px;
  height: 128px;
  border-radius: 12px;
  z-index: 0;
}

.dec-left {
  top: -24px;
  left: -24px;
  background: #13B6CB;
}

.dec-right {
  bottom: -24px;
  right: -24px;
  background: #206B7A;
}

.manager-content {
  color: #0f172a;
}

.badge {
  display: inline-block;
  padding: 8px 16px;
  background: var(--color-blue-100);
  color: var(--color-blue-800);
  border-radius: 999px;
  margin-bottom: 16px;
}

.title-wrap h2 {
  color: var(--color-blue-900);
  margin: 0 0 .5rem;
  font-weight: 500;
  font-size: 28px;
}

.title-underline {
  width: 5rem;
  height: .35rem;
  background: #2563eb;
  margin-bottom: 1rem;
  border-radius: 3px;
}

.quote-wrap {
  position: relative;
  padding-left: 3rem;
}

.quote-icon {
  position: absolute;
  top: -8px;
  left: 0;
  width: 48px;
  height: 48px;
  color: rgba(37, 99, 235, .15);
}

.quote-text p {
  color: var(--color-gray-700);
  margin-bottom: 15px;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.6;
}

.highlight {
  color: #13B6CB;
  font-weight: 600;
}

.signature {
  padding-top: 1rem;
  border-top: 2px solid var(--color-gray-200);
  margin-top: 1rem;
}

.sig-name {
  color: #0f172a;
  font-weight: 600;
}

.sig-role {
  color: var(--color-gray-600);
  font-size: .9rem;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
  margin-top: 1rem;
}

.stat {
  text-align: center;
}

.stat-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 8px;
  background: #e6f0ff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1e3a8a;
}

.stat-icon i {
  font-size: 24px;
  color: #206B7A;
}

.stat-number {
  color: var(--color-blue-900);
  font-weight: 500;
  font-size: 16px;
}

.stat-label {
  color: var(--color-gray-600);
  font-size: 14px;
}

@media (max-width: 1400px) {
  .manager-message .container {
    max-width: 1200px;
  }
}

@media (max-width: 1200px) {
  .manager-message .container {
    max-width: 1000px;
  }
}

@media(max-width: 1024px) {
  .manager-grid {
    grid-template-columns: 1fr;
  }

  .manager-message .container {
    max-width: 768px;
  }

  .manager-image img {
    max-height: 650px;
  }
}

@media(max-width: 768px) {

  .manager-message .container {
    max-width: 90%;
  }

  .manager-image img {
    max-height: 650px;
  }

}

@media(max-width: 480px) {

  .manager-message .container {
    max-width: 90%;
  }

  .manager-image img {
    max-height: 650px;
  }

  .manager-message .titulo {
    font-size: 36px;
    line-height: 40px;
  }

}

/* ====== NOSOTROS SECTION ====== */
.about {
  padding: 100px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--color-gray-50);
}

.about-container {
  display: flex;
  align-items: center;
  gap: 60px;
  max-width: 1400px;
  width: 100%;
}

.about-image img {
  width: 100%;
  max-width: 720px;
  border-radius: 15px;
  box-shadow: 0 4px 25px rgba(0, 0, 0, 0.1);
}

.about-content {
  flex: 1;
}

.reveal-left,
.reveal-right,
.reveal-bottom {
  opacity: 0;
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

.reveal-left {
  transform: translateX(-60px);
}

.reveal-left.show {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  transform: translateX(60px);
}

.reveal-right.show {
  opacity: 1;
  transform: translateX(0);
}

.reveal-bottom {
  transform: translateY(60px);
}

.reveal-bottom.show {
  opacity: 1;
  transform: translateY(0);
}

.separa1 {
  transition-delay: 0s;
}

.separa2 {
  transition-delay: 0.1s;
}

.separa3 {
  transition-delay: 0.2s;
}

.separa4 {
  transition-delay: 0.3s;
}

@media (max-width: 1024px) {

  .reveal-left {
    transform: translateY(40px);
  }

  .reveal-left.show {
    transform: translateY(0);
  }

  .reveal-right {
    transform: translateY(40px);
  }

  .reveal-right.show {
    transform: translateY(0);
  }
}



.about-content h2 {
  font-size: 48px;
  color: var(--color-blue-900);
  margin-bottom: 24px;
  font-weight: 400;
  line-height: 48px;
}

.about-content p {
  font-size: 18px;
  font-weight: 400;
  color: var(--color-gray-700);
  line-height: 29px;
  margin-bottom: 15px;
}

.about-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px 30px;
  margin-top: 25px;
}

.feature {
  display: flex;
  align-items: flex-start;
}

.feature i {
  font-size: 1.8rem;
  color: #13B6CB;
}

.feature h4 {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  margin: 0;
  color: var(--color-blue-900);
}

.feature p {
  margin: 6px 0 0;
  font-size: 14px;
  line-height: 20px;
  color: var(--color-gray-600);
}

.separa1 {
  gap: 17px;
}

.separa2 {
  gap: 10px;
}

.separa3 {
  gap: 10px;
}

.separa4 {
  gap: 17px;
}

@media (max-width: 1400px) {
  .about-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
  }
}

@media (max-width: 1200px) {
  .about-container {
    width: 90%;
    max-width: 1024px;
    margin: 0 auto;
  }
}

@media(max-width: 1024px) {
  .about-container {
    max-width: 90%;
    flex-direction: column-reverse;
    text-align: center;
    gap: 40px;
  }

  .about-image img {
    max-width: 100%;
  }

  .about-content h2 {
    font-size: 36px;
    line-height: 40px;
  }

  .feature h4 {
    text-align: left;
  }

  .feature p {
    text-align: left;
  }
}

@media(max-width: 768px) {
  .about-container {
    max-width: 640px;
  }

  .about-features {
    grid-template-columns: 1fr;

  }
}

/* FOOTER*/
.footer {
  background-color: #107086;
  color: white;
  padding: 3rem 2rem 2rem;
  font-size: 0.95rem;
}

.footer-columns {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
  max-width: 1200px;
  margin: auto;
}

.footer-col {
  flex: 1;
  min-width: 250px;
}

.logofo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logofo-img {
  width: 50px;
  height: 50px;
  object-fit: contain;
}

.logofo-text h1 {
  font-size: 16px;
  font-weight: 400;
  line-height: 16px;
  color: #fff;
}

.logofo-text p {
  font-size: 12px;
  color: var(--color-blue-200);
  line-height: 16px;
  font-weight: 400;
}

.footer-description {
  font-size: 16px;
  margin-top: 1rem !important;
  line-height: 24px;
  color: var(--color-blue-100);
  font-weight: 400;
}

.footer-col h4 {
  font-size: 20px;
  line-height: 28px;
  margin-bottom: 1rem;
  font-weight: 400;
  color: #fff;
}

.footer-col p {
  margin: 0.3rem 0;
}

.footer-col p.textofo {
  line-height: 24px;
  color: var(--color-blue-100);
  font-size: 16px;
  font-weight: 400;
}

.footer-col .textofo a {
  color: white;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: color 0.3s ease
}

.footer-col .textofo a i {
  color: white;
  transition: color 0.3s ease;
}

.footer-col .textofo a:hover {
  color: var(--color-blue-300);
}

.footer-col .textofo a:hover i {
  color: var(--color-blue-300);
}

.social-icons {
  display: flex;
  gap: 1rem;
  margin-top: 0.5rem;
}

.social-icons a {
  color: white;
  font-size: 1.5rem;
  transition: color 0.3s ease;
}

.social-icons a:hover {
  color: var(--color-blue-300);
}

.footer-bottom {
  text-align: center;
  margin-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 1rem;
  font-size: 0.85rem;
}

.footer-bottom p {
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  color: var(--color-blue-200);
}