/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
/* ||   Fuentes  
/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */  

:root {
  --default-font: "Open Sans",  system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Roboto",  sans-serif;
  --nav-font: "Poppins",  sans-serif;
}

:root { 
  --background-color: #ffffff; 
  --default-color: #000; 
  --heading-color: #000; 
  --accent-color: #eed211; 
  --surface-color: #ffffff;
  --contrast-color: #ffffff; 
  --black-color:#000000;
  --web-color1:#dd9d00;
}

/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
/* ||   Colores del menu  
/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */  

:root {
  --nav-color: rgba(255, 255, 255, 0.99); 
  --nav-hover-color: #ffffff; 
  --nav-mobile-background-color: #ffffff; 
  --nav-dropdown-background-color: #ffffff; 
  --nav-dropdown-color: #212529; 
  --nav-dropdown-hover-color: #eed211; 
}

.light-background {
  --background-color: #f4f7f6;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #222;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #252525;
  --contrast-color: #ffffff;
}

:root {
  scroll-behavior: smooth;
}

body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}

h1,h2,h3,h4,h5,h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
}

/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
/* ||   Cabecera
/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */  
.header {
  --background-color: rgba(255, 255, 255, 0);
  --default-color: #ffffff;
  --heading-color: #ffffff;
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 10px 0 5px 0;
  transition: all 0.5s;
  z-index: 997;
}

.header .logo img {
  max-height: 70px;
  margin-right: 8px;
}

.header .logo h1 {
  font-size: 24px;
  margin: 0;
  font-weight: 700;
  color: var(--heading-color);
}

.header .logo span {
  font-size: 24px;
  padding-left: 1px;
  font-family: var(--heading-font);
  color: var(--color-primary);
}

.scrolled .header {
  box-shadow: 0px 0 18px rgba(0, 0, 0, 0.2);
}


.scrolled .header {
  --background-color: rgba(255, 255, 255, 0.95);
  --heading-color: #3c3c3c;
  --nav-color: #3c3c3c;
  --nav-hover-color: #3c3c3c;
}

/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
/* ||   menu navegacion
/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
        .navbar {
            transition: background-color 0.5s ease, box-shadow 0.5s ease;
        }

        .navbar .nav-link,
        .navbar .navbar-brand {
            color: #fff !important;
            transition: color 0.5s ease;
            font-weight: 500;
            font-size: 14px;
        }
        .navbar .nav-link a,.navbar .navbar-brand a{
            font-weight: bold !important;
        }

        /* Estilos de la barra de navegación al hacer scroll */
        .navbar.scrolled {
            background-color: #fff !important;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
        }

        .navbar.scrolled .nav-link,
        .navbar.scrolled .navbar-brand {
            color: #000 !important;
        }

        /* Estilos del botón e ícono de menú desplegable en móvil */
        .navbar-toggler {
            background-color: rgb(255 255 255 / 0.5)
            /*border: 1px solid #000;*/


        }
        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='black' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }

          /* CORRECCIÓN: Quitar el borde de foco del toggler */
        .navbar-toggler:focus {
         /*   box-shadow: none;*/
box-shadow: 0px 0px 4px 2px rgba(254,185,0,0.75);
-webkit-box-shadow: 0px 0px 4px 2px rgba(254,185,0,0.75);
-moz-box-shadow: 0px 0px 4px 2px rgba(254,185,0,0.75);
        }

        /* Estilos del menú colapsado en modo móvil */
        @media (max-width: 991.98px) {
            .navbar-collapse {
                background-color: #fff;
                padding: 1rem;
            }
            .navbar-nav .nav-link,
            .dropdown-item {
                color: #000 !important;
            }
            .dropdown-menu.show {
                position: static !important;
                transform: none !important;
            }

            /* Efecto de foco y hover en móvil */
            .navbar-nav .nav-link:hover,
            .navbar-nav .nav-link:focus {
                background-color: #eed211;
                border-radius: 0.25rem;
            }

            .dropdown-item:hover,
            .dropdown-item:focus {
                background-color: #eed211 !important;
                color: #000 !important;
            }
        }

        /* Ajustes para el submenu en modo de escritorio */
        @media (min-width: 992px) {
            .dropdown-menu {
                transition: opacity 0.3s ease, transform 0.3s ease;
                opacity: 0;
                transform: translateY(10px);
                visibility: hidden;
                display: block;
            }
            
            .dropdown:hover > .dropdown-menu {
                opacity: 1;
                transform: translateY(0);
                visibility: visible;
            }
            .dropdown-menu .dropdown-menu {
                top: 0;
                left: 100%;
                margin-top: -1px;
            }
            .dropdown-menu .dropdown-toggle::after {
                border-top: .3em solid transparent;
                border-right: 0;
                border-bottom: .3em solid transparent;
                border-left: .3em solid;
                vertical-align: middle;
                margin-left: .255em;
            }

            

            /* Efecto de hover solo en escritorio */
            .navbar-nav .nav-link:hover {
                background-color: #eed211;
                border-radius: 0.25rem;
            }
            .dropdown-item:hover {
                background-color: #eed211 !important;
                color: #000 !important;
            }
        }


