/**
* Template Name: Appland
* Template URL: https://bootstrapmade.com/free-bootstrap-app-landing-page-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 {
  --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;
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root { 
  --background-color: #d5ebe2; /* Background color for the entire website, including individual sections */
  --default-color: #12244a; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #12244a; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #5777ba; /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
  --surface-color: #ffffff; /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
  --contrast-color: #12244a; /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
  --contrast-color-active: #89d5ad;
  --is-accent-color: #e11f26;
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
  --nav-color: #12244a;  /* The default color of the main navmenu links */
  --nav-hover-color: #89d5ad; /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #ffffff; /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #ffffff; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #12244a; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #89d5ad; /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */

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

.dark-background {
  --background-color: #12244a;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #ffffff;
  --contrast-color: #12244a;
  --light-color: #d5ebe2;
}

/* 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);
  font-weight: 400;
}

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

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

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

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

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
/* Altura de referencia del header*/
:root{ --header-h: 95px; }

/* Header transparente por defecto */
.header {
  background: transparent !important;
  background-color: transparent !important;
  box-shadow: none !important;
  position: sticky;   /* fixed option */
  top: 0;
  z-index: 999;
}

#hero,
.hero {
  margin-top: calc(-1 * var(--header-h)) !important;
}

section[id] { scroll-margin-top: calc(var(--header-h) + 10px); }

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

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

.header .logo h1 {
  font-size: 30px;
  margin: 0;
  font-weight: 400;
  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: 50px;
  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%);
}

@media (max-width: 1200px) {
  .header .logo {
    order: 1;
  }

  .header .btn-getstarted {
    order: 2;
    margin: 0 15px 0 0;
    padding: 6px 15px;
  }

  .header .navmenu {
    order: 3;
  }
}


/* Estado con scroll: fondo translúcido y sombra suave */
.scrolled .header {
  background: rgba(255, 255, 255, 0.92) !important;
  backdrop-filter: saturate(160%) blur(8px);
  box-shadow: 0 2px 12px rgba(0,0,0,.08);
}


@media (max-width: 768px) {
 .header .logo img {
  max-height: 36px;
  margin-right: 7px;
  margin: 5px 0px;
}
	
}



/*--------------------------------------------------------------
# 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;
    overflow: hidden;
    inset: 0;
    background: rgba(33, 37, 41, 0.8);
    transition: 0.3s;
  }

  .mobile-nav-active .navmenu>ul {
    display: block;
  }
}

/* --- PATCH MÍNIMO MENÚ MÓVIL --- */
@media (max-width:1199px){
  /* 1) Evitar que el header "encierre" al menú cuando scrolleás */
  .mobile-nav-active .header{
    transform:none !important;
    filter:none !important;
    -webkit-backdrop-filter:none !important;
    backdrop-filter:none !important;
    overflow:visible !important;
  }

  /* 2) No uses overlay de pantalla completa en el nav (no bloquea clics) */
  .mobile-nav-active #navmenu{
    position:static !important;
    background:transparent !important;
    overflow:visible !important;
  }

  /* 3) Fijar SOLO el panel <ul> al viewport (respeta tu inset ya definido) */
  #navmenu > ul{ position:fixed !important; }

  /* 4) La X siempre clickeable en la esquina */
  .mobile-nav-active .mobile-nav-toggle{ position:fixed !important; top:15px; right:15px; }
	
	.mobile-nav-active .mobile-nav-toggle{
		
	position: fixed !important;
    top: 8px;             
    right: 32px;   
    width: 30px;
    height: 30px;
    font-size: 23px; /* tamaño del ícono “X” */
	font-weight: 700;
    line-height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff !important;
    background: var(--contrast-color);
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0,0,0,.25);
    z-index: 10003 !important;
    margin: 0;	
}

}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  color: var(--default-color);
  background-color: var(--background-color);
  font-size: 14px;
  position: relative;
	}

.footer .footer-newsletter {
  background-color: color-mix(in srgb, var(--default-color), transparent 97%);
  padding: 50px 0;
}

.footer .footer-newsletter h4 {
  font-size: 24px;
}

.footer .footer-newsletter .newsletter-form {
  margin-top: 30px;
  margin-bottom: 15px;
  padding: 6px 8px;
  position: relative;
  border-radius: 4px;
  background-color: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  box-shadow: 0px 2px 25px rgba(0, 0, 0, 0.1);
  display: flex;
  transition: 0.3s;
  border-radius: 50px;
}

.footer .footer-newsletter .newsletter-form:focus-within {
  border-color: var(--accent-color);
}

.footer .footer-newsletter .newsletter-form input[type=email] {
  border: 0;
  padding: 4px;
  width: 100%;
  background-color: var(--surface-color);
  color: var(--default-color);
}

.footer .footer-newsletter .newsletter-form input[type=email]:focus-visible {
  outline: none;
}

.footer .footer-newsletter .newsletter-form input[type=submit] {
  border: 0;
  font-size: 16px;
  padding: 0 20px;
  margin: -7px -8px -7px 0;
  background: var(--accent-color);
  color: var(--contrast-color);
  transition: 0.3s;
  border-radius: 50px;
}

.footer .footer-newsletter .newsletter-form input[type=submit]:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

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



.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 {
  margin-right: 3px;
  font-size: 12px;
  line-height: 0;
  color: var(--accent-color);
}

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

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

.footer .footer-links ul a {
  display: inline-block;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  line-height: 1;
}

.footer .footer-links ul a:hover {
  color: var(--accent-color);
}

.footer .footer-about a {
  color: var(--heading-color);
  font-size: 24px;
  font-weight: 600;
  font-family: var(--heading-font);
}

.footer .footer-contact p {
  margin-bottom: 5px;
}

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

