
/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: 'Work Sans', sans-serif;
  color: #444444;
}

a {
  text-decoration: none;
  color: #ffffff;
}

a:hover {
  color: #ffffff;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Work Sans', sans-serif;
    font-weight: 800;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
/* .back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #FF0022;
  width: 40px;
  height: 40px;
  border-radius: 50px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 24px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background: #11190C;
  color: #fff;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
} */

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  transition: all 0.5s;
  z-index: 997;
  padding: 5px 0;
  background: #000000;
  position: fixed;
  width: 100%;
  top: 0;
}
#header .container {
  display: flex;
  justify-content: space-between; /* Separa logo y navbar a los extremos */
  align-items: center;
  width: 100%;
  max-width: 100%; /* Asegura que ocupe todo el ancho disponible */
  padding: 0 15px; /* Añade un pequeño padding a los lados */
}

/* Logo pegado a la izquierda */
#header .logo {
  margin: 0;
  padding: 0;
}
#header .logo img {
  max-height: 50px;
  width: auto;
}

#header .logo a {
  color: #5a5af3;
}

@media (max-width: 992px) {
  #header {
    padding: 12px 0;
  }
  
  #header .logo img {
    max-height: 45px;
    width: auto;
  }
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
  padding: 0;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li {
  position: relative;
}

.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0 10px 30px;
  font-size: 15px;
  color: #ffffff;
  white-space: nowrap;
  transition: 0.3s;
  font-family: "Poppins", sans-serif;
  font-weight: 500; /* Medium */
}

.navbar a i,
.navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
  color: #65bc95;
}



.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 14px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
  border-radius: 4px;
}
/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: #434175;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

.mobile-nav-toggle.bi-x {
  color: #fff;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(48, 47, 84, 0.9);
  transition: 0.3s;
  z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
  z-index: 1000;
}

.navbar-mobile ul {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  max-width: 300px;
  padding: 30px 0;
  margin: 0 auto;
  border-radius: 10px;
  background-color: #fff;
  list-style: none;
  text-align: center;
}

.navbar-mobile li {
  width: 100%;
  margin: 5px 0;
}

.navbar-mobile a,
.navbar-mobile a:focus {
  display: block;
  width: 100%;
  padding: 12px 20px;
  font-size: 16px;
  color: #434175;
  text-decoration: none;
  transition: 0.3s;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
  color: #5a5af3;
  background-color: #f8f8f8;
}
/*--------------------------------------------------------------
/*----------------------------------------------
# Hero Section
--------------------------------------------------------------*/

.hero-intro-section {
  background-color: #000;
  padding: 100px 20px 60px 20px; /* top right bottom left */
  text-align: left;
}

.hero-intro {
  max-width: 800px;
  margin-left: 0;
  padding-left: 0;
}

/* TITULO PRINCIPAL */
.hero-intro h2 {
  font-size: 90px;
  font-family: 'Work Sans', sans-serif;
  color: #ffffff;
  margin: 0;
  line-height: 0.9;
  text-align: left;
  margin-bottom: -10px;
}

/* SEGUNDA Y TERCERA LÍNEA */
.hero-intro .highlight {
  color: #fdde59;
}

.hero-intro .white-text {
  color: #ffffff;
}

/* TEXTO FINAL */
.hero-intro p {
  font-size: 20px;
  color: #ffffff;
  font-family: 'Sarala', sans-serif;
  margin-top: 10px;
  line-height: 1.2;
  text-align: left;
}

/* ----------------------------
   RESPONSIVE: Tablets y menores
---------------------------- */
@media (max-width: 991px) {
  .hero-intro h2 {
    font-size: 60px;
    line-height: 0.85;
    margin-bottom: -8px;
  }

  .hero-intro p {
    font-size: 18px;
    line-height: 1.1;
    margin-top: 8px;
  }
}

