/**
* Template Name: Selecao
* Template URL: https://bootstrapmade.com/selecao-bootstrap-template/
* Updated: Mar 17 2024 with Bootstrap v5.3.3
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: "Open Sans", sans-serif;  /* Usamos Open Sans para todo el cuerpo */
  color: #444444;  /* Color del texto */
}

a {
  color: #ff7ccc;  /* Rosa (como el logo) para los enlaces */
  text-decoration: none;
}

a:hover {
  color: #fc8129;  /* Color de hover más brillante */
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Open Sans", sans-serif;  /* Usamos Open Sans para encabezados también */
  font-weight: 700;  /* Peso más fuerte para encabezados */
}

h1 {
  font-size: 36px;
}

h2 {
  font-size: 32px;
}

h3 {
  font-size: 28px;
}

h4 {
  font-size: 24px;
}

h5 {
  font-size: 20px;
}

h6 {
  font-size: 16px;
}

/*Estilos generales del boton whatsapp*/
.whatsapp-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
  animation: breathe 2s ease-in-out infinite;
}

/*Estilos solo al icono whatsapp*/
.whatsapp-btn i {
  color: #fff;
  font-size: 24px;
  animation: beat 2s ease-in-out infinite;
  text-decoration: none;
  
}

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

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

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

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

/*--------------------------------------------------------------
# Disable AOS delay on mobile
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  height: 120px; /* Aumento el tamaño para que el logo sea más visible */
  transition: all 0.5s;
  z-index: 997;
  background: rgba(42, 44, 57, 0.9);  /* Fondo oscuro sutil para mejor contraste */
}

#header.header-transparent {
  background: transparent; /* Mantén el fondo transparente al principio */
}

#header.header-scrolled {
  background: #f8d0e3; /* Fondo rosa al hacer scroll */
}

#header .logo img {
  max-height: 90px; /* Ajusta la altura máxima del logo para mayor visibilidad */
  transition: max-height 0.3s ease; /* Transición suave para el logo */
}

#header .logo img:hover {
  max-height: 100px; /* Efecto hover para resaltar el logo */
}


/*--------------------------------------------------------------
# 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 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px; /* Espaciado amplio */
  margin-left: 5px;
  font-size: 16px; /* Tamaño estándar */
  font-weight: 600; /* Peso aumentado para visibilidad */
  color: #000000; /* Color negro para contraste fuerte */
  text-transform: uppercase; /* Mayúsculas para destacar */
  white-space: nowrap;
  transition: 0.3s ease-in-out; /* Suavidad en las transiciones */
  border-radius: 50px;
}

/* Hover con fondo rosa suave */
.navbar a:hover {
  color: #ffffff; /* Color rosa destacado */
  background-color: #ff7ccc; /* Fondo rosa suave y consistente */
  transform: scale(1.05); /* Un leve zoom al pasar el mouse */
}

/* Dropdowns */
.navbar .dropdown ul {
  display: none; /* Ocultar por defecto */
  position: absolute;
  left: 5px;
  top: calc(100% + 10px);
  margin: 5px 0 0 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: 15px;
}

.navbar .dropdown:hover > ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
  display: block;
}

/* Ocultar el menú hamburguesa en pantallas grandes */
.mobile-nav-toggle {
  display: none; /* Oculto por defecto */
}

/**
* Mobile Navigation 
*/
@media (max-width: 991px) {
  .navbar ul {
    display: none; /* Ocultar menú en móviles por defecto */
  }

  .mobile-nav-toggle {
    display: block; /* Mostrar ícono de hamburguesa */
    color: #fff;
    font-size: 28px;
    cursor: pointer;
    line-height: 0;
    transition: color 0.3s ease-in-out;
  }

  .navbar-mobile {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(20, 21, 28, 0.9); /* Fondo oscuro */
    z-index: 9999;
    overflow-y: auto;
    transition: all 0.3s ease-in-out;
  }

  .navbar-mobile ul {
    display: block; /* Mostrar menú en móviles */
    position: absolute;
    top: 70px;
    right: 15px;
    left: 15px;
    bottom: 15px;
    padding: 10px 0;
    border-radius: 10px;
    background: #fff; /* Fondo blanco */
    overflow-y: auto;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
    transition: 0.3s ease-in-out;
  }

  .navbar-mobile a {
    color: #000; /* Color negro */
    padding: 10px 20px;
    font-size: 18px;
    font-weight: 500;
    text-transform: none;
  }

  .navbar-mobile a:hover {
    color: #f05aa9;
    background: rgba(244, 161, 255, 0.1); /* Fondo rosa suave */
  }

  .mobile-nav-toggle.bi-x {
    position: absolute;
    top: 20px;
    right: 20px;
    color: #fff;
    font-size: 32px;
    z-index: 99999;
  }
}