.footer .copyright p {
  margin-bottom: 0;
}

.footer .credits {
  margin-top: 6px;
  font-size: 13px;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  overflow: hidden;
  background: var(--background-color);
  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;
  background-color: var(--contrast-color-active);
  width: 40px;
  height: 40px;
  border-radius: 50px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 28px;
  font-weight: 800;
  color: var(--is-contrast-color);
  line-height: 0;
}

.scroll-top:hover {
  background-color: color-mix(in srgb, var(--surface-color), transparent 20%);
  color: var(--contrast-color);
}

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




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



/*--------------------------------------------------------------
# Disable some txts on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {

	.desktop_content {
    display: none;
  }
}



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

.page-title h1 {
  font-size: 28px;
  font-weight: 700;
  margin: 0;
}

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

.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: 90px;
  overflow: clip;
}

@media (max-width: 1199px) {

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

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



.section-title h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 0;
  color:var(--contrast-color);
  font-family: var(--nav-font);
}

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


section {
  padding: 60px 0;
  overflow: hidden;
}

.section-ad {
  padding: 15px 0;
  overflow: hidden;
}

.section-bg {
  background-color: var(--background-color);
}

.section-nobottom {
  padding: 60px 0 0 0;
}

.section-half {
  padding: 15px 0;
}

.section-bg-grad {
  background-color: var(--background-color);
  background-image: linear-gradient(to bottom, #89d5ad, #9bdbbb, #aee1c9, #c1e6d6, #d5ebe2);
}


.section-titlead {
  text-align: center;
  padding-bottom: 1px;
}


.section-titlead h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 0;
  color:var(--contrast-color);
  font-family: var(--nav-font);
}


@media screen and (max-width: 768px) {
    .section-mobile {
     padding: 0;
  }
  }

@media (max-width: 991px) {
	
	.section-mobile {
     padding: 0;
  }
  
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
	
	
#hero {
  width: 100%;
  position: relative;
  overflow: hidden;
  /*padding: 140px 0 100px 0;*/
  padding: 80px 0 100px 0;
  background-color: #A3A3A3;
  z-index: -2;
  background-image: linear-gradient(to right bottom, #12244a, #144467, #266580, #468795, #6ea9a9, #86bab4, #9ecabf, #b6dbcc, #bedfd1, #c5e3d7, #cde7dc, #d5ebe2);
}	


#hero::before {
  content: "";
  position: absolute;
  right: -100%;
  top: 20%;
  width: 250%;
  height: 200%;
  z-index: -1;
  background-color: var(--background-color);
  transform: skewY(135deg);
  border: 2px solid #89d5ad;
}

#hero h1 {
  margin: 0 0 10px 0;
  font-size: 48px;
  font-weight: 700;
  line-height: 46px;
  color: #12244a;
  font-family: "Poppins", sans-serif;
}

#hero h2 {
  color: var(--contrast-color);
  margin-bottom: 50px;
  font-size: 20px;
  font-weight: 500;
  line-height: 24px;
  /*text-decoration: underline solid #abd6c5 3px;*/
  padding: 2px 2px 2px 1px;
}

#hero .download-btn {
  font-family: "Raleway", sans-serif;
  font-weight: 500;
  font-size: 15px;
  display: inline-block;
  padding: 8px 24px 10px 46px;
  border-radius: 3px;
  transition: 0.5s;
  color: var(--surface-color);
  background: #142349;
  position: relative;
}

#hero .download-btn:hover {
  background: var(--accent-color);
}

#hero .download-btn i {
  font-size: 20px;
  position: absolute;
  left: 18px;
  top: 8.5px;
}

#hero .download-btn+.download-btn {
  margin-left: 20px;
}

@media (max-width: 991px) {
  #hero {
    text-align: center;
  }

  #hero .download-btn+.download-btn {
    margin: 0 10px;
  }

  #hero .hero-img {
    text-align: center;
  }

  #hero .hero-img img {
    width: 80%;
  }
}

@media (max-width: 768px) {
  #hero h1 {
    font-size: 28px;
    line-height: 36px;
  }

  #hero h2 {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;
  }

  #hero .hero-img img {
    width: 85%;
  }
	
  #hero .container {
   padding-top: 100px;
  }
	
}

@media (max-width: 575px) {
  #hero .hero-img img {
    width: 90%;
  }
}


/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about ul {
  list-style: none;
  padding: 0;
}

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

.about ul i {
  font-size: 20px;
  padding-right: 4px;
  color: var(--accent-color);
}