/* ----------------------------
   RESPONSIVE: Teléfonos pequeños
---------------------------- */
@media (max-width: 575px) {
  .hero-intro-section {
    padding: 80px 15px 20px 15px;
  }

  .hero-intro h2 {
    font-size: 36px;
    line-height: 0.9;
    margin-bottom: -5px;
  }

  .hero-intro p {
    font-size: 16px;
    line-height: 1.3;
    margin-top: 5px;
  }
}


#hero ul {
  margin-top: 15px;
  list-style: none;
  padding: 0;
  font-family: 'Inter', sans-serif;
  font-weight: 500; /* Medium */
}

#hero ul li {
  padding: 10px 0 0 28px;
  position: relative;

}

#hero ul i {
  left: 0;
  top: 7px;
  position: absolute;
  font-size: 20px;
  color: #5a5af3;
}

#hero .btn-get-started,
#hero .btn-get-quote {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-size: 15px;
  letter-spacing: 0.5px;
  display: inline-block;
  padding: 8px 30px 9px 30px;
  margin-bottom: 15px;
  border-radius: 3px;
  transition: 0.5s;
  border-radius: 50px;
}


#hero .btn-get-started:hover {
  background: #11190C;
  border-color: #7272f5;
}

#hero .btn-get-quote {
  background: #ff0022;
  color: #fff;
  border: 2px solid #ff0022;
  font-family: 'Inter', sans-serif;
  font-weight: 500; /* Medium */
}

#hero .btn-get-quote:hover {
  background: #11190C;
  color: #fff;
  border-color: #7272f5;
}

/* Estilo para pantallas grandes */
@media (min-width: 1024px) {
  #hero {
    background-attachment: fixed; /* Fija el fondo para pantallas grandes */
  }
}

/* Estilos para pantallas medianas (tablet y pantallas más pequeñas) */
@media (max-width: 991px) {
  #hero .hero-img {
    text-align: center; /* Centra la imagen */
  }

  #hero .hero-img img {
    width: 70%; /* Ajusta el tamaño de la imagen */
  }
}
  


/* Contenedor general con más margen */
.hero-video-wrapper {
  padding: 20px 20px; /* Más margen arriba y abajo */
  background-color: #000;
  display: flex;
  justify-content: center;
}

/* Contenedor más chico y centrado */
.hero-video-container {
  position: relative;
  width: 100%;
  max-width: 1200px; /* Antes tenías 1800px */
  margin: 0 auto;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  border-radius: 12px;
  overflow: hidden;
}

/* Video 100% responsive */
#hero-video {
  width: 100%;
  height: auto;
  display: block;
  border: none;
}


/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 60px 0;
}

.section-bg {
  background-color: #eeeef5;
}

.section-title {
  text-align: center;
  padding-bottom: 30px;
  font-family: 'Work Sans', sans-serif;
  font-weight: 800;
}

.section-title h2 {
  font-size: 32px;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
  color: #ffffff;
  font-family: 'Work Sans', sans-serif;
  font-weight: 800;
}



.section-title p {
  margin-bottom: 0;
  font-family: 'Sarala', sans-serif;
  font-weight: 500; /* Medium */
}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
#about{
  background-color: #000000;
}

.about .content h2 {
  font-weight: 400;
  font-size: 44px;
  line-height: 50px;
  margin-bottom: 20px;
  color: #ffffff;
  font-family: 'Work Sans', sans-serif;
}

.about .content h3 {
  font-weight: 400;
  line-height: 32px;
  font-size: 24px;
  font-family: 'Sarala', sans-serif;
  font-weight: 500; /* Medium */
  color: #ffffff;
}

.about .content ul {
  list-style: none;
  padding: 0;
  font-family: 'Sarala', sans-serif;
  font-weight: 500; /* Medium */
  color: #ffffff;
}

.about .content ul li {
  padding: 10px 0 0 28px;
  position: relative;
}

.about .content ul i {
  left: 0;
  top: 7px;
  position: absolute;
  font-size: 20px;
  color: #f69773;
}

