/********** Template CSS **********/
:root {
    --primary: #ad782a;
    --secondary: #E93C05;
    --tertiary: #555555;
    --light: #DFE4FD;
    --dark: #011A41;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 30px;
    bottom: 30px;
    z-index: 99;
}

h1,
.h1,
h2,
.h2,
.fw-bold {
    font-weight: 700 !important;
}

h3,
.h3,
h4,
.h4,
.fw-medium {
    font-weight: 600 !important;
}

h5,
.h5,
h6,
.h6,
.fw-semi-bold {
    font-weight: 500 !important;
}


/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Button ***/
.btn {
    transition: .5s;
    font-weight: 500;
}

.btn-primary,
.btn-outline-primary:hover {
    color: var(--light);
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}


/*** Navbar ***/
.fixed-top {
    transition: .5s;
}

.top-bar {
    height: 45px;
    border-bottom: 1px solid rgba(53, 94, 252, .07);
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

.navbar .navbar-nav .nav-link {
    padding: 25px 15px;
    color: var(--tertiary);
    font-weight: 500;
    outline: none;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: var(--primary);
}

@media (max-width: 991.98px) {
    .navbar .navbar-nav {
        margin-top: 10px;
        border-top: 1px solid rgba(0, 0, 0, .07);
        background: #FFFFFF;
    }

    .navbar .navbar-nav .nav-link {
        padding: 10px 0;
    }
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        visibility: hidden;
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        transition: .5s;
        opacity: 0;
    }

    .navbar .nav-item:hover .dropdown-menu {
        transform: rotateX(0deg);
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}


/*** Header ***/
.carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: start;
    z-index: 1;
}

.carousel-control-prev,
.carousel-control-next {
    width: 3rem;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 3rem;
    height: 3rem;
    background-color: var(--primary);
    border: 10px solid var(--primary);
}

.carousel-control-prev-icon {
    border-radius: 0 3rem 3rem 0;
}

.carousel-control-next-icon {
    border-radius: 3rem 0 0 3rem;
}

@media (max-width: 768px) {
    #header-carousel .carousel-item {
        position: relative;
        min-height: 450px;
    }
    
    #header-carousel .carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

.page-header {
    padding-top: 12rem;
    padding-bottom: 6rem;
    background: url(../img/header.jpg) top left no-repeat;
    background-size: cover;
}

.page-header .breadcrumb-item,
.page-header .breadcrumb-item a {
    font-weight: 500;
}

.page-header .breadcrumb-item+.breadcrumb-item::before {
    color: var(--tertiary);
}


/*** Facts ***/
.facts {
    background: linear-gradient(rgba(53, 94, 252, .95), rgba(53, 94, 252, .95)), url(../img/bg.png);
}


/*** Callback ***/
.callback {
    position: relative;
}

.callback::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 50%;
    top: 0;
    left: 0;
    background: linear-gradient(rgba(53, 94, 252, .95), rgba(53, 94, 252, .95)), url(../img/bg.png);
    z-index: -1;
}


/*** Feature ***/
.feature .feature-box,
.feature .feature-box * {
    transition: .5s;
}

.feature .feature-box:hover {
    background: var(--primary);
    border-color: var(--primary) !important;
}

.feature .feature-box:hover * {
    color: #FFFFFF !important;
}


/*** Service ***/
.service .nav .nav-link {
    transition: .5s;
}

.service .nav .nav-link.active {
    border-color: var(--primary) !important;
    background: var(--primary);
}

.service .nav .nav-link.active h5 {
    color: #FFFFFF !important;
}

.service .nav .nav-link.active h5 i {
    color: #FFFFFF !important;
}


/*** Project ***/
.project-item,
.project-item .project-img {
    position: relative;
}

.project-item .project-img a {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(255, 255, 255, .5);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    opacity: 0;
    transition: .5s;
}

.project-item:hover .project-img a {
    opacity: 1;
}

.project-item .project-title {
    position: absolute;
    top: 3rem;
    right: 0;
    bottom: 0;
    left: 3rem;
    border: 1px solid var(--light);
    border-radius: 8px;
    display: flex;
    align-items: flex-end;
    padding: 18px;
    z-index: -1;
    transition: .5s;
}

.project-item:hover .project-title {
    background: var(--primary);
    border-color: var(--primary);
}

.project-item .project-title h4 {
    transition: .5s;
}

.project-item:hover .project-title h4 {
    color: #FFFFFF;
}

.project-carousel .owl-nav {
    margin-top: 25px;
    display: flex;
    justify-content: center;
}

.project-carousel .owl-nav .owl-prev,
.project-carousel .owl-nav .owl-next {
    margin: 0 12px;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    background: var(--light);
    border-radius: 45px;
    font-size: 22px;
    transition: .5s;
}