.about .read-more {
  background: var(--accent-color);
  color: var(--contrast-color);
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  padding: 10px 28px;
  border-radius: 5px;
  transition: 0.3s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.about .read-more i {
  font-size: 18px;
  margin-left: 5px;
  line-height: 0;
  transition: 0.3s;
}

.about .read-more:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.about .read-more:hover i {
  transform: translate(5px, 0);
}


/*--------------------------------------------------------------
# AMR Soluciones Tags
--------------------------------------------------------------*/

  
#amr-soluciones .section-title {
      margin-bottom: 25px;
    }
    
    .blocks-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 20px;
      margin-bottom: 50px;
    }
    
    .block {
      background: linear-gradient(135deg, var(--contrast-color-active) 0%, var(--background-color) 100%);
      padding: 15px;
      border-radius: 12px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    }
    
    .block--b {
      background: var(--background-color);
    }
 
    .block h4 {
      font-size: 1.5rem;
      color: var(--contrast-color);
      margin-bottom: 20px;
      font-weight: 700;
    }
    
    .block ul {
      list-style: none;
      margin-left: 0;
      padding: 20px 20px 0px 0px;
    }
    
    .block li {
      margin-bottom: 12px;
      color: var(--contrast-color);
      line-height: 0.9;
    }
    
    .block strong {
      font-weight: 700;
    }
     
    .block li {
      font-weight: 400;
    }
    
    .block i {
      color: var(--contrast-color-active);
      margin-right: 3px;
    }
    
    .tags-section {
      padding: 0px 20px;
      background: none;
      border-radius: 16px;
      position: relative;
      overflow: hidden;
    }
    
    .tags-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 40px;
      margin-top: 0px;
    }
    
    .tags-column {
      min-height: 300px;
    }
    
    .column-title {
      font-size: 1.5rem;
      color: var(--contrast-color);
      margin-bottom: 20px;
      font-weight: 700;
      text-align: left;
    }
    
    .tags-container {
      display: flex;
      flex-wrap: wrap;
      gap: 15px;
      align-items: flex-start;
      min-height: auto;
      padding: 0px;
      border-radius: 12px;
      transition: background 0.3s ease;
    }
    
    
    .tag {
      background: white;
      padding: 0px 5px;
      border-radius: 20px;
      cursor: default; 
      user-select: none;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
      transition: all 0.3s ease;
      position: relative;
      border: 0px solid transparent;
      font-weight: 400;
      color: var(--contrast-color);
      display: flex; /* CAMBIO: flex para layout del número y texto */
      align-items: flex-start; /* CAMBIO: alinear al inicio */
      gap: 8px; /* CAMBIO: espacio entre número y texto */
    }
    
    .tag:hover {
      transform: translateY(-2px) scale(1.02);
      box-shadow: 0 6px 20px rgba(59, 130, 246, 0.2);
      border-color: var(--contrast-color-active);
    }
    
    .tag.process {
      background: linear-gradient(135deg, var(--background-color) 0%, var(--contrast-color-active) 100%);
	 }
    
    .tag.service {
      background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
	  padding-left:15px;
    }
    
    .tag-number {
      display: inline-block;
      width: 16px;
      height: 16px;
      background: var(--contrast-color);
      color: var(--surface-color);
      border-radius: 50%;
      text-align: center;
      line-height: 16px;
      font-size: 0.85rem;
      margin-right: 0; /* CAMBIO: margin 0, el gap lo maneja flex */
      font-weight: 600;
      flex-shrink: 0; /* CAMBIO: el número no se encoge */
    }
    
    
    /* NUEVO: contenedor de texto para mejor control */
    .tag-text {
      flex: 1;
      padding: 3px 8px 3px 0;
    }
    
    /* NUEVO: clase para alinear tags a la derecha */
    .tag-right {
      margin-left: auto;
    }
    
    @media (max-width: 768px) {
      .container {
        padding: 20px;
      }
      
      .tags-grid {
        grid-template-columns: 1fr;
        gap: 30px;
      }
      
      .tags-container {
        min-height: 200px;
      }
      
      /* NUEVO: remover br en mobile */
      .tag br {
        display: none;
      }
      
      /* NUEVO: mantener alineación derecha en mobile */
      .tag-right {
        margin-left: auto;
      }
		
		.tag-right-m {
        margin-left: auto;
      }
		
	  .block li {
      line-height: 1.2;
    }
		
		
    }









/*--------------------------------------------------------------
# Call To Action Section
--------------------------------------------------------------*/

.blog-details .call-to-action {
  padding: 0 0 50px 0;
  position: relative;
  clip-path: inset(0);
}

.call-to-action {
  padding: 80px 0;
  position: relative;
  clip-path: inset(0);
}