/* Ajustes para cerrar dropdowns en móviles */
.navbar-mobile .dropdown ul {
  display: none; /* Ocultar submenús por defecto */
}

.navbar-mobile .dropdown > .dropdown-active {
  display: block; /* Mostrar submenú al hacer clic */
}


/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/

#hero {
  /* Fondo y altura */
  background-color: rgba(248, 201, 213, 0.7);
  background-image: url("../img/bg6.jpeg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-blend-mode: overlay;

  /* Estructura */
  position: relative;
  width: 100%;
  min-height: 100vh; /* Ocupa toda la pantalla */
  display: flex;
  justify-content: center; /* Centrado horizontal */
  align-items: center; /* Centrado vertical */
  overflow: hidden;
  text-align: center;
}

/* Contenedor del carrusel */
#heroCarousel {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center; /* Centrado horizontal */
  align-items: center; /* Centrado vertical */
  overflow: hidden;
  position: relative;
}

/* Estilo de cada slide */
#heroCarousel .carousel-item {
  height: 100%;
  display: flex;
  justify-content: center; /* Centrado horizontal */
  align-items: center; /* Centrado vertical */
  opacity: 0; /* Inicialmente invisible */
  transition: opacity 1s ease-in-out, transform 1s ease-in-out; /* Suaviza la transición */
  transform: translateY(20px); /* Desplazamiento inicial */
}

#heroCarousel .carousel-item.active {
  opacity: 1; /* Visible cuando es el slide activo */
  transform: translateY(0); /* Vuelve a su posición original */
  transition-delay: 0.5s; /* Retardo para la entrada */
}

/* Contenedor de texto con sombra */
#sombra {
  background: rgba(250, 248, 250, 0.3); /* Fondo semitransparente */
  padding: 20px 40px;
  border-radius: 18px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2); /* Sombra para resaltar */
  text-align: center;
  max-width: 80%; /* Limitar el ancho del contenedor */
  margin: 0 auto; /* Centrado horizontal */
}

/* Título */
#sombra h2 {
  margin: 0;
  font-size: 66px;
  
  font-weight: 550;
  color: #000;
  font-family: "Cardo", serif; /* Fuente Cardo */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4); /* Sombra negra suave */
}

/* Párrafo */
#sombra p {
  margin-top: 10px;
  font-size: 24px;
  color: #1a1a1a;
  font-family: "Poppins", sans-serif;
}

/* Botón */
#sombra .btn-get-started {
  font-family: "Raleway", sans-serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 32px;
  border-radius: 50px;
  line-height: 1;
  margin: 10px auto 0; /* Centrado debajo del texto */
  color: #000;
  background-color: #f8c8d4;
  border: 2px solid #f8c8d4;
  transition: background 0.3s ease, transform 0.3s ease;
}

#sombra .btn-get-started:hover {
  background: #fc7dcc;
  color: #fff;
  text-decoration: none;
  transform: scale(1.05); /* Un leve zoom al pasar el mouse */
}

/* Flechas del carrusel */
#hero .carousel-control-prev,
#hero .carousel-control-next {
  width: 5%;
  z-index: 3;
}

#hero .carousel-control-next-icon,
#hero .carousel-control-prev-icon {
  background: none;
  font-size: 48px;
  line-height: 1;
  width: auto;
  height: auto;
}

/* Olas al final del Hero */
.hero-waves {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 60px;
}

/* Animaciones de las olas */
.wave1 use {
  animation: move-forever1 10s linear infinite;
  animation-delay: -2s;
}
.wave2 use {
  animation: move-forever2 8s linear infinite;
  animation-delay: -2s;
}
.wave3 use {
  animation: move-forever3 6s linear infinite;
  animation-delay: -2s;
}
@keyframes move-forever1 {
  0% { transform: translate(85px, 0%); }
  100% { transform: translate(-90px, 0%); }
}
@keyframes move-forever2 {
  0% { transform: translate(-90px, 0%); }
  100% { transform: translate(85px, 0%); }
}
@keyframes move-forever3 {
  0% { transform: translate(-90px, 0%); }
  100% { transform: translate(85px, 0%); }
}