.about .content p:last-child {
  margin-bottom: 0;
  
}
.about .container P {
  font-family: 'Sarala', sans-serif;
  font-weight: 500; /* Medium */
  color: #ffffff;
}

/*--------------------------------------------------------------
# Why Us
--------------------------------------------------------------*/
.why-us {
  padding-top: 0;
}

.why-us .box {
  padding: 50px 30px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  transition: all ease-in-out 0.3s;
}

.why-us .box span {
  display: block;
  font-size: 28px;
  font-weight: 700;
  color: #11190C ;
}

.why-us .box h4 {
  font-family: 'Barlow Semi Condensed', sans-serif;
  font-weight: 800; /* ExtraBold */ 
  font-size: 24px;
  padding: 0;
  margin: 20px 0;
  color: #f69773;
}

.why-us .box p {
  font-family: 'Inter', sans-serif;
  font-weight: 500; /* Medium */
  color: #CAC4B7;
  font-size: 15px;
  margin: 0;
  padding: 0;
}

.why-us .box:hover {
  background: #11190C ;
  padding: 30px 30px 70px 30px;
  box-shadow: 10px 15px 30px rgba(0, 0, 0, 0.18);
}

.why-us .box:hover span,
.why-us .box:hover h4,
.why-us .box:hover p {
  color: #fff;
}

/*--------------------------------------------------------------
# Counts
--------------------------------------------------------------*/
.counts {
  padding: 70px 0 60px;
}

.counts .count-box {
  padding: 30px 30px 25px 30px;
  width: 100%;
  position: relative;
  text-align: center;
  background: #fff;
}

.counts .count-box i {
  position: absolute;
  top: -25px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 24px;
  background: #5a5af3;
  color: #fff;
  border-radius: 50px;
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.counts .count-box span {
  font-size: 36px;
  display: block;
  font-weight: 600;
  color: #0c0ca8;
}

.counts .count-box p {
  padding: 0;
  margin: 0;
  font-family: "Raleway", sans-serif;
  font-size: 14px;
}

/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/

/* Sección general */
#services {
  background-color: #000000;
}
.services h2{
  font-family: 'Work Sans', sans-serif;
  font-weight: 800;
}

.services .icon-box {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  padding: 20px;
  width: 100%;
  max-width: 350px;
  height: 350px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  font-family: 'Work Sans', sans-serif;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
  color: #ffffff;
}

/* Fondo de la caja */
.services .icon-box .background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: cover;
  background-position: center;
  transition: opacity 0.3s ease;
}

/* Aplica opacidad solo al fondo en hover */
.services .icon-box:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}
.services .icon-box:hover .background {
  opacity: 0.4;
}

.services .icon-box h4,
.services .icon-box p {
  position: relative;
  z-index: 1;
  opacity: 1;
  visibility: visible;
  transition: none;
}

 /*Estilos para cada icon-box individual */
.services .iconbox-blue .background { background-image: url('/assets/img/CREACION_DE_CONTENIDO.jpg'); }
.services .iconbox-orange .background { background-image: url('/assets/img/DISENIO.png'); }
.services .iconbox-pink .background { background-image: url('/assets/img/MOTION\ GRAPHIC.png'); }
.services .iconbox-teal .background { background-image: url('/assets/img/CREATIVIDAD\ Y\ COPY.png'); }
.services .iconbox-black .background { background-image: url('/assets/img/ADS.png'); }
.services .iconbox-red .background { background-image: url('/assets/img/SOUND\ BRANDING.jpg'); } 





