
:root {
  scroll-behavior: smooth;
}

body {
  font-family: "Open Sans", sans-serif;
  background: #ffffff;
  color: #444444;
  font-size: 1rem;
}

h5 {
  font-size: 1rem;
}

h6{
  font-size: 0.90rem;
}

h2{
  font-size: 1.8rem;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Nunito", sans-serif;
}

hr {
  border: 1px solid #000000; /* Color azul marino */
}


/*--------------------------------------------------------------
# Main
--------------------------------------------------------------*/
#main {
  margin-top: 60px;
  padding: 20px 30px;
  transition: all 0.3s;
}

@media (max-width: 1199px) {
  #main {
    padding: 10px;
  }
}

/*--------------------------------------------------------------
# Page Title
--------------------------------------------------------------*/
.pagetitle {
  margin-bottom: 10px;
}

.pagetitle h1 {
  font-size: 24px;
  margin-bottom: 0;
  font-weight: 600;
  color: #000000;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background: #24295d;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 24px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background: #000000;
  color: #fff;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}


/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
.logo {
  line-height: 1;
}

@media (min-width: 1200px) {
  .logo {
    width: 200px;
  }
}

.logo img {
  max-height: 20px;

}

.logo .span {
  font-weight: 800;
  color: #000000;
  font-family: "Nunito", sans-serif;
  font-size: 14px;
  
}

.header {
  transition: all 0.5s;
  z-index: 997;
  height: 60px;
  box-shadow: 0px 2px 20px rgba(1, 41, 112, 0.2);
  background-color: #fff;
  padding-left: 14px;
  /* Toggle Sidebar Button */
  /* Search Bar */
}

.header .toggle-sidebar-btn {
  font-size: 30px;
  cursor: pointer;
  color: #012970;
}


/*--------------------------------------------------------------
# Header Nav
--------------------------------------------------------------*/
.header-nav ul {
  list-style: none;
}

.header-nav>ul {
  margin: 0;
  padding: 0;
}

.header-nav .nav-icon {
  font-size: 10px;
  color: #012970;
  margin-right: 25px;
  position: relative;
}

.header-nav .nav-profile {
  color: #012970;
}

.header-nav .nav-profile img {
  max-height: 36px;
}

.header-nav .nav-profile span {
  font-size: 14px;
  font-weight: 600;
}

.header-nav .badge-number {
  position: absolute;
  inset: -2px -5px auto auto;
  font-weight: normal;
  font-size: 12px;
  padding: 3px 6px;
}

.header-nav .profile {
  min-width: 240px;
  padding-bottom: 0;
  top: 8px !important;
}

.header-nav .profile .dropdown-header h6 {
  font-size: 12px;
  margin-bottom: 0;
  font-weight: 600;
  color: #444444;
}

.header-nav .profile .dropdown-header span {
  font-size: 14px;
}

.header-nav .profile .dropdown-item {
  font-size: 14px;
  padding: 10px 15px;
  transition: 0.3s;
}

.header-nav .profile .dropdown-item i {
  margin-right: 10px;
  font-size: 14px;
  line-height: 0;
}

.header-nav .profile .dropdown-item:hover {
  background-color: #f6f9ff;
}

/*--------------------------------------------------------------
# Sidebar
--------------------------------------------------------------*/
.sidebar {
  position: fixed;
  top: 60px;
  left: 0;
  bottom: 0;
  width: 240px;
  z-index: 996;
  transition: all 0.3s;
  padding: 20px;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: #aab7cf transparent;
  box-shadow: 0px 0px 20px rgba(1, 41, 112, 0.1);
  background-color: #fff;
}

@media (max-width: 1199px) {
  .sidebar {
    left: -300px;
  }
}

.sidebar::-webkit-scrollbar {
  width: 5px;
  height: 8px;
  background-color: #fff;
}

.sidebar::-webkit-scrollbar-thumb {
  background-color: #aab7cf;
}

@media (min-width: 1200px) {

  #main,
  #footer {
    margin-left: 240px;
  }
}

@media (max-width: 1199px) {
  .toggle-sidebar .sidebar {
    left: 0;
  }
}