/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
/* ||   Footer 
/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
.footer {
  color: var(--default-color);
  background-color: var(--background-color);
  background: url("../img/footer-bg.jpg") top center no-repeat;
  background-size: cover;
  font-size: 14px;
  position: relative;
  
}

.footer .container {
  position: relative;
}

.footer .footer-top {
  padding-top: 100px;
}

.footer .footer-about .logo {
  line-height: 1;
  margin-bottom: 5px;
  position: relative;
}

.footer .footer-about .logo img {
  max-height: 90px;
  margin-right: 6px;
  position: absolute;
  top:-30px;
  left:130px;
}

.footer .footer-about p,span {
  font-size: 14px;
  font-family: var(--heading-font);
  color: #F3E4B6;
}

.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid #fff;
  font-size: 16px;
  color: #F3E4B6;
  margin-right: 10px;
  transition: 0.3s;
  background-color: rgba(88, 60, 15, 0.5);
}

.footer .social-links a:hover {
  color: #503814;
  background-color: rgba(255, 255, 255, 0.8);
}

.footer-backtrans{
  background-color: rgba(0, 0, 0, 0.4);
  
}
.footer h4 {
  font-size: 16px;
  font-weight: bold;
  position: relative;
  padding-bottom: 12px;
}

.footer .footer-links {
  margin-bottom: 30px;
}

.footer .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer .footer-links ul i {
  padding-right: 2px;
  font-size: 12px;
  line-height: 0;
}


.footer .footer-contact{
  padding:19px;box-sizing: border-box;
  border-radius: 19px;
}

.footer .footer-contact h4{
  padding-top:19px;
  color: #EED211;
  border-bottom: 1px solid #ECD388;
}
.footer .footer-contact ul {
  list-style-type: none;
  margin-left: 0;
  padding-left: 0;
}

.footer .footer-contact ul li, .footer-contact ul li a{
  color:#F3E4B6;
  margin-left: 0;
  padding-right: 8px;
}
.footer .footer-contact ul li a:hover{
  color:#533811;
  margin-left: 0;
  background-color: #fff;
}



.footer .footer-contact p i{
  color:#ECD388;
  font-size: 15px;
}

.footer .copyright {
  padding-top: 25px;
  padding-bottom: 25px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.footer .copyright p {
  margin-bottom: 0;
  color: #ECD388;
}
.footer .footer-contact .social-links img{
   max-height: 40px;
   margin: 8px;
}


/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
/* ||   Preloader 
/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
#preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  overflow: hidden;
  background: var(--background-color, #1a1a1a);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.dot {
  width: 15px;
  height: 15px;
  background: var(--accent-color, #ffffff);
  border-radius: 50%;
  animation: bounce 1.2s infinite ease-in-out;
}

.dot:nth-child(2) {
  animation-delay: 0.2s;
}

.dot:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}

/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
/* ||   titulos y breadcrumbs
/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
.page-title {
  color: var(--default-color);
  background-color: var(--background-color);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 100px 0 60px 0;
  text-align: center;
  position: relative;
}

.page-title:before {
  content: "";
  background-color: color-mix(in srgb, var(--background-color), transparent 40%);
  position: absolute;
  inset: 0;
}

.page-title h1 {
  font-size: 56px;
  font-weight: 500;
  margin-bottom: 10px;
}

.page-title .breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  justify-content: center;
  padding: 0;
  margin: 0;
  font-size: 16px;
  font-weight: 500;
}

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

.page-title .breadcrumbs ol li+li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
/* ||   Secciones
/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */



/**/
/**/
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 60px 0;
  scroll-margin-top: 92px;
  overflow: clip;
}

@media (max-width: 1199px) {

  section,
  .section {
    scroll-margin-top: 76px;
  }
}

.section-title {
  text-align: center;
  padding-bottom: 10px;
  position: relative;
}

.section-title h2 {
  font-size: 32px;
  font-weight: 700;
  position: relative;
  color:#000;
}

.section-title h2:before,
.section-title h2:after {
  content: "";
  width: 50px;
  height: 2px;
  background: var(--accent-color);
  display: inline-block;
}

.section-title h2:before {
  margin: 0 15px 10px 0;
}

.section-title h2:after {
  margin: 0 0 10px 15px;
}

.section-title p {
  margin-bottom: 0;
  color:#000;
}

/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
/* ||   Gallerys description 
/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
/* Evita conflictos con otros carruseles */
.custom-carousel .custom-card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  text-align: center;
}

.custom-carousel .custom-card img {
  width: 100%;
  height: auto;
  display: block;
}

.custom-carousel .custom-desc {
  padding-bottom: 10px;
  font-size: 14px;
  background: #f8f9fa;

}

/* Limpiar por completo los estilos por defecto */
.custom-carousel .carousel-control-prev-icon,
.custom-carousel .carousel-control-next-icon {
  background-image: none !important; /* Quita el SVG de Bootstrap */
  background-color: rgba(0, 0, 0, 0.6);
  border-radius: 50%;

  width: 50px;
  height: 50px;

  display: flex;              /* Centrado */
  align-items: center;        /* Vertical */
  justify-content: center;    /* Horizontal */

  font-size: 50px;             /* Tamaño flecha */
  color: white;
  line-height: 1;              /* Evita desplazamiento vertical */
  padding: 0;                  /* Elimina espacio extra */
}

/* Flecha izquierda */
.custom-carousel .carousel-control-prev-icon::before {
  content: "‹";
  display: block;
  padding-bottom: 13px;
}

/* Flecha derecha */
.custom-carousel .carousel-control-next-icon::before {
  content: "›";
  display: block;
  padding-bottom: 13px;
}

/* Hover */
.custom-carousel .carousel-control-prev-icon:hover,
.custom-carousel .carousel-control-next-icon:hover {
  background-color: rgba(0, 0, 0, 0.8);
}





/*personalizando cards*/
.custom-card {
            width: 100%;
            max-width: 400px;
            margin: auto;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        }
        .card-image-container {
            position: relative;
            height: 240px; /* 60% de 400px (ancho máximo) */
            overflow: hidden;
        }
        .card-image {
            width: 100%;
            height: 100%;
            background-size: cover;
            background-position: center;
            transition: transform 0.3s ease-in-out;
        }
        .card-image-container:hover .card-image {
            transform: scale(1.1);
        }

        .card-image-container::after {
          content: '';
          position: absolute;
          top: 0;
          left: 0;
          width: 100%;
          height: 100%;
          background-color: rgba(0, 0, 0, 0.2); /* Fondo negro semitransparente (40% de opacidad) */
          z-index: 1; /* Asegura que la capa esté por encima de la imagen */
        }
        .offer-badge {
            position: absolute;
            top: 10px;
            right: 0px;
            background-color: yellow;
            color: black;
            font-size: 0.75rem;
            padding: 2px 16px 2px 9px;
            border-radius: 8px 0px 0px 8px;
            font-weight: bold;
            z-index: 2;
        }