@media (max-width: 768px) {
  .services .icon-box {
    margin-bottom: 20px; /* Espacio entre las cajas */
    width: 90%; /* Asegura que las cajas no ocupen todo el ancho */
    margin-left: auto; /* Centra las cajas horizontalmente */
    margin-right: auto; /* Centra las cajas horizontalmente */
    height: auto; /* Ajusta la altura automáticamente */
    padding: 20px; /* Espaciado interno */
    box-sizing: border-box; /* Incluye padding dentro del ancho total */
  }

  .services .icon-box h4 {
    font-size: 1.2rem; /* Tamaño de fuente más pequeño */
    text-align: center; /* Centra el texto dentro de cada caja */
  }

  .services .icon-boxes {
    display: block; /* Cambia de flex a bloque para apilar las cajas verticalmente */
  }
}



/* Estilos de encabezado y párrafo */
.icon-box h4 {
  margin-bottom: 10px;
  font-size: 24px;
}

.icon-box p {
  font-size: 16px;
}


.no-videitos {
  font-size: 70px;
  font-weight: bold;
  color: #ffffff;
  text-align: center;
  font-family: 'Work Sans', sans-serif;
}

.no-videitos .line {
  margin: 3px 0; /* Espaciado reducido entre líneas */
  padding: 2px 0; /* Añade un poco de padding para ajuste fino */
}

.no-videitos .highlight {
  color: #f69773; /* Color específico para "videitos" */
  font-size: 70px; /* Tamaño específico solo para "videitos" */
  padding: 5px 0; /* Ajusta el padding si necesitas más espacio */
  font-family: 'Work Sans', sans-serif;
}

.line .no {
  margin-right: 25px; /* Ajusta este valor para aumentar la separación */
}





.customers {
  padding: 60px 0;
  text-align: center;
  background: #000; 
}

.customers h2 {
  font-size: 2rem;
  margin-bottom: 30px;
  color: #ffffff;
}

.logo-track-wrapper {
  overflow: hidden;
  position: relative;
  width: 100%;
}

.logo-track {
  display: flex;
  width: fit-content;
  animation: scroll-logos 30s linear infinite;
}

.logo-box {
  flex: 0 0 auto;
  width: 280px;
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 20px;
}

.logo-box img {
  max-height: 120px;
  max-width: 100%;
  filter: grayscale(100%);
  transition: filter 0.3s ease;
}

.logo-box img:hover {
  filter: grayscale(0%);
}

/* Animación infinita */
@keyframes scroll-logos {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .logo-box {
    width: 120px;
    margin: 0 10px;
  }
}





/*--------------------------------------------------------
#whatsapp
--------------------------------------------------------*/
/* Contenedor flotante */
.social-float-group {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex;
  gap: 10px; /* Espacio entre botones */
  z-index: 9999;
}

/* Botón individual */
.social-float {
  position: relative;
  background-color: #25d366; /* WhatsApp por defecto */
  color: white;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 24px;
  transition: background-color 0.3s;
}

/* Iconos específicos */
.social-float.whatsapp {
  background-color: #25d366;
}
.social-float.instagram {
  background-color: #e1306c;
}
.social-float.linkedin {
  background-color: #0077b5;
}

/* Tooltip */
.social-float .tooltip-text {
  visibility: hidden;
  opacity: 0;
  width: 140px;
  background-color: #333;
  color: #fff;
  text-align: center;
  border-radius: 5px;
  padding: 5px;
  position: absolute;
  bottom: 125%;
  left: 50%;
  margin-left: -70px;
  font-size: 12px;
  transition: opacity 0.3s;
  z-index: 1;
}

.social-float .tooltip-text::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: #333 transparent transparent transparent;
}

/* Mostrar tooltip al hacer hover */
.social-float:hover .tooltip-text {
  visibility: visible;
  opacity: 1;
}





/*--------------------------------------------------------------
# Portfolio
--------------------------------------------------------------*/
.portfolio .portfolio-item {
  margin-bottom: 30px;
}

.portfolio #portfolio-flters {
  padding: 0;
  margin: 0 auto 15px auto;
  list-style: none;
  text-align: center;
  border-radius: 50px;
  padding: 2px 15px;
}

