/**
* Template Name: OnePage
* Template URL: https://bootstrapmade.com/onepage-multipurpose-bootstrap-template/
* Updated: Aug 07 2024 with Bootstrap v5.3.3
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

/*--------------------------------------------------------------
# Font & Color Variables
# Help: https://bootstrapmade.com/color-system/
--------------------------------------------------------------*/
/* Fonts */
:root {
  /* Tipografías */
  --default-font: "Roboto", 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: "Raleway", sans-serif;
  --nav-font: "Poppins", sans-serif;

  /* ===== COLORES GLOBALES ===== */
  --background-color: #ffffff;

  /* Texto general */
  --default-color: #226108;          /* verde oscuro corporativo */
  --heading-color: #226108;          /* títulos en verde oscuro */

  /* Marca / acciones */
  --accent-color: #3B9EE1;            /* azul principal */
  --contrast-color: #ffffff;

  /* Superficies */
  --surface-color: #ffffff;
}

/* ===== COLORES DE NAVEGACIÓN ===== */
:root {
  --nav-color: #226108;               /* verde corporativo */
  --nav-hover-color: #3B9EE1;         /* azul principal */

  --nav-mobile-background-color: #ffffff;
  --nav-dropdown-background-color: #ffffff;

  --nav-dropdown-color: #226108;
  --nav-dropdown-hover-color: #1668CC; /* azul contraste */
}

/* ===== PRESETS DE SECCIÓN ===== */

.light-background {
  --background-color: #f5f9fc;        /* gris azulado suave */
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #0b2b3a;        /* azul muy oscuro elegante */
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #143f56;
  --contrast-color: #ffffff;
}

.accent-background {
  --background-color: #3B9EE1;        /* azul principal */
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --accent-color: #ffffff;
  --surface-color: #3B9EE1;
  --contrast-color: #ffffff;
}

/* ===== ESTADOS / CONTRASTES ÚTILES ===== */

/* Hover, links activos, detalles */
.text-accent {
  color: #1668CC;
}

/* Éxito / validaciones / estados positivos */
.text-success,
.bg-success {
  color: #ffffff;
  background-color: #5ABA0E;
}

/* ===== SMOOTH SCROLL ===== */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
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);
}

/* Pulsating Play Button
------------------------------*/
.pulsating-play-btn {
  width: 94px;
  height: 94px;
  background: radial-gradient(var(--accent-color) 50%, color-mix(in srgb, var(--accent-color), transparent 75%) 52%);
  border-radius: 50%;
  display: block;
  position: relative;
  overflow: hidden;
}

.pulsating-play-btn:before {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  animation-delay: 0s;
  animation: pulsate-play-btn 2s;
  animation-direction: forwards;
  animation-iteration-count: infinite;
  animation-timing-function: steps;
  opacity: 1;
  border-radius: 50%;
  border: 5px solid color-mix(in srgb, var(--accent-color), transparent 30%);
  top: -15%;
  left: -15%;
  background: rgba(198, 16, 0, 0);
}

.pulsating-play-btn:after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 100;
  transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.pulsating-play-btn:hover:before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border: none;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 200;
  animation: none;
  border-radius: 0;
}

.pulsating-play-btn:hover:after {
  border-left: 15px solid var(--accent-color);
  transform: scale(20);
}

@keyframes pulsate-play-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }

  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}

/* PHP Email Form Messages
------------------------------*/
.php-email-form .error-message {
  display: none;
  background: #df1529;
  color: #ffffff;
  text-align: left;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .sent-message {
  display: none;
  color: #ffffff;
  background: #059652;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .loading {
  display: none;
  background: var(--surface-color);
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
}

.php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid var(--accent-color);
  border-top-color: var(--surface-color);
  animation: php-email-form-loading 1s linear infinite;
}

@keyframes php-email-form-loading {
  0% {
    transform: rotate(0deg);
  }

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

/* Banner de cookies estático */
.cookies {
  position: fixed;
  bottom: 0;
  background: none;
  z-index: 99999;
}



/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;      
  background: transparent;  
  padding: 15px 0;
  display: flex;
  justify-content: center; /* centrado horizontal del contenedor */
  align-items: center;
}

.header .logo {
  line-height: 1;
}

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

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

.header .btn-getstarted,
.header .btn-getstarted:focus {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-size: 14px;
  padding: 8px 25px;
  margin: 0 0 0 30px;
  border-radius: 4px;
  transition: 0.3s;
}

.header .btn-getstarted:hover,
.header .btn-getstarted:focus:hover {
  color: var(--contrast-color);
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
}

/* Menú centrado */
.navmenu {
  background: rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 500px;                    
  padding: 2px 25px;
  display: flex;
  justify-content: center;   /* enlaces centrados */
  align-items: center;
  gap: 15px;
  margin: 0 auto;            /* asegura que esté centrado */
}