.call-to-action img {
  position: fixed;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.call-to-action:before {
  content: "";
  background: color-mix(in srgb, var(--light-color), transparent 70%);
  position: absolute;
  inset: 0;
  z-index: 2;
}

.call-to-action .container {
  position: relative;
  z-index: 3;
}

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

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

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

.call-to-action .cta-btn:hover {
  background: color-mix(in srgb, var(--contrast-color) 90%, black 15%);
  color: var(--surface-color);
}


/* CTA mobile: MISMO tamaño, MISMO parallax, solo cambia el foco */
@media (max-width: 767px) {
  .call-to-action img{
    position: fixed;        /* conserva el efecto “ventana” */
    top: 0; left: 0;
    width: 100vw;           /* igual tamaño que antes (viewport) */
    height: 100vh;          /* ídem */
    object-fit: cover;
    object-position: 12% 50% !important;  /* ← ajustá el foco aquí */
    pointer-events: none;   /* no bloquea taps sobre el contenido */
    z-index: 1;
  }
  .call-to-action:before { z-index: 2; }
  .call-to-action .container { z-index: 3; }
}




/*--------------------------------------------------------------
# App Features Icons
--------------------------------------------------------------*/

.icon {
  width: 35px;
  height: 35px;
  margin-right: 10px; /* Espacio entre el icono y el texto */
}

.icon use {
  stroke: #34787e;
  stroke-width: 2.5;
  fill: none; /* Si quieres que el interior de los iconos sea transparente */
}

.icon-text-container {
  display: flex;
  align-items: center; /* Alinea los elementos verticalmente al centro */
}

.icon-sl {
  width: 30px;
  height: 30px;
  margin-right: 6px; /* Espacio entre el icono y el texto */
}

.icon-sl use {
  stroke: #34787e;
  stroke-width: 2.2;
  fill: none; /* Si quieres que el interior de los iconos sea transparente */
}


/*--------------------------------------------------------------
# App Features
--------------------------------------------------------------*/


.features .content {
  padding: 5px 0;
  border-top: 1px dotted var(--contrast-color);
  border-bottom: 1px dotted var(--contrast-color);
}

.features .content .icon-box {
  margin-top: 25px;
}

.features .content .icon-box h4 {
  font-size: 20px;
  font-weight: 700;
  margin: 5px 0 10px 60px;
}


.features .section-title  h3 {
  font-weight: 700;
  font-size: 32px;
  color: var(--contrast-color);
}


.features .content .icon-box i {
  font-size: 48px;
  float: left;
  color: var(--accent-color);
}

.features .content .icon-box p {
  font-size: 15px;
  color: #979aa1;
  margin-left: 60px;
}


.features .content .noicon-box {
  margin-top: 10px;
	
}

.features .content .noicon-box h4 {
  font-size: 20px;
  font-weight: 700;
  margin: 0px 0px 10px 0px;
  color: var(--contrast-color);
}

.features .content .noicon-box i {
  font-size: 48px;
  float: left;
  color: var(--contrast-color);
}

.features .content .noicon-box p {
  font-size: 15px;
  color: #979aa1;
  margin-left: 0px;
}

.features .content .noicon-box img {
  margin: 0px 15px 0px 0px;
}


.features .content .noiconb-box {
  margin-top: 10px;
	
}

.features .content .noiconb-box h4 {
  font-size: 10px;
  font-weight: 600;
  margin: 0px 0px 10px 0px;
  color: var(--contrast-color);
}

.features .content .noiconb-box i {
  font-size: 48px;
  float: left;
  color: var(--contrast-color);
}

.features .content .noiconb-box p {
  font-size: 15px;
  color: #979aa1;
  margin-left: 0px;
}

.features .content .noiconb-box img {
  margin: 0px 15px 0px 0px;
}




@media (max-width: 991px) {
  .features .image {
    text-align: center;
  }

  .features .image img {
    max-width: 80%;
  }
}

@media (max-width: 667px) {
  .features .image img {
    max-width: 100%;
  }
}



/*--------------------------------------------------------------
# App Features2
--------------------------------------------------------------*/
.features2 .content {
  padding: 5px 0;
}

.features2 h4 {
  font-weight: 700;
  font-size: 26px;
  color: var(--contrast-color);
}

.features2 ul {
  font-weight: 700;
  font-size: 18px;
  color: var(--contrast-color);
}

.features2 .bi-check {
  font-size: 22px;
}

.txtdestaq{
  margin: 0 0 1em 0; 
  padding:20px 20px 15px 20px; 
  text-align: left;
  background-color:#abd6c5;
}

.txtdestaq-der{
  margin: 0 0 1em 0; 
  padding:20px 20px 15px 20px; 
  text-align: left;
  background-color:var(--contrast-color-active);
}

.txtdestaq ul,
.txtdestaq-der ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}





.features2 .content .icon-box {
  margin-top: 25px;
}

.features2 .content .icon-box h4 {
  font-size: 20px;
  font-weight: 700;
  margin: 5px 0 10px 60px;
}

.features .section-title  h3 {
  font-weight: 700;
  font-size: 32px;
  color: var(--contrast-color);
}


.features2 .content  h3 {
  font-weight: 700;
  font-size: 22px;
  color: var(--contrast-color);
  background-color:#abd6c5;
}

.tit {
  background-color:#89d5ad;
}


.txtcolor {
  background-color:#abd6c5;
	padding:0 20px 20px 20px;
}

.txtcolorb {
    /*background-color:#f2f5fa;*/
	background-color:var(--contrast-color);
	padding:20px 20px 10px 20px;
	text-align: left;
	margin: 0 0 2.5em 0; 
}
.txtcolorb p{
    color: #f2f5fa; 
}





.txtpdestaq {
  border-top: 1px dotted var(--contrast-color); 
  border-bottom: 1px dotted var(--contrast-color);
  /*padding: 0 0 1.5em 0;*/
}

.features2 .content h4 {
  font-weight: 700;
  font-size: 22px;
  color: var(--contrast-color);
}

.features2 .content .icon-box i {
  font-size: 48px;
  float: left;
  color: var(--contrast-color);
}

.features2 .content .icon-box p {
  font-size: 15px;
  color: #979aa1;
  margin-left: 60px;
}



.logo-text-container {
      display: flex;
      align-items: center; /* Alinea los elementos verticalmente al centro */
	  margin-top: 15px;
	  line-height: 1.3em;
    }


 .logo-container {
      width: 200px; /* Establece un ancho fijo para el contenedor del logo */
      text-align: center; /* Centra el logo dentro del contenedor */
      margin-right: 10px; /* Espacio entre el logo y el texto */
    }

 .logo-container img {
      max-width: 100%; /* Asegura que el logo no exceda el ancho del contenedor */
      height: auto; /* Mantiene la proporción del logo */
    }



@media (max-width: 991px) {
  .features2 .image {
    text-align: center;
  }

  .features2 .image img {
    max-width: 80%;
  }
	
 .is_seer_txt{
    text-align: center;
	 
  }
	
}

@media (max-width: 667px) {
    .features2 .image img {
    max-width: 100%;
  }
}


@media screen and (max-width: 768px) {
    .is_seer_txt{
    text-align: left;
  }
  }


/*--------------------------------------------------------------
# Details
--------------------------------------------------------------*/
.details .content+.content {
 /* margin-top: 50px;*/
  margin-top: 5px;
}