@media (min-width: 1200px) {

  .toggle-sidebar #main,
  .toggle-sidebar #footer {
    margin-left: 0;
  }

  .toggle-sidebar .sidebar {
    left: -300px;
  }

}

.sidebar-nav {
  padding: 0;
  margin: 0;
  list-style: none;
}

.sidebar-nav li {
  padding: 0;
  margin: 0;
  list-style: none;
}

.sidebar-nav .nav-item {
  margin-bottom: 5px;
}

.sidebar-nav .nav-heading {
  font-size: 14px;
  text-transform: uppercase;
  color: #899bbd;
  font-weight: 600;
  margin: 10px 0 5px 15px;
}

.sidebar-nav .nav-link {
  display: flex;
  align-items: center;
  font-size: 14px;
  font-weight: 600;
  color: #1f2a8e;
  transition: 0.3;
  background: #f6f9ff;
  padding: 10px 15px;
  border-radius: 4px;
}

.sidebar-nav .nav-link i {
  font-size: 16px;
  margin-right: 10px;
  color: #4154f1;
}

.sidebar-nav .nav-link.collapsed {
  color: #012970;
  background: #fff;
}

.sidebar-nav .nav-link.collapsed i {
  color: #899bbd;
}

.sidebar-nav .nav-link:hover {
  color: #13193b;
  background: #f6f9ff;
}

.sidebar-nav .nav-link:hover i {
  color: #13193b;
}

.sidebar-nav .nav-link .bi-chevron-down {
  margin-right: 0;
  transition: transform 0.2s ease-in-out;
}

.sidebar-nav .nav-link:not(.collapsed) .bi-chevron-down {
  transform: rotate(180deg);
}

.sidebar-nav .nav-content {
  padding: 5px 0 0 0;
  margin: 0;
  list-style: none;
}

.sidebar-nav .nav-content a {
  display: flex;
  align-items: center;
  font-size: 14px;
  font-weight: 600;
  color: #012970;
  transition: 0.3;
  padding: 10px 0 10px 40px;
  transition: 0.3s;
}

.sidebar-nav .nav-content a i {
  font-size: 6px;
  margin-right: 8px;
  line-height: 0;
  border-radius: 50%;
}

.sidebar-nav .nav-content a:hover,
.sidebar-nav .nav-content a.active {
  color: #4154f1;
}

.sidebar-nav .nav-content a.active i {
  background-color: #4154f1;
}





@media (min-width: 992px) {
  .error-404 img {
    max-width: 50%;
  }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.footer {
  font-size: 14px;
  transition: all 0.3s;
  border-top: 1px solid #cddfff;
  padding: 10px 30px;
}


.footer .copyright {
  text-align: center;
  color: #012970;
}

.footer .credits {
  padding-bottom: 5px;
  text-align: center;
  font-size: 13px;
  color: #012970;
}


.welcome-section {
  background-image: url('../assets/img/portada.jpg');
  /* URL de la imagen de fondo */
  background-size: cover;
  /* Ajusta la imagen para cubrir toda el área */
  background-position: center;
  /* Centra la imagen */
  background-repeat: no-repeat;
  /* Evita que se repita */
  height: 100vh;
  /* La sección ocupa el 100% de la altura de la ventana */
  position: relative;
  z-index: 1;
  /* Asegura que el contenido se muestre correctamente sobre el fondo */
}

.welcome-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(110, 109, 109, 0.1);
  /* Agrega un filtro oscuro para hacer el texto más legible */
  z-index: 2;
}

.welcome-section .container {
  position: relative;
  z-index: 3;
  /* Asegura que el texto esté sobre el fondo oscuro */
}

.welcome-section h2,
.welcome-section p {
  color: white;
  /* Color del texto */
}

.btn-get-started {
  background-color: #ff6600;
  /* Color del botón */
  color: white;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 5px;
  display: inline-block;
  margin-top: 20px;
}

/* Animación del mouse */
.scroll-downs {
  position: fixed; /* Fija la posición en la ventana */
  bottom: 20px; /* Espacio desde la parte inferior de la pantalla */
  left: 50%; /* Centra horizontalmente */
  transform: translateX(-50%); /* Ajusta la posición para que esté completamente centrado */
  width: 34px; /* Ancho del contenedor */
  height: 55px; /* Alto del contenedor */
  text-align: center; /* Alinea el contenido al centro */
  z-index: 5; 
}