/* Ajustes responsivos */
@media (max-width: 768px) {
  #sombra h2 {
    font-size: 28px;
  }
  #sombra p {
    font-size: 18px;
  }
}


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

/* Título de la sección */
.section-title {
  padding-bottom: 40px;
  text-align: center; /* Centrado para consistencia con otras secciones */
}

.section-title h2 {
  font-size: 14px;
  font-weight: 500;
  padding: 0;
  line-height: 1px;
  margin: 0 0 5px 0;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #aaaaaa;
  font-family: "Poppins", sans-serif;
}

.section-title h2::after {
  content: "";
  width: 120px;
  height: 1px;
  display: inline-block;
  background: rgba(244, 161, 255, 0.9);
  margin: 4px 10px;
}

.section-title p {
  margin: 0;
  font-size: 36px;
  font-weight: 700;
  text-transform: uppercase;
  font-family: "Poppins", sans-serif;
  color: #2a2c39;
}

/* Agregado para mejorar la consistencia con el estilo general */
section p {
  font-size: 18px;
  color: #555; /* Color más neutro para el texto */
  line-height: 1.6;
  margin-top: 15px;
}



/*--------------------------------------------------------------
# About Section - Estilo con título y párrafo centrado
--------------------------------------------------------------*/
.about .card {
  border: none; /* Eliminamos el borde grueso */
  background: #fff; /* Fondo blanco */
  position: relative;
  border-radius: 18px; /* Bordes redondeados */
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1); /* Sombra suave */
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease; /* Transiciones para hover */
  margin-top: 40px; /* Espaciado superior */
}

.about .card:hover {
  transform: translateY(-10px); /* Efecto de levantar al pasar el cursor */
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2); /* Sombra más prominente al hover */
}

/* Imagen */
.about .card .card-img {
  overflow: hidden;
  margin-bottom: 0; /* Eliminamos margen */
  border-radius: 18px; /* Bordes redondeados */
}

/* Ajustamos la altura de la imagen y agregamos el border-radius */
.about .card .card-img img,
.about-img {
  transition: transform 0.3s ease-in-out;
  width: 100%; /* Imagen toma el ancho completo */
  height: 450px; /* Altura más alta para que la imagen se vea más larga */
  object-fit: cover; /* Mantiene la proporción sin distorsionar */
  border-radius: 18px; /* Bordes redondeados en toda la imagen */
}

/* Título */
.about .card h3 {
  font-weight: 700;
  font-size: 18px; /* Tamaño de texto más grande */
  margin: 15px 0 5px;
  text-transform: uppercase; /* Todo en mayúsculas */
  color: #2a2c39; /* Gris oscuro */
  text-align: center; /* Centrado */
  transition: color 0.3s ease; /* Transición para hover */
}

.about .card h3:hover {
  color: #333333; /* Gris más oscuro para hover */
}

/* Descripción */
.about .card p {
  padding: 0 20px;
  margin-bottom: 20px;
  color: #6c757d; /* Gris suave */
  font-size: 16px; /* Tamaño de texto adecuado */
  line-height: 1.6; /* Mejor separación de líneas */
  text-align: justify; /* Justificado para mejor lectura */
}

/* Hover sobre imagen */
.about .card:hover .card-img img {
  transform: scale(1.05); /* Efecto de zoom suave */
}

/* Detalles adicionales con gris */
.about .card a:hover, .about .card h3:hover {
  color: #666666; /* Gris más suave para hover */
}

/* Título de la sección (Centrado) */
.about .section-title {
  text-align: center; /* Alineado al centro */
  padding-left: 0; /* Eliminamos el padding */
}