.details .bg-content {
  background-color: #abd6c5;
  background-image: linear-gradient(to right bottom, #89d5ad, #9bdbbb, #aee1c9, #c1e6d6, #d5ebe2);
  border-radius: 15px 50px;
  padding-bottom: 1.5em;
}

.details .content h3 {
  font-weight: 700;
  font-size: 28px;
  color: #142349;
}

.details .content h4 {
  font-weight: 700;
  font-size: 22px;
  color: var(--contrast-color);
}


.details .content h5 {
  font-weight: 600;
  font-size: 15px;
  color: var(--contrast-color);
  padding:10px 0 0 0;
}

.details .content ul {
  list-style: none;
  padding: 0;
}

.details .content ul li {
  padding-bottom: 10px;
}

.details .content ul i {
  font-size: 24px;
  padding-right: 2px;
  color: var(--accent-color);
  line-height: 0;
}

.amr-conexion {
  text-align: center;
  margin: 1.5em 0;
  padding: .5em 0;
}

.amr-conexion-text {
  color: var(--contrast-color);
  font-weight: 600;
  font-size: 1.1em;
}

.details .content p:last-child {
  margin-bottom: 0;
}



/*--------------------------------------------------------------
# reduce title sizes
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {

.details .content h4 {
  font-size: 18px;
  text-align: left;
 }
	
.details .content p {
  text-align: left;
 }

.bi-check {
   display: none;
 }
	
.details .content+.content {
 /* margin-top: 50px;*/
  margin-top: 35px;
}
	
	.amr-conexion {
  text-align: left;
}

}










/*--------------------------------------------------------------
# Gallery2 Section
--------------------------------------------------------------*/
.gallery {
  overflow: hidden;
}

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

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

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

.gallery .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--contrast-color);
}

.gallery .swiper-slide-active {
  text-align: center;
}

@media (min-width: 992px) {
  .gallery .swiper-wrapper {
    padding: 60px 0;
  }

  .gallery .swiper-slide-active {
    background: var(--background-color);
    border: 0px solid var(--accent-color);
    padding: 4px;
    z-index: 1;
    transform: scale(1.3);
    border-radius: 25px;
    transition: none;
  }
}

/* Caption */

.swiper-slide-active .caption {
    background-color: var(--contrast-color-active);
	background: linear-gradient(135deg, var(--background-color) 5%, var(--contrast-color-active) 100%);
	border-radius: 20px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.10);
	display: inline-flex; 
    width: fit-content; 
	padding: 1px 12px;
}



.caption {
  text-align: center;
  font-size: 18px;
  margin-top: 0px;
  color: var(--contrast-color);
  font-weight: 700;
}


/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials .testimonial-wrap {
  padding-left: 50px;
}

.testimonials .testimonials-carousel,
.testimonials .testimonials-slider {
  overflow: hidden;
}

.testimonials .testimonial-item {
  background-color: var(--surface-color);
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  box-sizing: content-box;
  padding: 30px 30px 30px 60px;
  margin: 30px 15px;
  min-height: 200px;
  position: relative;
}

.testimonials .testimonial-item .testimonial-img {
  width: 90px;
  border-radius: 10px;
  border: 6px solid var(--background-color);
  position: absolute;
  left: -45px;
}

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

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

.testimonials .testimonial-item .stars {
  margin: 10px 0;
}

.testimonials .testimonial-item .stars i {
  color: #ffc107;
  margin: 0 1px;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  color: color-mix(in srgb, var(--accent-color), transparent 60%);
  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: 15px auto 15px auto;
}

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

@media (max-width: 767px) {
  .testimonials .testimonial-wrap {
    padding-left: 0;
  }

  .testimonials .testimonials-carousel,
  .testimonials .testimonials-slider {
    overflow: hidden;
  }

  .testimonials .testimonial-item {
    padding: 30px;
    margin: 15px;
  }

  .testimonials .testimonial-item .testimonial-img {
    position: static;
    left: auto;
  }
}

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


/*--------------------------------------------------------------
# Video Posts Section
--------------------------------------------------------------*/
.video-posts article {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  background-color: #abd6c5;
  /*padding: 30px;*/
  padding-bottom:5px;
  height: 100%;
  border-radius: 10px;
  overflow: hidden;
}


.video-posts .post-img {
  max-height: 240px;
  margin: -30px -30px 15px -30px;
  overflow: hidden;
  position: relative;
}

.video-posts .post-img .video-container {
  position: relative;
  padding-bottom: 56.25%; /* Establece el aspect ratio (16:9) del video */
  height: 0;
  overflow: hidden;
}

.video-posts .post-img iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.video-posts .post-category {
  font-size: 16px;font-weight: 600;
  color: #12244a;
  background-color:#89d5ad;
  padding: 0 10px 0 10px;
  margin-bottom: 10px;
}

.video-posts .title {
  font-size: 22px;
  font-weight: 700;
  padding: 0 10px 0 10px;
  margin: 0 0 20px 0;
}

.video-posts .title a {
  color: var(--color-default);
  transition: 0.3s;
}

.video-posts .title a:hover {
  color: var(--color-primary);
}

.video-posts .post-author-img {
  width: 50px;
  border-radius: 50%;
  margin-right: 15px;
}

.video-posts .post-author {
  font-weight: 600;
  margin-bottom: 5px;
}

.video-posts .post-date {
  font-size: 14px;
  color: #3c3c3c;
  margin-bottom: 0;
}


.video-posts .video-container {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 */
  height: 0;
  overflow: hidden;
  display: block;
}

.video-posts .video-container iframe {
  position: absolute;
  inset: 0;         /* top:0; right:0; bottom:0; left:0 */
  width: 100%;
  height: 100%;
  border: 0;
}


/*--------------------------------------------------------------
# Video LazyVideoLoader
--------------------------------------------------------------*/
.video-responsive {
  position: relative;
  width: 100%;
  /* Relación 16:9 sin CLS */
  padding-top: 56.25%;
  background: #000;
  overflow: hidden;
  border-radius: 12px;
}

.video-responsive iframe {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  border: 0;
}

.video-placeholder {
  position: absolute; inset: 0;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: opacity .25s ease;
}

.video-thumb {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.9);
  transition: filter .25s ease, transform .25s ease;
}