.navmenu ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center;
  justify-content: center;   /* centrado horizontal */
  gap: 10px;
}

.navmenu a {
  color: #ffffff !important;        
  font-family: var(--nav-font);
  font-weight: 500;
  font-size: 16px;
  text-decoration: none;
  padding: 8px 15px;
  border-radius: 500px;
  transition: all 0.3s ease;
}

.navmenu a:hover,
.navmenu .active {
  color: #5ABA0E;       
  background: rgba(255, 255, 255, 0.1); 
}

.navmenu li {
  position: relative;
}

.navmenu a,
.navmenu a:focus {
  color: #ffffff !important;        /* texto blanco */
  font-family: var(--nav-font);
  font-weight: 500;
  font-size: 16px;
  text-decoration: none;
  padding: 8px 15px;
  border-radius: 500px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
}

.navmenu a:hover,
.navmenu .active,
.navmenu .active:focus {
  color: #5ABA0E;       /* verde contraste al hover */
  background: rgba(255, 255, 255, 0.1); /* ligera iluminación */
}

/* Área privada destacada (último elemento del nav) */
.navmenu ul li:last-child a {
  color: #6bdaf5 !important;
  padding-right: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.navmenu ul li:last-child a:hover {
  background-color: rgba(255, 255, 255, 0.35);
  color: #5ABA0E; /* hover verde contraste */
}

/* Shadow + sticky al hacer scroll */
body.scrolled .header {
  border-color: transparent;
  box-shadow: none;
}

/* Header - Mobile */
@media (max-width: 1199px) {
  .header .container-fluid {
    display: flex;
    align-items: center;
    justify-content: space-between; /* logo izquierda, hamburguesa derecha */
  }

  .mobile-nav-toggle {
    font-size: 28px;
    cursor: pointer;
    color: var(--nav-color);
  }
}

.header .container-fluid {
  display: flex;
  align-items: center;
  justify-content: space-between; /* separa logo, menu y área privada */
  max-width: 100%;              /* evita que el contenedor supere la pantalla */
  padding: 0 15px;              /* un poco de margen a los lados */
  box-sizing: border-box;
  overflow: hidden;             /* evita desbordes accidentales */
}

/* Logo a la izquierda */
.header .container-fluid > img {
  max-height: 64px;             /* antes era 36px, podemos hacer más pequeño */
  height: 64px;                 /* tamaño nuevo */
  margin-right: auto;
  margin-left: 20px;
  object-fit: contain;
}

.scrolled .header {
  border-color: var(--contrast-color);
  box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Navmenu - Desktop */
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }

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

  .navmenu li {
    position: relative;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-color);
    padding: 18px 15px;
    font-size: 16px;
    font-family: var(--nav-font);
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

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

  .navmenu li:last-child a {
    padding-right: 0;
  }

  .navmenu li:hover>a,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-hover-color);
  }

  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu .dropdown ul li {
    min-width: 200px;
  }

  .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    color: var(--nav-dropdown-color);
  }

  .navmenu .dropdown ul a i {
    font-size: 12px;
  }

  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover>a {
    color: var(--nav-dropdown-hover-color);
  }

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

  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
  }

  .navmenu .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: -100%;
    visibility: visible;
  }
}

/* Navmenu - Mobile */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
  }

  .navmenu {
    padding: 0;
    z-index: 9997;
  }

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: var(--nav-mobile-background-color);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-dropdown-color);
    padding: 10px 20px;
    font-family: var(--nav-font);
    font-size: 17px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: rotate(180deg);
  }

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    transition: all 0.5s ease-in-out;
  }

  .navmenu .dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }

  .navmenu .dropdown>.dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: absolute;
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    inset: 0;
    background: rgba(33, 37, 41, 0.95); /* fondo semitransparente oscuro */
    display: flex;
    align-items: center;
    justify-content: center; /* centra todo vertical y horizontalmente */
    overflow: hidden;
    flex-direction: column;
  }

  
  .mobile-nav-active .navmenu>ul {
    display: flex;
    flex-direction: column; /* links en columna */
    justify-content: center;
    align-items: center;    /* links centrados horizontalmente */
    gap: 12px;              /* menos espacio vertical entre links */
    list-style: none;
    padding: 0;
    margin: 0;
  }


  .mobile-nav-active .navmenu a,
  .mobile-nav-active .navmenu a:focus {
    display: block;
    text-align: center;
    padding: 10px 20px;
    color: var(--nav-dropdown-color);
    font-size: 18px;
    width: auto;
  }

  .mobile-nav-active .navmenu a i {
    display: none !important; /* quita el icono */
  }

  /* Mantener Área privada con botón azul redondeado */
  .mobile-nav-active .navmenu ul li:last-child a {
    background-color: var(--accent-color) !important; /* fuerza azul */
    color: var(--contrast-color) !important;
    padding: 6px 14px;
    border-radius: 999px;
    white-space: nowrap;
    text-align: center;
    width: auto;
    display: inline-block;
    box-shadow: 0 2px 6px rgba(0,0,0,0.15); /* opcional, le da un poco de profundidad */
  }
}