.about .section-title h2 {
  font-weight: 700;
  font-size: 14px;
  color: #aaaaaa; /* Gris más claro */
  margin-bottom: 5px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.about .section-title h2::after {
  content: "";
  width: 120px;
  height: 1px;
  display: inline-block;
  background: rgba(244, 161, 255, 0.9);
  margin: 4px 10px;
}

.about .section-title p {
  font-size: 36px;
  color: #2a2c39;
  margin: 0;
  text-align: center; /* Alineado al centro */
}




/*--------------------------------------------------------------
# Features
--------------------------------------------------------------*/
.features .nav-tabs {
  border: 0;
}

.features .nav-link {
  border: 1px solid #d4d6df;
  padding: 15px;
  transition: 0.3s;
  color: #2a2c39;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
}

.features .nav-link i {
  padding-right: 15px;
  font-size: 48px;
}

.features .nav-link h4 {
  font-size: 18px;
  font-weight: 600;
  margin: 0;
}

.features .nav-link:hover {
  color: #ff7ccc;
}

.features .nav-link.active {
  background: #ff7ccc;
  color: #fff;
  border-color: #ff7ccc;
}

@media (max-width: 768px) {
  .features .nav-link i {
    padding: 0;
    line-height: 1;
    font-size: 36px;
  }
}

@media (max-width: 575px) {
  .features .nav-link {
    padding: 15px;
  }

  .features .nav-link i {
    font-size: 24px;
  }
}

.features .tab-content {
  margin-top: 30px;
}

.features .tab-pane h3 {
  font-weight: 600;
  font-size: 26px;
}

.features .tab-pane ul {
  list-style: none;
  padding: 0;
}

.features .tab-pane ul li {
  padding-bottom: 10px;
}

.features .tab-pane ul i {
  font-size: 20px;
  padding-right: 4px;
  color: #ff7ccc;
}

.features .tab-pane p:last-child {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Cta
--------------------------------------------------------------*/
.cta {
  background: #f8d0e3; /* Rosa pastel para el fondo */
  padding: 80px 0;
  color: #2a2c39; /* Texto en gris oscuro para contraste */
  border-radius: 10px; /* Bordes redondeados */
}

.cta h3 {
  color: #2a2c39; /* Gris oscuro para el título */
  font-size: 28px;
  font-weight: 700;
}

.cta p {
  color: #6c757d; /* Gris suave para el texto */
}

.cta .cta-btn {
  font-family: "Raleway", sans-serif;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 16px; /* Aumento del tamaño del texto */
  letter-spacing: 1px;
  display: inline-block;
  padding: 15px 40px; /* Aumento del tamaño del botón */
  border-radius: 50px;
  transition: 0.5s;
  margin: 10px;
  color: #fff;
  background: #ffb6c1; /* Rosa pastel para el botón */
}

.cta .cta-btn:hover {
  background: #f69db0; /* Rosa más suave para hover */
  color: #fff; /* Mantener texto blanco en hover */
}

@media (max-width: 1024px) {
  .cta {
    background-attachment: scroll;
  }
}

@media (min-width: 769px) {
  .cta .cta-btn-container {
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }
}


/*--------------------------------------------------------------
# Services Section - Final Styles
--------------------------------------------------------------*/
.services .card {
  border: none; /* Eliminamos el borde grueso */
  background: #fff; /* Fondo blanco */
  position: relative;
  border-radius: 18px; /* Bordes más redondeados */
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1); /* Sombra suave */
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease; /* Transiciones para hover */
  padding-bottom: 20px; /* Añade un padding inferior a todas las cards */
}

.services .card:hover {
  transform: translateY(-10px); /* Efecto de levantar al pasar el cursor */
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2); /* Sombra más prominente al hover */
}

/* Imagen */
.imgSize {
  width: 100%; /* Imagen toma el ancho completo */
  height: 300px; /* Altura fija para la imagen */
  object-fit: cover; /* Mantiene la proporción sin distorsionar */
  border-top-left-radius: 18px;
  border-top-right-radius: 18px; /* Bordes redondeados en la parte superior */
}

.services .card .card-img {
  overflow: hidden;
  margin-bottom: 20px !important; /* Forzamos el margen con !important */
  border-radius: 18px; /* Bordes redondeados */
}

.services .card .card-img img {
  transition: transform 0.3s ease-in-out;
  border-radius: 18px; /* Bordes redondeados */
}

/* Título */
.services .card h3 {
  font-weight: 700;
  font-size: 18px; /* Tamaño de texto más grande */
  margin: 15px 0 5px;
  padding: 0 20px;
  text-transform: uppercase; /* Todo en mayúsculas */
  color: #2a2c39; /* Gris oscuro */
  text-align: center; /* Centrado */
  transition: color 0.3s ease; /* Transición para hover */
}

.services .card h3:hover {
  color: #333333; /* Gris más oscuro para hover */
}