.project-carousel .owl-nav .owl-prev:hover,
.project-carousel .owl-nav .owl-next:hover {
    background: var(--primary);
    color: var(--light);
}


/*** Team ***/
.team-item {
    position: relative;
    padding: 4rem 0;
}

.team-item img {
    position: relative;
    z-index: 2;
}

.team-item .team-text {
    position: absolute;
    top: 0;
    right: 3rem;
    bottom: 0;
    left: 3rem;
    padding: 15px;
    border: 1px solid var(--light);
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    transition: .5s;
    z-index: 1;
}

.team-item:hover .team-text {
    background: var(--primary);
    border-color: var(--primary);
}

.team-item .team-text h4 {
    transition: .5s;
}

.team-item:hover .team-text h4 {
    color: #FFFFFF;
}

.team-item .team-social .btn {
    background: var(--light);
    color: var(--primary);
}

.team-item:hover .team-social .btn {
    background: #FFFFFF;
}

.team-item .team-social .btn:hover {
    background: var(--primary);
    color: var(--light);
}


/*** Testimonial ***/
.testimonial-item {
    position: relative;
    text-align: center;
    padding-top: 30px;
}

.testimonial-item .testimonial-text {
    position: relative;
    text-align: center;
}

.testimonial-item .testimonial-text .btn-square {
    position: absolute;
    width: 60px;
    height: 60px;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
}

.testimonial-item .testimonial-text::before {
    position: absolute;
    content: "";
    bottom: -60px;
    left: 50%;
    transform: translateX(-50%);
    border: 30px solid;
    border-color: var(--light) transparent transparent transparent;
}

.testimonial-item .testimonial-text::after {
    position: absolute;
    content: "";
    bottom: -59px;
    left: 50%;
    transform: translateX(-50%);
    border: 30px solid;
    border-color: #FFFFFF transparent transparent transparent;
}

.testimonial-carousel .owl-item img {
    margin: 0 auto;
    width: 100px;
    height: 100px;
}

.testimonial-carousel .owl-dots {
    margin-top: 25px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.testimonial-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    width: 30px;
    height: 30px;
    border: 1px solid var(--light);
    border-radius: 30px;
    transition: .5s;
}

.testimonial-carousel .owl-dot::after {
    position: absolute;
    content: "";
    width: 16px;
    height: 16px;
    top: 6px;
    left: 6px;
    border-radius: 16px;
    background: var(--light);
    transition: .5s;
}

.testimonial-carousel .owl-dot.active {
    border-color: var(--primary);
}

.testimonial-carousel .owl-dot.active::after {
    background: var(--primary);
}


/*** Footer ***/
.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: var(--light);
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    color: var(--primary);
    letter-spacing: 1px;
    box-shadow: none;
}

.copyright {
    color: var(--light);
    background: #000B1C;
}

.copyright a {
    color: var(--light);
}

.copyright a:hover {
    color: var(--primary);
}
/* ====== ESTILOS AISLADOS DE SERVICIOS ====== */
.galeria-servicios-mcc {
  padding: 70px 5%;
  background-color: #ffffff;
  font-family: 'Poppins', sans-serif !important;
  text-align: center;
}

.titulo-servicios-mcc {
  font-size: 2rem !important;
  font-weight: 700 !important;
  color: #1a1a1a !important;
  margin-bottom: 10px !important;
}

.subtitulo-servicios-mcc {
  font-size: 1rem !important;
  color: #555 !important;
  margin-bottom: 40px !important;
}

.contenedor-servicios-mcc {
  display: grid !important;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)) !important;
  gap: 30px !important;
  justify-items: center !important;
}

.contenedor-servicios-mcc.centrado {
  display: flex !important;
  justify-content: center !important;
  gap: 30px !important;
  margin-top: 20px !important;
  flex-wrap: wrap !important;
}

.card-servicio-mcc {
  background: #fff !important;
  border-radius: 18px !important;
  overflow: hidden !important;
  box-shadow: 0 6px 15px rgb(0 0 0) !important;
  
  transition: all 0.3s ease !important;
  max-width: 320px !important;
  text-align: left !important;
}

.card-servicio-mcc:hover {
  transform: translateY(-6px) !important;
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15) !important;
}

.card-servicio-mcc img {
  width: 100% !important;
  height: 210px !important;
  object-fit: cover !important;
  transition: transform 0.4s ease !important;
}

.card-servicio-mcc:hover img {
  transform: scale(1.05) !important;
}

.contenido-servicio-mcc {
  padding: 20px !important;
}

.contenido-servicio-mcc h3 {
  font-size: 1.1rem !important;
  font-weight: 600 !important;
  color: #000000!important;
  margin-bottom: 8px !important;
}

.contenido-servicio-mcc p {
  font-size: 0.9rem !important;
  color: #444 !important;
  line-height: 1.6 !important;
}