.portfolio #portfolio-flters li {
  cursor: pointer;
  display: inline-block;
  padding: 10px 15px;
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
  color: #444444;
  margin-bottom: 10px;
  transition: all 0.3s ease-in-out;
}

.portfolio #portfolio-flters li:hover,
.portfolio #portfolio-flters li.filter-active {
  color: #5a5af3;
}

.portfolio #portfolio-flters li:last-child {
  margin-right: 0;
}

.portfolio .portfolio-wrap {
  transition: 0.3s;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.portfolio .portfolio-wrap::before {
  content: "";
  background: rgba(255, 255, 255, 0.7);
  position: absolute;
  left: 30px;
  right: 30px;
  top: 30px;
  bottom: 30px;
  transition: all ease-in-out 0.3s;
  z-index: 2;
  opacity: 0;
}

.portfolio .portfolio-wrap .portfolio-info {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  text-align: center;
  z-index: 3;
  transition: all ease-in-out 0.3s;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.portfolio .portfolio-wrap .portfolio-info::before {
  display: block;
  content: "";
  width: 48px;
  height: 48px;
  position: absolute;
  top: 35px;
  left: 35px;
  border-top: 3px solid #fff;
  border-left: 3px solid #fff;
  transition: all 0.5s ease 0s;
  z-index: 9994;
}

.portfolio .portfolio-wrap .portfolio-info::after {
  display: block;
  content: "";
  width: 48px;
  height: 48px;
  position: absolute;
  bottom: 35px;
  right: 35px;
  border-bottom: 3px solid #fff;
  border-right: 3px solid #fff;
  transition: all 0.5s ease 0s;
  z-index: 9994;
}

.portfolio .portfolio-wrap .portfolio-info h4 {
  font-size: 20px;
  color: #434175;
  font-weight: 600;
}

.portfolio .portfolio-wrap .portfolio-info p {
  color: #434175;
  font-size: 14px;
  text-transform: uppercase;
  padding: 0;
  margin: 0;
}

.portfolio .portfolio-wrap .portfolio-links {
  text-align: center;
  z-index: 4;
}

.portfolio .portfolio-wrap .portfolio-links a {
  color: #5a5af3;
  margin: 0 2px;
  font-size: 28px;
  display: inline-block;
  transition: 0.3s;
}

.portfolio .portfolio-wrap .portfolio-links a:hover {
  color: #1313ee;
}

.portfolio .portfolio-wrap:hover::before {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 1;
}

.portfolio .portfolio-wrap:hover .portfolio-info {
  opacity: 1;
}

.portfolio .portfolio-wrap:hover .portfolio-info::before {
  top: 15px;
  left: 15px;
}

.portfolio .portfolio-wrap:hover .portfolio-info::after {
  bottom: 15px;
  right: 15px;
}

/*--------------------------------------------------------------
# Portfolio Details
--------------------------------------------------------------*/
.portfolio-details {
  padding-top: 40px;
}

.portfolio-details .portfolio-details-slider img {
  width: 100%;
}

.portfolio-details .portfolio-details-slider .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  border: 1px solid #5a5af3;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #5a5af3;
}

.portfolio-details .portfolio-info {
  padding: 30px;
  box-shadow: 0px 0 30px rgba(67, 65, 117, 0.08);
}

.portfolio-details .portfolio-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}

.portfolio-details .portfolio-info ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.portfolio-details .portfolio-info ul li+li {
  margin-top: 10px;
}

.portfolio-details .portfolio-description {
  padding-top: 30px;
}

.portfolio-details .portfolio-description h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}

.portfolio-details .portfolio-description p {
  padding: 0;
}