/* Enlace */
.services .card a {
  color: #333333; /* Gris oscuro estándar */
  text-decoration: none;
  transition: color 0.3s ease;
}

.services .card a:hover {
  color: #666666; /* Gris más suave al hover */
}

/* Descripción */
.services .card p {
  padding: 0 20px;
  margin-bottom: 20px;
  color: #6c757d; /* Gris suave */
  font-size: 16px; /* Tamaño de texto adecuado */
  line-height: 1.6; /* Mejor separación de líneas */
  text-align: justify; /* Justificado para mejor lectura */
}

/* Hover sobre imagen */
.services .card:hover .card-img img {
  transform: scale(1.05); /* Efecto de zoom suave */
}

/* Detalles adicionales con gris */
.services .card a:hover, .services .card h3:hover {
  color: #666666; /* Gris más suave para hover */
}

/* Título de la sección (Centrado) */
.services .section-title {
  text-align: center; /* Alineado al centro */
  padding-left: 0; /* Eliminamos el padding */
}

.services .section-title h2 {
  font-weight: 700;
  font-size: 14px;
  color: #aaaaaa; /* Gris más claro */
  margin-bottom: 5px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.services .section-title h2::after {
  content: "";
  width: 120px;
  height: 1px;
  display: inline-block;
  background: rgba(244, 161, 255, 0.9);
  margin: 4px 10px;
}

.services .card ul,
.services .card p {
  font-size: 16px; /* Tamaño más pequeño y elegante */
  color: #2a2c39; /* Color uniforme */
  margin: 8px 0; /* Margen ajustado */
  line-height: 1.4; /* Espaciado más compacto */
  text-align: left; /* Alineación del texto a la izquierda */
}


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

.services .icon-box {
  padding: 30px;
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 2px 29px 0 rgba(68, 88, 144, 0.12);
  transition: all 0.4s ease-in-out;
  width: 100%;
  height: 100%;
}

.services .icon-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 2px 35px 0 rgba(68, 88, 144, 0.2);
}

.services .icon {
  position: absolute;
  left: -20px;
  top: calc(50% - 30px);
}

.services .icon i {
  font-size: 64px;
  line-height: 1;
  transition: 0.5s;
}

.services .title {
  margin-left: 40px;
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 18px;
}

.services .title a {
  color: #2a2c39;
  transition: ease-in-out 0.3s;
}

.services .title a:hover {
  color: #ef6603;
}

.services .description {
  font-size: 14px;
  margin-left: 40px;
  line-height: 24px;
  margin-bottom: 0;
}
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Portfolio
--------------------------------------------------------------*/
.portfolio #portfolio-flters {
  list-style: none;
  margin-bottom: 20px;
}

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

.portfolio #portfolio-flters li::before {
  content: "[";
  margin-right: 6px;
  color: #fff;
  font-size: 18px;
  font-weight: 400;
  transition: all 0.3s ease-in-out;
}

.portfolio #portfolio-flters li::after {
  content: "]";
  margin-left: 6px;
  color: #fff;
  font-size: 18px;
  font-weight: 400;
  transition: all 0.3s ease-in-out;
}

.portfolio #portfolio-flters li:hover,
.portfolio #portfolio-flters li.filter-active {
  color: #2596be;
}

.portfolio #portfolio-flters li.filter-active::before,
.portfolio #portfolio-flters li.filter-active::after {
  color: #2596be;
}

.portfolio .portfolio-item {
  margin-bottom: 30px;
}

.portfolio .portfolio-item .portfolio-img {
  overflow: hidden;
}

.portfolio .portfolio-item .portfolio-img img {
  transition: all 0.8s ease-in-out;
}

.portfolio .portfolio-item .portfolio-info {
  opacity: 0;
  position: absolute;
  left: 15px;
  bottom: 0;
  z-index: 3;
  right: 15px;
  transition: all ease-in-out 0.3s;
  background: rgba(0, 0, 0, 0.5);
  padding: 10px 15px;
}

.portfolio .portfolio-item .portfolio-info h4 {
  font-size: 18px;
  color: #fff;
  font-weight: 600;
  color: #fff;
  margin-bottom: 0px;
}

.portfolio .portfolio-item .portfolio-info p {
  color: #fedac0;
  font-size: 14px;
  margin-bottom: 0;
}