/* ==== RESPONSIVO ==== */
@media (max-width: 992px) {
  .contenedor-servicios-mcc {
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)) !important;
  }
  .card-servicio-mcc img {
    height: 190px !important;
  }
}

@media (max-width: 600px) {
  .contenedor-servicios-mcc.centrado {
    flex-direction: column !important;
    align-items: center !important;
  }
}
/* SECCIÓN "¿Por qué nos eligen?" */
.pqne-section {
  background: linear-gradient(135deg, #f8faff 0%, #ffffff 100%);
  padding: 80px 20px;
  font-family: "Poppins", sans-serif;
}

.pqne-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.pqne-header h2 {
  font-size: 2.5rem;
  color: #000000;
  margin-bottom: 10px;
  font-weight: 700;
}

.pqne-header p {
  color: #4b4b4b;
  font-size: 1.1rem;
  margin-bottom: 60px;
}

.pqne-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  justify-items: center;
}

.pqne-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.07);
  padding: 40px 25px;
  text-align: center;
  transition: all 0.3s ease;
  border-top: 5px solid transparent;
}

.pqne-card:hover {
  transform: translateY(-10px);
  border-top: 5px solid #1a73e8;
  box-shadow: 0 12px 24px rgba(26, 115, 232, 0.15);
}

.pqne-icon {
  font-size: 3rem;
  color: #1a73e8;
  margin-bottom: 15px;
  transition: transform 0.3s ease;
}

.pqne-card:hover .pqne-icon {
  transform: scale(1.2);
}

.pqne-card h3 {
  font-size: 1.3rem;
  color: #000000;
  margin-bottom: 10px;
  font-weight: 600;
}

.pqne-card p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.6;
}

/* RESPONSIVO */
@media (max-width: 768px) {
  .pqne-header h2 {
    font-size: 2rem;
  }
  .pqne-card {
    padding: 30px 20px;
  }
}
/* === SECCIÓN SOBRE NOSOTROS === */
.about-modern {
  background: linear-gradient(135deg, #f8faff 0%, #eef1ff 100%);
  padding: 100px 8%;
  font-family: "Poppins", sans-serif;
  color: #1a1a1a;
  position: relative;
  overflow: hidden;
}

.about-modern::before {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle at top right, rgba(59,130,246,0.15), transparent 70%);
  top: -150px;
  right: -150px;
  z-index: 0;
}

.about-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 80px;
  position: relative;
  z-index: 1;
  flex-wrap: wrap;
}

.about-image img {
  width: 480px;
  max-width: 100%;
  border-radius: 30px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
  transition: transform 0.6s ease, box-shadow 0.6s ease;
}

.about-image img:hover {
  transform: scale(1.04);
  box-shadow: 0 15px 40px rgba(0,0,0,0.18);
}

.about-content {
  max-width: 520px;
  position: relative;
}

.about-content h2 {
  font-size: 2.8rem;
  font-weight: 700;
  color: #101011;
  margin-bottom: 15px;
  line-height: 1.2;
}

.about-content h2 span {
  color: #ad782a;
}

.about-content .intro {
  font-size: 1.05rem;
  color: #555;
  line-height: 1.8;
  margin-bottom: 40px;
}

/* === TABS MODERNOS === */
.about-tabs {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  border-radius: 24px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  padding: 30px 35px;
  position: relative;
  overflow: hidden;
}

.about-tabs::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 6px;
  height: 100%;
  background: linear-gradient(180deg, #ad782a, #ad782a);
}

.about-tabs input {
  display: none;
}

.about-tabs label {
  display: inline-block;
  font-weight: 600;
  margin-right: 15px;
  cursor: pointer;
  transition: color 0.3s ease, transform 0.3s ease;
  color: #777;
  font-size: 1rem;
  position: relative;
}

.about-tabs label::after {
  content: "";
  display: block;
  height: 3px;
  width: 0%;
  background: #ad782a;
  border-radius: 3px;
  transition: width 0.3s ease;
  margin-top: 6px;
}

.about-tabs label:hover::after {
  width: 100%;
}

.about-tabs input:checked + label {
  color: #101011;
  transform: translateY(-2px);
}

.about-tabs input:checked + label::after {
  width: 100%;
}

/* === CONTENIDO DE TABS === */
.tab {
  display: none;
  margin-top: 25px;
  font-size: 1rem;
  color: #333;
  line-height: 1.8;
  animation: fadeIn 0.6s ease forwards;
}

#tab1:checked ~ .tab:nth-of-type(1),
#tab2:checked ~ .tab:nth-of-type(2),
#tab3:checked ~ .tab:nth-of-type(3) {
  display: block;
}