.video-play {
  position: relative;
  z-index: 1;
  width: 64px; height: 64px;
  border: 0; border-radius: 999px;
  background: rgba(255,255,255,.9);
  box-shadow: 0 6px 18px rgba(0,0,0,.2);
  cursor: pointer;
}

.video-play::before {
  content: "";
  display: block;
  width: 0; height: 0;
  margin: 0 auto;
  border-left: 16px solid #000;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  transform: translateX(2px);
}

.video-placeholder:hover .video-thumb {
  filter: brightness(1);
  transform: scale(1.01);
}

/* Accesibilidad */
.visually-hidden {
  position: absolute !important;
  height: 1px; width: 1px;
  overflow: hidden; clip: rect(1px,1px,1px,1px);
  white-space: nowrap;
}


/* ============================================================
   FAQ — Look & feel 
   ============================================================ */

/* Padding lateral como antes (se reduce en pantallas chicas) */
.faq .faq-container {
  margin-top: 15px;
  padding: 0 100px;
}
@media (max-width: 1200px) {
  .faq .faq-container { padding: 0; }
}

/* Item visual: fondo claro, radio y espaciado como la versión vieja */
.faq .faq-container .faq-item {
  background: #f2f5fa;             /* antes */
  position: relative;
  padding: 20px;
  margin-bottom: 15px;              /* antes: li+li margin-top: 15px */
  border-radius: 4px;               /* antes */
  overflow: hidden;
  transition: background-color 0.3s, color 0.3s;
}

/* Título como antes: tamaño/altura/peso */
.faq .faq-container .faq-item h3 {
  font-family: "Poppins", sans-serif; /* antes */
  font-size: 16px;                     /* antes */
  line-height: 24px;                   /* antes */
  font-weight: 500;                    /* antes */
  margin: 0 38px 0 0;                  /* deja espacio para el toggle a la derecha */
  cursor: pointer;
  color: var(--contrast-color);
  transition: color 0.3s;
}

/* Numeración (sustituye el “icon-help” de la versión vieja) */
.faq .faq-container .faq-item h3 .num {
  color: var(--contrast-color);
  font-weight: 600;
  margin-right: 6px;
}

/* Hover del título: subraya con color acento como antes */
.faq .faq-container .faq-item h3:hover {
  color: var(--accent-color);
}

/* Contenido colapsable — mantenemos el motor moderno (grid) */
.faq .faq-container .faq-item .faq-content {
  display: grid;
  grid-template-rows: 0fr;     /* cerrado */
  transition: grid-template-rows 0.3s ease, opacity 0.3s ease;
  visibility: hidden;
  opacity: 0;
}
.faq .faq-container .faq-item .faq-content p {
  margin-bottom: 0; 
  overflow: hidden;
  padding-top: 10px;           /* como antes */
}

/* Icono de toggle (moderno) — mantenemos posición/rotación */
.faq .faq-container .faq-item .faq-toggle {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 16px;
  line-height: 0;
  cursor: pointer;
  transition: color 0.3s, transform 0.3s;
}
.faq .faq-container .faq-item .faq-toggle:hover {
  color: var(--contrast-color);
}

/* Estado abierto: NO invertimos fondo ni todos los colores (como hacía el CSS nuevo);
   solo marcamos con una guía sutil y color en el título */
.faq .faq-container .faq-active {
  background: #f2f5fa; 
  box-shadow: inset 3px 0 0 var(--accent-color);  /* guiño visual en el borde izquierdo */
}

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

/* Abrimos el contenido con grid y mostramos */
.faq .faq-container .faq-active .faq-content {
  grid-template-rows: 1fr;
  visibility: visible;
  opacity: 1;
}

/* Rotación del chevron al abrir (moderno) */
.faq .faq-container .faq-active .faq-toggle {
  transform: rotate(90deg);
}

/* Accesibilidad: foco visible en el título */
.faq .faq-container .faq-item h3:focus {
  outline: 2px solid var(--accent-color);
  outline-offset: 2px;
}

/* Ajustes finos de párrafo dentro del contenido */
.faq .faq-container .faq-item .faq-content p + p {
  margin-top: 8px;
}



/* ============================================================
   CONTACT — Estética versión anterior + mejoras del template
   HTML objetivo: .contact .info (address/email/phone + iframe) 
                  y .contact .php-email-form
   ============================================================ */

/* ---------- Panel izquierdo (.info) ---------- */
.contact .info {
  border-top: 3px solid var(--default-color, #12244a);
  border-bottom: 3px solid var(--default-color, #12244a);
  padding: 30px;
  background: #abd6c5; /* color histórico */
  width: 100%;
  box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.1);
  border-radius: 10px; /* sutil mejora de calidad visual */
}

/* Bloques internos como filas (reemplaza float por flex moderno) */
.contact .info .address,
.contact .info .email,
.contact .info .phone {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 18px;
}

/* Ícono circular como antes, pero centrado con flex */
.contact .info i {
  flex: 0 0 44px;
  width: 44px;
  height: 44px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  font-size: 20px;
  color: var(--contrast-color);
  background: #89d5ad;
  transition: all 0.3s ease-in-out;
}

/* Títulos y textos con la tipografía/escala original */
.contact .info h4 {
  font-size: 22px;
  font-weight: 600;
  margin: 0 0 5px 0;
  color: var(--contrast-color);
}

.contact .info p {
  margin: 0 0 10px 0;
  font-size: 14px;
  color: var(--contrast-color);
}

/* Hover del bloque: invierte el chip del ícono como antes */
.contact .info .email:hover i,
.contact .info .address:hover i,
.contact .info .phone:hover i {
  background: var(--contrast-color);
  color: var(--surface-color);
}

/* Mapa: responsivo y coherente con el card */
.contact .info iframe {
  width: 100% !important;
  height: 300px;            /* base */
  border: 0;
  border-radius: 8px;
  box-shadow: 0 2px 12px rgba(0,0,0,.06);
}
@media (min-width: 1200px) {
  .contact .info iframe { height: 340px; }  /* un poco más en desktop ancho */
}

/* ---------- Formulario derecho (.php-email-form) ---------- */
.contact .php-email-form {
  width: 100%;
  border-top: 3px solid var(--contrast-color);
  border-bottom: 3px solid var(--contrast-color);
  padding: 30px;
  background: #f2f5fa; /* color histórico */
  box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.12);
  border-radius: 10px; /* homogeneidad con .info */
}