.card-body{min-height: 235px;position: relative;padding:9px 4px 3px 11px;}
.card-description {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding:5px;
    color: white;
    text-shadow: 0 1px 8px rgba(0, 0, 0, 1);
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 2;
    text-align: center;
}

.card-description h3 {
    margin: 0 0 0.5rem;
    font-size: 1.25rem;
    color:#fff;
}

.card-body .fest-desc span{color:#222;font-size:15px; }

/*=======================================================
 modelo Section
=========================================================*/
.modelo {
  width: 100%;
  min-height: 100vh;
  position: relative;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.modelo .info {
  position: relative;
  inset: 0;
  z-index: 3;
  padding: 140px 0 60px 0;
}

@media (max-width: 768px),
(max-height: 480px) {
  .modelo .info {
    padding: 100px 50px 60px 50px;
  }
}

.modelo .info h2 {
  margin-bottom: 30px;
  padding-bottom: 30px;
  font-size: 50px;
  font-weight: 700;
  position: relative;
  text-shadow: #000 1px 0 10px;
}

.modelo .info h3 {
  margin-bottom: 2px;
  padding-bottom: 15px;
  font-size: 20px;
  font-weight: 700;
  position: relative;
  text-shadow: #000 1px 0 10px;
}
.modelo .info p {
  margin-top: 2px;
  padding-top: 8px;
  font-weight: bold;
  font-style: italic;
  text-shadow: #000 1px 0 10px;
  color: #fff !important;
}

.modelo .info h2:after {
  content: "";
  position: absolute;
  display: block;
  width: 80px;
  height: 2px;
  background: var(--accent-color);
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}




@media (max-width: 768px) {
  .modelo .info h2 {
    font-size: 29px;
  }
}

.modelo .info p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  font-size: 18px;
}

.modelo .info .btn-get-started {
  color: var(--contrast-color);
  font-family: var(--heading-font);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 40px;
  border-radius: 50px;
  transition: 0.9s;
  margin: 10px;
  background-color: rgba(253, 184, 0, 0.3);
  border: 2px solid var(--accent-color);
}

.modelo .info .btn-get-started:hover {
  background: var(--accent-color);
  box-shadow: inset 300px 0 0 0 var(--accent-color) !important;
  color: #000 !important;
  transition: 0.8s;

}
/*
  background: var(--accent-color);
  box-shadow: inset 300px 0 0 0 var(--accent-color) !important;
  color: #000 !important;
  transition: 1s;
*/

.modelo .carousel {
  inset: 0;
  position: absolute;
  overflow: hidden;
}

.modelo .carousel-item {
  position: relative; /* Cambiado de absolute a relative */
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
  transition-duration: 0.4s;
  width: 100%;
  height: 100%;
}

.modelo .carousel-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-image: inherit; /* Hereda la imagen de fondo del .carousel-item */
  z-index: 1; /* Asegura que esté detrás del contenido del .carousel-item */
  animation-name: image-zoom;
  animation-duration: 10s;
  animation-delay: 1s;
  animation-iteration-count: infinite;
  animation-direction: alternate;
  transition: 1s;
}

.modelo .carousel-item img {
  display: none; /* Oculta la imagen si está presente */
}

@keyframes image-zoom {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.1);
  }
}