/*--------------------------------------------------------------
# Team
--------------------------------------------------------------*/
.team .member {
  margin-bottom: 20px;
  overflow: hidden;
  text-align: center;
  border-radius: 5px;
  background: #fff;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

.team .member .member-img {
  position: relative;
  overflow: hidden;
}

.team .member .social {
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  height: 40px;
  opacity: 0;
  transition: ease-in-out 0.3s;
  text-align: center;
  background: rgba(255, 255, 255, 0.85);
}

.team .member .social a {
  transition: color 0.3s;
  color: #434175;
  margin: 0 10px;
  padding-top: 8px;
  display: inline-block;
}

.team .member .social a:hover {
  color: #5a5af3;
}

.team .member .social i {
  font-size: 18px;
  margin: 0 2px;
}

.team .member .member-info {
  padding: 25px 15px;
}

.team .member .member-info h4 {
  font-weight: 700;
  margin-bottom: 5px;
  font-size: 18px;
  color: #434175;
}

.team .member .member-info span {
  display: block;
  font-size: 13px;
  font-weight: 400;
  color: #aaaaaa;
}

.team .member .member-info p {
  font-style: italic;
  font-size: 14px;
  line-height: 26px;
  color: #777777;
}

.team .member:hover .social {
  opacity: 1;
}

/*--------------------------------------------------------------
# Pricing
--------------------------------------------------------------*/
.pricing .row {
  padding-top: 40px;
}

.pricing .box {
  padding: 40px;
  margin-bottom: 30px;
  box-shadow: 0px 0px 30px rgba(73, 78, 92, 0.15);
  background: #fff;
  text-align: center;
}

.pricing h3 {
  font-weight: 300;
  margin-bottom: 15px;
  font-size: 28px;
}

.pricing h4 {
  font-size: 46px;
  color: #5a5af3;
  font-weight: 400;
  font-family: "Open Sans", sans-serif;
  margin-bottom: 25px;
}

.pricing h4 span {
  color: #bababa;
  font-size: 18px;
  display: block;
}

.pricing ul {
  padding: 0;
  list-style: none;
  color: #999;
  text-align: left;
  line-height: 20px;
}

.pricing ul li {
  padding-bottom: 12px;
}

.pricing ul i {
  color: #5a5af3;
  font-size: 18px;
  padding-right: 4px;
}

.pricing ul .na {
  color: #ccc;
}

.pricing ul .na i {
  color: #ccc;
}

.pricing ul .na span {
  text-decoration: line-through;
}

.pricing .btn-buy {
  background: #434175;
  display: inline-block;
  padding: 10px 35px;
  border-radius: 50px;
  color: #fff;
  transition: none;
  font-size: 14px;
  font-weight: 400;
  font-family: "Raleway", sans-serif;
  transition: 0.3s;
  border: none;
}

.pricing .btn-buy:hover {
  background: #5a5af3;
}

.pricing .featured {
  z-index: 10;
  margin: -30px -5px 0 -5px;
}

.pricing .featured .btn-buy {
  background: #5a5af3;
}

.pricing .featured .btn-buy:hover {
  background: #7272f5;
}

@media (max-width: 992px) {
  .pricing .box {
    max-width: 60%;
    margin: 0 auto 30px auto;
  }
}

@media (max-width: 767px) {
  .pricing .box {
    max-width: 80%;
    margin: 0 auto 30px auto;
  }
}

@media (max-width: 420px) {
  .pricing .box {
    max-width: 100%;
    margin: 0 auto 30px auto;
  }
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
#contact {
  background-color: #000000;
  padding: 40px 0;
}
.contact .section-title h2 {
  color: #ffffff;
  font-size: 28px;
  text-align: center;
  margin-bottom: 30px;
}

.contact .info-box {
  background: #121212;
  color: #ffffff;
  text-align: center;
  border-radius: 8px;
  box-shadow: 0 0 15px rgba(101, 188, 149, 0.5);
  padding: 20px;
  margin: 0 auto; /* Centers the boxes in their columns */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact .info-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 20px rgba(101, 188, 149, 0.8);
}


#contact {
  background-color: #000000;
  padding: 40px 0;
}

.contact .section-title h2 {
  color: #ffffff;
  font-size: 28px;
  text-align: center;
  margin-bottom: 30px;
}