/* Estructura y espaciado */
.contact .php-email-form .form-group {
  margin-bottom: 20px;
  padding-bottom: 0; /* limpia el padding del template nuevo */
}

.contact .php-email-form label {
  padding-bottom: 8px;
  font-weight: 600;
  color: var(--contrast-color);
}

/* Inputs: tomamos mejoras del template (placeholders/focus) pero mantenemos look */
.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: 4px;
  background-color: #fff;  /* más legible que el mix translúcido */
  color: var(--contrast-color);
  border: 1px solid color-mix(in srgb, var(--contrast-color), transparent 80%);
}

.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(--contrast-color), transparent 70%);
}

.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, #5777ba);
  outline: none;
}

/* Alto de campos como antes */
.contact .php-email-form input { height: 44px; }
.contact .php-email-form textarea { padding: 10px 12px; }

/* Mensajes de estado (conserva funcionalidad) */
.contact .php-email-form .validate {
  display: none;
  color: red;
  margin: 0 0 15px 0;
  font-weight: 400;
  font-size: 13px;
}
.contact .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}
.contact .php-email-form .error-message br+br { margin-top: 25px; }
.contact .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #18d26e;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}
.contact .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}
.contact .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px; height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #18d26e;
  border-top-color: #eee;
  animation: contact-loading 1s linear infinite;
}

/* Botón: pill como la versión original */
.contact .php-email-form button[type=submit] {
  background: var(--default-color, #12244a);
  color: #fff;
  border: 0;
  padding: 12px 34px;
  transition: 0.3s ease;
  border-radius: 50px;
}
.contact .php-email-form button[type=submit]:hover {
  background: #A3A3A3;
}


.contact .info .address,
.contact .info .email,
.contact .info .phone {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contact .info .info-text {
  display: flex;
  flex-direction: column; /* apila h4 y p */
}

.contact .info h4, .contact .info p { margin: 0; padding: 0; }


.map-responsive {
  position: relative;
  aspect-ratio: 4 / 3; /* 600x450 */
  width: 100%;
  overflow: hidden;
  border-radius: .5rem;
  background: var(--background-color);
}
.map-responsive iframe {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  border: 0;
}

/* --- Modal Overlay (Fondo oscuro) --- */
.modal-overlay {
  /* display: none;  <-- ELIMINADO para evitar duplicación y permitir transición */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7); /* Fondo oscuro semi-transparente */
  display: flex; /* Para centrar el contenido */
  justify-content: center;
  align-items: center;
  z-index: 1050; /* Asegura que esté por encima de todo */
  opacity: 0; /* Para la transición de entrada */
  visibility: hidden; /* Para que no ocupe espacio si está oculto */
  transition: opacity 0.3s ease, visibility 0.3s ease;
  pointer-events: none;
}


/* --- Modal Visible --- */
.modal-overlay.show {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}


/* --- Contenido del Modal --- */
.modal-content {
  background-color: var(--background-color, #fff); /* Usa la variable de tu tema o un blanco por defecto */
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  width: 90%; /* Ancho base */
  max-width: 600px; /* Ancho máximo para pantallas grandes */
  position: relative;
  transform: translateY(-50px); /* Para la animación de entrada */
  transition: transform 0.3s ease;
  max-height: 90vh; /* Para que el modal no sea más alto que la ventana */
  overflow-y: auto; /* Si el contenido es muy largo, permite scroll */
}

.modal-overlay.show .modal-content {
  transform: translateY(0); /* Vuelve a su posición normal */
}

/* --- Encabezado del Modal --- */
.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 0px;
  padding-bottom: 5px; /* Pequeño padding para la línea de abajo */
  border-bottom: 1px solid var(--default-color); /* Línea separadora */
}

.modal-title {
  margin: 0;
  font-size: 1.8rem; /* Tamaño de fuente del título */
  font-weight: 800;
  color: var(--default-color);
  line-height: 1.2;
}

.close-button {
  background: none;
  border: none;
  font-size: 2rem;
  font-weight: bold;
  cursor: pointer;
  color: #aaa;
  line-height: 1;
  padding: 0 5px;
  transition: color 0.3s ease;
}

.close-button:hover {
  color: #666;
}

/* --- Cuerpo del Modal --- */
.modal-body {
  padding-top: 15px;
}

.modal-context-phrase {
  margin-bottom: 5px;
  font-size: 1rem;
  color: var(--text-color);
  line-height: 1.5;
}

/* --- Estilos del Formulario dentro del Modal (ADAPTADOS) --- */
/* Aplica los estilos base del formulario de contacto a la nueva clase del modal */
.modal-content .php-email-form-modal {
  height: 100%; /* Del original */
  padding: 0; /* Asegura que no tenga padding adicional del modal */
  box-shadow: none; /* Asegura que no tenga sombra adicional del modal */
}

/* Inputs, Email y Textarea del formulario del modal */
.modal-content .php-email-form-modal input[type=text],
.modal-content .php-email-form-modal input[type=email],
.modal-content .php-email-form-modal textarea {
  font-size: 14px;
  padding: 10px 15px;
  box-shadow: none;
  border-radius: 0;
  color: var(--default-color);
  background-color: color-mix(in srgb, var(--background-color), transparent 50%);
  border-color: color-mix(in srgb, var(--default-color), transparent 60%);
}

/* Foco de Inputs, Email y Textarea del formulario del modal */
.modal-content .php-email-form-modal input[type=text]:focus,
.modal-content .php-email-form-modal input[type=email]:focus,
.modal-content .php-email-form-modal textarea:focus {
  border-color: var(--contrast-color);
}

/* Placeholders de Inputs, Email y Textarea del formulario del modal */
.modal-content .php-email-form-modal input[type=text]::placeholder,
.modal-content .php-email-form-modal input[type=email]::placeholder,
.modal-content .php-email-form-modal textarea::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

/* Botón de Submit del formulario del modal */
.modal-content .php-email-form-modal button[type=submit] {
  color: var(--surface-color);
  background: var(--contrast-color);
  border: 0;
  padding: 10px 30px;
  transition: 0.4s;
  border-radius: 50px;
}

/* Hover del botón de Submit del formulario del modal */
.modal-content .php-email-form-modal button[type=submit]:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

/* Estilos para los mensajes de éxito/error/carga del formulario */
/* Asegúrate de que estos mensajes se vean bien */
.modal-content .php-email-form-modal .loading,
.modal-content .php-email-form-modal .error-message,
.modal-content .php-email-form-modal .sent-message {
  display: none;
  text-align: center;
  padding: 8px;
  margin-bottom: 15px;
  border-radius: 4px;
}

.modal-content .php-email-form-modal .loading {
  background: #fff;
  color: #444;
}

.modal-content .php-email-form-modal .error-message {
  background: #feeaee;
  color: #cc314f;
}

.modal-content .php-email-form-modal .sent-message {
  background: #e6ffed;
  color: #209f58;
}

/* Columnas del formulario: Asegúrate de que el sistema de grid funcione dentro del modal */
.modal-content .php-email-form-modal .col-md-6,
.modal-content .php-email-form-modal .col-md-12 {
  /* Si tu grid system es Bootstrap, estas clases ya se encargarán del layout */
  /* Si no, podrías necesitar añadir flexbox o float para las columnas */
  padding-left: 15px; /* Ejemplo, si tu grid tiene padding */
  padding-right: 15px;
}

/* Remueve cualquier margin-bottom que cause espacio extra entre filas de formulario */
.modal-content .php-email-form-modal .row.gy-4 > div {
    margin-bottom: 15px; /* Ajusta según el espacio que desees entre campos */
}

/* Ajuste para el ultimo elemento en un .row.gy-4 si no lleva margin-bottom */
.modal-content .php-email-form-modal .row.gy-4 > div:last-child {
    margin-bottom: 0;
}

/* Asegura que el boton de enviar este centrado si es necesario */
.modal-content .php-email-form-modal .text-center {
    text-align: center;
}













.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 0px solid color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-right: 10px;
  transition: 0.3s;
}