.modelo .carousel-item::after {
  content: "";
  background-color: color-mix(in srgb, #000, transparent 70%);
  position: absolute;
  inset: 0;
  z-index: 2;
}

.modelo .carousel-control-prev {
  justify-content: start;
}

@media (min-width: 640px) {
  .modelo .carousel-control-prev {
    padding-left: 15px;
  }
}

.modelo .carousel-control-next {
  justify-content: end;
}

@media (min-width: 640px) {
  .modelo .carousel-control-next {
    padding-right: 15px;
  }
}

.modelo .carousel-control-next-icon,
.modelo .carousel-control-prev-icon {
  background: none;
  font-size: 26px;
  line-height: 0;
  background: color-mix(in srgb, var(--default-color), transparent 60%);
  color: color-mix(in srgb, var(--default-color), transparent 5%);
  border-radius: 50px;
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modelo .carousel-control-prev,
.modelo .carousel-control-next {
  z-index: 3;
  transition: 0.3s;
}

.modelo .carousel-control-prev:focus,
.modelo .carousel-control-next:focus {
  opacity: 0.5;
}

.modelo .carousel-control-prev:hover,
.modelo .carousel-control-next:hover {
  opacity: 0.9;
}

/*--------------------------------------------------------------
# Get Started Section
--------------------------------------------------------------*/
.get-started .content {
  padding: 30px 0;
}

.get-started .content h3 {
  font-size: 36px;
  font-weight: 600;
  margin-bottom: 25px;
  padding-bottom: 25px;
  position: relative;
}

.get-started .content h3:after {
  content: "";
  position: absolute;
  display: block;
  width: 60px;
  height: 4px;
  background: var(--accent-color);
  left: 0;
  bottom: 0;
}

.get-started .content p {
  font-size: 14px;
}


/**/
.mt-gen{padding-top: 12px;}
/**/

/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
/* ||   BTN GENERIC
/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
.btn-generic {
  color: var(--black-color);
  font-family: var(--heading-font);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 16px;
  border-radius: 20px;
  transition: 0.5s;
  margin: 10px; 
  background-color: #EED211;
  border: 1px solid #fff !important;
}

.btn-generic:hover {
  background: #EED211;
  box-shadow: inset 265px 0 0 0 #0F5F22 !important;
  color: #fff !important;
  transition: 0.6s;

}
/*----SMALL BUTTON */
.btn-generic-sm {
  color: var(--contrast-color);
  font-family: var(--heading-font);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 9px 25px;
  border-radius: 20px;
  transition: 0.5s;
  margin: 10px;
  background-color: #0F5F22;/**/
  border: 1px solid #fff !important;
}

.btn-generic-sm:hover {
  background: #0F5F22;/**/
  /* Cambio el valor de 500px a 999px para que el efecto funcione en cualquier tamaño */
  box-shadow: inset 158px 0 0 0 #EED211 !important; 
  color: #000 !important;
  transition: 0.6s;
 
}
.position-btn{position: absolute;z-index: 3;bottom: 9px;left: 0;height:50px;}



/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services .service-item {
  background-color: var(--surface-color);
  padding: 40px;
  box-shadow: 0px 0 30px rgba(0, 0, 0, 0.1);
  height: 100%;
}

.services .service-item .icon {
  width: 48px;
  height: 48px;
  position: relative;
  margin-bottom: 50px;
}

.services .service-item .icon i {
  color: var(--heading-color);
  font-size: 56px;
  transition: ease-in-out 0.3s;
  z-index: 2;
  position: relative;
}

.services .service-item .icon:before {
  position: absolute;
  content: "";
  height: 100%;
  width: 100%;
  background: color-mix(in srgb, var(--heading-color), transparent 95%);
  border-radius: 50px;
  z-index: 1;
  top: 10px;
  right: -20px;
  transition: 0.3s;
}

.services .service-item h3 {
  color: color-mix(in srgb, var(--heading-color), transparent 20%);
  font-weight: 700;
  margin: 0 0 20px 0;
  padding-bottom: 8px;
  font-size: 22px;
  position: relative;
  display: inline-block;
  border-bottom: 4px solid color-mix(in srgb, var(--heading-color), transparent 90%);
  transition: 0.3s;
}

.services .service-item p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.services .service-item .readmore {
  margin-top: 15px;
  display: inline-block;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.services .service-item:hover .icon i {
  color: var(--heading-color);
}

.services .service-item:hover .icon:before {
  background: var(--accent-color);
}

.services .service-item:hover h3 {
  border-color: var(--accent-color);
  color: var(--heading-color);
}

.services .service-item:hover .readmore {
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about .inner-title {
  font-size: 2.75rem;
  font-weight: 700;
  margin: 30px 0;
}

@media (min-width: 991px) {
  .about .inner-title {
    max-width: 65%;
    margin: 0 0 80px 0;
  }
}

.about .our-story {
  padding: 40px;
  background-color: color-mix(in srgb, var(--default-color), transparent 96%);
}

@media (min-width: 991px) {
  .about .our-story {
    padding-right: 35%;
  }
}

.about .our-story h4 {
  text-transform: uppercase;
  font-size: 1.1rem;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.about .our-story h3 {
  font-size: 2.25rem;
  font-weight: 700;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.about .our-story p:last-child {
  margin-bottom: 0;
}

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

.about ul li {
  padding: 5px 0;
  display: flex;
  align-items: center;
}

.about ul i {
  font-size: 1.25rem;
  margin-right: 0.5rem;
  line-height: 1.2;
  color: var(--accent-color);
}

.about .watch-video i {
  font-size: 2rem;
  transition: 0.3s;
  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);
}

.about .about-img {
  min-height: 400px;
  position: relative;
}

@media (min-width: 992px) {
  .about .about-img {
    position: absolute;
    top: 0;
    right: 0;
    min-height: 600px;
  }
}

.about .about-img img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 1;
}



/*--------------------------------------------------------------
# Alt Services 2 Section
--------------------------------------------------------------*/
.alt-services-2 .features-image {
  position: relative;
  min-height: 400px;
}

.alt-services-2 .features-image img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.alt-services-2 h3 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 20px;
}

.alt-services-2 .icon-box {
  margin-top: 30px;
}

.alt-services-2 .icon-box i {
  color: var(--accent-color);
  margin-right: 15px;
  font-size: 24px;
  line-height: 1.2;
}

.alt-services-2 .icon-box h4 {
  font-weight: 600;
  margin-bottom: 10px;
  font-size: 18px;
}

.alt-services-2 .icon-box p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Team Section
--------------------------------------------------------------*/
.team .member {
  position: relative;
}

.team .member .member-img {
  margin: 0 80px;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
}

@media (max-width: 1024px) {
  .team .member .member-img {
    margin: 0 60px;
  }
}

.team .member .member-img img {
  position: relative;
  z-index: 1;
}

.team .member .member-img .social {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2;
  padding-bottom: 20px;
  transition: 0.3s;
  visibility: hidden;
  opacity: 0;
}

.team .member .member-img .social a {
  transition: 0.3s;
  color: var(--contrast-color);
  font-size: 20px;
  margin: 0 8px;
}

.team .member .member-img .social a:hover {
  color: var(--accent-color);
}

.team .member .member-info {
  margin-top: 30px;
}

.team .member .member-info h4 {
  font-weight: 700;
  margin-bottom: 6px;
  font-size: 18px;
}

.team .member .member-info span {
  font-style: italic;
  display: block;
  font-size: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-bottom: 10px;
}

.team .member .member-info p {
  margin-bottom: 0;
  font-size: 14px;
}

.team .member:hover .member-img .social {
  padding-bottom: 0;
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Features Cards Section
--------------------------------------------------------------*/
.features-cards h3 {
  font-size: 20px;
  font-weight: 700;
}

.features-cards p {
  font-size: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.features-cards ul li {
  display: flex;
  align-items: center;
  font-size: 14px;
  padding-top: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.features-cards ul li i {
  font-size: 16px;
  color: var(--accent-color);
  margin-right: 6px;
}

/*--------------------------------------------------------------
# Service Details Section
--------------------------------------------------------------*/
.service-details .services-list {
  background-color: var(--surface-color);
  padding: 10px 30px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  margin-bottom: 20px;
}

.service-details .services-list a {
  display: block;
  line-height: 1;
  padding: 8px 0 8px 15px;
  border-left: 3px solid color-mix(in srgb, var(--default-color), transparent 70%);
  margin: 20px 0;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  transition: 0.3s;
}

.service-details .services-list a.active {
  color: var(--heading-color);
  font-weight: 700;
  border-color: var(--accent-color);
}

.service-details .services-list a:hover {
  border-color: var(--accent-color);
}

.service-details .services-img {
  margin-bottom: 20px;
}

.service-details h3 {
  font-size: 26px;
  font-weight: 700;
}

.service-details h4 {
  font-size: 20px;
  font-weight: 700;
}

.service-details p {
  font-size: 15px;
}

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

.service-details ul li {
  padding: 5px 0;
  display: flex;
  align-items: center;
}

.service-details ul i {
  font-size: 20px;
  margin-right: 8px;
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Project Details Section
--------------------------------------------------------------*/
.project-details .portfolio-details-slider img {
  width: 100%;
}

.project-details .swiper-wrapper {
  height: auto;
}

.project-details .swiper-button-prev,
.project-details .swiper-button-next {
  width: 48px;
  height: 48px;
}

.project-details .swiper-button-prev:after,
.project-details .swiper-button-next:after {
  color: rgba(255, 255, 255, 0.8);
  background-color: rgba(0, 0, 0, 0.15);
  font-size: 24px;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}

.project-details .swiper-button-prev:hover:after,
.project-details .swiper-button-next:hover:after {
  background-color: rgba(0, 0, 0, 0.3);
}

@media (max-width: 575px) {

  .project-details .swiper-button-prev,
  .project-details .swiper-button-next {
    display: none;
  }
}

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

.project-details .swiper-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background-color: color-mix(in srgb, var(--default-color), transparent 85%);
  opacity: 1;
}

.project-details .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--accent-color);
}

.project-details .portfolio-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

.project-details .portfolio-info h3:after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: var(--accent-color);
  left: 0;
  bottom: 0;
}

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

.project-details .portfolio-info ul li {
  display: flex;
  flex-direction: column;
  padding-bottom: 15px;
}

.project-details .portfolio-info ul strong {
  text-transform: uppercase;
  font-weight: 400;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 14px;
}

.project-details .portfolio-info .btn-visit {
  padding: 8px 40px;
  background: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 50px;
  transition: 0.3s;
}

.project-details .portfolio-info .btn-visit:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

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

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

.project-details .portfolio-description .testimonial-item {
  padding: 30px 30px 0 30px;
  position: relative;
  background: color-mix(in srgb, var(--default-color), transparent 97%);
  margin-bottom: 50px;
}

.project-details .portfolio-description .testimonial-item .testimonial-img {
  width: 90px;
  border-radius: 50px;
  border: 6px solid var(--background-color);
  float: left;
  margin: 0 10px 0 0;
}

.project-details .portfolio-description .testimonial-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 15px 0 5px 0;
  padding-top: 20px;
}

.project-details .portfolio-description .testimonial-item h4 {
  font-size: 14px;
  color: #6c757d;
  margin: 0;
}

.project-details .portfolio-description .testimonial-item .quote-icon-left,
.project-details .portfolio-description .testimonial-item .quote-icon-right {
  color: color-mix(in srgb, var(--accent-color), transparent 50%);
  font-size: 26px;
  line-height: 0;
}

.project-details .portfolio-description .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.project-details .portfolio-description .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
  transform: scale(-1, -1);
}

.project-details .portfolio-description .testimonial-item p {
  font-style: italic;
  margin: 0 0 15px 0 0 0;
  padding: 0;
}

/*--------------------------------------------------------------
# Blog Posts Section
--------------------------------------------------------------*/
.blog-posts article {
  background-color: var(--surface-color);
  box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.1);
  transition: 0.3s;
}