.contact .info-box {
  background: #000000;
  color: #ffffff;
  text-align: center;
  border-radius: 8px;
  box-shadow: 0 0 15px #fdde59;
  padding: 20px;
  margin: 0 auto; /* Centers the boxes in their columns */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact .info-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 20px #fdde59;
}

.contact .info-box i {
  font-size: 40px;
  color: #396eb5;
  margin-bottom: 15px;
}


.contact .info-box h3 {
  font-size: 18px;
  color: #ffffff;
  margin-bottom: 10px;
}

.contact .info-box p {
  font-size: 14px;
  line-height: 1.5;
  margin: 0;
}
/* .contact .php-email-form {
  background: #fff;
  box-shadow: 0 0 30px rgba(214, 215, 216, 0.6);
  padding: 30px;
}

.contact .php-email-form .validate {
  display: none;
  color: red;
  margin: 0 0 15px 0;
  font-weight: 400;
  font-size: 13px;
}

.contact .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .error-message br+br {
  margin-top: 25px;
}

.contact .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #18d26e;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}

.contact .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #18d26e;
  border-top-color: #eee;
  animation: animate-loading 1s linear infinite;
}

.contact .php-email-form input,
.contact .php-email-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
  border-radius: 5px;
}

.contact .php-email-form input:focus,
.contact .php-email-form textarea:focus {
  border-color: #5a5af3;
}

.contact .php-email-form input {
  padding: 10px 15px;
}

.contact .php-email-form textarea {
  padding: 12px 15px;
}

.contact .php-email-form button[type=submit] {
  background: #FF0022;
  border: 0;
  padding: 10px 24px;
  color: #fff;
  transition: 0.4s;
  border-radius: 50px;
}

.contact .php-email-form button[type=submit]:hover {
  background: #11190C;
} */

@media (max-width: 768px) {
  .contact .info-box {
    margin-bottom: 20px;
  }

  .contact .info-box p {
    font-size: 12px;
  }

  .contact .info-box i {
    font-size: 36px;
  }
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 15px 0;
  background: #f1f1f7;
  min-height: 40px;
  margin-top: 68px;
}

.breadcrumbs h2 {
  font-size: 28px;
  font-weight: 400;
  color: #434175;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
}

.breadcrumbs ol li+li {
  padding-left: 10px;
}

.breadcrumbs ol li+li::before {
  display: inline-block;
  padding-right: 10px;
  color: #565396;
  content: "/";
}

@media (max-width: 992px) {
  .breadcrumbs {
    margin-top: 60px;
  }

  .breadcrumbs .d-flex {
    display: block !important;
  }

  .breadcrumbs ol {
    display: block;
  }

  .breadcrumbs ol li {
    display: inline-block;
  }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  color: #444444;
  font-size: 14px;
  background: #000000;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

#footer .footer-top {
  padding: 60px 0 30px 0;
  background: #000000;
}

#footer .footer-top .footer-contact {
  margin-bottom: 30px;
}

#footer .footer-top .footer-contact h3 {
  font-size: 28px;
  margin: 0 0 10px 0;
  padding: 0;
  line-height: 1;
  font-weight: 700;
  color: #ffffff;
  font-family: 'Work Sans', sans-serif;
}

#footer .footer-top .footer-contact p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: 'Work Sans', sans-serif;
  color: #ffffff;
}

#footer .footer-top h4 {
  font-size: 16px;
  font-weight: bold;
  color: #ffffff;
  position: relative;
  padding-bottom: 12px;
}

#footer .footer-top .footer-links {
  margin-bottom: 30px;
  font-family: 'Work Sans', sans-serif;
  color: #ffffff;
}

#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
  font-family: 'Work Sans', sans-serif;
  color: #ffffff;
}

#footer .footer-top .footer-links ul i {
  padding-right: 2px;
  color: #f69773;
  font-size: 18px;
  line-height: 1;
  
}