.mousey {
  width: 3px;
  padding: 10px 15px;
  height: 35px;
  border: 2px solid #fff; /* Borde blanco */
  border-radius: 25px;
  opacity: 1; /* Totalmente visible */
  box-sizing: content-box;

}

.scroller {
  width: 3px;
  height: 10px;
  border-radius: 25%;
  background-color: #fff; /* Fondo blanco */
  animation-name: scroll;
  animation-duration: 2.2s;
  animation-timing-function: cubic-bezier(.15,.41,.69,.94);
  animation-iteration-count: infinite;
}

@keyframes scroll {
  0% { transform: translateY(0); opacity: 1; } /* Comienza visible */
  10% { transform: translateY(0); opacity: 1; } /* Se mantiene visible */
  100% { transform: translateY(15px); opacity: 1; } /* Se mantiene visible al final */
}

#about {
  scroll-margin-top: 80px; /* Ajusta según la altura de tu encabezado fijo o navbar */
}
.scroll-indicator {
  color: white;
  font-size: 1.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.scroll-indicator .scroll-down {
  text-decoration: none;
  color: inherit;
  display: flex;
  align-items: center;
  animation: bounce 2s infinite; /* Animación de rebote */
}

.scroll-indicator i {
  font-size: 1.7rem;
}

/* Animación de rebote */
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
  40% { transform: translateY(-10px); }
  60% { transform: translateY(-5px); }
}