/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  overflow: hidden;
  background: #fff;
  transition: all 0.6s ease-out;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #ffffff;
  border-color: var(--accent-color) transparent var(--accent-color) transparent;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1.5s linear infinite;
}

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

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

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;

  width: 50px;             /* tamaño circular */
  height: 50px;
  border-radius: 50%;      /* círculo perfecto */

  background-color: rgba(0, 0, 0, 0.4); /* fondo negro translúcido */
  backdrop-filter: blur(8px);           /* desenfoque del fondo */
  display: flex;
  align-items: center;
  justify-content: center;

  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: #ffffff; /* icono blanco */
  line-height: 0;
}

.scroll-top:hover {
  background-color: rgba(0, 0, 0, 0.6); /* más oscuro al pasar el mouse */
  color: #ffffff;
}

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


/*--------------------------------------------------------------
# Subvenciones Section
--------------------------------------------------------------*/
.subvenciones {
  background-color: #ffffff;   /* fondo blanco */
  padding: 40px 20px;          /* espacio arriba/abajo y laterales */
  text-align: center;          /* centrado de la imagen */
}

.subvenciones .container {
  max-width: 1200px;           /* opcional, limita el ancho */
  margin: 0 auto;
}

.subvenciones-img {
  width: auto;
  max-width: 100%;             /* no excede el ancho del contenedor */
  height: auto;                /* mantiene proporción */
  display: inline-block;
  margin: 20px 0;              /* márgenes arriba y abajo */
}


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




/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 120px 0;
  text-align: center;
  position: relative;
}

.page-title h1 {
  font-size: 42px;
  font-weight: 700;
  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: 400;
}

.page-title .breadcrumbs ol a {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

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

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

@media (max-width: 1199px) {

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

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  text-align: center;
  padding-bottom: 60px;
  position: relative;
}

.section-title h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 15px;
  text-transform: uppercase;
}

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

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  width: 100%;
  height: 100vh;  /* altura = 100% de la ventana */
  min-height: calc(100vh - 100px);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 0 60px;
  overflow: hidden;
}

/* Fondo oscurecedor */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background: rgba(0, 0, 0, 0.45);
}

/* Imagen de fondo */
.hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

/* Contenido */
.hero .container {
  position: relative;
  z-index: 3;
}

.hero-content {
  padding: 60px 40px;
}

/* Título */
.hero h1 {
  margin: 0;
  font-size: 56px;
  font-weight: 700;
  line-height: 72px;
  color: #ffffff;
}

/* Subtítulo */
.hero p {
  margin-top: 10px;
  font-size: 22px;
  color: #ffffff;
}

/* Botón glass */
.btn-glass {
  display: inline-block;
  margin-top: 30px;
  padding: 14px 42px;
  font-size: 16px;
  font-weight: 600;
  color: #ffffff;
  text-decoration: none;
  border-radius: 50px;

  background: rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);

  border: 1px solid rgba(0, 0, 0, 0.212);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);

  transition: all 0.3s ease;
}