#footer .footer-top .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}

#footer .footer-top .footer-links ul a {
  color: #777777;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
  font-family: 'Work Sans', sans-serif;
  color: #ffffff;
}

#footer .colorPunto{
  color: #65bc95;
}
#footer .footer-top .footer-links ul a:hover {
  text-decoration: none;
  color: #65bc95;
}

#footer .footer-newsletter {
  font-size: 15px;
}

#footer .footer-newsletter h4 {
  font-size: 16px;
  font-weight: bold;
  color: #444444;
  position: relative;
  padding-bottom: 12px;
}

#footer .footer-newsletter form {
  margin-top: 30px;
  background: #fff;
  padding: 6px 10px;
  position: relative;
  border-radius: 50px;
  text-align: left;
  border: 1px solid #b9b9fa;
}

#footer .footer-newsletter form input[type=email] {
  border: 0;
  padding: 4px 8px;
  width: calc(100% - 100px);
}

#footer .footer-newsletter form input[type=submit] {
  position: absolute;
  top: -1px;
  right: -1px;
  bottom: -1px;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 20px;
  background: #5a5af3;
  color: #fff;
  transition: 0.3s;
  border-radius: 50px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

#footer .footer-newsletter form input[type=submit]:hover {
  background: #7272f5;
}

#footer .credits {
  padding-top: 5px;
  font-size: 13px;
  color: #444444;
}

#footer .credits a {
  transition: 0.3s;
}

#footer .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #deddec;
  color: #11190C;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

#footer .social-links a:hover {
  background: #f69773;
  color: #ffffff;
  text-decoration: none;
}

.carousel-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.swiper-container {
  width: 80%;
  height: 80%;
}


.copyright {
  font-family: 'Work Sans', sans-serif;
  color: #ffffff;
}


/* Popup contenedor */
#popup-carousel {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7); /* Fondo semi-transparente */
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  z-index: 1000; /* Asegura que esté encima de todo */
}

/* Imágenes del carrusel */
/* Ajustar la imagen del carrusel */
.carousel-img {
  max-width: 95%; /* Imagen más grande */
  max-height: 85vh;
  margin: 0 auto;
  display: block;
}
.carousel-container {
  position: relative;
  text-align: center;
  padding: 20px;
}

/* Botones de navegación */


.prev-btn:hover, .next-btn:hover {
  background-color: transparent; /* Fondo transparente */
  color: #ffffff; /* Asegura que el texto sea blanco para visibilidad */
  border: 1px solid rgba(255, 255, 255, 0.5); /* Opcional: añadir un borde tenue */
}

/* Posición de los botones */
/* Botones de navegación */
.prev-btn, .next-btn {
  position: absolute;
  top: 50%; /* Centrar verticalmente en relación con la imagen */
  transform: translateY(-50%); /* Ajuste preciso del centrado */
  font-size: 20px;
  padding: 10px 15px;
  z-index: 2; /* Aseguramos que estén por encima de la imagen */
  background-color: rgba(0, 0, 0, 0.5); /* Fondo semitransparente */
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

/* Botón izquierdo */
.prev-btn {
  left: 10px; /* Pegado al borde izquierdo */
}

/* Botón derecho */
.next-btn {
  right: 10px; /* Pegado al borde derecho */
}
/* Botón de cierre sigue estando en la esquina superior */
.close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 30px;
  background: none;
  color: white;
  border: none;
  cursor: pointer;
}

/* Responsividad para dispositivos móviles */
@media (max-width: 768px) {
  .carousel-img {
    max-width: 95%; /* Mayor espacio en pantallas pequeñas */
    max-height: 70vh; /* Ajuste en la altura */
  }

  /* Ajustamos los botones para que sean más grandes en pantallas pequeñas */
  .prev-btn, .next-btn {
    font-size: 25px;
    padding: 15px;
  }

  .close-btn {
    font-size: 35px;
  }
}