.about .our-story h4 {
  text-align: justify;
  font-size: 1.1rem;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.about .our-story h3 {
  text-align: justify;
  font-size: 2.25rem;
  font-weight: 700;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.about .our-story p {
  text-align: justify;
  font-size: 0.90rem;

}

.justify{
  text-align: justify;
  font-size: 0.90rem;
}

.justifySmall{
  text-align: justify;
  font-size: 0.80rem;
}
.about .watch-video i {
  font-size: 2rem;
  color: var(--accent-color);
}

.about .watch-video a {
  font-weight: 600;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-left: 8px;
  transition: 0.3s;
}

.about .watch-video:hover a {
  color: var(--accent-color);
}


.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-color: rgba(0, 0, 0, 0.5); /* Fondo oscuro semitransparente */
  border-radius: 50%; /* Hace que los controles sean circulares */
}

.carousel-control-prev-icon::after,
.carousel-control-next-icon::after {
  content: ''; /* Remueve el ícono SVG predeterminado si lo deseas */
  color: white; /* Cambia el color de las flechas a blanco */
}

.carousel-control-prev:hover .carousel-control-prev-icon,
.carousel-control-next:hover .carousel-control-next-icon {
  background-color: rgba(0, 0, 0, 0.8); /* Cambia el color al hacer hover */
}

.carousel-control-prev,
.carousel-control-next {
  width: 60px; /* Ajusta el tamaño del área de clic de las flechas */
}




.row {
  display: flex; /* Establecer el contenedor como un flexbox */
  align-items: center; /* Centrar verticalmente los elementos hijos */
}




/*Projects*/


.projects .portfolio-filters li:hover,
.projects .portfolio-filters li.filter-active {
  color: var(--accent-color);
}

.projects .portfolio-filters li:first-child {
  margin-left: 0;
}

.projects .portfolio-filters li:last-child {
  margin-right: 0;
}

@media (max-width: 575px) {
  .projects .portfolio-filters li {
    font-size: 14px;
    margin: 0 5px;
  }
}

.projects .portfolio-content {
  position: relative;
  overflow: hidden;
}

.projects .portfolio-content img {
  transition: 0.3s;
}

.projects .portfolio-content .portfolio-info {
  opacity: 0;
  position: absolute;
  inset: 0;
  z-index: 3;
  transition: all ease-in-out 0.3s;
  background: rgba(0, 0, 0, 0.6);
  padding: 15px;
}

.projects .portfolio-content .portfolio-info h4 {
  font-size: 14px;
  padding: 5px 10px;
  font-size: 2.25rem;
  font-weight: 700;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  display: inline-block;
  background-color: var(--accent-color);
}



.projects .portfolio-content .portfolio-info p {
  position: absolute;
  bottom: 10px;
  text-align: center;
  display: inline-block;
  left: 0;
  right: 0;
  font-size: 14px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
}


.projects .portfolio-content .portfolio-info .preview-link,
.projects .portfolio-content .portfolio-info .details-link {
  position: absolute;
  left: calc(50% - 40px);
  font-size: 25px;
  top: calc(50% - 14px);
  color: #fff;
  transition: 0.3s;
  line-height: 1.2;
}

.projects .portfolio-content .portfolio-info .preview-link:hover,
.projects .portfolio-content .portfolio-info .details-link:hover {
  color: var(--accent-color);
}

.projects .portfolio-content .portfolio-info .details-link {
  left: 50%;
  font-size: 30px;
  line-height: 0;
}

.projects .portfolio-content:hover .portfolio-info {
  opacity: 1;
}

.projects .portfolio-content:hover img {
  transform: scale(1.1);
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
    text-align: center;
    position: relative;
    
  }


  
.section-title p {
  font-size: 0.90rem;

}
.titulos{
    font-size: 1.5rem;
    font-weight: 700;
    color: color-mix(in srgb, var(--default-color), transparent 20%);
    font-family: 'Squada One', sans-serif; 
}

/*# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 50px 0 20px 0;
  text-align: center;
  color: #ffffff;
  position: relative;
  background-color: rgba(0, 0, 0, 0.5);
}

.page-title:before {
  content: "";
  background-color: color-mix(in srgb, var(--background-color), transparent 40%);
  position: absolute;
  inset: 0;
}

.page-title h1 {
  font-size: 40px;
  font-weight: 500;
  margin-bottom: 1px;
  font-family: 'Squada One', sans-serif !important; 
  text-shadow: 
  -1px -1px 0 #000000,  
   1px -1px 0 #000000,
  -1px  1px 0 #000000,
   1px  1px 0 #000000; 
   
}

.page-title .breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  justify-content: center;
  padding: 0;
  margin: 0;

}

.page-title .breadcrumbs ol li+li {
  padding-left: 50px;
}

.page-title .breadcrumbs ol li+li::before {
  content: "/";
  display: inline-block;
  padding-right: 50px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

/*# Contact Section
--------------------------------------------------------------*/
.contact .info-item {
  background-color: var(--surface-color);
  padding: 20px 0 30px 0;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
}

.contact .info-item i {
  font-size: 14px;
  color: var(--accent-color);
  width: 56px;
  height: 56px;
  font-size: 14px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 4px;
  transition: all 0.3s ease-in-out;
  border-radius: 50%;
  border: 2px dotted color-mix(in srgb, var(--accent-color), transparent 40%);
}

.contact .facebook{
  padding: 0;
  margin-bottom: 0;
  font-size: 10px;
}
.contact .info-item h3 {
  font-size: 12px;
  font-weight: 700;
  margin: 10px 0;
}

.contact .info-item p {
  padding: 0;
  margin-bottom: 0;
  font-size: 10px;
}



@media (max-width: 575px) {
  .contact .php-email-form {
    padding: 20px;
  }
}

.contact .php-email-form input[type=text],
.contact .php-email-form input[type=email],
.contact .php-email-form textarea {
  font-size: 14px;
  padding: 10px 15px;
  box-shadow: none;
  border-radius: 0;
  color: var(--default-color);
  background-color: var(--surface-color);
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

.contact .php-email-form input[type=text]:focus,
.contact .php-email-form input[type=email]:focus,
.contact .php-email-form textarea:focus {
  border-color: var(--accent-color);
}

.contact .php-email-form input[type=text]::placeholder,
.contact .php-email-form input[type=email]::placeholder,
.contact .php-email-form textarea::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.contact .php-email-form button[type=submit] {
  color: var(--contrast-color);
  background: var(--accent-color);
  border: 0;
  padding: 10px 30px;
  transition: 0.4s;
  border-radius: 50px;
}

.contact .php-email-form button[type=submit]:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}
.bg-light-blue {
  background-color: #f3faff; /* Azul clarito */
}
.rounded {
  border-radius: 10px;
}


.shadow-sm {
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15); /* Sombra más pronunciada */
}