.portfolio .portfolio-item .portfolio-info .preview-link,
.portfolio .portfolio-item .portfolio-info .details-link {
  position: absolute;
  right: 40px;
  font-size: 24px;
  top: calc(50% - 18px);
  color: #fff;
  transition: 0.3s;
}

.portfolio .portfolio-item .portfolio-info .preview-link:hover,
.portfolio .portfolio-item .portfolio-info .details-link:hover {
  color: #ff7ccc;
}

.portfolio .portfolio-item .portfolio-info .details-link {
  right: 10px;
}

.portfolio .portfolio-item .portfolio-links {
  opacity: 0;
  left: 0;
  right: 0;
  text-align: center;
  z-index: 3;
  position: absolute;
  transition: all ease-in-out 0.3s;
}

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

.portfolio .portfolio-item .portfolio-links a:hover {
  color: #2596be;
}

.portfolio .portfolio-item:hover .portfolio-img img {
  transform: scale(1.2);
}

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

/*--------------------------------------------------------------
# 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 #2596be;
}

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

.portfolio-details .portfolio-info {
  padding: 30px;
  box-shadow: 0px 0 30px rgba(42, 44, 57, 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;
}

/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/
.testimonials .testimonials-carousel,
.testimonials .testimonials-slider {
  overflow: hidden;
}

.testimonials .testimonial-item {
  box-sizing: content-box;
  padding: 30px 30px 0 30px;
  margin: 30px 15px;
  text-align: center;
  min-height: 350px;
  box-shadow: 0px 2px 12px rgba(0, 0, 0, 0.08);
}

.testimonials .testimonial-item .testimonial-img {
  width: 90px;
  border-radius: 50%;
  border: 4px solid #fff;
  margin: 0 auto;
}

.testimonials .testimonial-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 10px 0 5px 0;
  color: #111;
}

.testimonials .testimonial-item h4 {
  font-size: 14px;
  color: #999;
  margin: 0;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  color: #fedac0;
  font-size: 26px;
}

.testimonials .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
}

.testimonials .testimonial-item p {
  font-style: italic;
  margin: 0 auto 15px auto;
}

.testimonials .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  border: 1px solid #2596be;
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #2596be;
}

/*--------------------------------------------------------------
# Pricing
--------------------------------------------------------------*/
.pricing .box {
  padding: 20px;
  background: #fff;
  text-align: center;
  box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.12);
  border-radius: 5px;
  position: relative;
  overflow: hidden;
}

.pricing h3 {
  font-weight: 400;
  margin: -20px -20px 25px -20px;
  padding: 30px 15px;
  font-size: 18px;
  font-weight: 600;
  color: #777777;
  background: #f8f8f8;
}

.pricing h4 {
  font-size: 36px;
  color: #2596be;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  margin-bottom: 20px;
}

.pricing h4 sup {
  font-size: 20px;
  top: -15px;
  left: -3px;
}

.pricing h4 span {
  color: #bababa;
  font-size: 16px;
  font-weight: 300;
}

.pricing ul {
  padding: 0;
  list-style: none;
  color: #444444;
  text-align: center;
  line-height: 20px;
  font-size: 14px;
}

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

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

.pricing ul .na {
  color: #ccc;
  text-decoration: line-through;
}

.pricing .btn-wrap {
  margin: 20px -20px -20px -20px;
  padding: 20px 15px;
  background: #f8f8f8;
  text-align: center;
}

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

.pricing .btn-buy:hover {
  background: #2596be;
}

.pricing .featured {
  border: 2px solid #2596be;
}

.pricing .featured h3 {
  color: #fff;
  background: #2596be;
}

.pricing .advanced {
  width: 200px;
  position: absolute;
  top: 18px;
  right: -68px;
  transform: rotate(45deg);
  z-index: 1;
  font-size: 14px;
  padding: 1px 0 3px 0;
  background: #2596be;
  color: #fff;
}

/*--------------------------------------------------------------
# F.A.Q
--------------------------------------------------------------*/
.faq {
  padding: 60px 0;
}

.faq .faq-list {
  padding: 0;
  list-style: none;
}

.faq .faq-list li {
  border-bottom: 1px solid #ececf1;
  margin-bottom: 20px;
  padding-bottom: 20px;
}