.btn-glass:hover {
  background: rgba(119, 119, 119, 0.28);
  color: #6bdaf5;              /* verde contraste */
  transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 992px) {
  .hero h1 {
    font-size: 32px;
    line-height: 40px;
  }

  .hero p {
    font-size: 18px;
    line-height: 24px;
  }

  .hero-content {
    padding: 40px 20px;
  }

  /* Desactivar efectos hover en móvil */
  .btn-glass,
  .btn-glass::after {
    transform: none !important;
    color: #ffffff !important;       /* mantiene el color blanco */
    background: rgba(255, 255, 255, 0.18) !important;
    border-color: rgba(255, 255, 255, 0.35) !important;
  }
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/

/* Título */
.about .section-title h2 {
  text-transform: none;       /* quitar mayúsculas automáticas */
  font-weight: 700;           /* negrita */
  text-align: center;         /* centrado horizontal */
  font-size: 32px;
  line-height: 1.4;
  margin: 0 auto 20px auto;
  max-width: 700px;           /* ancho del bloque del título */
}

/* Texto introductorio */
.about .content p:first-of-type {
  text-align: center;
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 40px;
  color: var(--default-color);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Bloque celeste principal */
.about-block {
  display: flex;
  flex-wrap: nowrap;          /* fuerza dos columnas en una fila */
  align-items: stretch;       /* la imagen toma la altura del texto */
  /* Imagen de fondo */
  background-image: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), 
                    url('/img/fondo-about.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 20px;
  padding: 30px;
  width: 95%;                 /* ancho del bloque */
  max-width: 1600px;          /* límite máximo */
  margin: 40px auto;          /* centra horizontalmente */
  color: #ffffff;              /* texto oscuro */
  gap: 20px;                  /* espacio entre columnas */
}

/* Columna de imagen */
.about-image {
  flex: 0 0 50%;              /* ocupa exactamente 50% del ancho */
  border-radius: 15px;
  overflow: hidden;
  display: flex;
  justify-content: center;    /* centra la imagen dentro del contenedor */
  align-items: center;
}


/* Imagen dentro del bloque */
.about-image img {
  width: 65%;
  height: 80%;              /* hace que la altura sea proporcional al ancho */
  object-fit: cover;
  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.653); /* sombra más marcada */
}

/* Columna de texto */
.about-text {
  flex: 0 0 50%;              /* ocupa exactamente 50% del ancho */
  display: flex;
  flex-direction: column;
  text-align: justify;
  justify-content: center;
  line-height: 1.6;
  padding: 20px 20px;

}

/* Responsivo: en móviles, columnas apiladas */
@media (max-width: 992px) {
  .about-block {
    flex-direction: column;
    padding: 20px;
  }

  .about-image, .about-text {
    flex: 0 0 100%;
    padding: 0;
  }

  .about-image {
    margin-bottom: 20px;
  }

  .about .section-title h2 {
    padding: 0 15px;       /* margen a los lados */
    box-sizing: border-box; /* asegura que el padding no rompa el layout */
  }

  .about .content p:first-of-type {
    padding: 0 15px;   /* deja un pequeño margen a los lados */
    box-sizing: border-box; /* asegura que el padding no rompa el layout */
  }
}

/*--------------------------------------------------------------
# Stats Section
--------------------------------------------------------------*/
.stats {
  width: 100%;                  /* ocupa toda la pantalla */
  background: transparent;       /* quitar imagen de fondo */
  padding: 50px 0;              /* espacio arriba y abajo */
}

.stats .stats-item {
  padding: 30px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.stats .stats-item span {
  font-size: 48px;
  display: block;
  color: #226108;               /* números en verde */
  font-weight: 700;
}

.stats .stats-item p {
  color: #226108;               /* texto en blanco */
  padding: 0;
  margin: 0;
  font-family: var(--heading-font);
  font-size: 15px;
  font-weight: 600;
}

@media (max-width: 992px) {
  .stats {
    padding: 10px 0;            /* menos padding vertical */
  }

  .stats .stats-item {
    flex: 1 1 25%;              /* dos en cada fila */
    padding: 10px;
  }

  .stats .stats-item span {
    font-size: 36px;            /* números más pequeños */
  }

  .stats .stats-item p {
    font-size: 14px;            /* texto más pequeño */
  }

  .stat-col {
    flex: 1 1 50%; /* dos por fila en móvil */
    max-width: 50%;
  }
}


/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services {
  background-image: url('../img/fondo-service.jpg'); /* imagen de fondo */
  background-size: cover;        /* cubre todo el bloque */
  background-position: center;   /* centrado */
  background-repeat: no-repeat;  /* no repetir */
  padding: 50px 0;               /* espacio arriba y abajo */
}

.services .service-item-bg {
  position: relative;
  width: 100%;
  padding-top: 100%;          /* mantiene cuadrado */
  background-size: cover;
  background-position: center;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0px 5px 20px rgba(0,0,0,0.2);
  transition: transform 0.3s;
  background-image: url('img/services/service-bg.jpg'); /* misma imagen para todos */
}

.services .service-item-bg:hover {
  transform: scale(1.05);
}

/* Bloque interior */
.services .service-item-inner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start; /* títulos arriba */
  padding: 15px;
}

/* Header fijo para títulos */
.service-header {
  min-height: 60px;           /* misma altura para todos los títulos */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.service-header h3 {
  font-size: 20px;
  font-weight: 700;
  color: #226108;
  margin: 0;
}

/* Contenido debajo */
.service-content {
  flex: 1;                     /* ocupa el resto del espacio */
  margin-top: 10px;
  padding: 10px;
  text-align: justify;          /* texto justificado */
  color: #226108;               /* color verde oscuro */
}

.service-content p {
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 800px) {
  .services .service-item-bg {
    width: 70%;             /* ocupa todo el ancho disponible del contenedor */
    padding-top: 70%;         /* altura relativa al ancho, cuadrado */
    aspect-ratio: 1 / 1;     /* fuerza un cuadrado perfecto */
    box-shadow: 0px 3px 10px rgba(0,0,0,0.2);
    margin: 0 auto 20px auto; /* centra el bloque y separa verticalmente */
  }

  .service-item-inner {
    display: flex;
    flex-direction: column;
    justify-content: center;   /* centra verticalmente todo el contenido */
    align-items: center;       /* centra horizontalmente los hijos */
    height: 100%;
    padding: 10px;
  }

  .service-header {
    min-height: 40px;
    width: 100%;               /* título ocupa todo el ancho */
    text-align: center;        /* centrado horizontal */
  }

  .service-content {
    margin-top: 30px;   /* más espacio arriba */
    padding: 0;
    max-width: 80%;            /* ocupa menos ancho */
    text-align: justify;       /* texto justificado */
  }

  .service-content p {
    font-size: 13px;
    line-height: 1.4;
  }
}


/*--------------------------------------------------------------
# Portfolio Section
--------------------------------------------------------------*/
.portfolio {
  background-color: #226108; /* fondo verde oscuro */
  padding: 50px 0;           /* espacio arriba y abajo */
}

.portfolio .section-title h2,
.portfolio .section-title p {
  color: #ffffff;
}

.portfolio .portfolio-item {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  margin-bottom: 20px;
}

/* Imagen */
.portfolio .portfolio-item img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  display: block;
  border-radius: 16px;
  transition: filter 0.3s ease;
}

/* Hover: blur ligero + oscurecido leve */
.portfolio .portfolio-item:hover img {
  filter: brightness(0.5) blur(0.5px);
}

/* Overlay centrado */
.portfolio .portfolio-item .portfolio-info {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  opacity: 0;
  text-align: center;
  transition: opacity 0.5s ease;
  pointer-events: none;
}

/* Mostrar overlay en hover */
.portfolio .portfolio-item:hover .portfolio-info {
  opacity: 1;
}

/* Título del proyecto */
.portfolio .portfolio-item .portfolio-info h4 {
  margin: 0 0 10px 0;
  font-size: 20px;
  font-weight: 600;
  color: #ffffff;
}

/* Lupa */
.portfolio .portfolio-item .portfolio-info .preview-link {
  font-size: 36px;
  color: #ffffff;
  line-height: 0;
  cursor: pointer;
}

/* Responsive */
@media (max-width: 768px) {
  .portfolio .portfolio-item img {
    height: 220px;
  }

  /* Quitar hover en móvil */
  .portfolio .portfolio-item:hover img {
    filter: none;
    transform: none;
  }

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



/*--------------------------------------------------------------
# Noticias Section
--------------------------------------------------------------*/
.noticias {
  background-color: #ffffff; /* fondo blanco */
  padding: 60px 0;
}

.noticias .container {
  max-width: 900px; /* ajusta a tu gusto */
  margin: 0 auto;   /* centra el container horizontalmente */
}

.noticias .row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center; /* centra las columnas si no llenan la fila */
  gap: 30px; /* espacio entre tarjetas */
}

.noticias .section-title h2,
.noticias .section-title p {
  color: #226108; /* texto oscuro */
  text-align: center;
  margin-bottom: 20px;
}

.noticias .noticia-item {
  background-image: url('../img/anuncios-image.jpg'); /* imagen de fondo */
  background-size: cover;
  background-position: center;
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  height: 360px; /* altura de la tarjeta, se puede ajustar */
  text-align: center;
  overflow: hidden;
}

.noticias .noticia-bloque {
  flex: 1; /* cada bloque ocupa 1/3 */
  display: flex;
  justify-content: center; /* centra verticalmente contenido dentro del bloque */
  align-items: center;     /* centra horizontalmente */
  padding: 10px;
}

.noticias .noticia-bloque.titulo h2 {
  margin: 0;
  font-size: 20px;
  font-weight: 700;
  color: #1668cc; /* título oscuro */
}

.noticias .noticia-bloque.descripcion p {
  margin: 0;
  font-size: 14px;
  color: #333333; /* texto oscuro */
  padding: 0 10px; /* evita que el texto toque los bordes */
}

.noticias .noticia-bloque.boton a {
  display: inline-block;
  padding: 8px 20px;
  border-radius: 50px; 
  background-color: #1668cc; /* azul representativo más claro */
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease-in-out;
}

.noticias .noticia-bloque.boton a:hover {
  background-color: rgb(45, 27, 174); /* ligero cambio al pasar por encima */
}

@media (max-width: 1000px) {
  .noticias .noticia-item {
    background-image: none;    /* quita la imagen */
    background-color: #ffffff; /* fondo blanco */
    max-width: 350px;   /* ancho máximo de la tarjeta */
    margin: 0 auto;     /* la centra horizontalmente */
    max-height: 250px;  /* altura máxima en móvil */
  }

   /* Quitar overlay en móvil */
  .noticias .noticia-item::before {
    background: none;
  }

  .noticias .noticia-bloque.titulo h2,
  .noticias .noticia-bloque.descripcion p {
    color: #134B58; /* texto oscuro en móvil */
  }

  .noticias .noticia-bloque.boton a {
    background-color: #058BC9;
    color: #ffffff;
  }
}


/*--------------------------------------------------------------
# Descargas Section
--------------------------------------------------------------*/
.descargas {
  background-color: #ffffff; /* fondo general blanco */
  padding: 60px 0;
}

.descargas .container {
  max-width: 900px;
  margin: 0 auto;
}

.descargas .section-title h2,
.descargas .section-title p {
  color: #226108;
  text-align: center;
  margin-bottom: 20px;
}

/* Bloque de descarga */
.descargas .descarga-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #1668cc; /* azul oscuro para los bloques */
  color: #ffffff;
  text-decoration: none;
  padding: 15px 20px;
  border-radius: 12px;
  font-weight: 600;
  transition: background 0.3s ease, transform 0.2s ease;
}