/* Ocultar la barra flotante de Google Translate */
.goog-te-banner-frame {
  display: none !important;
}

body {
  top: 0px !important;
}


.panorama {
  width: 100% !important;
  height: 370px !important;
  touch-action: pan-x; 
}
.panorama-container {
  position: relative;
}

.panorama-title {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  background-color: rgba(0, 0, 0, 0.5);
  padding: 5px 10px;
  border-radius: 4px;
  display: block; /* Asegura que se muestre siempre */
}

.blanco {
  color: white !important;
}

.breadcrumb {
  background-color: transparent; /* Para que el fondo no tenga color */
}
.breadcrumb-item + .breadcrumb-item::before {
  color: white; /* Cambia el color de las barras "/" */

}


.custom-border {
  border: 1px solid #000; /* Cambia el color y el grosor según lo necesites */
  border-radius: 5px; /* Para bordes redondeados, opcional */
}

.carousel-item img {
  width: 100%; /* Ajusta el ancho al 100% del contenedor */
  height: 700px; /* Ajusta la altura deseada */
  object-fit: cover; /* Mantiene el aspecto de la imagen, recortando si es necesario */
}

.carousel-item img {
  object-fit: contain; /* O 'cover', según lo que prefieras */
  width: 100%;
  height: 50vh; /* Ajusta este valor según necesites */
}

.img-container {
  width: 100%;
  height: 200px; /* Ajusta esta altura según lo que desees */
  overflow: hidden; /* Oculta cualquier parte que sobresalga */
  display: flex; /* Utiliza flexbox para centrar */
  justify-content: center; /* Centra horizontalmente */
  align-items: center; /* Centra verticalmente */
}

.card {
  height: 100%; /* Asegura que todas las tarjetas tengan la misma altura */
}
.card-img-top {
  height: 200px; /* Altura fija para imágenes */
  object-fit: contain; /* Mantener proporción de la imagen */
  padding: 0.5rem; /* Espacio alrededor de la imagen */
}

.portfolio-info {
  display: flex;
  justify-content: center;
  gap: 1rem; /* Espacio entre los botones */
  margin-top: 10px;
}

.card-text{
  font-size: 10px;
}

.textoRecorrido{
  font-size: 13px;
}

.gallery-item {
  overflow: hidden;
  border-radius: 10px;
}

.gallery-img {
  width: 100%;
  height: 250px; /* Fija la altura */
  object-fit: cover; /* Para que las imágenes se ajusten sin deformarse */
  transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-img {
  transform: scale(1.1); /* Efecto de zoom al pasar sobre la imagen */
}

.justificado{
  text-align: justify;
}




.carousel-item .d-flex {
  gap: 10px; /* Ajusta este valor según el espacio deseado entre tarjetas */
  justify-content: center; /* Mantiene las tarjetas centradas dentro del carrusel */
  padding: 0 15px; /* Ajusta el espacio alrededor de las tarjetas */
}

.review-card {
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
  padding: 15px;
  max-width: 300px;
  min-height: 240px;
  width: 100%; /* Asegura que la tarjeta ocupe su contenedor */
  margin: 0; /* Quita márgenes adicionales */
  box-sizing: border-box; /* Asegura que padding y border se incluyan en el ancho total */
}


.review-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}

.review-author {
  font-weight: bold;
  font-size: 1.1em;
  color: #333;
}

.review-rating {
  color: #FFD700; /* color dorado para las estrellas */
}

.review-text {
  font-size: 0.8rem;
  color: #666;
  line-height: 1.4;
}

.stars {
  font-size: 1.2em;
  color: #FFD700;
}
.reviews-title {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 0; /* Reduce el espacio entre los títulos */
}


.google-btn {
  background-color: #4285F4; /* Azul de Google */
  color: white;


}

.google-btn:hover {
  background-color: #3367D6; /* Color más oscuro al hacer hover */
  color: white;
}

.google-colors {
  display: flex;
  justify-content: center;
  gap: 0;
}