.footer .social-links a:hover {
  color: var(--accent-color);
  border-color: var(--accent-color);
  border: 1px solid color-mix(in srgb, var(--is-accent-color), transparent 50%);
}


.footer .social-links a {
  color: var(--surface-color);
  background-color: var(--is-accent-color);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 16px;
  margin-right: 10px;
  transition: 0.3s;
}

.footer .social-links a:hover {
  color: var(--is-accent-color);
  background-color: color-mix(in srgb, var(--surface-color) 90%, black 15%);
}





/* IS Logo Footer */
.footer .social-links a.is-robotic-link {
  position: relative;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: flex-start !important;
  width: 40px !important;  /* mismo tamaño que los otros íconos */
  height: 40px !important;
  background-color: transparent !important;  /* sin fondo */
  border-radius: 0 !important;  /* sin border-radius */
  overflow: visible;  /* cambié a visible para que no se corte */
  transition: width 0.3s ease !important;
  padding: 0 !important;
}

/* ícono redondo (default) */
.footer .social-links a.is-robotic-link .is-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  transition: opacity 0.3s ease;
  position: absolute;  /* cambié a absolute */
  left: 0;  /* alineado al borde izquierdo */
  top: 0;
  z-index: 2;
  flex-shrink: 0;
}

/* logo rectangular (oculto por default) */
.footer .social-links a.is-robotic-link .is-logo {
  position: absolute;
  left: 0;   
  top: 0;
  height: 40px; 
  width: auto;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 1;
}


/* al hacer hover: el contenedor se expande, desaparece el círculo, aparece el logo */
.footer .social-links a.is-robotic-link:hover {
  width: 170px !important;  /* se expande para mostrar el logo completo */
  background-color: transparent !important;
  border: none;
}

.footer .social-links a.is-robotic-link:hover .is-icon {
  opacity: 0;  /* el círculo desaparece */
}

.footer .social-links a.is-robotic-link:hover .is-logo {
  opacity: 1;  /* el logo aparece */
}





/* Animación del loader */
@keyframes contact-loading {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* ---------- Ajustes responsivos ---------- */
@media (max-width: 991.98px) {
  .contact .info,
  .contact .php-email-form {
    border-radius: 10px;
    padding: 24px;
  }
  .contact .info iframe { height: 260px; }
}

/* ---------- Hardening contra el CSS nuevo del template ----------
   Si el template trae reglas para .info-item o variantes de .php-email-form,
   estos refuerzos aseguran tu look sin !important masivo.
------------------------------------------------------------------*/

/* Evita que .info-item del template (si existiera en el DOM) te imponga colores */
.contact .info-item { 
  background: transparent; 
  padding: 0; 
}

/* Asegura que el template no cambie el botón a esquinas rectas */
.contact .php-email-form button[type=submit] { border-radius: 50px; }






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