.descargas .descarga-item:hover {
  background-color: #0f4a92; /* ligero cambio al pasar el mouse */
  transform: translateY(-2px);
}

/* Título dentro del bloque */
.descargas .descarga-item .titulo {
  font-size: 16px;
  color: #ffffff;             /* texto en blanco */
}

/* Icono de descarga */
.descargas .descarga-item .icono {
  font-size: 20px;
  color: #ffffff; /* azul representativo */
}

/* Responsive: en móvil una columna */
@media (max-width: 768px) {
  .descargas .col-lg-6,
  .descargas .col-md-6 {
    width: 100%;
  }

  .descargas .descarga-item {
    justify-content: space-between;
  }

  /* Quitar hover en móvil */
  .descargas .descarga-item:hover {
    background-color: #1668cc; /* igual que el color normal */
    transform: none;
  }
}


/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact {
  position: relative;
  background: url('../img/contact-background.jpg') no-repeat center center/cover;
  padding: 60px 0;
}

.contact-container {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.contact-block {
  background-color: #ffffff;
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.2);
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 1100px;
  overflow: hidden;
}

/* Subbloques: superior, formulario, inferior */
.contact-subblock {
  display: flex;
  justify-content: center;
  align-items: center;
  flex: 1; /* cada subbloque ocupa igual espacio vertical */
  padding: 20px;
  flex-direction: column;
  text-align: center;
}