/* === ANIMACIÓN === */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* === RESPONSIVO === */
@media (max-width: 950px) {
  .about-wrapper {
    flex-direction: column-reverse;
    text-align: center;
    gap: 50px;
  }

  .about-tabs::before {
    left: 50%;
    width: 80%;
    transform: translateX(-50%);
    height: 3px;
    top: 0;
    background: linear-gradient(90deg, #ad782a, #ad782a);
  }

  .about-tabs {
    padding: 30px 20px;
  }

  .about-tabs label {
    display: inline-block;
    margin-bottom: 10px;
  }
}
/* ===== SEPARADOR CREATIVO 2025 - INDEPENDIENTE ===== */
.sep-creative-2025 {
  position: relative;
  width: 100%;
  overflow: hidden;
  font-family: "Poppins", sans-serif;
  isolation: isolate;
  padding: 60px 0;
}

/* Fondo degradado / fallback imagen */
.sep-creative-2025 .sep-bg {
  position: absolute;
  inset: 0;
  
  background: #080808;
  z-index: 0;
  /* Si quieres usar una imagen como fondo, comenta lo anterior y usa:
     background: linear-gradient(...), url('fondo-degradado.jpg') center/cover no-repeat;
  */
  clip-path: polygon(0 0, 100% 0, 100% 75%, 0 100%); /* forma moderna */
  transform-origin: center;
  will-change: transform;
  animation: bgSlow 12s linear infinite;
  opacity: 0.98;
}

/* Inner content layout */
.sep-creative-2025 .sep-inner {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 480px; /* texto | imagen */
  gap: 40px;
  align-items: center;
  padding: 40px 5%;
}

/* Imagen decorativa (lado derecho en desktop) */
.sep-creative-2025 .sep-image-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  transform: translateY(0);
  will-change: transform, opacity;
  animation: imgEntrance 0.9s cubic-bezier(.2,.9,.3,1);
}

/* Imagen: rounded, sombra y ligero overlay */
.sep-creative-2025 .sep-image {
  width: 100%;
  max-width: 420px;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 18px 50px rgb(173 120 42);
  object-fit: cover;
  display: block;
  transform: translateY(0);
  animation: floaty 6s ease-in-out infinite;
  border: 6px solid rgb(134, 101, 52);
}

/* Texto centrado verticalmente en su columna */
.sep-creative-2025 .sep-text h2 {
  margin: 0;
  color: #fff;
  font-size: 1.5rem;
  line-height: 1.6;
  font-weight: 500;
  max-width: 780px;
}

/* Accent underline */
.sep-creative-2025 .sep-text h2::after {
  content: "";
  display: block;
  width: 90px;
  height: 4px;
  margin-top: 18px;
  border-radius: 4px;
  background: linear-gradient(90deg, rgba(255,255,255,0.95), rgba(255,255,255,0.55));
  opacity: 0.9;
}

/* Responsive: en pantallas pequeñas, imagen arriba */
@media (max-width: 920px) {
  .sep-creative-2025 .sep-inner {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 40px 6%;
    text-align: center;
  }

  .sep-creative-2025 .sep-image-wrap {
    order: -1; /* imagen primero */
    transform: translateY(-6px);
  }

  .sep-creative-2025 .sep-image {
    max-width: 86%;
    border-radius: 14px;
    box-shadow: 0 12px 30px rgba(5,15,40,0.35);
  }

  .sep-creative-2025 .sep-text h2 {
    font-size: 1.15rem;
  }

  .sep-creative-2025 .sep-bg {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 85%);
  }
}

/* Animations */
@keyframes imgEntrance {
  from { opacity: 0; transform: translateY(18px) scale(.99); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes floaty {
  0%   { transform: translateY(0px); }
  50%  { transform: translateY(-8px); }
  100% { transform: translateY(0px); }
}

@keyframes bgSlow {
  0%   { transform: translateY(0) scale(1); }
  50%  { transform: translateY(-8px) scale(1.02); }
  100% { transform: translateY(0) scale(1); }
}

/* Respect user reduced motion */
@media (prefers-reduced-motion: reduce) {
  .sep-creative-2025 .sep-bg,
  .sep-creative-2025 .sep-image,
  .sep-creative-2025 .sep-image-wrap {
    animation: none !important;
    transition: none !important;
  }
}
/* === SECCIÓN SOBRE NOSOTROS PREMIUM === */
.nosotros-modern {
        background: #060606;
  /* background: linear-gradient(135deg, #f4f8ff 0%, #e6ecff 100%); */
  padding: 100px 8%;
  font-family: "Poppins", sans-serif;
  position: relative;
  overflow: hidden;
}

.nosotros-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}

.nosotros-image img {
  width: 400px;
  max-width: 100%;
  border-radius: 25px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  animation: fadeInLeft 1s ease forwards;
}

.nosotros-content {
  max-width: 560px;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(14px);
  border-radius: 25px;
  padding: 45px 50px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  animation: fadeInRight 1s ease forwards;
}

.nosotros-content h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #101011;
  margin-bottom: 20px;
}