.faq .faq-list .question {
  display: block;
  position: relative;
  font-family: #ff7ccc;
  font-size: 18px;
  line-height: 24px;
  font-weight: 400;
  padding-left: 25px;
  cursor: pointer;
  color: #ff7ccc;
  transition: 0.3s;
}

.faq .faq-list i {
  font-size: 16px;
  position: absolute;
  left: 0;
  top: -2px;
}

.faq .faq-list p {
  margin-bottom: 0;
  padding: 10px 0 0 25px;
}

.faq .faq-list .icon-show {
  display: none;
}

.faq .faq-list .collapsed {
  color: black;
}

.faq .faq-list .collapsed:hover {
  color: rgba(244, 161, 255, 0.9);
}

.faq .faq-list .collapsed .icon-show {
  display: inline-block;
  transition: 0.6s;
}

.faq .faq-list .collapsed .icon-close {
  display: none;
  transition: 0.6s;
}

/*--------------------------------------------------------------
# Team
--------------------------------------------------------------*/
.team {
  background: #fff;
  padding: 60px 0;
}

.team .member {
  margin-bottom: 20px;
  overflow: hidden;
  border-radius: 5px;
  background: #fff;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  width: 100%;
  max-width: 370px; /* Tamaño máximo ajustado */
  margin: 0 auto; /* Centrar la tarjeta */
}

.team .member .member-img {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 500px; /* Ajustada la altura de la imagen a 300px */
}

.team .member .member-img img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Mantiene la proporción de la imagen sin deformarse */
}

.team .member .social {
  position: absolute;
  left: 0;
  bottom: 30px;
  right: 0;
  opacity: 0;
  transition: ease-in-out 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.team .member .social a {
  transition: color 0.3s;
  margin: 0 3px;
  border-radius: 50px;
  width: 36px;
  height: 36px;
  background: #ff7ccc;
  transition: ease-in-out 0.3s;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.team .member .social a:hover {
  background: #f7c8d3; /* Rosa pastel */
}

.team .member .social i {
  font-size: 18px;
  line-height: 0;
}

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

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

.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;
  bottom: 15px;
}

/* Centrar la tarjeta del equipo */
.team .row.justify-content-center {
  display: flex;
  justify-content: center;
  align-items: center;
}



/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .info {
  width: 100%;
  background: #fff;
}

.contact .info i {
  font-size: 20px;
  color: #ff7ccc;
  float: left;
  width: 44px;
  height: 44px;
  background: #ffecde;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
}

.contact .info h4 {
  padding: 0 0 0 60px;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 5px;
  color: #2a2c39;
}

.contact .info p {
  padding: 0 0 0 60px;
  margin-bottom: 0;
  font-size: 14px;
  color: #555974;
}

.contact .info .email,
.contact .info .phone {
  margin-top: 40px;
}

.contact .info .email:hover i,
.contact .info .address:hover i,
.contact .info .phone:hover i {
  background: #ff7ccc;
  color: #fff;
}

.contact .php-email-form {
  width: 100%;
  background: #fff;
}

.contact .php-email-form .form-group {
  padding-bottom: 8px;
}

.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;
}

.contact .php-email-form input {
  height: 44px;
}

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

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

.contact .php-email-form button[type=submit]:hover {
  background: rgba(244, 161, 255, 0.9);
}

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

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

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

.breadcrumbs h2 {
  font-size: 28px;
  font-weight: 400;
  margin: 0;
}

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

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

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

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

@media (max-width: 768px) {
  .breadcrumbs .d-flex {
    display: block !important;
  }

  .breadcrumbs ol {
    display: block;
  }

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

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background: #f8d0e3;
  color: #fff;
  font-size: 14px;
  text-align: center;
  padding: 30px 0;
}

#footer h3 {
  font-size: 36px;
  font-weight: 700;
  color: #000000;
  position: relative;
  font-family: "Poppins", sans-serif;
  padding: 0;
  margin: 0 0 15px 0;
  
}

#footer p {
  font-size: 15;
  font-style: italic;
  padding: 0;
  margin: 0 0 40px 0;
  color: #000000;
}

#footer .social-links {
  margin: 0 0 40px 0;
}

#footer .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #ff7ccc;
  color: #fff;
  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: rgba(244, 161, 255, 0.9);
  color: #fff;
  text-decoration: none;
}

#footer .copyright {
  margin: 0 0 5px 0;
  color: #000000;
}

#footer .credits {
  font-size: 13px;
}