/* Título */
.contact-subblock.titulo h2 {
  margin: 0;
  font-size: 28px;
  font-weight: 700;
  color: #226108; /* color empresa */
}
.contact-subblock.titulo p {
  margin-top: 10px;
  color: #555555;
}

/* Formulario */
.contact-subblock.formulario .form-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 15px;
  gap: 10px;
}

.contact-subblock.formulario form {
  width: 90%;          /* ocupa el 90% del subbloque central */
  max-width: 900px;    /* límite máximo opcional */
  display: flex;
  flex-direction: column;
  gap: 15px;           /* espacio entre filas */
  margin: 0 auto;      /* centra el formulario */
}

.contact-subblock.formulario .form-row.nombre-email {
  display: flex;
  gap: 10px;
  justify-content: space-between;
}

.contact-subblock.formulario .form-row input,
.contact-subblock.formulario .form-row textarea {
  flex: 1;             /* ocupa todo el espacio disponible */
  max-width: none;
  min-width: 0;
  box-sizing: border-box;
}

.contact-subblock.formulario .form-row.nombre-email input {
  width: calc(50% - 5px);
  max-width: none;
}

.contact-subblock.formulario input,
.contact-subblock.formulario textarea {
  font-size: 14px;
  padding: 10px 15px;
  border: 1px solid #cccccc;
  border-radius: 8px;
  width: 100%;
  max-width: 500px;
  box-sizing: border-box;
}