.nosotros-content h2 span {
  color: #ad782a;
}

.nosotros-content .intro {
  font-size: 1.15rem;
  font-weight: 500;
  color: #444;
  margin-bottom: 20px;
}

.nosotros-content p {
  color: #555;
  line-height: 1.8;
  margin-bottom: 15px;
}

/* === ICONOS === */
.nosotros-icons {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 25px;
  margin-top: 40px;
  justify-content: center;
}

.icon-box {
  text-align: center;
  background: linear-gradient(145deg, #ffffff, #f3f6ff);
  padding: 25px;
  border-radius: 20px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.icon-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(120deg, rgba(59, 130, 246, 0.15), rgba(37, 99, 235, 0.25));
  transition: 0.6s;
}

.icon-box:hover::before {
  left: 0;
}

.icon-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgb(169 118 44);
}

.icon-box i {
  font-size: 32px;
  color: #ad782a;
  margin-bottom: 12px;
  transition: transform 0.3s ease;
}

.icon-box:hover i {
  transform: scale(1.2);
}

.icon-box h4 {
  color: #101011;
  font-weight: 600;
  font-size: 1rem;
}

/* === Centrado del último icono === */
.icon-box.centrado {
  grid-column: 1 / -1;
  justify-self: center;
  width: 200px;
}

/* === ANIMACIONES === */
@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(-40px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(40px); }
  to { opacity: 1; transform: translateX(0); }
}

/* === RESPONSIVO === */
@media (max-width: 950px) {
  .nosotros-container {
    flex-direction: column;
    text-align: center;
  }

  .nosotros-content {
    padding: 30px;
  }

  .nosotros-icons {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .nosotros-icons {
    grid-template-columns: 1fr;
  }

  .icon-box.centrado {
    width: 100%;
  }
}
/* === SECCIÓN HISTORIA, MISIÓN Y VISIÓN - JOA === */
.hmv-section {
   
    background: black;
  /* background: linear-gradient(135deg, #9d7232 0%, #614f34 50%, #000000 100%); */
  color: #fff;
  padding: 100px 8%;
  font-family: "Poppins", sans-serif;
  position: relative;
  overflow: hidden;
}

/* Luces decorativas */
.hmv-section::before,
.hmv-section::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.25;
  z-index: 0;
}
.hmv-section::before {
  top: -50px;
  left: -80px;
  width: 250px;
  height: 250px;
  background: #ad782a;
}
.hmv-section::after {
  bottom: -60px;
  right: -60px;
  width: 300px;
  height: 300px;
  background: #ad782a;
}

/* === TÍTULOS === */
.hmv-title {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 10px;
  font-weight: 700;
  position: relative;
  z-index: 2;
}

.hmv-title span {
  color: #ad782a;
}

.hmv-subtitle {
  text-align: center;
  font-size: 1.1rem;
  max-width: 750px;
  margin: 0 auto 60px;
  color: #dbeafe;
  position: relative;
  z-index: 2;
}

/* === TARJETAS === */
.hmv-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 35px;
  justify-items: center;
  position: relative;
  z-index: 2;
}

.hmv-card {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 45px 35px;
  text-align: center;
  backdrop-filter: blur(10px);
  transition: all 0.4s ease;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
  overflow: hidden;
  position: relative;
}

.hmv-card::before {
  content: "";
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(120deg, rgba(147, 197, 253, 0.25), rgba(255, 255, 255, 0.15));
  transition: 0.6s;
}

.hmv-card:hover::before {
  top: 0;
}

.hmv-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgb(169 118 44);
}

.hmv-icon {
  font-size: 42px;
  color: #ad782a;
  margin-bottom: 18px;
  transition: transform 0.3s ease;
}

.hmv-card:hover .hmv-icon {
  transform: scale(1.2);
}

.hmv-card h3 {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: #fff;
}

.hmv-card p {
  color: #e0f2fe;
  font-size: 0.95rem;
  line-height: 1.7;
}

/* === RESPONSIVO === */
@media (max-width: 768px) {
  .hmv-title {
    font-size: 2rem;
  }

  .hmv-card {
    padding: 30px 25px;
  }
}
/* === SECCIÓN PAQUETES JOA === */
.paquetes-section {
  background: linear-gradient(135deg, #f8fafc 0%, #eff6ff 100%);
  padding: 100px 8%;
  font-family: "Poppins", sans-serif;
  color: #1e293b;
}

.paquetes-title {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 15px;
}

.paquetes-subtitle {
  text-align: center;
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto 70px;
  color: #475569;
}

.paquetes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 35px;
  justify-items: center;
}

/* === CARD === */
.paquete-card {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.paquete-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 30px rgba(37, 99, 235, 0.25);
}