.blog-posts .post-img img {
  transition: 0.5s;
}

.blog-posts .post-date {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  position: absolute;
  right: 0;
  bottom: 0;
  text-transform: uppercase;
  font-size: 13px;
  padding: 6px 12px;
  font-weight: 500;
}

.blog-posts .post-content {
  padding: 30px;
}

.blog-posts .post-title {
  font-size: 20px;
  color: var(--heading-color);
  font-weight: 700;
  transition: 0.3s;
  margin-bottom: 15px;
}

.blog-posts .meta i {
  font-size: 16px;
  color: var(--accent-color);
}

.blog-posts .meta span {
  font-size: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.blog-posts p {
  margin-top: 20px;
}

.blog-posts hr {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
  margin-bottom: 15px;
}

.blog-posts .readmore {
  display: flex;
  align-items: center;
  font-weight: 600;
  line-height: 1;
  transition: 0.3s;
  color: color-mix(in srgb, var(--heading-color), transparent 20%);
}

.blog-posts .readmore i {
  line-height: 0;
  margin-left: 6px;
  font-size: 16px;
}

.blog-posts article:hover .post-title,
.blog-posts article:hover .readmore {
  color: var(--accent-color);
}

.blog-posts article:hover .post-img img {
  transform: scale(1.1);
}

/*--------------------------------------------------------------
# Blog Pagination Section
--------------------------------------------------------------*/
.blog-pagination {
  padding-top: 0;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.blog-pagination ul {
  display: flex;
  padding: 0;
  margin: 0;
  list-style: none;
}

.blog-pagination li {
  margin: 0 5px;
  transition: 0.3s;
}

.blog-pagination li a {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  padding: 7px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.blog-pagination li a.active,
.blog-pagination li a:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.blog-pagination li a.active a,
.blog-pagination li a:hover a {
  color: var(--contrast-color);
}

/*--------------------------------------------------------------
# Blog Details Section
--------------------------------------------------------------*/
.blog-details {
  padding-bottom: 30px;
}

.blog-details .article {
  background-color: var(--surface-color);
  padding: 30px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.blog-details .post-img {
  margin: -30px -30px 20px -30px;
  overflow: hidden;
}

.blog-details .title {
  color: var(--heading-color);
  font-size: 28px;
  font-weight: 700;
  padding: 0;
  margin: 30px 0;
}

.blog-details .content {
  margin-top: 20px;
}

.blog-details .content h3 {
  font-size: 22px;
  margin-top: 30px;
  font-weight: bold;
}

.blog-details .content blockquote {
  overflow: hidden;
  background-color: color-mix(in srgb, var(--default-color), transparent 95%);
  padding: 60px;
  position: relative;
  text-align: center;
  margin: 20px 0;
}

.blog-details .content blockquote p {
  color: var(--default-color);
  line-height: 1.6;
  margin-bottom: 0;
  font-style: italic;
  font-weight: 500;
  font-size: 22px;
}

.blog-details .content blockquote:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background-color: var(--accent-color);
  margin-top: 20px;
  margin-bottom: 20px;
}

.blog-details .meta-top {
  margin-top: 20px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.blog-details .meta-top ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  align-items: center;
  padding: 0;
  margin: 0;
}

.blog-details .meta-top ul li+li {
  padding-left: 20px;
}

.blog-details .meta-top i {
  font-size: 16px;
  margin-right: 8px;
  line-height: 0;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.blog-details .meta-top a {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 14px;
  display: inline-block;
  line-height: 1;
}

.blog-details .meta-bottom {
  padding-top: 10px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.blog-details .meta-bottom i {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  display: inline;
}

.blog-details .meta-bottom a {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  transition: 0.3s;
}

.blog-details .meta-bottom a:hover {
  color: var(--accent-color);
}

.blog-details .meta-bottom .cats {
  list-style: none;
  display: inline;
  padding: 0 20px 0 0;
  font-size: 14px;
}

.blog-details .meta-bottom .cats li {
  display: inline-block;
}

.blog-details .meta-bottom .tags {
  list-style: none;
  display: inline;
  padding: 0;
  font-size: 14px;
}

.blog-details .meta-bottom .tags li {
  display: inline-block;
}

.blog-details .meta-bottom .tags li+li::before {
  padding-right: 6px;
  color: var(--default-color);
  content: ",";
}

.blog-details .meta-bottom .share {
  font-size: 16px;
}

.blog-details .meta-bottom .share i {
  padding-left: 5px;
}

/*--------------------------------------------------------------
# Blog Author Section
--------------------------------------------------------------*/
.blog-author {
  padding: 10px 0 40px 0;
}

.blog-author .author-container {
  background-color: var(--surface-color);
  padding: 20px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.blog-author img {
  max-width: 120px;
  margin-right: 20px;
}

.blog-author h4 {
  font-weight: 600;
  font-size: 20px;
  margin-bottom: 0px;
  padding: 0;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.blog-author .social-links {
  margin: 0 10px 10px 0;
}

.blog-author .social-links a {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
  margin-right: 5px;
}

.blog-author p {
  font-style: italic;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Blog Comments Section
--------------------------------------------------------------*/
.blog-comments {
  padding: 10px 0;
}

.blog-comments .comments-count {
  font-weight: bold;
}

.blog-comments .comment {
  margin-top: 30px;
  position: relative;
}

.blog-comments .comment .comment-img {
  margin-right: 14px;
}

.blog-comments .comment .comment-img img {
  width: 60px;
}

.blog-comments .comment h5 {
  font-size: 16px;
  margin-bottom: 2px;
}

.blog-comments .comment h5 a {
  font-weight: bold;
  color: var(--default-color);
  transition: 0.3s;
}

.blog-comments .comment h5 a:hover {
  color: var(--accent-color);
}

.blog-comments .comment h5 .reply {
  padding-left: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.blog-comments .comment h5 .reply i {
  font-size: 20px;
}

.blog-comments .comment time {
  display: block;
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-bottom: 5px;
}

.blog-comments .comment.comment-reply {
  padding-left: 40px;
}

/*--------------------------------------------------------------
# Comment Form Section
--------------------------------------------------------------*/
.comment-form {
  padding-top: 10px;
}

.comment-form form {
  background-color: var(--surface-color);
  margin-top: 30px;
  padding: 30px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.comment-form form h4 {
  font-weight: bold;
  font-size: 22px;
}

.comment-form form p {
  font-size: 14px;
}

.comment-form form input {
  background-color: var(--surface-color);
  color: var(--default-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 70%);
  font-size: 14px;
  border-radius: 4px;
  padding: 10px 10px;
}

.comment-form form input:focus {
  color: var(--default-color);
  background-color: var(--surface-color);
  box-shadow: none;
  border-color: var(--accent-color);
}

.comment-form form input::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.comment-form form textarea {
  background-color: var(--surface-color);
  color: var(--default-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 70%);
  border-radius: 4px;
  padding: 10px 10px;
  font-size: 14px;
  height: 120px;
}

.comment-form form textarea:focus {
  color: var(--default-color);
  box-shadow: none;
  border-color: var(--accent-color);
  background-color: var(--surface-color);
}

.comment-form form textarea::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.comment-form form .form-group {
  margin-bottom: 25px;
}

.comment-form form .btn-primary {
  border-radius: 4px;
  padding: 10px 20px;
  border: 0;
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.comment-form form .btn-primary:hover {
  color: var(--contrast-color);
  background-color: color-mix(in srgb, var(--accent-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: 20px;
  color: var(--accent-color);
  width: 56px;
  height: 56px;
  font-size: 24px;
  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 .info-item h3 {
  font-size: 20px;
  font-size: 18px;
  font-weight: 700;
  margin: 10px 0;
}

.contact .info-item p {
  padding: 0;
  margin-bottom: 0;
  font-size: 14px;
}

.contact .php-email-form {
  background-color: var(--surface-color);
  height: 100%;
  padding: 30px;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
}

@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%);
}

/*--------------------------------------------------------------
# Starter Section Section
--------------------------------------------------------------*/
.starter-section {
  /* Add your styles here */
}

/*--------------------------------------------------------------
# Widgets
--------------------------------------------------------------*/
.widgets-container {
  background-color: var(--surface-color);
  padding: 30px;
  margin: 60px 0 30px 0;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.widget-title {
  color: var(--heading-color);
  font-size: 20px;
  font-weight: 700;
  padding: 0;
  margin: 0 0 20px 0;
}

.widget-item {
  margin-bottom: 40px;
}

.widget-item:last-child {
  margin-bottom: 0;
}

.search-widget form {
  background: var(--background-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 70%);
  padding: 3px 10px;
  position: relative;
  transition: 0.3s;
}

.search-widget form input[type=text] {
  border: 0;
  padding: 4px;
  border-radius: 4px;
  width: calc(100% - 40px);
  background-color: var(--background-color);
  color: var(--default-color);
}

.search-widget form input[type=text]:focus {
  outline: none;
}

.search-widget form button {
  background: var(--accent-color);
  color: var(--contrast-color);
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  border: 0;
  font-size: 16px;
  padding: 0 15px;
  margin: -1px;
  transition: 0.3s;
  border-radius: 0 4px 4px 0;
  line-height: 0;
}

.search-widget form button i {
  line-height: 0;
}

.search-widget form button:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.search-widget form:is(:focus-within) {
  border-color: var(--accent-color);
}

.categories-widget ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.categories-widget ul li {
  padding-bottom: 10px;
}

.categories-widget ul li:last-child {
  padding-bottom: 0;
}

.categories-widget ul a {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  transition: 0.3s;
}

.categories-widget ul a:hover {
  color: var(--accent-color);
}

.categories-widget ul a span {
  padding-left: 5px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 14px;
}

.recent-posts-widget .post-item {
  display: flex;
  margin-bottom: 15px;
}

.recent-posts-widget .post-item:last-child {
  margin-bottom: 0;
}

.recent-posts-widget .post-item img {
  width: 80px;
  margin-right: 15px;
}

.recent-posts-widget .post-item h4 {
  font-size: 15px;
  font-weight: bold;
  margin-bottom: 5px;
}

.recent-posts-widget .post-item h4 a {
  color: var(--default-color);
  transition: 0.3s;
}

.recent-posts-widget .post-item h4 a:hover {
  color: var(--accent-color);
}

.recent-posts-widget .post-item time {
  display: block;
  font-style: italic;
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.tags-widget {
  margin-bottom: -10px;
}

.tags-widget ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.tags-widget ul li {
  display: inline-block;
}

.tags-widget ul a {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 14px;
  padding: 6px 14px;
  margin: 0 6px 8px 0;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 60%);
  display: inline-block;
  transition: 0.3s;
}

.tags-widget ul a:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
  border: 1px solid var(--accent-color);
}

.tags-widget ul a span {
  padding-left: 5px;
  color: color-mix(in srgb, var(--default-color), transparent 60%);
  font-size: 14px;
}

/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  btn whatsapp
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
.whatsapp-btn {
  display: none; /* Oculto por defecto en escritorio */
}

/* Solo visible en pantallas de 768px o menos */
@media (max-width: 768px) {
  .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;
    text-decoration: none; /* Para quitar el subrayado del enlace */
  }
}

/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  btn whatsapp
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
.whatsapp-btn {
  display: none; /* Oculto por defecto en escritorio */
}

/* Solo visible en pantallas de 768px o menos */
@media (max-width: 768px) {
  .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;
    text-decoration: none; /* Para quitar el subrayado del enlace */
  }
}

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

/*Estilos con animation contorno respirando*/
@keyframes breathe {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
  }
}

/*Estilos de animacion del icono latiendo*/
@keyframes beat {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}

/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  Tooltip styles (Fondo blanco, texto negro y flecha fusionada)
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
.whatsapp-tooltip {
  /* Estilos del cuerpo del tooltip */
  position: absolute;
  right: 80px;
  bottom: 10px;
  background-color: #fff; /* Fondo blanco */
  color: #000; /* Texto negro */
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 14px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  transform: scale(0.8);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

/* Pseudo-elemento para crear la "flecha" fusionada */
.whatsapp-tooltip::after {
  content: "";
  position: absolute;
  right: -5px; /* Ajusta este valor para posicionar la flecha */
  bottom: 15px;
  width: 10px;
  height: 10px;
  background-color: #fff; /* El mismo color de fondo del tooltip */
  transform: rotate(45deg); /* Gira el cuadrado 45 grados para formar un diamante */
  box-shadow: 2px -2px 5px rgba(0, 0, 0, 0.1); /* Sombra que solo sale hacia el exterior */
  z-index: -1; /* Mueve la flecha detrás del tooltip para ocultar el corte */
}

/* Estado visible del tooltip */
.whatsapp-tooltip.visible {
  opacity: 1;
  transform: scale(1);
}
/*----*/
/*----*/
/* Estilo para título con líneas horizontales a los costados */
.title-with-lines {
    position: relative;
    display: inline-block;
    padding: 0 10px; /* Ajusta el espacio entre el texto y las líneas */
}

.title-with-lines::before,
.title-with-lines::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 40px; /* Longitud de las líneas */
    height: 4px; /* Grosor de las líneas */
    background: #007bff; /* Color de las líneas */
    transform: translateY(-50%);
}

.title-with-lines::before {
    left: -45px; /* Posición de la línea a la izquierda */
}

.title-with-lines::after {
    right: -45px; /* Posición de la línea a la derecha */
}


/**/
/*------solo linea derecha*/
.title-with-lines-right {
    position: relative;
    display: inline-block;
    padding: 0 10px 0 0px; /* Ajusta el espacio entre el texto y las líneas */
}
.title-with-lines-right i{color:#E1A200;}
.title-with-lines-right::after {
    content: "";
    position: absolute;
    top: 52%;
    width: 150px; /* Longitud de la línea */
    height: 1px; /* Grosor de la línea */
    background: #E1A200; /* Color de la línea */
    transform: translateY(-50%);
    right: -150px; /* Posición de la línea a la derecha */
}


/* Estilo para primera letra capital grande en párrafos */
.p-first-letter-capital::first-letter {
    font-size: 50px; /* Tamaño de la primera letra */
    line-height: 0.8; /* Ajuste de la línea para que la primera letra no se desplace */
    margin: 8px 3px 3px 3px; /* Espacio entre la primera letra y el resto del texto */
    float: left; /* Alinear la primera letra al inicio del párrafo */
}

.p-first-letter-capital::first-letter {
    text-transform: uppercase; /* Convertir la primera letra a mayúscula */
}
/**/
.web-color1{color:var(--web-color1);}

/*notas adic*/
.notas-adic{
  color:#888;
  font-size: 14px;
}



/**/
.divider-title {
  width: 60px;
  height: 3px;
  background-color: #FFC107; /* Color del borde, por ejemplo el de border-primary */
  margin: 0 auto 1rem; /* Margen inferior para separarlo del contenido, igual a la clase mb-3 */
}
table .fondo{
  background: #F3D7A3;color:#3E444A;font-size: 14px;
  
}
.tabla td, .tabla tr{border-color: #ECC071;}
.tabla td{background-color: #F8EFDC;}


.list-group-item {border-color: #ECC071;background-color: #FBF5EC;}
/*slider en contenido*/
/* Define una altura para el carrusel y los items para que la imagen de fondo sea visible */
        
        .carousel-fondo {
            height: 450px; /* Ajusta la altura deseada */
        }
        
        /* Estilos generales para los elementos del carrusel (donde irá la imagen de fondo) */
        .carousel-item-custom {
            height: 450px; /* Debe coincidir con la altura del contenedor principal */
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            display: flex; /* Opcional: para centrar contenido si lo hay */
            align-items: center;
            justify-content: center;
            color: white; /* Para que el texto sea visible */
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
            position: relative;
            
        
        }
        .carousel-item-custom .logo i{position: absolute;bottom: 4px;right:4px;}

section .container .descripcion p{font-family: Georgia, serif;color: #495057;line-height:1.6; text-align: justify;/* Fuente serif para darle peso */}
.gris{color: #495057;line-height:1.6;}
.parrafo-sombra {
    font-family: Georgia, serif; /* Fuente serif para darle peso */
    font-size: 1.25rem;
    font-style: italic; /* Opcional: para citas */
    color: #495057;
    background-color: #ffffff;
    padding: 25px;
    border-radius: 8px; /* Esquinas ligeramente redondeadas */
    /* Sombra clave: difusa, ligera y desplazada hacia abajo */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); 
    margin: 30px auto;
    max-width: 650px;
}


.subtitulo-line {
    font-family: 'Poppins', 'Helvetica Neue', sans-serif;
    font-size: 1.9rem; /* Pequeño para parecer una etiqueta */
    font-weight: lighter;
    color: #495057; /* Gris suave */
    text-align: left;
    margin-top: 3px;
    margin-bottom: 25px; /* Poco espacio debajo para que la línea esté cerca */
    position: relative;
}

/* Pseudo-elemento para crear la línea corta */
.subtitulo-line::after {
    content: "";
    display: block;
    width: 45px; /* Ancho de la línea */
    height: 2px; /* Grosor de la línea */
    background-color: #ffc107; /* Color de acento (amarillo) */
    margin: 6px 0 0px; /* Centra la línea y la separa 10px del texto */
}

.cont-resumen .btn-resumen a{font-size: 14px !important;color:#000;}
.resumen{}
.resumen .subtitulo-resumen {
    font-family: 'Poppins', 'Helvetica Neue', sans-serif;
    font-size: 1.2rem; /* Pequeño para parecer una etiqueta */
    font-weight: lighter;
    color: #495057; /* Gris suave */
    text-align: left;
    margin-top: 3px;
    margin-bottom: 25px; /* Poco espacio debajo para que la línea esté cerca */
    position: relative;
}

/* Pseudo-elemento para crear la línea corta */
.resumen .subtitulo-resumen::after {
    content: "";
    display: block;
    width: 45px; /* Ancho de la línea */
    height: 2px; /* Grosor de la línea */
    background-color: #ffc107; /* Color de acento (amarillo) */
    margin: 6px 0 0px; /* Centra la línea y la separa 10px del texto */
}
.resumen .list-unstyled li a{color: #495057;}
.resumen .list-unstyled li a i{color: #E0AB1F;}
.cont-resumen .card{border-style: none;}

.lista-e{background-color: #F8E8C9;margin-left:1px ;margin-right: 10px;}
.lista-e dt{background-color: #F3D7A3;padding-top: 10px;color:#3E444A;text-align: center;}
.lista-e dd{background-color: #F8E8C9;padding-top: 10px;}
.lista-e dd a{color:#3E444A;}

.stylebutton1 a{border: 1px solid #AB7716;background: #FCF3E4;color:#75510F;}
.stylebutton1 a:hover{border: 1px solid #ECC06F;background: #fff;}
.footer-contact .mode-mobile dt{font-weight: lighter;}
.footer-contact .mode-mobile dt i{color:#F3E4B6;}
.footer-contact .mode-mobile dt a i{color:#FEED8B;}

.footer-contact .mode-mobile dt a{background: #976B22;display: inline-block;border-radius: 8px;padding:1px 8px;color:#FEED8B;margin-top: 10px;}
.lista-e dd .de-contacto a{background: #FCF3E4;display: inline-block;border-radius: 8px;padding:1px 8px;color:#75510F;width:180px;border: 1px solid #AB7716;}

/*tik tok*/
.s-tiktok {
    /*min-height: 600px;  Reserva el espacio para evitar saltos */
    position: relative;
}

/* Un spinner simple y elegante */
.spinner {
    border: 4px solid rgba(0, 0, 0, 0.1);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border-left-color: #ff0050; /* Color corporativo de TikTok */
    animation: spin 1s linear infinite;
    display: inline-block;
    margin-bottom: 10px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}