.contact-subblock.formulario button {
  padding: 10px 30px;
  border: none;
  border-radius: 50px;
  background-color: #1668cc;
  color: #ffffff;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}

.contact-subblock.formulario button:hover {
  background-color: #0d3c76;
}

/* Bloque inferior de info */
.contact-subblock.info {
  background: #ffffff;
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  flex-wrap: wrap;
  padding: 40px 20px;
}

.contact-subblock.info .info-item {
  flex: 1 1 22%; /* 4 bloques iguales */
  margin: 10px;
  text-align: center;
  position: relative; /* para posicionar el círculo */
}

/* Círculo con icono */
.contact-subblock.info .circle-icon {
  width: 60px;
  height: 60px;
  background-color: #1668cc; /* fondo del círculo */
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 15px auto;
  font-size: 28px;
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

/* Subtítulos y párrafos */
.contact-subblock.info h3 {
  font-size: 16px;
  font-weight: 700;
  color: #1668cc;
  margin-bottom: 5px;
}

.contact-subblock.info p {
  font-size: 14px;
  color: #226108;
  margin: 0;
}

/* Responsive */

@media (max-width: 768px) {
  /* Quitamos hovers de botones */
  .contact-subblock.formulario button:hover {
    background-color: #0d3c76; /* mismo color normal */
  }

  .contact-subblock.info .info-item .spacer {
    display: none;
  }

  /* Ajuste responsive de info-items */
  .contact-subblock.info .info-item {
    flex: 1 1 45%; /* 2 por fila en móvil */
    margin-bottom: 20px;
  }

  .contact-subblock.info .circle-icon {
    width: 50px;
    height: 50px;
    font-size: 24px;
    margin-bottom: 10px;
  }

  /* Opcional: reducir padding del formulario en móvil */
  .contact-subblock.formulario form {
    width: 95%;
    gap: 10px;
  }
}




/* Footer General */
.footer {
  background-color: #1668cc; /* fondo global sólido */
  color: #ffffff; /* todo texto blanco */
  font-size: 14px;
  padding: 0;
}

/* Bloque superior */
.footer-top-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  padding: 40px 0;
  max-width: 100%;
  margin: 0 auto;
  gap: 20px;
}

.footer-col {
  flex: 1;
  min-width: 200px;
}

/* Columna Políticas */
.footer-col.políticas h4 {
  font-size: 28px; /* más grande */
  font-weight: 700; /* negrita */
  color: #ffffff; /* blanco */
  margin-bottom: 15px;
}

.footer-col.políticas ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col.políticas ul li {
  margin-bottom: 10px;
  text-align: left; /* contenido pegado a la izquierda */
}

.footer-col.políticas ul li a {
  text-decoration: none;
  color: #ffffff; /* links en blanco */
  transition: 0.3s;
}

.footer-col.políticas ul li a:hover {
  color: #ffffff; /* mantener blanco al hover */
}

/* Columna Imagen */
.footer-col.imagen img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Bloque inferior */
.footer-bottom {
  background-color: #1668cc; /* mismo fondo que el footer */
  color: #ffffff;
  text-align: center;
  padding: 15px 0;
  font-size: 14px;
}

/* Responsive: en móviles las columnas se apilan */
@media (max-width: 768px) {
  .footer-top-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-col.políticas ul li {
    text-align: center; /* centrado en móvil */
  }

  .footer-col.imagen {
    margin-top: 20px;
  }
}




/*--------------------------------------------------------------
# Clients Section
--------------------------------------------------------------*/
.clients {
  padding: 20px 0;
}

.clients .client-logo {
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.clients .client-logo img {
  padding: 20px 40px;
  max-width: 90%;
  transition: 0.3s;
  opacity: 0.5;
  filter: grayscale(100);
}

.clients .client-logo img:hover {
  filter: none;
  opacity: 1;
  transform: scale(1.1);
}

@media (max-width: 640px) {
  .clients .client-logo img {
    padding: 20px;
  }
}

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

.testimonials .testimonial-item {
  box-sizing: content-box;
  min-height: 320px;
}

.testimonials .testimonial-item .testimonial-img {
  width: 90px;
  border-radius: 50%;
  margin: -40px 0 0 40px;
  position: relative;
  z-index: 2;
  border: 6px solid var(--background-color);
}

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

.testimonials .testimonial-item h4 {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin: 0 0 0 45px;
}

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

.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;
  transform: scale(-1, -1);
}

.testimonials .testimonial-item p {
  font-style: italic;
  margin: 0 15px 0 15px;
  padding: 20px 20px 60px 20px;
  background: color-mix(in srgb, var(--default-color), transparent 97%);
  position: relative;
  border-radius: 6px;
  position: relative;
  z-index: 1;
}

.testimonials .swiper-wrapper {
  height: auto;
}

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

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: var(--background-color);
  opacity: 1;
  border: 1px solid var(--accent-color);
}

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



/*--------------------------------------------------------------
# Call To Action Section
--------------------------------------------------------------*/
.call-to-action {
  padding: 80px 0;
  position: relative;
  clip-path: inset(0);
}

.call-to-action h3 {
  font-size: 28px;
  font-weight: 700;
  color: var(--default-color);
}

.call-to-action p {
  color: var(--default-color);
}

.call-to-action .cta-btn {
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 40px;
  border-radius: 5px;
  transition: 0.5s;
  margin: 10px;
  border: 2px solid var(--contrast-color);
  color: var(--contrast-color);
}

.call-to-action .cta-btn:hover {
  background: var(--surface-color);
  color: var(--accent-color);
}