/* === CABECERA === */
.paquete-header {
  text-align: center;
  padding: 40px 25px 25px;
  color: #fff;
}

.paquete-header i {
  font-size: 42px;
  margin-bottom: 12px;
}

.paquete-header.basic {
  background: linear-gradient(135deg, #ad782a, #ad782a);
}

.paquete-header.premium {
  background: linear-gradient(135deg, #7e22ce, #a855f7);
}

.paquete-header.oro {
  background: linear-gradient(135deg, #ca8a04, #ad782a);
}

.paquete-header h3 {
  font-size: 1.5rem;
  font-weight: 600;
}

/* === LISTA === */
.paquete-list {
  list-style: none;
  padding: 25px 35px;
  margin: 0;
  color: #334155;
}

.paquete-list li {
  position: relative;
  margin-bottom: 12px;
  padding-left: 28px;
  font-size: 0.98rem;
}

.paquete-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #ad782a;
  font-weight: bold;
}

/* === FOOTER === */
.paquete-footer {
  background: #f1f5f9;
  text-align: center;
  padding: 25px;
  border-top: 1px solid #e2e8f0;
}

.paquete-detalle {
  display: block;
  font-size: 0.95rem;
  color: #475569;
  margin-bottom: 18px;
}

/* === BOTONES WHATSAPP === */
.paquete-btn {
  display: inline-block;
  padding: 10px 22px;
  border-radius: 50px;
  color: #fff;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 0.95rem;
}

.paquete-btn i {
  margin-right: 6px;
  font-size: 1.1rem;
}

.basic-btn {
  background: linear-gradient(135deg, #ad782a, #ad782a);
}
.basic-btn:hover {
  background: linear-gradient(135deg, #ad782a, #ad782a);
}

.premium-btn {
  background: linear-gradient(135deg, #7e22ce, #a855f7);
}
.premium-btn:hover {
  background: linear-gradient(135deg, #581c87, #9333ea);
}

.oro-btn {
  background: linear-gradient(135deg, #ca8a04, #ad782a);
  color: #1e1e1e;
  font-weight: 600;
}
.oro-btn:hover {
  background: linear-gradient(135deg, #b45309, #fde047);
}

/* === DESTACADO === */
.destacado {
  transform: scale(1.05);
  border: 2px solid #a855f7;
  z-index: 2;
}

@media (max-width: 768px) {
  .paquetes-title {
    font-size: 2rem;
  }
  .paquetes-subtitle {
    font-size: 1rem;
    margin-bottom: 50px;
  }
  .destacado {
    transform: scale(1);
  }
}
/* === SECCIÓN SERVICIOS EXTRAS JOA === */
.servicios-extras {
  background: linear-gradient(135deg, #0a0a0a 0%, #0f172a 45%, #fde68a 100%);
  padding: 100px 10%;
  font-family: "Poppins", sans-serif;
  text-align: center;
  color: #f8fafc;
  position: relative;
  overflow: hidden;
}

/* Degradado sutil sobre el fondo */
.servicios-extras::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #000000;
  z-index: 0;
}

.extras-container {
  position: relative;
  z-index: 2;
}

.extras-titulo {
  font-size: 2.6rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: #ad782a;
  text-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
}

.extras-subtitulo {
  font-size: 1.1rem;
  color: #e2e8f0;
  max-width: 850px;
  margin: 0 auto 70px;
  line-height: 1.8;
}

.extras-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(330px, 1fr));
  gap: 40px;
  justify-items: center;
}

/* === CARD === */
.extra-card {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(12px);
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  padding: 50px 35px;
  transition: all 0.4s ease;
  max-width: 450px;
  color: #fff;
}

.extra-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 30px rgba(250, 204, 21, 0.4);
}

/* === ICONOS === */
.extra-icono {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  color: #fff;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

.extra-card:hover .extra-icono {
  transform: rotate(10deg) scale(1.05);
}

.extra-icono.azul {
  background: linear-gradient(135deg, #ad782a, #ad782a);
}

.extra-icono.dorado {
  background: linear-gradient(135deg, #ad782a, #fbbf24);
}

.extra-icono.verde {
  background: linear-gradient(135deg, #10b981, #34d399);
}

/* === TEXTO === */
.extra-card h3 {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: #fefce8;
}

.extra-card p {
  font-size: 1rem;
  color: #f1f5f9;
  line-height: 1.7;
  margin-bottom: 25px;
}

/* === BOTONES === */
.extra-btn {
  display: inline-block;
  padding: 10px 22px;
  border-radius: 50px;
  color: #fff;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 0.95rem;
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.extra-btn i {
  margin-right: 6px;
  font-size: 1.1rem;
}

.azul-btn {
  background: linear-gradient(135deg, #ad782a, #ad782a);
}
.azul-btn:hover {
  background: linear-gradient(135deg, #ad782a, #ad782a);
}

.dorado-btn {
  background: linear-gradient(135deg, #eab308, #ad782a);
  color: #1e1e1e;
  font-weight: 600;
}
.dorado-btn:hover {
  background: linear-gradient(135deg, #b45309, #fde047);
}

.verde-btn {
  background: linear-gradient(135deg, #059669, #34d399);
}
.verde-btn:hover {
  background: linear-gradient(135deg, #047857, #10b981);
}

/* === RESPONSIVO === */
@media (max-width: 768px) {
  .extras-titulo {
    font-size: 2rem;
  }
  .extras-subtitulo {
    font-size: 1rem;
    margin-bottom: 50px;
  }
  .extra-card {
    padding: 40px 25px;
  }
}
.porque-elegir-joa {
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  padding: 100px 8%;
  font-family: "Poppins", sans-serif;
  color: #1e293b;
  text-align: center;
  position: relative;
}

.porque-titulo {
  font-size: 2.6rem;
  font-weight: 700;
  color: #0a0a0a;
  margin-bottom: 15px;
}

.porque-subtitulo {
  max-width: 800px;
  margin: 0 auto 60px;
  font-size: 1.1rem;
  color: #475569;
  line-height: 1.8;
}

.porque-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
  justify-items: center;
}

/* === CARD === */
.porque-card {
  background: #ffffff;
  border: 1px solid #ad782a;
  border-radius: 20px;
  padding: 40px 30px;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.05);
  transition: all 0.4s ease;
  position: relative;
}

.porque-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(250, 204, 21, 0.25);
}

/* === ICONOS === */
.porque-icono {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin: 0 auto 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  color: #fff;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.porque-icono.azul {
  background: linear-gradient(135deg, #0a0a0a, #ad782a);
}

.porque-icono.dorado {
  background: linear-gradient(135deg, #f59e0b, #fbbf24);
}

.porque-icono.verde {
  background: linear-gradient(135deg, #059669, #34d399);
}

/* === TEXTO === */
.porque-card h3 {
  font-size: 1.3rem;
  font-weight: 600;
  color: #0a0a0a;
  margin-bottom: 10px;
}

.porque-card p {
  font-size: 1rem;
  color: #475569;
  line-height: 1.7;
}

/* === BOTÓN CENTRAL === */
.porque-boton {
  margin-top: 60px;
}

.btn-whatsapp-central {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: #fff;
  padding: 14px 35px;
}
/* Fondo con gradiente animado */
.equipo-animado {
  position: relative;
  overflow: hidden;
  padding: 120px 10%;
  color: #fff;
  font-family: "Poppins", sans-serif;
  background: #000000;
  /* background: linear-gradient(270deg, #0a0a0a, #ad782a, #0f172a); */
  background-size: 600% 600%;
  animation: movimientoGradiente 10s ease infinite;
  text-align: center;
}

@keyframes movimientoGradiente {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Encabezado */
.equipo-titulo {
  font-size: 2.7rem;
  font-weight: 700;
  color: #ad782a;
  margin-bottom: 10px;
}

.equipo-desc {
  max-width: 700px;
  margin: 0 auto 60px;
  font-size: 1.1rem;
  color: #e2e8f0;
  line-height: 1.7;
}

/* Tarjetas */
.equipo-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 50px;
}

.card-equipo {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 25px;
  padding: 40px 25px;
  width: 320px;
  text-align: center;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(6px);
}

.card-equipo::before {
  content: "";
  position: absolute;
  width: 150%;
  height: 150%;
  top: -50%;
  left: -50%;
  background: radial-gradient(circle, rgba(250, 204, 21, 0.3), transparent 60%);
  transform: scale(0);
  transition: 0.5s;
}

.card-equipo:hover::before {
  transform: scale(1);
}

.card-equipo:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 15px 35px rgba(250, 204, 21, 0.4);
}

/* Imagen del miembro */
.equipo-avatar {
  background: rgba(255, 255, 255, 0.15);
  width: 120px;
  height: 120px;
  margin: 0 auto 20px;
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.4s ease;
}

.equipo-avatar img {
  width: 70px;
  height: 70px;
}

.card-equipo:hover .equipo-avatar {
  background: rgba(250, 204, 21, 0.2);
  transform: rotate(10deg);
}

/* Texto */
.card-equipo h3 {
  font-size: 1.4rem;
  color: #fefce8;
  margin-bottom: 6px;
}

.cargo {
  color: #ad782a;
  font-size: 1rem;
  margin-bottom: 15px;
}

.card-equipo ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.card-equipo li {
  color: #e5e7eb;
  font-size: 0.95rem;
  margin-bottom: 6px;
  position: relative;
}

.card-equipo li::before {
  content: "⚡";
  color: #ad782a;
  margin-right: 6px;
}

/* Responsivo */
@media (max-width: 768px) {
  .equipo-cards {
    gap: 30px;
  }
  .card-equipo {
    width: 90%;
  }
}
.whatsapp-float {
  position: fixed;
  width: 65px;
  height: 65px;
  bottom: 25px;
  right: 25px;
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: white;
  border-radius: 50%;
  text-align: center;
  font-size: 36px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  z-index: 1000;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: bounce 2s infinite, glow 3s infinite alternate;
}

.whatsapp-float:hover {
  transform: scale(1.15);
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.4);
}

.whatsapp-float i {
  margin-top: 14px;
}

/* Animación de rebote */
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}

/* Animación de brillo */
@keyframes glow {
  from {
    box-shadow: 0 0 5px #25d366, 0 0 10px #25d366, 0 0 15px #25d366;
  }
  to {
    box-shadow: 0 0 15px #25d366, 0 0 30px #25d366, 0 0 45px #25d366;
  }
}
/* ====== Footer JOA (independiente y centrado) ====== */
.footer-joa {
  background-color: #000;
  color: #fff;
  text-align: center;
  padding: 50px 20px 25px;
  font-family: 'Poppins', sans-serif;
}

.footer-joa .footer-container {
  max-width: 1000px;
  margin: 0 auto;
}

.footer-joa .footer-logo img {
  width: 160px;  /* tamaño ideal del logo */
  height: auto;
  margin-bottom: 20px;
  filter: brightness(0) invert(1);
  transition: transform 0.4s ease, filter 0.4s ease;
}

.footer-joa .footer-logo img:hover {
  transform: scale(1.1);
  filter: brightness(1) sepia(1) hue-rotate(25deg) saturate(2);
}

.footer-joa .footer-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
}

.footer-joa .footer-contact p {
  margin: 5px 0 20px;
  font-size: 15px;
}

.footer-joa .footer-contact i {
  color: #ad782a;
  margin-right: 8px;
}

.footer-joa .footer-social {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 25px;
}

.footer-joa .footer-social a {
  color: #ad782a;
  font-size: 26px;
  transition: color 0.3s, transform 0.3s;
}

.footer-joa .footer-social a:hover {
  color: #fff;
  transform: scale(1.2);
}

.footer-joa .footer-copy {
  border-top: 1px solid #333;
  padding-top: 15px;
  font-size: 13px;
  color: #ccc;
}
.slider-text-joa {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(0, 0, 0, 0.55);
  padding: 45px 55px;
  border-radius: 16px;
  text-align: center;
  color: #fff !important;
  width: 90%;
  max-width: 650px;
  box-shadow: 0 4px 25px rgba(0, 0, 0, 0.5);
  animation: fadeInJOA 1.5s ease forwards;
}

.slider-text-joa .tagline-joa {
    background: black;
  display: inline-block;
  border: 1px solid #ad782a;
  color: #ad782a !important;
  font-size: 20px;
  font-weight: 500;
  padding: 6px 18px;
  border-radius: 25px;
  margin-bottom: 18px;
  animation: pulseJOA 3s infinite;
}

.slider-text-joa .title-joa {
  font-size: 42px;
  line-height: 1.2;
  font-weight: 700;
  margin-bottom: 18px;
  color: #fff !important;
}

.slider-text-joa .subtitle-joa {
  font-size: 17px;
  color: #ddd !important;
  margin-bottom: 30px;
}

.slider-text-joa .btn-joa {
  display: inline-block;
  background-color: #ad782a;
  color: #fff !important;
  font-weight: 600;
  padding: 14px 30px;
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 3px 10px rgba(0,0,0,0.3);
}

.slider-text-joa .btn-joa:hover {
  background-color: #c9944b;
  transform: scale(1.05);
  box-shadow: 0 4px 15px rgba(0,0,0,0.4);
}

/* ====== Responsivo ====== */
@media (max-width: 768px) {
  .slider-text-joa {
    padding: 30px 25px;
    width: 95%;
  }
  .slider-text-joa .title-joa {
    font-size: 30px;
  }
  .slider-text-joa .subtitle-joa {
    font-size: 15px;
  }
  .slider-text-joa .btn-joa {
    padding: 12px 25px;
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  .slider-text-joa {
    padding: 25px 20px;
  }
  .slider-text-joa .title-joa {
    font-size: 24px;
  }
}

/* ====== Animaciones ====== */
@keyframes fadeInJOA {
  from { opacity: 0; transform: translate(-50%, -60%); }
  to { opacity: 1; transform: translate(-50%, -50%); }
}

@keyframes pulseJOA {
  0%, 100% { box-shadow: 0 0 0 0 rgba(173,120,42,0.5); }
  50% { box-shadow: 0 0 10px 5px rgba(173,120,42,0.3); }
}