/*--------------------------------------------------------------
# Team Section
--------------------------------------------------------------*/
.team .team-member {
  background-color: var(--surface-color);
  overflow: hidden;
  border-radius: 5px;
  box-shadow: 0px 0 10px rgba(0, 0, 0, 0.1);
  height: 100%;
}

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

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

.team .team-member .social a {
  background: color-mix(in srgb, var(--contrast-color), transparent 25%);
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin: 0 3px;
  border-radius: 4px;
  width: 36px;
  height: 36px;
  transition: ease-in-out 0.3s;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}

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

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

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

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

.team .team-member .member-info span {
  display: block;
  font-size: 13px;
  font-weight: 400;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.team .team-member:hover .social {
  opacity: 1;
  bottom: 15px;
}

/*--------------------------------------------------------------
# Pricing Section
--------------------------------------------------------------*/
.pricing .pricing-item {
  background-color: var(--surface-color);
  padding: 60px 40px;
  box-shadow: 0 3px 20px -2px rgba(0, 0, 0, 0.1);
  height: 100%;
  position: relative;
}

.pricing h3 {
  font-weight: 600;
  margin-bottom: 15px;
  font-size: 20px;
}

.pricing h4 {
  font-size: 48px;
  color: var(--accent-color);
  font-family: var(--heading-font);
  font-weight: 400;
}

.pricing h4 sup {
  font-size: 28px;
}

.pricing h4 span {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
  font-size: 18px;
}

.pricing ul {
  padding: 20px 0;
  list-style: none;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  text-align: left;
  line-height: 20px;
}

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

.pricing ul i {
  color: #059652;
  font-size: 24px;
  padding-right: 3px;
}

.pricing ul .na {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
}

.pricing ul .na i {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
}

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

.pricing .buy-btn {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  background-color: var(--background-color);
  display: inline-block;
  padding: 8px 35px 10px 35px;
  border-radius: 4px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 60%);
  transition: none;
  font-size: 16px;
  font-weight: 500;
  font-family: var(--heading-font);
  transition: 0.3s;
}

.pricing .buy-btn:hover {
  background: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--contrast-color);
}

.pricing .featured {
  z-index: 10;
}

.pricing .featured .pricing-item {
  background: var(--accent-color);
}

@media (min-width: 992px) {
  .pricing .featured .pricing-item {
    transform: scale(1.02, 1.1);
  }
}

.pricing .featured h3,
.pricing .featured h4,
.pricing .featured h4 span,
.pricing .featured ul,
.pricing .featured ul .na,
.pricing .featured ul i,
.pricing .featured ul .na i {
  color: var(--contrast-color);
}

.pricing .featured .buy-btn {
  background: var(--accent-color);
  color: var(--contrast-color);
  border-color: var(--contrast-color);
}

.pricing .featured .buy-btn:hover {
  background: color-mix(in srgb, var(--background-color), transparent 92%);
}

/*--------------------------------------------------------------
# Faq Section
--------------------------------------------------------------*/
.faq .faq-container .faq-item {
  background-color: var(--surface-color);
  position: relative;
  padding: 20px;
  margin-bottom: 15px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  border-radius: 5px;
  overflow: hidden;
}

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

.faq .faq-container .faq-item h3 {
  font-weight: 600;
  font-size: 18px;
  line-height: 24px;
  margin: 0 30px 0 0;
  transition: 0.3s;
  cursor: pointer;
  display: flex;
  align-items: center;
}

.faq .faq-container .faq-item h3 .num {
  color: var(--accent-color);
  padding-right: 5px;
}

.faq .faq-container .faq-item h3:hover {
  color: var(--accent-color);
}

.faq .faq-container .faq-item .faq-content {
  display: grid;
  grid-template-rows: 0fr;
  transition: 0.3s ease-in-out;
  visibility: hidden;
  opacity: 0;
}

.faq .faq-container .faq-item .faq-content p {
  margin-bottom: 0;
  overflow: hidden;
}

.faq .faq-container .faq-item .faq-toggle {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 16px;
  line-height: 0;
  transition: 0.3s;
  cursor: pointer;
}

.faq .faq-container .faq-item .faq-toggle:hover {
  color: var(--accent-color);
}

.faq .faq-container .faq-active {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--contrast-color);
}

.faq .faq-container .faq-active h3 {
  color: var(--contrast-color);
}

.faq .faq-container .faq-active .faq-content {
  grid-template-rows: 1fr;
  visibility: visible;
  opacity: 1;
  padding-top: 10px;
}

.faq .faq-container .faq-active .faq-toggle {
  transform: rotate(90deg);
  color: var(--accent-color);
}



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

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

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

.portfolio-details .swiper-button-prev:after,
.portfolio-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;
}

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

@media (max-width: 575px) {

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/*--------------------------------------------------------------
# Starter Section Section
--------------------------------------------------------------*/
