/**
* Template Name: FlexStart
* Template URL: https://bootstrapmade.com/flexstart-bootstrap-startup-template/
* Updated: Nov 01 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: "Nunito",  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: #ffffff; /* Background color for the entire website, including individual sections */
  --default-color: #444444; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #012970; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #4154f1; /* 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: #ffffff; /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}

/* 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: #012970;  /* The default color of the main navmenu links */
  --nav-hover-color: #4154f1; /* 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: #212529; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #4154f1; /* 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: #f9f9f9;
  --surface-color: #ffffff;
}

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

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

/* 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
--------------------------------------------------------------*/
.header {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 20px 0;
  transition: all 0.5s;
  z-index: 997;
}

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

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

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

.header .btn-getstarted,
.header .btn-getstarted:focus {
  color: #ffffff;
  background: #012970;
  font-size: 15px;
  font-weight: 600;
  padding: 10px 25px;
  margin: 0 0 0 30px;
  border-radius: 6px;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(1, 41, 112, 0.20);
}

.header .btn-getstarted:hover,
.header .btn-getstarted:focus:hover {
  color: #ffffff;
  background: #001f54;
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(1, 41, 112, 0.35);
}

.header .btn-getstarted:active {
  background: #00163d;
  transform: translateY(0);
}

.scrolled .header .btn-getstarted {
  box-shadow: 0 10px 30px rgba(1, 41, 112, 0.25);
}

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

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

/* Index Page Header
------------------------------*/
.index-page .header {
/*  --background-color: rgba(255, 255, 255, 0);
*/}

/* Index Page Header on Scroll
------------------------------*/
.index-page.scrolled .header {
  --background-color: #ffffff;
}

/*--------------------------------------------------------------
# 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 12px;
    font-size: 15px;
    font-family: var(--nav-font);
    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;
    transition: 0.3s;
  }

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

  .navmenu li:hover>a,
  .navmenu .active,
  .navmenu .active:focus {
    color: #a8cf3a;
  }

  .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: #012970;
    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: #a8cf3a;
  }

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

/* Listing Dropdown - Desktop */
@media (min-width: 1200px) {
  .navmenu .listing-dropdown {
    position: static;
  }

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

  .navmenu .listing-dropdown ul li {
    flex: 1;
  }

  .navmenu .listing-dropdown ul li a,
  .navmenu .listing-dropdown ul li:hover>a {
    padding: 10px 20px;
    font-size: 15px;
    color: var(--nav-dropdown-color);
    background-color: var(--nav-dropdown-background-color);
  }

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

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

/* Listing Dropdown - Mobile */
@media (max-width: 1199px) {
  .navmenu .listing-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 .listing-dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }

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

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  color: #fff;
  background-color: #012970;
  font-size: 14px;
  padding-bottom: 50px;
  position: relative;
}

.footer .footer-newsletter {
  background-color: color-mix(in srgb, var(--accent-color), transparent 97%);
  border-top: 1px solid color-mix(in srgb, var(--accent-color), transparent 85%);
  border-bottom: 1px solid color-mix(in srgb, var(--accent-color), transparent 85%);
  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;
  background-color: color-mix(in srgb, var(--background-color), transparent 50%);
  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: 4px;
}

.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: color-mix(in srgb, var(--background-color), transparent 50%);
  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: 0 4px 4px 0;
}

.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 .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 97%);
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 85%);
  font-size: 16px;
  color: #fff;
  margin-right: 10px;
  transition: 0.3s;
}

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

.footer h4 {
  font-size: 16px;
  font-weight: bold;
  position: relative;
  padding-bottom: 12px;
  color: #a8cf3a; 
}

.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: #a8cf3a;
}

.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: #fff;
  line-height: 1;
}

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

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

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

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

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

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

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 90px;   /* Antes: 15px */
  z-index: 99999;
  background-color: #a8cf3a;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: #fff;
  line-height: 0;
}

.scroll-top:hover {
  background-color: #8fb52f;
  color: #fff;
}

.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;
  }
	
	.scroll-top {
    bottom: 85px;
    right: 15px;
  }

}

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

.page-title .heading {
  padding: 80px 0;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.page-title .heading h1 {
  font-size: 38px;
  font-weight: 700;
}

.page-title nav {
  background-color: color-mix(in srgb, var(--default-color), transparent 95%);
  padding: 20px 0;
}

.page-title nav ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  font-size: 16px;
  font-weight: 600;
}

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

.page-title nav 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: 98px;
  overflow: clip;
}

@media (max-width: 1199px) {

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

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

.section-title h2 {
    max-width: 950px;
    margin: auto;
    font-size: 44px;
    line-height: 1.1;
    font-weight: 700;
    color: #a6ce39;
}

.section-title p {
	max-width: 950px;
    margin: 25px auto 0;
    font-size: 20px;
    line-height: 1.7;
    color: #5f6c87;
}

.section-title p .description-title {
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;

  padding: 95px 0 60px;
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;

  width: 100%;
  height: 100%;

  object-fit: cover;

  z-index: 1;
}

.hero-overlay {
  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      90deg,
      rgba(1,41,112,.70) 0%,
      rgba(1,41,112,.50) 40%,
      rgba(1,41,112,.15) 75%,
      rgba(1,41,112,0) 100%
    );

  z-index: 2;
}
.hero .container {
  position: relative;
  z-index: 3;
}

.hero h1 {
  margin: 0;
  font-size: 60px;
  font-weight: 700;
  color: #a8cf3a;
  margin-bottom: 5px;
  line-height: 0.9; 
}

.hero h1 .white{
	color: #EAF3FB;
}

.hero p {
  color: #fff;
  margin: 5px 0 0px 0;
  font-size: 17px;
  font-weight: 400;
}

.hero .btn-get-started {
  color: #fff;
  background: #012970;
  font-family: var(--heading-font);
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px 40px;
  border-radius: 60px;
  transition: all 0.3s ease;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.15);
  gap: 6px;
}

.hero .btn-get-started:hover {
  color: #fff;
  background: #001f54;
  transform: translateY(-2px);
  box-shadow: 0 14px 35px rgba(0, 31, 84, 0.35);
}

.hero .btn-get-started:active {
  background: #00163d;
  transform: translateY(0);
}

.hero .btn-get-started:hover i {
  transform: translateX(5px);
}

.hero .btn-watch-video {
  font-size: 16px;
  transition: 0.5s;
  color: var(--default-color);
  font-weight: 600;
}

.hero .btn-watch-video i {
  color: var(--accent-color);
  font-size: 32px;
  transition: 0.3s;
  line-height: 0;
  margin-right: 8px;
}

.hero .btn-watch-video:hover {
  color: var(--accent-color);
}

.hero .btn-watch-video:hover i {
  color: color-mix(in srgb, var(--accent-color), transparent 15%);
}

.hero .animated {
  animation: up-down 2s ease-in-out infinite alternate-reverse both;
}

p.sub{
  margin-top: 2%;
  letter-spacing: 0.16em;
  font-size: 14px;
}

.hero .btn-discover {
  color: #012970;
  background: #a8cf3a;
  font-family: var(--heading-font);
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 32px;
  border-radius: 60px;
  transition: all 0.3s ease;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.15);
}

.hero .btn-discover:hover {
  background: #b9de4d;
  color: #012970;
  transform: translateY(-2px);
  box-shadow: 0 14px 35px rgba(168, 207, 58, 0.35);
}

.hero .btn-discover:active {
  background: #99bd2f;
  transform: translateY(0);
}


.hero .btn-discover i {
  margin-left: 5px;
  font-size: 18px;
  transition: 0.3s;
}

.hero .btn-discover:hover i {
  transform: translateX(5px);
}


.hero .d-flex.flex-column.flex-md-row{
    margin-top: 20px !important;
}

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

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

@keyframes up-down {
  0% {
    transform: translateY(10px);
  }

  100% {
    transform: translateY(-10px);
  }
}

/*--------------------------------------------------------------
# Opportunity Section
--------------------------------------------------------------*/

.opportunity {
    background: #f5f7fb;
	padding: 110px 0px;
}

.section-eyebrow {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #012970;
    margin-bottom: 30px;
}

.intro-text {
    font-size: 20px;
    line-height: 1.7;
    color: #4b5675;
    margin-bottom: 30px;
}

.intro-highlight {
    font-size: 22px;
    line-height: 1.4;
    font-weight: 700;
    color: #012970;
    margin-bottom: 70px;
}

.opportunity-content {
    align-items: flex-start;
}

.opportunity-left {
    max-width: 92%;
}

.opportunity-title {
    font-size: clamp(58px, 5vw, 78px);
    line-height: 1.05;
    letter-spacing: -2px;
    font-weight: 700;
    color: #a8cf3a;
    margin-bottom: 40px;
}

.opportunity p {
    font-size: 20px;
    line-height: 1.7;
    color: #4b5675;
}

.opportunity-strong {
    color: #012970 !important;
    font-weight: 700;
}

/*--------------------------------------------------------------
# CARDS
--------------------------------------------------------------*/

.opportunity-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
    margin-top: -10px;
}

/* BASE CARD (igual comportamiento para ambos) */
.opportunity-card,
.opportunity-highlight {
    position: relative;
    border-radius: 24px;
    padding: 20px;
    transition: transform .35s ease, box-shadow .35s ease;
    will-change: transform;
    cursor: pointer;
    transform: translateZ(0);
    backface-visibility: hidden;
}

/* CARD BLANCO */
.opportunity-card {
    background: #fff;
    border: 1px solid #e6ebf3;
    box-shadow: 0 8px 24px rgba(1,41,112,.06);
}

/* CARD AZUL */
.opportunity-highlight {
    margin-top: 25px;
    background: #012970;
    min-height: 230px; 
    box-shadow: 0 10px 30px rgba(1,41,112,.20);
    border: 1px solid rgba(255,255,255,0.06);
    overflow: hidden;
}

/* HOVER UNIFICADO (CLAVE DEL EFECTO) */
.opportunity-card:hover,
.opportunity-highlight:hover {
     transform: translateY(-14px);
}

/* SOMBRAS EN HOVER */
.opportunity-card:hover {
    box-shadow:
        0 20px 45px rgba(1,41,112,.10),
        0 0 0 1px rgba(168,207,58,.25);
}

.opportunity-highlight:hover {
    box-shadow:
        0 35px 80px rgba(1, 41, 112, .35),
        0 10px 30px rgba(1, 41, 112, .15),
        0 0 0 1px rgba(168, 207, 58, .35);
}



/*--------------------------------------------------------------
# DOTS
--------------------------------------------------------------*/

.card-dot {
    position: absolute;
    top: 30px;
    right: 28px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #a8cf3a;
    transition: all .35s ease;
}

.card-dot::after {
    content: "";
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    background: rgba(168,207,58,.15);
    transform: scale(0);
    transition: .35s;
}

.opportunity-card:hover .card-dot {
    transform: scale(1.5);
    box-shadow: 0 0 15px rgba(168,207,58,.5);
}

.opportunity-card:hover .card-dot::after {
    transform: scale(1);
}

/* DOT AZUL */
.highlight-dot {
    position: absolute;
    top: 30px;
    right: 30px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #a8cf3a;
    transition: transform .35s ease;
}

.highlight-dot::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(168, 207, 58, 0.25);
    transform: translate(-50%, -50%) scale(1);
    transition: all .35s ease;
    z-index: -1;
}

.opportunity-highlight:hover .highlight-dot {
    transform: scale(1.4);
}

.opportunity-highlight:hover .highlight-dot::before {
    width: 28px;
    height: 28px;
    background: rgba(168, 207, 58, 0.20);
}


/*--------------------------------------------------------------
# TEXTOS
--------------------------------------------------------------*/

.opportunity-card span {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: #94a0bc;
    margin-bottom: 20px;
}

.opportunity-card h3 {
    font-size: 26px;
    line-height: 1.25;
    color: #012970;
    margin-bottom: 20px;
    font-weight: 600;
}

.opportunity-card p {
    font-size: 17px;
    line-height: 1.8;
    margin: 0;
}

.highlight-text{
	font-weight: 600;
}

/* AZUL */
.opportunity-highlight h4 {
    color: #a8cf3a;
    font-size: 26px;
    line-height: 1.1;
    margin-bottom: 20px;
}

.opportunity-highlight p {
    color: rgba(255,255,255,.92);
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 2px;
}

.highlight-number {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
}

/*--------------------------------------------------------------
# RESPONSIVE
--------------------------------------------------------------*/

@media (max-width: 991px) {
    .intro-highlight {
        margin-bottom: 50px;
    }

    .opportunity-left {
        max-width: 100%;
        margin-bottom: 50px;
    }

    .opportunity-grid {
        margin-top: 0;
    }

    .opportunity-title {
        max-width: 650px;
    }
}

@media (max-width: 767px) {

    .intro-text {
        font-size: 18px;
    }

    .intro-highlight {
        font-size: 20px;
    }

    .opportunity-title {
        font-size: 42px;
        line-height: 1.1;
        letter-spacing: -1px;
    }

    .opportunity p {
        font-size: 18px;
    }

    .opportunity-grid {
        grid-template-columns: 1fr;
    }

    .opportunity-card {
        padding: 30px;
    }

    .opportunity-highlight {
        padding: 35px;
    }

    .opportunity-highlight h4 {
        font-size: 30px;
    }
}

@media (max-width: 991px) {

    .intro-highlight {
        margin-bottom: 50px;
    }

    .opportunity-left {
        max-width: 100%;
        margin-bottom: 50px;
    }

    .opportunity-grid {
        margin-top: 0;
    }

    .opportunity-title {
        max-width: 650px;
    }
}

/* MÓVIL */

@media (max-width: 767px) {

    .intro-text {
        font-size: 18px;
    }

    .intro-highlight {
        font-size: 20px;
    }

    .opportunity-title {
        font-size: 42px;
        line-height: 1.1;
        letter-spacing: -1px;
    }

    .opportunity p {
        font-size: 18px;
    }

    .opportunity-grid {
        grid-template-columns: 1fr;
    }

    .opportunity-card {
        padding: 30px;
    }

    .opportunity-highlight {
        padding: 35px;
    }

    .opportunity-highlight h4 {
        font-size: 30px;
    }
}

/*--------------------------------------------------------------
# Ecosystem Section
--------------------------------------------------------------*/

.ecosystem {
    background: #ffffff;
    padding: 110px 0;
}

.ecosystem-header {
    text-align: center;
    margin-bottom: 50px;
}

.ecosystem-badge {
	padding: 8px 18px;
    border-radius: 30px;
    background: rgb(238, 242, 255);
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgb(1, 41, 112);
    margin-bottom: 25px;
}

.ecosystem-header h2 {
    max-width: 950px;
    margin: auto;
    font-size: 44px;
    line-height: 1.1;
    font-weight: 700;
    color: #a6ce39;
}

.ecosystem-intro {
    max-width: 750px;
    margin: 25px auto 0;
    font-size: 20px;
    line-height: 1.7;
    color: #5f6c87;
}

.ecosystem-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-bottom: 70px;
}

.ecosystem-item {
    background: #fff;
    border: 1px solid #edf1f7;
    border-radius: 22px;
    padding: 35px;
    text-align: center;
    transition: 0.35s;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.ecosystem-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(1,41,112,0.12);
}

.ecosystem-item i {
    font-size: 32px;
    color: #a6ce39;
    display: inline-block;
    transition: all 0.35s ease;
}

.ecosystem-item:hover i {
    transform: scale(1.2) rotate(8deg);
    color: #b9dd4d;
}

.ecosystem-item h3 {
    font-size: 22px;
    line-height: 1.3;
    color: #012970;
    margin: 0;
}

.ecosystem-message {
    max-width: 900px;
    margin: auto;
    text-align: center;
    padding: 55px;
    background: #f7f9fc;
    border-radius: 30px;
    margin-bottom: 60px;
}

.ecosystem-message h3 {
    font-size: 40px;
    color: #012970;
    margin-bottom: 20px;
    font-weight: 700;
}

.ecosystem-message p {
    font-size: 20px;
    line-height: 1.8;
    color: #4c5872;
    margin: 0;
}

.ecosystem-cta {
    text-align: center;
}

.ecosystem-cta h4 {
    font-size: 34px;
    color: #012970;
    margin-bottom: 30px;
    font-weight: 700;
}

.ecosystem-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 40px;
    background: #a6ce39;
    color: #fff;
    border-radius: 60px;
    font-size: 17px;
    font-weight: 600;
    transition: 0.3s;
}

.ecosystem-btn:hover {
    background: #95bc2e;
    color: #fff;
    transform: translateY(-3px);
}

.ecosystem-btn i {
    transition: transform .3s ease;
}

.ecosystem-btn:hover i {
    transform: translateX(5px);
}

@media (max-width: 991px) {

    .ecosystem-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .ecosystem-header h2 {
        font-size: 34px;
    }

    .ecosystem-message h3 {
        font-size: 32px;
    }
}

@media (max-width: 767px) {

    .ecosystem {
        padding: 80px 0;
    }

    .ecosystem-grid {
        grid-template-columns: 1fr;
    }

    .ecosystem-header h2 {
        font-size: 28px;
    }

    .ecosystem-message {
        padding: 35px 25px;
    }

    .ecosystem-message h3 {
        font-size: 26px;
    }

    .ecosystem-message p {
        font-size: 18px;
    }

    .ecosystem-cta h4 {
        font-size: 28px;
    }

    .ecosystem-btn {
        width: 100%;
        justify-content: center;
    }
}

/*--------------------------------------------------------------
# Blue Ocean Section
--------------------------------------------------------------*/

.blue-ocean {
    background: #012970;
    padding: 120px 0;
    color: #fff;
    position: relative;
}

.ocean-eyebrow {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: rgb(166, 206, 57);
    margin-bottom: 25px;
}

.ocean-header {
    max-width: 900px;
    margin-bottom: 50px;
}

.ocean-header h2 {
    font-size: 74px;
    line-height: 1.1;
    font-weight: 700;
    color: #fff;
}

.ocean-header span {
    color: #a6ce39;
}

.ocean-content p {
    font-size: 17px;
    line-height: 1.7;
    color: rgba(255,255,255,0.88);
}

.ocean-content strong {
    color: #a6ce39;
    font-weight: 700;
}

.ocean-stats {
    margin-top: 50px;
    margin-bottom: 100px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid rgba(255,255,255,0.08);
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.ocean-stat {
    padding: 45px 20px;
    text-align: center;
    border-right: 1px solid rgba(255,255,255,0.08);
}

.ocean-stat:last-child {
    border-right: none;
}

.ocean-stat span {
    display: block;
    font-size: 45px;
    font-weight: 700;
    color: #a6ce39;
    margin-bottom: 5px;
}

.ocean-stat p {
    margin: 0;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255,255,255,0.65);
}

.counter {
    display: block;
    white-space: nowrap;
    line-height: 1;
}

.ocean-stat span {
    transition: color .3s;
}

.ocean-stat:hover span {
    color: #c4e45b;
}

.ocean-stat {
    transition: transform .3s;
}

.ocean-stat:hover {
    transform: translateY(-5px);
}

.ocean-cta {
    max-width: 900px;
    margin: auto;
    text-align: center;
}

.ocean-label {
    color: #a6ce39;
    font-size: 13px;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 25px;
    font-weight: 700;
}

.ocean-cta h3 {
    font-size: 50px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
}

.ocean-cta p {
    font-size: 20px;
    line-height: 1.7;
    color: rgba(255,255,255,0.82);
    margin-bottom: 30px;
}

.ocean-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgb(166, 206, 57);
    color: #fff;
    padding: 14px 40px;
    border-radius: 60px;
    font-size: 17px;
    font-weight: 600;
}

.ocean-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(166,206,57,0.25);
    color: #fff;
}

.ocean-btn i {
    transition: transform .3s ease;
}

.ocean-btn:hover i {
    transform: translateX(5px);
}


@media (max-width: 991px) {

    .ocean-header h2 {
        font-size: 52px;
    }

    .ocean-content p {
        font-size: 17px;
    }

    .ocean-cta h3 {
        font-size: 42px;
    }

    .ocean-stats {
        grid-template-columns: repeat(2,1fr);
    }
}

@media (max-width: 767px) {

    .blue-ocean {
        padding: 90px 0;
    }

    .ocean-header h2 {
        font-size: 40px;
    }

    .ocean-content p {
        font-size: 18px;
    }

    .ocean-stats {
        grid-template-columns: 1fr;
    }

    .ocean-stat {
        border-right: none;
        border-bottom: 1px solid rgba(255,255,255,0.08);
    }

    .ocean-cta h3 {
        font-size: 34px;
    }

    .ocean-cta p {
        font-size: 18px;
    }

    .ocean-btn {
        width: 100%;
        justify-content: center;
    }
}

/*--------------------------------------------------------------
# Escalabilidad
--------------------------------------------------------------*/

.scalability {
    background: #f5f7fb;
    padding: 110px 0px;
}

.scalability .section-header {
    margin-bottom: 60px;
}

.scalability .section-label {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #012970;
    margin-bottom: 25px;
}

.scalability h2 {
    font-size: 44px;
    line-height: 1.1;
    font-weight: 700;
    color: #a8cf3a;
    margin-bottom: 35px;
}

.scalability p {
    font-size: 20px;
    line-height: 1.7;
    color: #4b5675;
}

.scalability p strong {
    color: #4b5675;
    font-weight: 700;
}

.pillar-box {
    position: relative;
    background: #fff;
    border: 1px solid #dde2ec;
    border-radius: 20px;
    padding: 40px;
    height: 100%;
    overflow: hidden;

    transition: all 0.35s ease;
}

.pillar-box:hover {
    transform: translateY(-6px);

    box-shadow:
        0 20px 40px rgba(1, 41, 112, 0.08);
}

.pillar-number {
    position: absolute;
    top: 5px;
    right: 15px;

    font-size: 110px;
    font-weight: 700;
    line-height: 1;

    color: rgba(1, 41, 112, 0.04);

    pointer-events: none;
}

.pillar-label {
    display: flex;
    align-items: center;
    gap: 12px;

    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;

    color: #9ab84f;

    margin-bottom: 22px;
}

.pillar-label span {
    width: 32px;
    height: 1px;
    background: #9ab84f;
}

.pillar-box h3 {
    font-size: 22px;
    font-weight: 700;
    color: #012970;

    margin-bottom: 20px;
}

.pillar-box p {
    font-size: 17px;
    line-height: 1.8;
    color: #5d6784;

    margin-bottom: 25px;
}

.pillar-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* ITEM */
.pillar-box ul li {
  display: flex;
  align-items: center; 
  gap: 14px;

  margin-bottom: 18px;

  font-size: 16px;
  line-height: 1.6;
  color: #1d2842;
}

/* ICONO CHECK */
.pillar-box ul li i {
  color: #89c540;

  font-size: 20px;
  width: 22px;
  min-width: 22px;
  height: 22px;

  display: flex;
  align-items: center;
  justify-content: center;

  line-height: 1;
  margin-top: 0; 
  flex-shrink: 0;
}

/* TEXTO */
.pillar-box ul li span {
  flex: 1;
  display: block;
}

/* OPCIONAL: si el texto no está dentro de span */
.pillar-box ul li {
  word-break: normal;
}

.btn-scalability {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgb(166, 206, 57);
    color: #fff;
    padding: 14px 40px;
    border-radius: 60px;
    font-size: 17px;
    font-weight: 600;
}

.btn-scalability:hover {
    background: #95bc2e;
    color: #fff;
    transform: translateY(-3px);
}

.btn-scalability i {
    transition: transform .3s ease;
}

.btn-scalability:hover i {
    transform: translateX(5px);
}

@media (max-width: 991px) {

    .scalability h2 {
        font-size: 48px;
    }

    .scalability p {
        font-size: 18px;
    }
}

@media (max-width: 768px) {

    .scalability h2 {
        font-size: 38px;
    }

    .pillar-box {
        padding: 30px;
    }

    .pillar-number {
        font-size: 80px;
    }
}

/*--------------------------------------------------------------
# VALIDACIÓN DEL MODELO
--------------------------------------------------------------*/

.validation {
    padding: 110px 0;
	background-color: #fff; 
    
}

.validation-label {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #012970;
    margin-bottom: 25px;
}

.validation-title {
    font-size: 44px;
    line-height: 1.1;
    font-weight: 700;
    color: #a8cf3a;
    margin-bottom: 35px;
}

.validation-text {
    font-size: 20px;
    line-height: 1.7;
    color: #475569;
    margin-bottom: 15px;
    max-width: 620px;
}

.validation-highlight {
    font-size: 25px;
    font-weight: 700;
    color: #012970;
    margin-bottom: 15px;
}

.validation-strong {
    font-size: 25px;
    font-weight: 700;
    color: #012970;
    margin-bottom: 35px;
}

.validation-title{
    max-width:950px;
    margin:0 auto;
	margin-bottom: 25px; 
}

.validation-title p{
    margin:0;
    text-align:center !important;
}

.validation-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgb(166, 206, 57);
    color: #fff;
    padding: 14px 40px;
    border-radius: 60px;
    font-size: 17px;
    font-weight: 600;
}

.validation-btn:hover {
    background: #95bc2e;
    color: #fff;
    transform: translateY(-3px);
}

.validation-btn i {
    transition: transform .3s ease;
}

.validation-btn:hover i {
    transform: translateX(5px);
}


/* TARJETA */

.validation-card {
    background: #012970;
    border-radius: 40px;
    padding: 80px 60px 40px 60px;
    color: #fff;
    box-shadow: 0 40px 80px rgba(1, 41, 112, .15);
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    transform: translateY(0);
}

.validation-card::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(
        circle at top left,
        rgba(183, 212, 67, 0.18),
        transparent 55%
    );
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.validation-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 60px 120px rgba(1, 41, 112, 0.25);
}

.validation-card:hover::before {
    opacity: 1;
}

.validation-card:hover h3 span {
    color: #d4ff4d;
    transition: color 0.3s ease;
}

.validation-quote {
    font-size: 100px;
    line-height: 0.1;
    color: #b7d443;
}

.validation-card h3 {
    font-size: 26px;
    line-height: 1.2;
    font-weight: 700;
    color: #fff;
    margin-bottom: 30px;
}

.validation-card h3 span {
    color: #b7d443;
}

.validation-card p {
    font-size: 26px;
    line-height: 1.3;
    font-style: italic;
    color: rgba(255,255,255,.85);
    margin: 0;
}

/* ======================================================
# GROWTH SECTION
====================================================== */

.growth {
	background: #f5f7fb;
    padding: 110px 0px;
}

.growth-intro {
  text-align: center;
  font-size: 20px;
  line-height: 1.7;
  color: #5f6c87;
  max-width: 900px;
  margin: 0 auto;
}

.growth-intro strong {
  color: #4b5675;
}

/* CARD */
.growth-card {
  background: var(--surface-color);
  border-radius: 18px;
  padding: 30px;
  height: 100%;
  box-shadow: 0 0 25px rgba(1, 41, 112, 0.08);
  transition: all 0.35s ease;
  border: 1px solid rgba(1, 41, 112, 0.06);
}

.growth-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(1, 41, 112, 0.12);
}

.growth-card i {
    font-size: 32px;
    color: #a6ce39;
    display: inline-block;
    transition: all 0.35s ease;
	margin-bottom: 3%;
}

.growth-card:hover i {
    transform: scale(1.2) rotate(8deg);
    color: #b9dd4d;
}

.growth-card h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--heading-color);
}

.growth-card p {
  font-size: 17px;
  line-height: 1.8;
  margin: 0;
}

.growth-cta {
  background: linear-gradient(135deg, #012970, #021d4d);
  color: #fff;
  padding: 60px clamp(24px, 6vw, 130px);
  border-radius: 24px;
  text-align: center;
  box-shadow: 0 30px 60px rgba(1, 41, 112, 0.25);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;

}

.growth-cta h3 {
  font-size: 30px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 15px;
}

.growth-cta p {
  font-size: 16px;
  color: rgba(255,255,255,0.85);
}

.growth-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgb(166, 206, 57);
    color: #fff;
    padding: 14px 40px;
    border-radius: 60px;
    font-size: 17px;
    font-weight: 600;
	margin-top: 10px;
}

.growth-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(166,206,57,0.25);
    color: #fff;
}

.growth-btn i {
    transition: transform .3s ease;
}

.growth-btn:hover i {
    transform: translateX(5px);
}

.cta-highlight-metric {
  margin: 0;
  padding: 18px 22px;
  display: inline-flex;
  align-items: center;
  gap: 10px;

  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 14px;

  color: #ffffff;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.2px;

  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);

  position: relative;
  overflow: hidden;
}

.cta-highlight-metric::before {
  content: "";
  position: absolute;
  top: 0;
  left: -60%;
  width: 60%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255, 255, 255, 0.15),
    transparent
  );
  transform: skewX(-20deg);
  animation: shine 4s infinite;
}

@keyframes shine {
  0% { left: -60%; }
  100% { left: 140%; }
}

.cta-highlight-number {
  font-size: 20px;
  font-weight: 800;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.15);
  padding: 4px 10px;
  border-radius: 8px;
}

@media (max-width: 768px) {
  .growth-cta {
    padding: 50px 24px;
    border-radius: 20px;
  }

  .growth-cta h1,
  .growth-cta h2 {
    font-size: 22px;
    line-height: 1.3;
  }

  .growth-cta p {
    font-size: 15px;
    line-height: 1.5;
  }
}

/* ======================================================
# PLATAFORMA IDONMS
====================================================== */

.platform {
    padding: 110px 0;
    background: #ffffff;
}

.platform-number {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #012970;
    margin-bottom: 25px;
}

.platform-title {
    font-size: 44px;
    line-height: 1.1;
    font-weight: 800;
    color: #a8cf3a;
    margin-bottom: 40px;
    max-width: 620px;
}

.platform-text {
    font-size: 20px;
    line-height: 1.7;
    color: #475569;
    max-width: 650px;
}

.platform-text strong {
    color: #475569;
    font-weight: 700;
}

.platform-subtitle {
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #012970;
    margin-bottom: 30px;
	margin-top: 35px;
}

.platform-list {
    padding: 0;
    margin: 0;
    list-style: none;
}

.platform-list li {
    position: relative;
    padding-left: 45px;
    margin-bottom: 24px;
    font-size: 20px;
    color: #1d2a44;
    line-height: 1.5;
    transition: all .3s ease;
    cursor: default;
}

.platform-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #b7d76c;
    box-shadow: 0 0 0 8px rgba(183, 215, 108, 0.18);
    transition: all .35s ease;
}

.platform-list li:hover {
    color: #012970;
    transform: translateX(6px);
}

.platform-list li:hover::before {
    transform: scale(1.2);
    box-shadow:
        0 0 0 12px rgba(183, 215, 108, 0.28),
        0 0 20px rgba(183, 215, 108, 0.35);
}

/* Imagen */

.platform-image-wrapper {
    position: relative;
}

.platform-image {
    width: 100%;
    border-radius: 28px;
    box-shadow: 0 30px 80px rgba(16, 31, 63, 0.15);
}

/* Tarjeta */

.platform-card {
    position: absolute;
    left: -40px;
    bottom: 40px;
    background: #fff;
    border-radius: 24px;
    padding: 20px 20px;
    display: flex;
    align-items: center;
    gap: 18px;
    box-shadow: 0 20px 50px rgba(16, 31, 63, 0.18);
}

.platform-card-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(183, 215, 108, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;   
    position: relative;
    cursor: default;
    transition: all .35s ease;
}

.platform-card-icon span {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #b7d76c;
    transition: all .35s ease;
    position: relative;
    z-index: 2;
}

.platform-card-icon::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: rgba(183, 215, 108, 0.18);
    transform: scale(1);
    transition: all .35s ease;
    z-index: 1;
}

.platform-card-icon:hover {
    transform: translateY(-3px);
}

.platform-card-icon:hover::before {
    transform: scale(1.35);
    background: rgba(183, 215, 108, 0.28);
}

.platform-card-icon:hover span {
    transform: scale(1.2);
    box-shadow: 0 0 18px rgba(183, 215, 108, 0.45);
}

.platform-card small {
    display: block;
    color: #6f7c95;
    font-size: 15px;
    margin-bottom: 4px;
}

.platform-card strong {
    display: block;
    color: #012970;
    font-size: 40px;
    font-weight: 800;
}

/* Confidencialidad */

.platform-confidential {
    margin-top: 40px;
    background: #f5f7fb;
    border-radius: 28px;
    padding: 45px 50px;
    border-left: 5px solid #a8c95c;
}

.platform-confidential h4 {
    font-size: 22px;
    font-weight: 800;
    color: #012970;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.platform-confidential p {
    font-size: 20px;
    line-height: 1.7;
    color: #5f6c87;
    margin: 0;
}

/* ==========================
RESPONSIVE
========================== */

@media (max-width: 991px) {

    .platform {
        padding: 90px 0;
    }

    .platform-title {
        font-size: 48px;
    }

    .platform-text {
        font-size: 19px;
    }

    .platform-list li {
        font-size: 20px;
    }

    .platform-card {
        left: 20px;
        bottom: -30px;
    }

    .platform-confidential {
        margin-top: 70px;
    }
}

@media (max-width: 768px) {

    .platform-title {
        font-size: 38px;
        line-height: 1.2;
    }

    .platform-text {
        font-size: 18px;
    }

    .platform-list li {
        font-size: 18px;
        padding-left: 38px;
    }

    .platform-confidential {
        padding: 30px 25px;
    }

    .platform-confidential p {
        font-size: 17px;
    }

    .platform-card {
        position: relative;
        left: auto;
        bottom: auto;
        margin-top: -35px;
        width: fit-content;
    }
}

/*==================================================
DECISION
==================================================*/

.decision{
    background: rgb(1, 41, 112);
    padding: 120px 0px 35px 0px;
    color: rgb(255, 255, 255);
    position: relative;
}

.decision-number{
	display: inline-block;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #a6ce39;
    margin-bottom: 25px;
}

.decision-title{

    color:#fff;
    font-size:50px;
    font-weight:800;
    line-height:1.08;
    max-width:900px;
    margin-bottom:35px;

}

.decision-subtitle{

    font-size:24px;
    color:#A7CF45;
    font-weight:500;
    max-width:900px;
    line-height:1.5;
    margin-bottom:70px;

}

.decision-content p{

    font-size:20px;
    line-height:1.7;
    color:rgba(255,255,255,.82);

}

.decision-content strong{

    color:#A7CF45;
    font-weight:600;

}

.decision-content hr{

    border-color:rgb(137, 135, 146);
    margin:20px 0;

}

.decision-list{

    list-style:none;
    padding:0;
    margin:0;

}

.decision-list li{

    font-size:20px;
	line-height: 1.7;
    color:#fff;

}

.decision-question{

    color:#A7CF45;
    font-size:20px;
    font-weight:700;

}

.decision-cta{
    margin-top:70px;
    margin-bottom:90px;

}

.decision-card{
    border-radius:24px;
    padding:35px;
    display:flex;
    justify-content:space-between;
    align-items:flex-start;
    text-decoration:none;
    transition:.35s;
    height:100%;

}

.decision-card h3{
    font-size:25px;
    line-height:1.2;
    margin-bottom:20px;
    font-weight:700;

}

.decision-card p{
    font-size:20px;
    line-height:1.7;

}

.decision-card i{

    font-size:28px;

}

.decision-card-green{

    background:#A7CF45;
    color:#0f2342;

}

.decision-card-green h3,
.decision-card-green p,
.decision-card-green i{

    color:#0f2342;

}

.decision-card-blue{

    background:rgba(255,255,255,.06);
    border:1px solid rgba(255,255,255,.12);
    color:#fff;

}

.decision-card-blue h3,
.decision-card-blue p,
.decision-card-blue i{

    color:#fff;

}

.decision-card:hover{

    transform:translateY(-8px);

}

.decision-card-blue{
    background:rgba(255,255,255,.06);
    border:1px solid rgba(255,255,255,.12);
    color:#fff;
    transition:
        background .35s ease,
        border-color .35s ease,
        box-shadow .35s ease,
        transform .35s ease;
}

.decision-card-blue:hover{
    background:rgba(255,255,255,.10);
    border-color:rgba(255,255,255,.20);
    box-shadow:0 20px 45px rgba(0,0,0,.18);
}

.decision-card i{
    font-size:28px;
    transition:transform .35s cubic-bezier(.22,1,.36,1);
}

.decision-card:hover i{
    transform:translateX(8px);
}

.decision-indicators-title{

    color:#A7CF45;
    letter-spacing:4px;
    text-transform:uppercase;
    font-size:14px;
    margin-bottom:25px;
    font-weight:700;

}

.decision-stats{

    display:grid;
    grid-template-columns:repeat(4,1fr);
    background:rgba(6,25,60,.45);
    border-radius:22px;
    overflow:hidden;

}

.decision-stat{

    padding:45px 25px;
    text-align:center;
    border-right:1px solid rgba(255,255,255,.08);

}

.decision-stat:last-child{

    border-right:none;

}

.decision-stat span{
    display: block;
    font-size: 45px;
    font-weight: 700;
    color: #a6ce39;
    margin-bottom: 5px;
}

.decision-stat small{
    margin: 0;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.65);
}

.decision-footer{

    text-align:center;
    margin-top:35px;
    color:rgba(255,255,255,.72);
    font-size:18px;

}

@media(max-width:991px){

.decision{

padding:90px 0;

}

.decision-title{

font-size:48px;

}

.decision-subtitle{

font-size:22px;

}

.decision-content p,
.decision-list li{

font-size:20px;

}

.decision-stats{

grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:767px){

.decision-title{

font-size:36px;

}

.decision-subtitle{

font-size:20px;

}

.decision-card{

padding:30px;

}

.decision-card h3{

font-size:24px;

}

.decision-card p{

font-size:17px;

}

.decision-stats{

grid-template-columns:1fr;

}

.decision-stat{

border-right:none;
border-bottom:1px solid rgba(255,255,255,.08);

}

.decision-stat:last-child{

border-bottom:none;

}

}

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

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

.faq .faq-container .faq-item h3 {
  font-weight: 600;
  font-size: 20px;
  line-height: 28px;
  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: #9dc44d;
}

/* Contenido colapsado */
.faq .faq-container .faq-item .faq-content {
  max-height: 0;               /* Oculto al inicio */
  overflow: hidden;            /* No mostrar contenido */
  opacity: 0;                  /* Transparente al inicio */
  transition: max-height 0.4s ease, opacity 0.3s ease, padding 0.3s ease;
  padding: 0 0;                /* Sin padding al colapsar */
  color: #444;
}

/* Contenido activo */
.faq .faq-container .faq-item.faq-active .faq-content {
  max-height: 2000px;          /* Ajusta según contenido más largo */
  opacity: 1;
  padding-top: 10px;           /* Padding al expandir */
}

/* Estilo del toggle */
.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);
}

/* Item activo */
.faq .faq-container .faq-item.faq-active h3 {
  color: #9dc44d;
  font-weight: 600;
}

/* Rotación del toggle al expandir */
.faq .faq-container .faq-item.faq-active .faq-toggle {
  transform: rotate(90deg);
  color: var(--accent-color);
}

.faq-subtitle {
    max-width: 750px;
    margin: 0px auto 25px;
    font-size: 20px;
    line-height: 1.7;
    color: #5f6c87;
    text-align: center;
}

/*--------------------------------------------------------------
# Portfolio Section
--------------------------------------------------------------*/
.portfolio .portfolio-filters {
  padding: 0;
  margin: 0 auto 20px auto;
  list-style: none;
  text-align: center;
}

.portfolio .portfolio-filters li {
  cursor: pointer;
  display: inline-block;
  padding: 0;
  font-size: 18px;
  font-weight: 500;
  margin: 0 10px;
  line-height: 1;
  margin-bottom: 5px;
  transition: all 0.3s ease-in-out;
}

.portfolio .portfolio-filters li:hover,
.portfolio .portfolio-filters li.filter-active {
  color: var(--accent-color);
}

.portfolio .portfolio-filters li:first-child {
  margin-left: 0;
}

.portfolio .portfolio-filters li:last-child {
  margin-right: 0;
}

@media (max-width: 575px) {
  .portfolio .portfolio-filters li {
    font-size: 14px;
    margin: 0 5px;
  }
}

.portfolio .portfolio-content {
  position: relative;
  overflow: hidden;
}

.portfolio .portfolio-content img {
  transition: 0.3s;
}

.portfolio .portfolio-content .portfolio-info {
  opacity: 0;
  position: absolute;
  inset: 0;
  z-index: 3;
  transition: all ease-in-out 0.3s;
  background: rgba(0, 0, 0, 0.6);
  padding: 15px;
}

.portfolio .portfolio-content .portfolio-info h4 {
  font-size: 14px;
  padding: 5px 10px;
  font-weight: 400;
  color: #ffffff;
  display: inline-block;
  background-color: var(--accent-color);
}

.portfolio .portfolio-content .portfolio-info p {
  position: absolute;
  bottom: 10px;
  text-align: center;
  display: inline-block;
  left: 0;
  right: 0;
  font-size: 16px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
}

.portfolio .portfolio-content .portfolio-info .preview-link,
.portfolio .portfolio-content .portfolio-info .details-link {
  position: absolute;
  left: calc(50% - 40px);
  font-size: 26px;
  top: calc(50% - 14px);
  color: #fff;
  transition: 0.3s;
  line-height: 1.2;
}

.portfolio .portfolio-content .portfolio-info .preview-link:hover,
.portfolio .portfolio-content .portfolio-info .details-link:hover {
  color: var(--accent-color);
}

.portfolio .portfolio-content .portfolio-info .details-link {
  left: 50%;
  font-size: 34px;
  line-height: 0;
}

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

.portfolio .portfolio-content:hover img {
  transform: scale(1.1);
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
#about{
	background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
}

.about .content {
  padding: 40px 0px; 
}

.about .content h3 {
  letter-spacing: .22em;
  text-transform: uppercase;
  color: #012970;
  font-size: 15px;
  font-weight: 600;
}

.about .content h2 {
  font-size: 24px;
  font-weight: 700;
}

.about .content p {
  margin: 15px 0 30px 0;
  line-height: 24px;
  font-size: 20px;
  color: #012970;
}

.about .content .btn-read-more {
  color: var(--contrast-color);
  background: var(--accent-color);
  line-height: 0;
  padding: 15px 40px;
  border-radius: 4px;
  transition: 0.5s;
  box-shadow: 0px 5px 25px rgba(0, 0, 0, 0.1);
}

.about .content .btn-read-more span {
  font-family: var(--default-font);
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 1px;
}

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

.about .content .btn-read-more:hover i {
  transform: translateX(5px);
}

/*--------------------------------------------------------------
# Values Section
--------------------------------------------------------------*/
.values .card {
  background-color: var(--surface-color);
  color: var(--default-color);
  padding: 30px;
  box-shadow: 0px 0 10px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: 0.3s;
  height: 100%;
  border: 0;
}

.values .card img {
  padding: 30px 50px;
  transition: 0.5s;
  transform: scale(1.1);
}

.values .card h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 18px;
}

.values .card:hover {
  box-shadow: 0px 0 30px rgba(0, 0, 0, 0.1);
}

.values .card:hover img {
  transform: scale(1);
}

/*--------------------------------------------------------------
# Stats Section
--------------------------------------------------------------*/
.stats .stats-item {
  background-color: var(--surface-color);
  box-shadow: 0px 0 30px rgba(0, 0, 0, 0.1);
  padding: 30px;
}

.stats .stats-item i {
  color: var(--accent-color);
  font-size: 42px;
  line-height: 0;
  margin-right: 20px;
}

.stats .stats-item span {
  color: var(--heading-color);
  font-size: 36px;
  display: block;
  font-weight: 600;
}

.stats .stats-item p {
  padding: 0;
  margin: 0;
  font-family: var(--heading-font);
  font-size: 16px;
}

/*--------------------------------------------------------------
# Features Section
--------------------------------------------------------------*/
.features .feature-box {
  padding: 24px 20px;
  box-shadow: 0px 0 30px rgba(0, 0, 0, 0.1);
  transition: 0.3s;
  height: 100%;
}

.features .feature-box h3 {
  font-size: 18px;
  font-weight: 700;
  margin: 0;
}

.features .feature-box i {
  background: color-mix(in srgb, var(--accent-color), transparent 92%);
  color: var(--accent-color);
  line-height: 0;
  padding: 4px;
  margin-right: 10px;
  font-size: 24px;
  border-radius: 3px;
  transition: 0.3s;
}

.features .feature-box:hover i {
  background: var(--accent-color);
  color: var(--contrast-color);
}

/*--------------------------------------------------------------
# Alt Features Section
--------------------------------------------------------------*/
.alt-features .icon-box {
  display: flex;
}

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

.alt-features .icon-box i {
  font-size: 44px;
  line-height: 44px;
  color: var(--accent-color);
  margin-right: 15px;
}

.alt-features .icon-box p {
  font-size: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services .service-item {
  background-color: var(--surface-color);
  box-shadow: 0px 0 30px rgba(0, 0, 0, 0.1);
  height: 100%;
  padding: 60px 30px;
  text-align: center;
  transition: 0.3s;
  border-radius: 5px;
}

.services .service-item .icon {
  font-size: 36px;
  padding: 20px 20px;
  border-radius: 4px;
  position: relative;
  margin-bottom: 25px;
  display: inline-block;
  line-height: 0;
  transition: 0.3s;
}

.services .service-item h3 {
  font-size: 24px;
  font-weight: 700;
}

.services .service-item .read-more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 16px;
  padding: 8px 20px;
}

.services .service-item .read-more i {
  line-height: 0;
  margin-left: 5px;
  font-size: 18px;
}

.services .service-item.item-cyan {
  border-bottom: 3px solid #0dcaf0;
}

.services .service-item.item-cyan .icon {
  color: #0dcaf0;
  background: rgba(13, 202, 240, 0.1);
}

.services .service-item.item-cyan .read-more {
  color: #0dcaf0;
}

.services .service-item.item-cyan:hover {
  background: #0dcaf0;
}

.services .service-item.item-orange {
  border-bottom: 3px solid #fd7e14;
}

.services .service-item.item-orange .icon {
  color: #fd7e14;
  background: rgba(253, 126, 20, 0.1);
}

.services .service-item.item-orange .read-more {
  color: #fd7e14;
}

.services .service-item.item-orange:hover {
  background: #fd7e14;
}

.services .service-item.item-teal {
  border-bottom: 3px solid #20c997;
}

.services .service-item.item-teal .icon {
  color: #20c997;
  background: rgba(32, 201, 151, 0.1);
}

.services .service-item.item-teal .read-more {
  color: #20c997;
}

.services .service-item.item-teal:hover {
  background: #20c997;
}

.services .service-item.item-red {
  border-bottom: 3px solid #df1529;
}

.services .service-item.item-red .icon {
  color: #df1529;
  background: rgba(223, 21, 4, 0.1);
}

.services .service-item.item-red .read-more {
  color: #df1529;
}

.services .service-item.item-red:hover {
  background: #df1529;
}

.services .service-item.item-indigo {
  border-bottom: 3px solid #6610f2;
}

.services .service-item.item-indigo .icon {
  color: #6610f2;
  background: rgba(102, 16, 242, 0.1);
}

.services .service-item.item-indigo .read-more {
  color: #6610f2;
}

.services .service-item.item-indigo:hover {
  background: #6610f2;
}

.services .service-item.item-pink {
  border-bottom: 3px solid #f3268c;
}

.services .service-item.item-pink .icon {
  color: #f3268c;
  background: rgba(243, 38, 140, 0.1);
}

.services .service-item.item-pink .read-more {
  color: #f3268c;
}

.services .service-item.item-pink:hover {
  background: #f3268c;
}

.services .service-item:hover h3,
.services .service-item:hover p,
.services .service-item:hover .read-more {
  color: #fff;
}

.services .service-item:hover .icon {
  background: #fff;
}

/*--------------------------------------------------------------
# Pricing Section
--------------------------------------------------------------*/
.pricing .pricing-tem {
  background-color: var(--surface-color);
  box-shadow: 0px 0 30px rgba(0, 0, 0, 0.1);
  padding: 40px 20px;
  text-align: center;
  border-radius: 4px;
  position: relative;
  overflow: hidden;
  transition: 0.3s;
  height: 100%;
}

@media (min-width: 1200px) {
  .pricing .pricing-tem:hover {
    transform: scale(1.1);
    box-shadow: 0px 0 30px rgba(0, 0, 0, 0.1);
  }
}

.pricing h3 {
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 15px;
}

.pricing .price {
  font-size: 36px;
  color: var(--heading-color);
  font-weight: 600;
  font-family: var(--heading-font);
}

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

.pricing .price span {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 16px;
  font-weight: 300;
}

.pricing .icon {
  padding: 20px 0;
}

.pricing .icon i {
  font-size: 48px;
}

.pricing ul {
  padding: 0;
  list-style: none;
  color: var(--default-color);
  text-align: center;
  line-height: 26px;
  font-size: 16px;
  margin-bottom: 25px;
}

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

.pricing ul .na {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
  text-decoration: line-through;
}

.pricing .btn-buy {
  display: inline-block;
  padding: 8px 40px 10px 40px;
  border-radius: 50px;
  color: var(--accent-color);
  transition: none;
  font-size: 16px;
  font-weight: 400;
  font-family: var(--heading-font);
  font-weight: 600;
  transition: 0.3s;
  border: 1px solid var(--accent-color);
}

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

.pricing .featured {
  width: 200px;
  position: absolute;
  top: 18px;
  right: -68px;
  transform: rotate(45deg);
  z-index: 1;
  font-size: 14px;
  padding: 1px 0 3px 0;
  background: var(--accent-color);
  color: var(--contrast-color);
}

/*--------------------------------------------------------------
# Portfolio Section
--------------------------------------------------------------*/
.portfolio .portfolio-filters {
  padding: 0;
  margin: 0 auto 20px auto;
  list-style: none;
  text-align: center;
}

.portfolio .portfolio-filters li {
  cursor: pointer;
  display: inline-block;
  padding: 0;
  font-size: 18px;
  font-weight: 500;
  margin: 0 10px;
  line-height: 1;
  margin-bottom: 5px;
  transition: all 0.3s ease-in-out;
}

.portfolio .portfolio-filters li:hover,
.portfolio .portfolio-filters li.filter-active {
  color: var(--accent-color);
}

.portfolio .portfolio-filters li:first-child {
  margin-left: 0;
}

.portfolio .portfolio-filters li:last-child {
  margin-right: 0;
}

@media (max-width: 575px) {
  .portfolio .portfolio-filters li {
    font-size: 14px;
    margin: 0 5px;
  }
}

.portfolio .portfolio-content {
  position: relative;
  overflow: hidden;
}

.portfolio .portfolio-content img {
  transition: 0.3s;
}

.portfolio .portfolio-content .portfolio-info {
  opacity: 0;
  position: absolute;
  inset: 0;
  z-index: 3;
  transition: all ease-in-out 0.3s;
  background: rgba(0, 0, 0, 0.6);
  padding: 15px;
}

.portfolio .portfolio-content .portfolio-info h4 {
  font-size: 14px;
  padding: 5px 10px;
  font-weight: 400;
  color: #ffffff;
  display: inline-block;
  background-color: var(--accent-color);
}

.portfolio .portfolio-content .portfolio-info p {
  position: absolute;
  bottom: 10px;
  text-align: center;
  display: inline-block;
  left: 0;
  right: 0;
  font-size: 16px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
}

.portfolio .portfolio-content .portfolio-info .preview-link,
.portfolio .portfolio-content .portfolio-info .details-link {
  position: absolute;
  left: calc(50% - 40px);
  font-size: 26px;
  top: calc(50% - 14px);
  color: #fff;
  transition: 0.3s;
  line-height: 1.2;
}

.portfolio .portfolio-content .portfolio-info .preview-link:hover,
.portfolio .portfolio-content .portfolio-info .details-link:hover {
  color: var(--accent-color);
}

.portfolio .portfolio-content .portfolio-info .details-link {
  left: 50%;
  font-size: 34px;
  line-height: 0;
}

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

.portfolio .portfolio-content:hover img {
  transform: scale(1.1);
}

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials .testimonial-item {
  background-color: var(--surface-color);
  box-shadow: 0px 0 20px rgba(0, 0, 0, 0.1);
  box-sizing: content-box;
  padding: 30px;
  margin: 40px 30px;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  text-align: center;
  transition: 0.3s;
}

.testimonials .testimonial-item .stars {
  margin-bottom: 15px;
}

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

.testimonials .testimonial-item .testimonial-img {
  width: 90px;
  border-radius: 50%;
  border: 4px solid var(--background-color);
  margin: 0 auto;
}

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

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

.testimonials .testimonial-item p {
  font-style: italic;
  margin: 0 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: color-mix(in srgb, var(--default-color), transparent 85%);
  opacity: 1;
}

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

.testimonials .swiper-slide {
  opacity: 0.3;
}

@media (max-width: 1199px) {
  .testimonials .swiper-slide-active {
    opacity: 1;
  }

  .testimonials .swiper-pagination {
    margin-top: 0;
  }

  .testimonials .testimonial-item {
    margin: 40px 20px;
  }
}

@media (min-width: 1200px) {
  .testimonials .swiper-slide-next {
    opacity: 1;
    transform: scale(1.12);
  }
}

/*--------------------------------------------------------------
# Team Section
--------------------------------------------------------------*/
.team .team-member {
  box-shadow: 0px 0 30px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  text-align: center;
  border-radius: 5px;
  transition: 0.3s;
}

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

.team .team-member .member-img:after {
  position: absolute;
  content: "";
  left: -1px;
  right: -1px;
  bottom: -1px;
  height: 100%;
  background-color: var(--surface-color);
  -webkit-mask: url("../img/team-shape.svg") no-repeat center bottom;
  mask: url("../img/team-shape.svg") no-repeat center bottom;
  -webkit-mask-size: contain;
  mask-size: contain;
  z-index: 1;
}

.team .team-member .social {
  position: absolute;
  right: -100%;
  top: 30px;
  opacity: 0;
  border-radius: 4px;
  transition: 0.5s;
  background: color-mix(in srgb, var(--background-color), transparent 60%);
  z-index: 2;
}

.team .team-member .social a {
  transition: color 0.3s;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  margin: 15px 12px;
  display: block;
  line-height: 0;
  text-align: center;
}

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

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

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

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

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

.team .team-member .member-info p {
  font-style: italic;
  font-size: 14px;
  padding-top: 15px;
  line-height: 26px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.team .team-member:hover {
  transform: scale(1.08);
  box-shadow: 0px 0 30px rgba(0, 0, 0, 0.1);
}

.team .team-member:hover .social {
  right: 8px;
  opacity: 1;
}

/*--------------------------------------------------------------
# Clients Section
--------------------------------------------------------------*/
.clients .swiper-slide img {
  transition: 0.3s;
  opacity: 0.5;
}

.clients .swiper-slide img:hover {
  opacity: 1;
}

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

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

.clients .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  opacity: 1;
  background-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

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

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

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

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

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

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

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

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

.recent-posts .post-item hr {
  color: color-mix(in srgb, var(--default-color), transparent 80%);
  margin: 20px 0;
}

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

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

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

.recent-posts .post-item:hover .post-img img {
  transform: scale(1.1);
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .info-item {
  background: color-mix(in srgb, var(--default-color), transparent 96%);
  padding: 30px;
}

.contact .info-item i {
  font-size: 38px;
  line-height: 0;
  color: var(--accent-color);
}

.contact .info-item h3 {
  font-size: 20px;
  font-weight: 700;
  margin: 20px 0 10px 0;
}

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

.contact .php-email-form {
  background: color-mix(in srgb, var(--default-color), transparent 96%);
  padding: 30px;
  height: 100%;
}

.contact .php-email-form input[type=text],
.contact .php-email-form input[type=email],
.contact .php-email-form textarea {
  font-size: 14px;
  padding: 10px 15px;
  box-shadow: none;
  border-radius: 0;
  color: var(--default-color);
  background-color: color-mix(in srgb, var(--background-color), transparent 50%);
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

.contact .php-email-form input[type=text]:focus,
.contact .php-email-form input[type=email]:focus,
.contact .php-email-form textarea:focus {
  border-color: var(--accent-color);
}

.contact .php-email-form input[type=text]::placeholder,
.contact .php-email-form input[type=email]::placeholder,
.contact .php-email-form textarea::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.contact .php-email-form button[type=submit] {
  background: var(--accent-color);
  color: var(--contrast-color);
  border: 0;
  padding: 10px 30px;
  transition: 0.4s;
  border-radius: 4px;
}

.contact .php-email-form button[type=submit]:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

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

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

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

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

.portfolio-details .portfolio-info {
  background-color: var(--surface-color);
  padding: 30px;
  box-shadow: 0px 0 30px rgba(0, 0, 0, 0.1);
}

.portfolio-details .portfolio-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
}

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

.portfolio-details .portfolio-info ul li+li {
  margin-top: 10px;
}

.portfolio-details .portfolio-description {
  padding-top: 30px;
}

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

.portfolio-details .portfolio-description p {
  padding: 0;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

/*--------------------------------------------------------------
# Service Details Section
--------------------------------------------------------------*/
.service-details .service-box {
  background-color: var(--surface-color);
  padding: 20px;
  box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.1);
}

.service-details .service-box+.service-box {
  margin-top: 30px;
}

.service-details .service-box h4 {
  font-size: 20px;
  font-weight: 700;
  border-bottom: 2px solid color-mix(in srgb, var(--default-color), transparent 92%);
  padding-bottom: 15px;
  margin-bottom: 15px;
}

.service-details .services-list {
  background-color: var(--surface-color);
}

.service-details .services-list a {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  background-color: color-mix(in srgb, var(--default-color), transparent 96%);
  display: flex;
  align-items: center;
  padding: 12px 15px;
  margin-top: 15px;
  transition: 0.3s;
}

.service-details .services-list a:first-child {
  margin-top: 0;
}

.service-details .services-list a i {
  font-size: 16px;
  margin-right: 8px;
  color: var(--accent-color);
}

.service-details .services-list a.active {
  color: var(--contrast-color);
  background-color: var(--accent-color);
}

.service-details .services-list a.active i {
  color: var(--contrast-color);
}

.service-details .services-list a:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
  color: var(--accent-color);
}

.service-details .download-catalog a {
  color: var(--default-color);
  display: flex;
  align-items: center;
  padding: 10px 0;
  transition: 0.3s;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.service-details .download-catalog a:first-child {
  border-top: 0;
  padding-top: 0;
}

.service-details .download-catalog a:last-child {
  padding-bottom: 0;
}

.service-details .download-catalog a i {
  font-size: 24px;
  margin-right: 8px;
  color: var(--accent-color);
}

.service-details .download-catalog a:hover {
  color: var(--accent-color);
}

.service-details .help-box {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  margin-top: 30px;
  padding: 30px 15px;
}

.service-details .help-box .help-icon {
  font-size: 48px;
}

.service-details .help-box h4,
.service-details .help-box a {
  color: var(--contrast-color);
}

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

.service-details h3 {
  font-size: 26px;
  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
--------------------------------------------------------------*/
.starter-section {
  /* Add your styles here */
}

/*--------------------------------------------------------------
# Blog Posts Section
--------------------------------------------------------------*/
.blog-posts article {
  background-color: var(--surface-color);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  padding: 30px;
  height: 100%;
}

.blog-posts .post-img {
  max-height: 440px;
  margin: -30px -30px 0 -30px;
  overflow: hidden;
}

.blog-posts .title {
  font-size: 24px;
  font-weight: 700;
  padding: 0;
  margin: 30px 0;
}

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

.blog-posts .title a:hover {
  color: var(--accent-color);
}

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

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

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

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

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

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

.blog-posts .content .read-more {
  text-align: right;
}

.blog-posts .content .read-more a {
  background: var(--accent-color);
  color: var(--contrast-color);
  display: inline-block;
  padding: 8px 30px;
  transition: 0.3s;
  font-size: 14px;
  border-radius: 4px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.comment-form form .btn-primary:hover {
  color: var(--contrast-color);
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


/* ==========================================================
   IDONMS TOP BAR
========================================================== */

.top-bar {
  top: 0;
  left: 0;
  width: 100%;
  height: 42px;
  background: #012970;
  z-index: 9999;
  display: flex;
  align-items: center;
  color: #fff;
  font-size: 14px;
}

.top-bar .container-xl {
  width: 100%;
}

.top-bar-left {
  display: flex;
  align-items: center;
  gap: 15px;
}

.top-bar-left span {
  color: rgba(255,255,255,0.85);
}

.top-bar-btn {
  color: #a8cf3a;
  font-weight: 600;
}

.top-bar-btn:hover {
  color: #ffffff;
}

.top-bar-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.top-bar-right a {
  color: rgba(255,255,255,0.7);
}

.top-bar-right a:hover,
.top-bar-right a.active {
  color: #ffffff;
}

/* ==========================================================
   FLEXSTART HEADER OFFSET
========================================================== */


@media (max-width: 991px) {

  .top-bar {
    display: none;
  }

}

/* ==========================================================
   OFFSET HEADER POR TOP BAR (42px)
========================================================== */

.header.fixed-top {
  top: 42px; /* altura del top-bar */
}

/* Cuando haces scroll y quieres compactar header (opcional FlexStart) */
.scrolled .header.fixed-top {
  top: 0; /* el header vuelve arriba cuando scroll activa clase */
}

@media (max-width: 1199px) {
    .top-bar {
    height: auto;
    padding: 6px 0;
	display: flex !important;
  }

  .top-bar .container-xl {
    flex-direction: column;
    gap: 4px;
    text-align: center;
  }

  /* ðŸ”¥ CLAVE: evitar que el header quede pegado */
  #header {
    padding-top: 4px !important;
  }

  .header .container-fluid {
    padding-top: 8px;
  }

}

/* ==========================================================
   TOP BAR - RESPONSIVE MOBILE FIX
========================================================== */

@media (max-width: 768px) {

  .top-bar {
    font-size: 12px; /* reduce tamaÃ±o general */
    height: auto;
    padding: 6px 0;
  }

  .top-bar-left span {
    font-size: 12px;
    line-height: 1.2;
  }

  .top-bar-btn {
    font-size: 11px;
    padding: 4px 8px;
  }

  .top-bar-right a {
    font-size: 11px;
  }

  .top-bar .container-xl {
    flex-direction: column;
    gap: 10px;
    text-align: center;
	margin-bottom: 3px;
  }
}

.top-bar-right .access-partner {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #a8cf3a;
  color: #fff;
  padding: 4px 10px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 13px;
  transition: all 0.3s ease;
}

.top-bar-right .access-partner i {
  font-size: 12px;
}

.top-bar-right .access-partner:hover {
  background: #92b934;
  transform: translateY(-1px);
}


.top-bar-left {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
}

.top-bar-left span {
  color: rgba(255, 255, 255, 0.85);
	font-weight: bold;
}

.top-bar-btn {
  color: #a8cf3a;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: 0.3s;
}

.top-bar-btn i {
  font-size: 12px;
  transition: 0.3s;
}

.top-bar-btn:hover {
  color: #c3e86a;
}

.top-bar-btn:hover i {
  transform: translateX(3px);
}

.top-bar-btn {
  background: rgba(168, 207, 58, 0.15);
  padding: 4px 10px;
  border-radius: 20px;
}

h3.keyword{
	font-size: 14px;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: white;
    font-weight: 600;
	margin-bottom: 30px;
}

.hero h3{
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: rgba(255,255,255,.90);
    margin-bottom: 20px;
	margin-left: 3px; 
}

.hero h3 span{
    font-weight:700;
    letter-spacing:3px;
}

.hero::before{
  content:"";
  position:absolute;
  inset:0;
  background:rgba(0,25,55,.45);
}

/* Contenedor del eslogan */
.logo-slogan-container {
  line-height: 1.4;
  justify-content: center;
  margin-top: 13px;
}

/* Primera línea: Fina, espaciada y elegante */
.slogan-top {
  font-family: 'Nunito', 'Montserrat', sans-serif; /* FlexStart usa Nunito, que es muy limpia */
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.18em;
  color: #012970; /* El color azul oscuro corporativo de FlexStart, o usa #2c3e50 */
  text-transform: uppercase;
}

/* Segunda línea: Un poco más sutil */
.slogan-bottom {
  font-family: 'Nunito', 'Montserrat', sans-serif;
  font-size: 11.5px;
  font-weight: 400;
  letter-spacing: 0.15em;
  color: #6c757d; /* Gris sutil premium */
  text-transform: uppercase;
  margin-top: 2px;
}

.hero .hero-highlight {
  font-size: 26px;
  font-weight: 700;
  color: #eef5ff !important;
  line-height: 1.3;
  margin-bottom: 0px;
  letter-spacing: 0.2px;
}

.hero .hero-highlight strong {
  font-weight: 800;
}

.hero .hero-highlight {
  font-size: 30px;
  color: #1ec28b;
  text-shadow: 0 4px 20px rgba(30, 194, 139, 0.25);
}

/*==============================================================
# FOOTER 
==============================================================*/

.footer {
  position: relative;
  background: #012970;
  color: rgba(255,255,255,.80);
  padding: 20px 0 0;
  overflow: hidden;
  font-size: 15px;
}

.footer::before{
  content:"";
  position:absolute;
  inset:0;
  background:
      radial-gradient(circle at top right,
      rgba(168,207,58,.05),
      transparent 40%);
  pointer-events:none;
}

.footer a{
  text-decoration:none;
}

.footer-top{
  position:relative;
  z-index:2;
  padding-bottom:70px;
}

/*==============================================================
COLUMNAS
==============================================================*/

.footer-brand,
.footer-nav,
.footer-contact{
  position:relative;
}

.footer-brand{
  padding-right:45px;
}

.footer-nav{
  padding-left:35px;
}

.footer-contact{
  padding-left:35px;
}

/*==============================================================
TÍTULOS
==============================================================*/

.footer h4{
  position:relative;
  display:inline-block;
  margin-bottom:30px;
  padding-bottom:14px;
  color:#fff;
  font-size:18px;
  font-weight:700;
  letter-spacing:.4px;
}

.footer h4::after{
  content:"";
  position:absolute;
  left:0;
  bottom:0;
  width:48px;
  height:2px;
  background:#a8cf3a;
  border-radius:50px;
}

/*==============================================================
LOGO
==============================================================*/

.footer-logo{
  display:inline-block;
  margin-bottom:28px;
}

.footer-logo img{
  width:185px;
  height:auto;
  display:block;
}

/*==============================================================
DESCRIPCIÓN
==============================================================*/

.footer-title-1{
	color: #fff;
	font-size: 19px;
}

.footer-description{
  margin:0;
  color:rgba(255,255,255,.72);
  line-height:1.9;
  font-size:15px;
  padding: 4px 0px;
}

.footer-tagline{
  margin-top:28px;
  padding-left:18px;
  border-left:3px solid #a8cf3a;
  color:#fff;
  font-weight:500;
  line-height:1.8;
}

.footer-guide-note {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 14px;
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(255,255,255,.85);
}

.footer-guide-note i {
  color: var(--accent-color);
}

p.footer-guide-text{
	margin-top: 2%;
    font-size: 13px;
    font-weight: 300;
}

/*==============================================================
NAVEGACIÓN
==============================================================*/

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

.footer-nav li{
  margin-bottom:15px;
}

.footer-nav a{
  display:inline-flex;
  align-items:center;
  color:rgba(255,255,255,.75);
  transition:.30s;
  font-weight:400;
}

.footer-nav a::before{
  opacity:0;
  transform:translateX(-8px);
  transition:.30s;
  margin-right:0;
  color:#a8cf3a;
}

.footer-nav a:hover{
  color:#a8cf3a;
  transform:translateX(5px);
}

.footer-nav a:hover::before{
  opacity:1;
  transform:translateX(0);
  margin-right:8px;
}

.footer-nav ul li a{
    display:flex;
    align-items:center;
    gap:10px;
    color:rgba(255,255,255,.75);
    transition:.3s ease;
    font-size:17px;
    font-weight:500;
}

.footer-nav ul li a i{

    font-size:13px;

    color:#a8cf3a;

    transition:.3s ease;

    transform:translateX(0);

}

.footer-nav ul li a:hover{

    color:#ffffff;

    transform:translateX(5px);

}

.footer-nav ul li a:hover i{

    transform:translateX(4px);

    color:#b9df4d;

}

/*==============================================================
CONTACTO
==============================================================*/

.footer-office{
  margin-bottom:10px;
}

.footer-office strong{
  display:block;
  margin-bottom:10px;
  color:#fff;
  font-size:17px;
}

.footer-office p{
  display: flex;
  align-items: flex-start;
  color: rgba(255,255,255,.72);
  line-height: 1.8;
  transition: .3s ease;
}

.footer-office i{
  width: 30px;
  height: 30px;
  min-width: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(168,207,58,.08);
  color: #a8cf3a;
  margin-right: 14px;
  transition: .3s ease;
}

.footer-office:hover i{
  background: #a8cf3a;
  color: #012970;
}

.footer-office:hover p{
  color: #ffffff;
}

.footer-office{
  transition: .3s ease;
}

.footer-office:hover{
  transform: translateX(4px);
}

.footer-contact-info{
   margin:10px 0 10px;
}

.footer-contact-info div{
  display:flex;
  align-items:center;
  margin-bottom:10px;
}

.footer-office-tech{
    margin-bottom: 10px;
}

.footer-contact-info i{
  width:34px;
  height:34px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:50%;
  background:rgba(168,207,58,.08);
  color:#a8cf3a;
  margin-right:14px;
  transition:.3s;
}

.footer-contact-info a{
  color:rgba(255,255,255,.75);
  transition:.3s;
}

.footer-contact-info div:hover i{
  background:#a8cf3a;
  color:#0d241d;
}

.footer-contact-info div:hover a{
  color:#fff;
}

/*==============================================================
BOTÓN
==============================================================*/

.footer-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    padding:10px 25px;
    border-radius:50px;
    background:#a8cf3a;
    border:1px solid #a8cf3a;
    color:#012970;
    font-weight:700;
    letter-spacing:.4px;
    transition:all .35s ease;
    margin-top:10px;
    box-shadow:0 8px 24px rgba(168,207,58,.18);
}

.footer-btn i{
    font-size:20px;
    transition:transform .35s ease;
}

/* Hover */

.footer-btn:hover{

    background:#b9db4f;

    border-color:#b9db4f;

    color:#012970;

    transform:translateY(-4px);

    box-shadow:0 16px 38px rgba(168,207,58,.35);

}

.footer-btn:hover i{

    transform:translateX(6px);

}

.footer-btn{
    position:relative;
    overflow:hidden;
}

.footer-btn::before{

    content:"";

    position:absolute;

    top:0;

    left:-120%;

    width:60%;

    height:100%;

    background:linear-gradient(
        90deg,
        transparent,
        rgba(255,255,255,.35),
        transparent
    );

    transition:left .6s ease;

}

.footer-btn:hover::before{

    left:160%;

}

/*==============================================================
LÍNEA INFERIOR
==============================================================*/

.footer-bottom{
  border-top:1px solid rgba(255,255,255,.08);
  padding:35px 0;
  position:relative;
}

/*==============================================================
# CERTIFICACIONES
==============================================================*/

.footer-certifications{
    display:inline-flex;
    flex-wrap:nowrap;
    gap:0px;
    justify-content:flex-start;
}

.footer-certification{
    width:115px;
    text-align:center;
    color:rgba(255,255,255,.80);
    transition:.30s;
}

.footer-certification:hover{

    transform:translateY(-4px);

    color:#fff;

}

.footer-certification {
  cursor: default;
  transition: all 0.3s ease;
}

.footer-certification small {
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  display: block;
  transition: all 0.3s ease;
}

.footer-certification:hover {
  transform: translateY(-5px);
}

.footer-certification:hover small {
  opacity: 1;
  max-height: 60px;
  margin-top: 10px;
}

/*==============================================================
TÍTULO CERTIFICACIONES
==============================================================*/

.footer-certifications-title{
    margin:0 0 10px;
    color:#ffffff;
    font-size:17px;
    font-weight:600;
    letter-spacing:-0.3px;
    text-align:center;
}

/* SELLO */

.cert-icon{

    width:90px;

    height:40px;

    display:flex;

    justify-content:center;

    align-items:center;

    margin:0 auto 0px;

}

.cert-icon img{

    max-width:30px;

    max-height:25px;

    object-fit:contain;

    transition:.30s;

}

.cert-icon i{

    font-size:34px;

    color:#a8cf3a;

    transition:.30s;

}

.footer-certification:hover img{

    transform:scale(1.06);

}

.footer-certification:hover i{

    color:#c4e74d;

    transform:scale(1.08);

}

/* TÍTULO */

.footer-certification span{
    display: block;
    font-size: 11px;
    font-weight: 400;
    color: #fff;

}
/*--------------------------------------------------------------
HOVER
--------------------------------------------------------------*/

.footer-certification:hover img{

    transform:scale(1.05);

    filter:brightness(1.08);

}

.footer-certification:hover i{

    transform:scale(1.10);

    color:#c2e44e;

}

/*==============================================================
TOOLTIP
==============================================================*/

.footer-certification small{

    position:absolute;

    bottom:calc(100% + 18px);

    left:50%;

    transform:translateX(-50%) translateY(8px);

    width:220px;

    padding:12px 16px;

    border-radius:12px;

    background:#ffffff;

    color:#2d3748;

    font-size:12px;

    line-height:1.6;

    font-weight:400;

    opacity:0;

    visibility:hidden;

    transition:.30s ease;

    box-shadow:0 20px 45px rgba(0,0,0,.18);

    z-index:50;

    pointer-events:none;

}

.footer-certification small::after{

    content:"";

    position:absolute;

    top:100%;

    left:50%;

    transform:translateX(-50%);

    border-width:8px;

    border-style:solid;

    border-color:#ffffff transparent transparent transparent;

}

.footer-certification:hover small{

    opacity:1;

    visibility:visible;

    transform:translateX(-50%) translateY(0);

}
/*==============================================================
COPYRIGHT
==============================================================*/

.footer-legal{

  display:flex;

  flex-direction:column;

  align-items:flex-end;

}

.footer-legal p{

  margin:0;

  color:rgba(255,255,255,.70);

  font-size:14px;

}

.footer-legal strong{

  color:#fff;

}

.footer-links-bottom{

  margin-top:14px;

  display:flex;

  flex-wrap:wrap;

  justify-content:flex-end;

  align-items:center;

  gap:12px;

}

.footer-links-bottom span{

  color:rgba(255,255,255,.18);

}

.footer-links-bottom a{

  color:rgba(255,255,255,.72);

  transition:.30s;

  position:relative;

}

.footer-links-bottom a::after{

  content:"";

  position:absolute;

  left:0;

  bottom:-5px;

  width:0;

  height:1px;

  background:#a8cf3a;

  transition:.30s;

}

.footer-links-bottom a:hover{

  color:#a8cf3a;

}

.footer-links-bottom a:hover::after{

  width:100%;

}

/*==============================================================
ANIMACIONES
==============================================================*/

.footer a{

  transition:.30s ease;

}

.footer i{

  transition:.30s ease;

}

.footer-certification{

  transition:
      transform .30s,
      color .30s;

}

.footer-btn{

  transition:all .35s ease;

}

.footer-contact-info div{

  transition:.30s;

}

.footer-contact-info div:hover{

  transform:translateX(4px);

}

/*==============================================================
PEQUEÑOS DETALLES PREMIUM
==============================================================*/

.footer::after{

  content:"";

  position:absolute;

  left:0;

  top:0;

  width:100%;

  height:1px;

  background:linear-gradient(
      90deg,
      transparent,
      rgba(168,207,58,.25),
      transparent
  );

}

.footer-brand,
.footer-nav,
.footer-contact{

  animation:footerFade .8s ease forwards;

}

.footer-nav{

  animation-delay:.1s;

}

.footer-contact{

  animation-delay:.2s;

}

@keyframes footerFade{

  from{

      opacity:0;

      transform:translateY(20px);

  }

  to{

      opacity:1;

      transform:translateY(0);

  }

}

/*==============================================================
SELECCIÓN DE TEXTO
==============================================================*/

.footer ::selection{

  background:#a8cf3a;

  color:#0d241d;

}

/*==============================================================
# FOOTER RESPONSIVE
==============================================================*/

/*--------------------------------------------------------------
# Pantallas grandes (1200px)
--------------------------------------------------------------*/

@media (max-width: 1200px) {

  .footer-brand {
    padding-right: 20px;
  }

  .footer-nav,
  .footer-contact {
    padding-left: 20px;
  }

  .footer-certifications {
    gap: 10px;
  }

  .footer-certification {
    width: 84px;
  }

}


/*--------------------------------------------------------------
# Tablets
--------------------------------------------------------------*/

@media (max-width: 991px) {

  .footer {

    padding-top: 70px;

  }

  .footer-top {

    padding-bottom: 55px;

  }

  .footer-brand,
  .footer-nav,
  .footer-contact {

    padding: 0;

    text-align: center;

    margin-bottom: 45px;

  }

  .footer h4::after {

    left: 50%;

    transform: translateX(-50%);

  }

  .footer-logo {

    display: flex;

    justify-content: center;

  }

  .footer-tagline {

    border-left: none;

    border-top: 3px solid #a8cf3a;

    padding: 20px 0 0;

    margin-top: 30px;

  }

  .footer-nav ul {

    display: inline-block;

    text-align: left;

  }

  .footer-contact-info div {

    justify-content: center;

  }

  .footer-btn {

    margin-top: 25px;

  }

  .footer-bottom {

    text-align: center;

  }

  .footer-certifications {

    justify-content: center;

    margin-bottom: 40px;

  }

  .footer-legal {

    align-items: center;

  }

  .footer-links-bottom {

    justify-content: center;

  }

}


/*--------------------------------------------------------------
# Móviles
--------------------------------------------------------------*/

@media (max-width: 767px) {

  .footer {

    padding-top: 60px;

    font-size: 14px;

  }

  .footer-logo img {

    width: 165px;

  }

  .footer-description {

    line-height: 1.8;

    font-size: 14px;

  }

  .footer-tagline {

    font-size: 14px;

  }

  .footer h4 {

    font-size: 17px;

    margin-bottom: 25px;

  }

  .footer-nav li {

    margin-bottom: 12px;

  }

  .footer-office {

    margin-bottom: 24px;

  }

  .footer-office p {

    font-size: 14px;

  }

  .footer-contact-info {

    margin-top: 25px;

  }

  .footer-btn {

    padding: 13px 22px;

    font-size: 14px;

  }

  .footer-bottom {

    padding: 30px 0;

  }

  .footer-certifications {

    gap: 18px;

  }

  .footer-certification {

    width: 78px;

  }

  .cert-icon {

    width: 52px;

    height: 52px;

  }

  .cert-icon i {

    font-size: 20px;

  }

  .footer-certification span {

    font-size: 12px;

  }

  .footer-certification small {

    width: 180px;

    font-size: 11px;

    line-height: 1.5;

  }

  .footer-legal p {

    font-size: 13px;

    margin-bottom: 15px;

  }

  .footer-links-bottom {

    gap: 8px;

    font-size: 13px;

  }

}


/*--------------------------------------------------------------
# Móviles pequeños
--------------------------------------------------------------*/

@media (max-width: 575px) {

  .footer {

    padding-top: 50px;

  }

  .footer-top {

    padding-bottom: 40px;

  }

  .footer-brand,
  .footer-nav,
  .footer-contact {

    margin-bottom: 35px;

  }

  .footer-logo img {

    width: 150px;

  }

  .footer-description {

    font-size: 13px;

  }

  .footer-tagline {

    font-size: 13px;

  }

  .footer-nav ul {

    width: 100%;

    text-align: center;

  }

  .footer-nav a {

    justify-content: center;

  }

  .footer-nav a::before {

    display: none;

  }

  .footer-contact-info div {

    flex-direction: column;

    gap: 8px;

  }

  .footer-contact-info i {

    margin-right: 0;

  }

  .footer-btn {

    width: 100%;

    justify-content: center;

  }

  .footer-certifications {

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 20px 10px;

  }

  .footer-certification {

    width: auto;

  }

  .footer-certification small {

    display: none;

  }

  .footer-links-bottom {

    flex-direction: column;

    gap: 10px;

  }

  .footer-links-bottom span {

    display: none;

  }

}


/*--------------------------------------------------------------
# Accesibilidad
--------------------------------------------------------------*/

@media (prefers-reduced-motion: reduce) {

  .footer *,
  .footer *::before,
  .footer *::after {

    animation: none !important;

    transition: none !important;

    scroll-behavior: auto !important;

  }

}

/*==============================================================
GUÍA RÁPIDA
==============================================================*/

.footer-guide{

    margin-top:20px;

}

.footer-guide .footer-btn{

    min-width:310px;

    justify-content:center;

}

.footer-guide .footer-btn i{

    font-size:18px;

    margin-right:2px;

}

@media (max-width: 991px){

  .footer-office p{
    display:flex;
    justify-content:center;
    align-items:flex-start;
    text-align:center;
  }

}

/*==============================================================
# HEADER - CTA MÓVIL
==============================================================*/

/* Ocultar elementos móviles por defecto */
.mobile-cta,
.mobile-partner-link{
    display:none;
}

/* Solo móvil y tablet */
@media (max-width:1199px){

    /* Ocultar los botones del header */
    .top-bar .access-partner,
    .btn-getstarted{
        display:none;
    }

    /* Mostrar los CTA del menú */
    .mobile-cta,
    .mobile-partner-link{
        display:block;
    }

    /* Separación del menú */
    .mobile-cta{
        margin-top:15px;
        padding-top:18px;
        border-top:1px solid rgba(1,41,112,.08);
    }

    /* Botón principal */
    .mobile-cta a{
        display:flex;
        justify-content:center;
        align-items:center;

        margin:0 18px 14px;

        padding:14px 20px;

        border-radius:50px;

        background:#a8cf3a;

        color:#012970 !important;

        font-weight:700;

        transition:.3s;
    }

    .mobile-cta a:hover{
        background:#b9db4f;
    }

    /* Botón secundario */
    .mobile-partner-link a{

        display:flex;
        justify-content:center;
        align-items:center;
        gap:10px;

        margin:0 18px 18px;

        padding:14px 20px;

        border:1px solid #a8cf3a;

        border-radius:50px;

        background:#fff;

        color:#012970 !important;

        font-weight:600;

        transition:.3s;
    }

    .mobile-partner-link a:hover{

        background:#f5fbe7;

    }

}

/*==============================================================
# ABOUT HERO
==============================================================*/

.about-hero{
  position: relative;
  padding: 170px 0 110px;
  background: linear-gradient(180deg,#f8fbff 0%,#ffffff 100%);
  overflow: hidden;
}

.about-hero::before{
  content:"";
  position:absolute;
  top:-220px;
  right:-220px;
  width:560px;
  height:560px;
  border-radius:50%;
  background:rgba(168,207,58,.08);
  z-index:0;
}

.about-hero .container{
  position:relative;
  z-index:2;
}

/*==============================================================
KICKER
==============================================================*/

.hero-kicker{

    display:inline-flex;
    align-items:center;
    gap:10px;

    margin-bottom:24px;

    font-size:13px;

    font-weight:700;

    letter-spacing:3px;

    text-transform:uppercase;

    color:#0b3a82;

}

.hero-kicker::before{

    content:"";

    width:25px;

    height:2px;

    background:#a8cf3a;

}

/*==============================================================
TÍTULO
==============================================================*/

.about-hero h1{
    font-size:40px;
    line-height:1.08;
    font-weight:800;
    color: #a8cf3a;
    letter-spacing:-1.4px;
    margin-bottom:28px;

}

/*==============================================================
DESCRIPCIÓN
==============================================================*/

.hero-lead{

font-size:20px;

line-height:1.45;

font-weight:600;

color:#5b6780;

margin-bottom:22px;

}

.hero-description{

    font-size:17px;

    line-height:1.7;

    color:#5b6780;

    max-width:560px;

}

.hero-closing{

margin-top:26px;

font-size:20px;

font-weight:600;

color:#012970;

line-height:1.5;

}

/*==============================================================
BOTONES
==============================================================*/

.hero-actions{

    display:flex;

    flex-wrap:wrap;

    gap:18px;

}

.btn-primary-about{

    display:inline-flex;

    align-items:center;

    gap:12px;

    padding:16px 34px;

    border-radius:60px;

    background:#012970;

    color:#fff;

    font-weight:700;

    transition:.35s ease;

    box-shadow:0 15px 35px rgba(1,41,112,.18);

}

.btn-primary-about:hover{

    transform:translateY(-4px);

    color:#fff;

    background:#02388d;

    box-shadow:0 22px 45px rgba(1,41,112,.25);

}

.btn-primary-about i{

    transition:.35s;

}

.btn-primary-about:hover i{

    transform:translateX(6px);

}

.btn-secondary-about{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:16px 34px;

    border-radius:60px;

    border:2px solid #012970;

    color:#012970;

    font-weight:700;

    transition:.35s;
	
	gap: 12px;

}

.btn-secondary-about:hover{

    background:#012970;

    color:#fff;

    transform:translateY(-4px);

}

/*==============================================================
IMAGEN
==============================================================*/

.hero-image-wrapper{

    position:relative;

    padding-left:30px;

}

.hero-image{

    position:relative;

    overflow:hidden;

    border-radius:28px;

    box-shadow:0 35px 80px rgba(1,41,112,.14);

}

.hero-image img{

    display:block;

    width:100%;

    height:auto;

    transition:transform .7s ease;

}

.hero-image:hover img{

    transform:scale(1.03);

}

/*==============================================================
TARJETA
==============================================================*/

.about-floating-card{
    position: absolute;
    right: -50px;
    bottom: -95px !important;
    width: 340px;
    display: flex;
    gap: 18px;
    align-items: flex-start;
    padding: 16px;
    background: rgba(255, 255, 255, .96);
    backdrop-filter: blur(14px);
    border-radius: 22px;
    box-shadow: 0 25px 60px rgba(1, 41, 112, .16);
    transition: .35s ease;
    z-index: 20;
    bottom: -80px;
}

.about-floating-card:hover{

    transform:translateY(-6px);

    box-shadow:0 35px 70px rgba(1,41,112,.22);

}


.about-floating-icon{
    width: 55px;
    height: 55px;
    min-width: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #a8cf3a;
    color: #012970;
    font-size: 25px;
}

.about-floating-content span{
    display: block;
    margin-bottom: 8px;
    font-size: 13px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-weight: 700;
    color: #7b879c;
}

.about-floating-content h4{
    margin: 0 0 10px;
    font-size: 17px;
    font-weight: 800;
    color: #012970;
}

.about-floating-content p{
    margin: 0;
    font-size: 15px;
    color: #617089;
}

/*==============================================================
RESPONSIVE
==============================================================*/

@media (max-width:1199px){

    .about-hero{

        padding:150px 0 90px;

    }

    .about-hero h1{

        font-size:52px;

    }

    .hero-description{

        font-size:19px;

    }

    .about-floating-card{

        width:330px;

        right:-20px;

    }

}

@media (max-width:991px){

    .about-hero{

        text-align:center;

        padding:140px 0 80px;

    }

    .hero-kicker{

        justify-content:center;

    }

    .hero-kicker::before{

        display:none;

    }

    .about-hero h1{

        font-size:44px;

    }

    .hero-description{

        max-width:100%;

    }

    .hero-actions{

        justify-content:center;

    }

    .hero-image-wrapper{

        padding-left:0;

        margin-top: 20px;

    }

    .about-floating-card{

        position:relative;

        right:auto;
        bottom:auto;

        width:100%;
        margin-top:-120px;

        z-index:5;
		margin-bottom: 60px;;

    }

}

@media (max-width:767px){

    .about-hero{

        padding:120px 0 120px;

    }

    .about-hero h1{

        font-size:36px;

        line-height:1.15;

    }

    .hero-description{

        font-size:17px;

        line-height:1.8;

    }

    .hero-actions{

        flex-direction:column;

    }

    .btn-primary-about,

    .btn-secondary-about{

        width:100%;

        justify-content:center;

    }

    .about-floating-card{

        flex-direction:column;

        align-items:center;

        text-align:center;

        padding:22px;

    }

}

/*==============================================================
# ABOUT MANIFESTO
==============================================================*/

.about-manifesto{

    position:relative;

    padding:120px 0;

    background:#012970;

    overflow:hidden;

}

/* CÍRCULO DECORATIVO */

.about-manifesto::before{

    content:"";

    position:absolute;

    width:650px;

    height:650px;

    border-radius:50%;

    background:rgba(255,255,255,.03);

    top:-180px;

    right:-180px;

}

.about-manifesto::after{

    content:"";

    position:absolute;

    width:420px;

    height:420px;

    border-radius:50%;

    background:rgba(168,207,58,.08);

    left:-120px;

    bottom:-120px;

}

.manifesto-content{

    position:relative;

    z-index:2;

    max-width:900px;

    margin:auto;

    text-align:center;

}

/*==============================================================
KICKER
==============================================================*/

.manifesto-kicker{
	padding: 8px 18px;
    border-radius: 30px;
    background: rgb(238, 242, 255);
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgb(1, 41, 112);
    margin-bottom: 25px;
}

.manifesto-kicker::before,

.manifesto-kicker::after{

    content:"";

    width:34px;

    height:2px;

    background:#a8cf3a;

}

/*==============================================================
TÍTULO
==============================================================*/

.manifesto-content h2{

    margin:0;

    font-size:64px;

    line-height:1.08;

    font-weight:800;

    color:#ffffff;

    letter-spacing:-2px;

}

/*==============================================================
SUBTÍTULO
==============================================================*/

.manifesto-content h3{

    margin:30px 0;

    font-size:42px;

    font-weight:700;

    line-height:1.2;

    color:rgba(255,255,255,.85);

}

.manifesto-content h3 span{

    color:#a8cf3a;

}

/*==============================================================
TEXTO
==============================================================*/

.manifesto-content p{

    margin:0 auto;

    max-width:650px;

    font-size:22px;

    line-height:1.8;

    color:rgba(255,255,255,.75);

}

/*==============================================================
# BLOQUE 2 · NUESTRO ENFOQUE
==============================================================*/

.about-approach{

    padding:120px 0 40px;
    background:#fff;

}

.about-approach-content h2{
    margin-top: 18px;
    margin-bottom: 45px;
    font-size: 3rem;
    line-height: 1.18;
    font-weight: 700;
    color: #0b3a82;
}

.about-approach-content h2 span{
    color:#a8cf3a;
}

.about-approach-content .lead{
    font-size: 23px;
    line-height: 1.7;
    color: #233247;
    margin-bottom: 20px;
    font-weight: 400;
}

.about-approach-content p{
	font-size: 20px;
    line-height: 1.7;
    color: #5b6780;
}

.about-approach-content strong{

    color:#0f172a;
    font-weight:700;

}


/*==============================================================
# FRASE DESTACADA
==============================================================*/

.approach-quote{

    padding:20px 0 120px;
    background:#fff;

}

.approach-quote blockquote{
    max-width: 900px;
    margin: auto;
    padding: 70px 80px;
    font-family: var(--heading-font);
    font-size: 2rem;
    line-height: 1.45;
    font-weight: 600;
    text-align: center;
    color: #012970;
    border-left: 5px solid #a8cf3a;
    background: #f5f7fb;
    border-radius: 18px;
    box-shadow: 0 18px 45px rgba(18, 38, 63, .06);
}


/*==============================================================
# RESPONSIVE
==============================================================*/

@media (max-width:991px){

    .about-approach{

        padding:90px 0 60px;

    }

    .about-approach-content h2{

        font-size:2.3rem;

    }

    .about-approach-content .lead{

        font-size:1.22rem;

    }

    .approach-quote{

        padding:10px 0 90px;

    }

    .approach-quote blockquote{

        padding:50px 40px;
        font-size:1.6rem;

    }

}

@media (max-width:576px){

    .about-approach-content h2{

        font-size:1.9rem;

    }

    .about-approach-content .lead{

        font-size:1.1rem;

    }

    .about-approach-content p{

        font-size:1.02rem;

    }

    .approach-quote blockquote{

        padding:35px 25px;
        font-size:1.35rem;
        border-left-width:4px;

    }

}

/*==============================================================
# EXPERIENCIA Y METODOLOGÍA
==============================================================*/

.about-method{
    background: #f5f7fb;
    padding: 110px 0px;
}

.about-method .section-intro{
    max-width:900px;
    margin:0 auto 80px;

}

.about-method h2{
    margin-top:18px;
    margin-bottom:35px;
    font-size:3rem;
    font-weight:700;
    line-height:1.2;
    color:#a8cf3a;

}

.about-method .section-lead{
    font-size:1.35rem;
    line-height:1.9;
    color:#233247;
    margin-bottom:25px;

}

.about-method .section-intro p{
    font-size: 20px;
    line-height: 1.7;
    color: #5b6780;
}


/* GRID */

.method-grid{

    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:30px;

}


/* CARD */

.method-card{

    padding:45px;

    background:#ffffff;

    border:1px solid rgba(15,23,42,.08);

    border-radius:18px;

    transition:.35s ease;

}

.method-card:hover{

      transform:translateY(-8px);

    border-color:#a8cf3a;

    box-shadow:
        0 18px 45px rgba(25,45,70,.08),
        0 0 0 1px rgba(168,207,58,.18);
}


.method-number{

    display:block;

    margin-bottom:18px;

    font-family:var(--heading-font);

    font-size:3rem;

    font-weight:800;

    color:#a8cf3a;

}


.method-card h3{
    font-size:1.45rem;
    margin-bottom:18px;
    color: #012970;
    font-weight: 500;
}


.method-card p{
    margin:0;
    color:#5b6780;
    line-height:1.8;
    font-size:1rem;
}


/* RESPONSIVE */

@media (max-width:992px){

    .about-method{

        padding:90px 0;

    }

    .about-method h2{

        font-size:2.3rem;

    }

    .method-grid{

        grid-template-columns:1fr;

    }

}

@media (max-width:576px){

    .about-method h2{

        font-size:1.9rem;

    }

    .method-card{

        padding:35px 28px;

    }

    .method-number{

        font-size:2.4rem;

    }

}

/*==============================================================
# CIERRE SOBRE IDONMS
==============================================================*/

.about-closing{
    padding:120px 0;
    background:#fff;
}

.about-closing-content{
    max-width:900px;
    margin:auto;
    text-align:center;
}

.about-closing-content h2{
    margin-top:18px;
    margin-bottom:40px;
    font-size:3rem;
    font-weight:700;
    line-height:1.2;
    color:#0b3a82;
}

.about-closing-content h2 span{
    color:#a8cf3a;
}

.about-closing-content .lead{
    font-size: 23px;
    line-height: 1.7;
    color: #233247;
    margin-bottom: 20px;
    font-weight: 400;
}

.about-closing-content p{
    font-size: 20px;
    line-height: 1.7;
    color: #5b6780;
}

.about-closing-content strong{

    color:#0f172a;

}

.closing-cta{

    margin-top:45px;

}

.closing-cta .btn-getstarted{

    padding:16px 34px;

}

.closing-cta i{

    margin-left:10px;
    transition:.3s;

}

.closing-cta .btn-getstarted:hover i{

    transform:translateX(5px);

}


/*=========================
Responsive
=========================*/

@media (max-width:992px){

    .about-closing{

        padding:100px 0;

    }

    .about-closing-content h2{

        font-size:2.3rem;

    }

    .about-closing-content .lead{

        font-size:1.2rem;

    }

}

@media (max-width:576px){

    .about-closing{

        padding:80px 0;

    }

    .about-closing-content h2{

        font-size:1.9rem;

    }

    .about-closing-content .lead{

        font-size:1.08rem;

    }

    .about-closing-content p{

        font-size:1rem;

    }

}

/*==============================================================
CASOS DE ÉXITO
==============================================================*/

#casos-exito {
    position: relative;
    padding: 170px 0 110px;
    background: linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
    overflow: hidden;
}


.success-cases-wrapper{

      max-width:1200px;

    margin:70px auto 0;

    display:grid;

/*    grid-template-columns:repeat(2,minmax(0,1fr));
*/
    gap:40px;

}


/*==============================================================
TARJETA
==============================================================*/

.success-case{

    background:#fff;

    border:1px solid rgba(159,196,77,.25);

    border-radius:24px;

    padding:40px;

    transition:all .35s ease;

    box-shadow:0 10px 35px rgba(16,24,40,.04);

    height:100%;

}

.success-case:hover{

    transform:translateY(-8px);

    border-color:#9FC44D;

    box-shadow:0 24px 60px rgba(16,24,40,.10);

}


/*==============================================================
CABECERA
==============================================================*/

.success-case-top{

    display:flex;

    justify-content:space-between;

    align-items:flex-start;

    gap:30px;

    margin-bottom:35px;

}


.success-case-kicker{

    display:inline-block;

    font-size:12px;

    font-weight:700;

    letter-spacing:.18em;

    text-transform:uppercase;

    color:#9FC44D;

    margin-bottom:14px;

}


.success-case h3{

    font-size:30px;

    line-height:1.2;

    margin:0;

    color:#012970;

}


/*==============================================================
RESULTADO
==============================================================*/

.success-result{

    text-align:right;

    flex-shrink:0;

}


.success-number{

    display:block;

    font-size:56px;

    line-height:1;

    font-weight:800;

    color:#9FC44D;

}

.success{

    display:block;

    font-size:40px;

    line-height:1;

    font-weight:800;

    color:#9FC44D;

}


.success-result p{

    margin:10px 0 4px;

    font-size:15px;

    font-weight:600;

    color:#012970;

}


.success-result small{

    color:#6c757d;

    font-size:14px;

}


/*==============================================================
DATOS
==============================================================*/

.success-meta{

    display:grid;

    grid-template-columns:1fr 160px;

    gap:30px;

}


.success-meta span{

    display:block;

    font-size:17px;

    text-transform:uppercase;

    letter-spacing:.10em;

    color:#9FC44D;

    font-weight:700;

    margin-bottom:8px;

}


.success-meta p{

    margin:0;

    color:#444;

    line-height:1.7;

    font-size:17px;

}


/*==============================================================
SEPARADOR
==============================================================*/

.success-divider{

    height:1px;

    background:#edf2e2;

    margin:32px 0;

}


/*==============================================================
TÍTULO
==============================================================*/

.success-case h4{

    font-size:22px;

    color:#012970;

    margin-bottom:20px;

}


/*==============================================================
LISTA
==============================================================*/

.success-case ul{

    list-style:none;

    padding:0;

    margin:0;

}


.success-case li{

    display:flex;

    align-items:flex-start;

    gap:14px;

    margin-bottom:18px;

    color:#444;

    line-height:1.8;

    font-size:16px;

}


.success-case li:last-child{

    margin-bottom:0;

}


.success-case li i{

    color:#9FC44D;

    font-size:18px;


    flex-shrink:0;

}


/*==============================================================
RESPONSIVE
==============================================================*/

@media (max-width:991px){

.success-cases-wrapper{

    grid-template-columns:1fr;

    gap:30px;

}

.success-case{

    padding:32px;

}

.success-case-top{

    flex-direction:column;

    gap:20px;

}

.success-result{

    text-align:left;

}


.success-meta{

    grid-template-columns:1fr;

    gap:20px;

}

.success-number{

    font-size:46px;

}

}


@media (max-width:576px){

.success-case{

    padding:24px;

    border-radius:18px;

}

.success-case h3{

    font-size:24px;

}

.success-case h4{

    font-size:20px;

}

.success-number{

    font-size:40px;

}

.success-case li{

    font-size:15px;

    line-height:1.7;

}

}

/*==============================================================
INTRODUCCIÓN
==============================================================*/

.cases-intro{

    max-width:920px;

    margin:0 auto 80px;

    text-align:center;

}

.cases-intro h2{
    max-width: 950px;
    margin: auto;
    font-size: 44px;
    line-height: 1.1;
    font-weight: 700;
    color: #a6ce39;
}

.cases-intro .lead{

    font-size:24px;

    line-height:1.8;

    margin-bottom:28px;

    color:#243746;

}

.cases-intro p{

    margin: 25px auto 0;
    font-size: 20px;
    line-height: 1.7;
    color: #5f6c87;

}

.cases-intro strong{

    color:#5f6c87;

    font-weight:600;

}

/*==============================================================
CIERRE CASOS DE ÉXITO
==============================================================*/

.cases-cta{

    max-width:900px;

    margin:110px auto 0;

    text-align:center;

    padding-top:80px;

    border-top:1px solid #a6ce39;

}

.cases-cta h2{
	max-width: 950px;
    margin: auto;
    font-size: 47px;
    line-height: 1.1;
    font-weight: 700;
    color: #a6ce39;

}

.cases-cta p{
    margin: 25px auto 0;
    font-size: 20px;
    line-height: 1.7;
    color: #5f6c87;
}

.cases-cta strong{

    font-weight:600;

    color:#5f6c87;

}

.cases-cta .btn-get-started{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:16px 34px;

}

/*==============================================================
# CONTACTO - MAPA INTERNACIONAL
==============================================================*/

.offices {
  background:#ffffff;
  padding: 140px 0 0 0;
}


.office-map-wrapper{

  display:flex;
  gap:40px;
  align-items:center;

}



.world-map{

  width:70%;
  position:relative;

}



.world-map img{

  width:100%;
  display:block;

}




.map-marker{

  position:absolute;
  width:18px;
  height:18px;

  border:0;
  background:none;
  padding:0;

  cursor:pointer;

}



.map-marker span{

  width:16px;
  height:16px;

  background:var(--accent-color);

  border-radius:50%;

  display:block;

  position:relative;

  box-shadow:
  0 0 0 8px rgba(65,84,241,.15);


  transition:.3s;

}



.map-marker:hover span,
.map-marker.active span{

  transform:scale(1.3);

}



.marker-label{


  position:absolute;

  left:25px;
  top:-5px;

  background:white;

  padding:6px 12px;

  border-radius:20px;

  font-size:13px;

  font-weight:600;

  white-space:nowrap;

  box-shadow:
  0 10px 30px rgba(0,0,0,.12);

}



#marker-manchester{

 left:45%;
 top:21%;

}


#marker-london{

 left: 47%;
 top:25%;

}


#marker-usa{

 left:25%;
 top:28%;

}

#marker-asia{

 left: 81%;
 top:50%;

}

.office-panel{

 width:30%;

 background:#ffffff;

 padding:45px;

 border-radius:20px;

 box-shadow:
 0 20px 60px rgba(0,0,0,.08);


}



.panel-icon{

 width:55px;
 height:55px;

 display:flex;
 align-items:center;
 justify-content:center;

 border-radius:50%;

 background:
 #a8cf3a;

 color:#fff;

 font-size:24px;

 margin-bottom:25px;

}



.office-panel h3{

 font-size:28px;
 margin-bottom:5px;

}



.office-panel h4{
	font-size: 20px;
    margin-bottom: 15px;
    font-weight: 600;
}

.office-panel p{
    color: #a8cf3a;
    font-size: 20px;
    font-weight: 500;
    text-transform: uppercase;
}

.office-info{
 margin-top:30px;
}

.office-info div{

 display:flex;

 align-items:center;

 gap:12px;

 margin-bottom:15px;

 font-size:16px;

}



.office-info i{
    color: #a8cf3a;
    font-size: 20px;
}





/* Responsive */

@media(max-width:991px){


.office-map-wrapper{

 flex-direction:column;

}



.world-map,
.office-panel{

 width:100%;

}



.office-panel{

 padding:30px;

}


.marker-label{

 font-size:11px;

}
	
#marker-manchester{

 left:45%;
 top:18%;

}


#marker-london{

 left: 47%;
 top:26%;

}

}

/*--------------------------------------------------------------
# Interactive Offices Map - IDONMS Branding
--------------------------------------------------------------*/

.map-marker {

    position:absolute;
    width:18px;
    height:18px;

    background:#012970;

    border-radius:50%;

    cursor:pointer;

    z-index:5;

    transition:all .35s ease;

}


/* halo exterior */

.map-marker::before {

    content:"";

    position:absolute;

    width:42px;
    height:42px;

    left:50%;
    top:50%;

    transform:translate(-50%,-50%);

    border-radius:50%;

    background:rgba(1,41,112,.15);

    transition:.35s ease;

}



/* etiqueta */

.map-marker span {

    position:absolute;

    left:28px;
    top:-12px;

    background:none;

    padding:8px 18px;

    border-radius:30px;

    font-size:15px;

    font-weight:600;

    color:#012970;

    white-space:nowrap;

    box-shadow:
    0 10px 30px rgba(0,0,0,.08);

    transition:.35s ease;

}



/* HOVER */

.map-marker:hover {

    transform:scale(1.15);

}



/* ACTIVE */


.map-marker.active {
    background:#a8cf3a;
    transform:scale(1.35);
    z-index:10;
	color: #a8cf3a; 
}

.map-marker.active::before {
    width:70px;
    height:70px;
    background:rgba(168,207,58,.22);
    animation:mapPulse 1.8s infinite;
}

/* etiqueta activa */

.map-marker.active span {

    background:none;

    color:#012970;

    font-weight:700;

    box-shadow:
    0 15px 35px rgba(1,41,112,.18);

    transform:scale(1.08);

}



@keyframes mapPulse {


    0% {

        transform:
        translate(-50%,-50%)
        scale(.8);

        opacity:.8;

    }


    70% {

        transform:
        translate(-50%,-50%)
        scale(1.2);

        opacity:0;

    }


    100% {

        opacity:0;

    }

}

.office-info a {

    color: inherit;
    text-decoration: none;
    transition: .3s ease;

}


.office-info a:hover {

    color: #a8cf3a;

}

/*--------------------------------------------------------------
# Contact Form
--------------------------------------------------------------*/

.contact-form{

    background:#f8fafc;
	padding: 110px 0px;

}

.contact-box{

    max-width:950px;

    margin:auto;

    background:#fff;

    padding:60px;

    border-radius:24px;

    box-shadow:0 20px 60px rgba(1,41,112,.08);

}

/*--------------------------------------------------------------
# Campos obligatorios
--------------------------------------------------------------*/

.required-fields{

    margin-bottom:35px;

    font-size:15px;

    color:#667085;

}

.required{

    color:#dc3545;

    font-weight:700;

}

/*--------------------------------------------------------------
# Labels
--------------------------------------------------------------*/

.contact-form label{

    display:block;

    margin-bottom:10px;

    font-size:15px;

    font-weight:600;

    color:#012970;

}

/*--------------------------------------------------------------
# Inputs / Textarea / Select
--------------------------------------------------------------*/

.contact-form input:not([type="checkbox"]),
.contact-form textarea,
.contact-form select{

    width:100%;

    padding:16px 20px;

    border:1px solid #d9dee8;

    border-radius:12px;

    background:#fff;

    font-size:15px;

    color:#344054;

    transition:all .3s ease;

    appearance:none;
    -webkit-appearance:none;
    -moz-appearance:none;

}

.contact-form textarea{

    resize:vertical;

    min-height:180px;

}

.contact-form input:not([type="checkbox"])::placeholder,
.contact-form textarea::placeholder{

    color:#98a2b3;

}

/*--------------------------------------------------------------
# Select personalizado
--------------------------------------------------------------*/

.contact-form select{

    cursor:pointer;

    padding-right:55px;

    background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='none' viewBox='0 0 16 16'%3E%3Cpath d='M3 6l5 5 5-5' stroke='%23012970' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");

    background-repeat:no-repeat;

    background-position:right 18px center;

    background-size:16px;

}

/*--------------------------------------------------------------
# Focus
--------------------------------------------------------------*/

.contact-form input:not([type="checkbox"]):focus,
.contact-form textarea:focus,
.contact-form select:focus{

    outline:none;

    border-color:#a8cf3a;

    box-shadow:0 0 0 5px rgba(168,207,58,.15);

}

/*--------------------------------------------------------------
# Caja privacidad
--------------------------------------------------------------*/

.privacy-box{

    margin-top:10px;

    padding:28px;

    background:#f8fafc;

    border:1px solid #e5e7eb;

    border-radius:16px;

}

.privacy-text{

    margin-bottom:20px;

    font-size:14px;

    color:#667085;

    line-height:1.8;

}

.privacy-text a{

    color:#012970;

    font-weight:600;

    text-decoration:none;

    transition:.3s;

}

.privacy-text a:hover{

    color:#a8cf3a;

}

/*--------------------------------------------------------------
# Checkbox
--------------------------------------------------------------*/

.checkbox{

    display:flex;
    align-items:flex-start;
    gap:14px;

}

.checkbox input[type="checkbox"]{

    appearance:auto;
    -webkit-appearance:auto;
    -moz-appearance:auto;

    width:15px;
    height:15px;

    margin-top:4px;

    accent-color:#a8cf3a;

    flex-shrink:0;

    cursor:pointer;

}

.checkbox span{

    line-height:1.6;

    font-size:15px;

    color:#344054;

}

/*--------------------------------------------------------------
# Botón
--------------------------------------------------------------*/

.contact-form button{

    margin-top:15px;

    background:#012970;

    color:#fff;

    border:none;

    border-radius:50px;

    padding:18px 46px;

    font-size:16px;

    font-weight:700;

    transition:all .35s ease;

    box-shadow:0 15px 35px rgba(1,41,112,.18);

}

.contact-form button:hover{

    background:#a8cf3a;

    color:#012970;

    transform:translateY(-3px);

    box-shadow:0 18px 40px rgba(168,207,58,.30);

}


/*--------------------------------------------------------------
# Responsive
--------------------------------------------------------------*/

@media (max-width:991px){

    .contact-box{

        padding:45px;

    }

}

@media (max-width:768px){

    .contact-box{

        padding:35px 25px;

        border-radius:20px;

    }

}

/*==============================================================
HERO FRANQUICIA
==============================================================*/

.franchise-hero{

    padding: 170px 0 110px;

    background:linear-gradient(
        180deg,
        #ffffff 0%,
        #f8fbff 60%,
        #ffffff 100%
    );

    overflow:hidden;

}

.franchise-hero .container{

    position:relative;

    z-index:2;

}

/*==============================================================
BADGE
==============================================================*/

.hero-badge{

    display:inline-flex;

    align-items:center;

    gap:10px;

    padding:10px 20px;

    background:#eef4ff;

    border-radius:50px;

    color:#012970;

    font-size:.95rem;

    font-weight:600;

    margin-bottom:28px;

}

.hero-badge i{

    color:#0d6efd;

}

/*==============================================================
TITULO
==============================================================*/

.franchise-hero h1{

    font-size:3.45rem;

    font-weight:700;

    line-height:1.12;

    color:#012970;

    letter-spacing:-1px;

    margin-bottom:28px;

}

.franchise-hero h1 span{

    color:#a8cf3a;

}

/*==============================================================
INTRO
==============================================================*/

.hero-intro{

    font-size: 17px;
    line-height: 1.7;
    color: #5b6780;
    max-width: 560px;
    margin-bottom: 38px;

}

/*==============================================================
PARTNER BOX
==============================================================*/

.partner-box{

    background:#ffffff;

    border-left:4px solid #a8cf3a;

    border-radius:18px;

    padding:28px 30px;

    margin-bottom:45px;

    box-shadow:

        0 10px 35px rgba(1,41,112,.06);

}

.partner-box h3{

    margin-bottom:8px;

    color:#012970;

    font-size:2rem;

    font-weight:700;

}

.partner-box p{

    font-size: 17px;
    line-height: 1.7;
    color: #5b6780;
    max-width: 560px;
	margin-bottom: 0;
}

/*==============================================================
TEXTO
==============================================================*/

.hero-text h4{

    color:#012970;

    font-size:2rem;

    font-weight:700;

    margin-bottom:18px;

}

.hero-text p{
    font-size: 17px;
    line-height: 1.7;
    color: #5b6780;
    max-width: 560px;
}

/*==============================================================
BOTONES
==============================================================*/

.hero-buttons{

    display:flex;

    gap:18px;

    flex-wrap:wrap;

    margin-top:45px;

}

/*------------------------*/

.btn-primary-hero{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:16px 34px;

    border-radius:50px;

    background:#012970;

    color:#ffffff;

    font-weight:600;

    transition:.35s;

    box-shadow:

        0 10px 30px rgba(1,41,112,.12);

}

.btn-primary-hero:hover{

    background:#0d6efd;

    color:#ffffff;

    transform:translateY(-2px);

}

/*------------------------*/

.btn-secondary-hero{

    display:inline-flex;

    align-items:center;

    gap:10px;

    padding:15px 32px;

    border-radius:50px;

    border:2px solid #dbe6ff;

    background:#ffffff;

    color:#012970;

    font-weight:600;

    transition:.35s;

}

.btn-secondary-hero:hover{

    background:#f4f8ff;

    border-color:#0d6efd;

    color:#012970;

}

/*==============================================================
RESPONSIVE COLUMNA IZQUIERDA
==============================================================*/

@media (max-width:991px){

.franchise-hero{

    padding:90px 0 70px;

}

.franchise-hero h1{

    font-size:2.6rem;

}

.hero-intro{

    font-size:1.05rem;

}

.hero-buttons{

    flex-direction:column;

}

.btn-primary-hero,

.btn-secondary-hero{

    justify-content:center;

    width:100%;

}

.hero-trust{

    gap:18px;

}

}

/*==============================================================
COLUMNA MAPA
==============================================================*/

.franchise-map{

    position:relative;

    width:100%;

    min-height:450px;

    border-radius:28px;

    background:#ffffff;

    overflow:hidden;

    box-shadow:0 12px 45px rgba(1,41,112,.08);

}

/*==============================================================
LUZ SUPERIOR
==============================================================*/

.franchise-map::before{

    content:"";

    position:absolute;

    inset:0;

    background:
        radial-gradient(circle at 25% 15%,
        rgba(255,255,255,.65),
        transparent 65%);

    z-index:1;

    pointer-events:none;

}

/*==============================================================
MAPA
==============================================================*/

.map-svg{

    position:absolute;

    inset:0;

    display:flex;

    justify-content:center;

    align-items:center;

    z-index:2;

}

.map-svg img{

    width:100%;

    height:auto;

    max-width:100%;

    object-fit:contain;

    display:block;

    opacity:.95;

    user-select:none;

    pointer-events:none;

}

/*==============================================================
BARRA RED INTERNACIONAL
==============================================================*/

.network-bar{
	
	width:92%;

    margin:-55px auto 0;

    position:relative;

    z-index:20;

    display:flex;
    justify-content:space-around;
    align-items:center;

    padding:20px 26px;

    background:rgba(255,255,255,.95);

    backdrop-filter:blur(18px);

    border-radius:18px;

    box-shadow:0 14px 35px rgba(1,41,112,.10);

    z-index:40;

}

.network-item{

    display:flex;
    align-items:center;
    gap:14px;

}

.network-icon{

    width:56px;
    height:56px;

    border-radius:50%;

    background:linear-gradient(135deg,#f8fbf0,#eef7d9);

    display:flex;
    justify-content:center;
    align-items:center;

    flex-shrink:0;

}

.network-icon i{

    font-size:1.6rem;

    color:#a8cf3a;

}

.network-info{

    display:flex;
    flex-direction:column;

}

.network-info span{

    font-size:1.8rem;

    font-weight:700;

    color:#012970;

    line-height:1;

}

.network-info small{

    font-size:.95rem;

    color:#5f687b;

}

.network-divider{

    width:1px;

    height:46px;

    background:#e4e8ef;

}

/*==============================================================
PUNTOS
==============================================================*/

.map-point{

    position:absolute;
    width:6px;
    height:6px;

    border-radius:50%;

    background:#012970;

    z-index:20;

    animation:pulseMap 3s infinite ease-out;

}

.map-point::before{

    content:"";

    position:absolute;

    inset:-5px;

    border-radius:50%;

    border:2px solid rgba(1,41,112,.25);

}

/*==============================================================
ANIMACIÓN
==============================================================*/

@keyframes pulseMap{

0%{

    transform:scale(1);

    box-shadow:0 0 0 0 rgba(1,41,112,.35);

}

70%{

    box-shadow:0 0 0 8px rgba(1,41,112,0);

}

100%{

    transform:scale(1);

    box-shadow:0 0 0 0 rgba(1,41,112,0);

}

}

/*==============================================================
POSICIÓN DE LOS MARCADORES
==============================================================*/

/* ===========================
   CANADÁ
=========================== */

.canada.p1{
    top: 23%;
    left:13%;
}

/* ===========================
   ESTADOS UNIDOS
=========================== */

.usa.p1{
    top:30%;
    left:16%;
}


/* ===========================
   MÉXICO
=========================== */

.mexico.p1{
    top:38%;
    left:13%;
} 

/* ===========================
   EL SALVADOR
=========================== */

.elsalvador.p1{
    top:44%;
    left:17%;
}

/* ===========================
   COLOMBIA
=========================== */

.colombia.p1{
    top:50%;
    left:22%;
}

/* ===========================
   PERÚ
=========================== */

.peru.p1{
    top:54%;
    left:21%;
}

/* ===========================
   ARGENTINA
=========================== */

.argentina.p1{
    top:69%;
    left:27%;
}

/* ===========================
   ESPAÑA
=========================== */

.spain.p1{
    top:29%;
    left:46%;
} 

/* ===========================
   ITALIA 
=========================== */

.france.p1{
    top:28%;
    left:51%;
} 

/* ===========================
   ALENANIA 
=========================== */

.germany.p1{
    top:27%;
    left:48%;
} 

/* ===========================
   REINO UNIDO
=========================== */

.uk.p1{
    top:22%;
    left:47%;
} 

/* ===========================
   SINGAPUR
=========================== */

.singapur.p1{
    top:49%;
    left:81%;
} 

/*==============================================================
RESPONSIVE
==============================================================*/

@media(max-width:991px){

.franchise-map{

min-height:300px;

margin-top:50px;

}

.map-svg{

padding:18px;

}

.network-card{

position:absolute;

width:180px;

top:15px;

right:15px;

padding:18px;

}

.network-card h4{

font-size:20px;

}

.network-card span{

font-size:1.6rem;

}

}

@media (max-width:768px){

    .network-bar{
		
		width:100%;

        margin:24px auto 0;

        position:relative;

        left:auto;
        right:auto;
        bottom:auto;
		
        flex-direction:column;

        gap:20px;

        text-align:center;

    }

    .network-divider{

        width:60px;
        height:1px;

    }

}

.franchise-hero .col-lg-6:first-child{
    padding-right:55px;
}

/*==============================================================
MAP HEADER
==============================================================*/

.map-header{

    text-align:center;

    margin-bottom:22px;

}

.map-header h3{

    text-align:center;

    font-size:2rem;

    font-weight:700;

    color:#012970;

    margin-bottom:22px;

}

.map-header h3 span{

    color:#a8cf3a;

    text-align:center;

    font-size:2rem;

    font-weight:700;

    margin-bottom:22px;

}

.map-header h3 span{

    color:#a8cf3a;

}

/*==============================================================
MODELO DE NEGOCIO
==============================================================*/

.business-model{

    position:relative;

    padding:110px 0;

    overflow:hidden;

    background:
        radial-gradient(circle at top right,
        rgba(255,255,255,.08),
        transparent 35%),

        radial-gradient(circle at bottom left,
        rgba(255,255,255,.05),
        transparent 40%),

        linear-gradient(135deg,#012970 0%,#0b3d91 100%);

}


/*==============================================================
CABECERA
==============================================================*/

.section-heading{

    margin-bottom:40px;

}

.section-kicker{

    display:inline-block;

    margin-bottom:18px;

    color:#a8cf3a;

    font-size:.90rem;

    font-weight:700;

    letter-spacing:3px;

    text-transform:uppercase;

}

.section-heading h2{

    max-width: 950px;
    margin: auto;
    font-size: 44px;
    line-height: 1.1;
    font-weight: 700;
    color: #a6ce39;

}


/*==============================================================
TEXTO
==============================================================*/

.business-text{

    max-width:900px;

    margin:0 auto 60px;

}

.business-text p{

    color:rgba(255,255,255,.88);
    font-size: 20px;
    line-height: 1.7;
	text-align: center;

}

.business-text strong{

    color:#fff;

    font-weight:700;

}


/*==============================================================
CAJA 60%
==============================================================*/

.conversion-box{

    background:#fff;

    border-radius:28px;

    padding:60px;

    text-align:center;

    box-shadow:
        0 30px 70px rgba(0,0,0,.18);

    margin:0 auto 60px;

    max-width:760px;

}

.conversion-number{

    display:block;

    font-size:5rem;

    font-weight:800;

    color:#a8cf3a;

    line-height:1;

    margin-bottom:18px;

}

.conversion-box h3{

    color:#012970;

    font-size:2rem;

    margin-bottom:25px;

    font-weight:700;

}

.conversion-box p{

    color:#5f6c87;

    font-size:20px;

    line-height:1.7;

    margin:0;

}

.conversion-box strong{

    color:#012970;

}


/*==============================================================
FRASE FINAL
==============================================================*/

.business-closing{

    text-align:center;

    max-width:900px;

    margin:auto;

}

.business-closing p{

    color:rgba(255,255,255,.90);
    font-size: 20px;
    line-height: 1.7;
    margin:0;
}

.business-closing strong{

    color:#fff;

    font-weight:700;

}


/*==============================================================
RESPONSIVE
==============================================================*/

@media (max-width:991px){

.business-model{

    padding:80px 0;

}

.section-heading h2{

    font-size:2.3rem;

}

.business-text p{

    font-size:1.08rem;

    line-height:1.8;

}

.conversion-box{

    padding:40px 30px;

}

.conversion-number{

    font-size:4rem;

}

.conversion-box h3{

    font-size:1.6rem;

}

.business-closing p{

    font-size:1.2rem;

}

}


@media (max-width:767px){

.business-model{

    padding:70px 0;

}

.section-heading{

    margin-bottom:40px;

}

.section-heading h2{

    font-size:2rem;

}

.business-text{

    margin-bottom:40px;

}

.business-text p{

    font-size:1rem;

    line-height:1.8;

}

.conversion-box{

    padding:35px 24px;

    border-radius:22px;

}

.conversion-number{

    font-size:3.5rem;

}

.conversion-box h3{

    font-size:1.4rem;

}

.conversion-box p{

    font-size:1rem;

    line-height:1.8;

}

.business-closing p{

    font-size:1.1rem;

}

}

/*==============================================================
TODO LO QUE INCLUYE TU LICENCIA
==============================================================*/

.license-includes{

    padding:110px 0;

    background:#ffffff;

}


/*==============================================================
CABECERA
==============================================================*/

.license-includes .section-heading{

    margin-bottom:40px;

}

.license-includes .section-kicker{

    display:inline-block;

    margin-bottom:18px;

    color:#a8cf3a;

    font-size:.90rem;

    font-weight:700;

    letter-spacing:3px;

    text-transform:uppercase;

}

.license-includes .section-heading h2{

    max-width: 950px;
    margin: auto;
    font-size: 44px;
    line-height: 1.1;
    font-weight: 700;
    color: #a6ce39;

}

.section-intro{
    margin: 25px auto 0;
    font-size: 20px;
    line-height: 1.7;
    color: #5f6c87;
	max-width: 750px;
}


/*==============================================================
GRID
==============================================================*/

.license-includes .row.g-4{

    margin-top:20px;

}


/*==============================================================
TARJETAS
==============================================================*/

.license-card{

    position:relative;

    height:100%;

    background:#ffffff;

    border:1px solid #edf2f7;

    border-radius:22px;

    padding:36px;

    transition:all .35s ease;

    box-shadow:

        0 10px 30px rgba(1,41,112,.05);

}

.license-card:hover{

    transform:translateY(-8px);

    border-color:#a8cf3a;

    box-shadow:

        0 20px 45px rgba(1,41,112,.10);

}


/*==============================================================
CHECK
==============================================================*/

.check{

    display:inline-flex;

    justify-content:center;

    align-items:center;

    width:34px;

    height:34px;

    border-radius:50%;

    background:#eef8d7;

    color:#7eb226;

    font-size:1.05rem;

    font-weight:700;

    margin-bottom:22px;

}


/*==============================================================
TEXTOS TARJETAS
==============================================================*/

.license-card h4{

    color:#012970;

    font-size:1.35rem;

    font-weight:700;

    line-height:1.4;

    margin-bottom:16px;

}

.license-card p{

    color:#5f687b;

    font-size:1rem;

    line-height:1.85;

    margin:0;

}


/*==============================================================
CIERRE
==============================================================*/

.license-closing{

    margin-top:90px;

    padding:60px;

    border-radius:28px;

    background:#f8fbff;

    text-align:center;

    border:1px solid #edf2f7;

}

.license-closing h3{

    color:#012970;

    font-size:2.6rem;

    font-weight:700;

    margin-bottom:22px;

}

.license-closing p{

    max-width:820px;

    margin:auto;

    color:#5f687b;

    font-size:1.20rem;

    line-height:2;

}

.license-closing strong{

    color:#012970;

}


/*==============================================================
RESPONSIVE
==============================================================*/

@media (max-width:991px){

.license-includes{

    padding:90px 0;

}

.license-includes .section-heading h2{

    font-size:2.4rem;

}

.section-intro{

    font-size:1.08rem;

}

.license-card{

    padding:30px;

}

.license-card h4{

    font-size:1.25rem;

}

.license-closing{

    padding:45px 30px;

}

.license-closing h3{

    font-size:2rem;

}

.license-closing p{

    font-size:1.08rem;

}

}


@media (max-width:767px){

.license-includes{

    padding:70px 0;

}

.license-includes .section-heading{

    margin-bottom:45px;

}

.license-includes .section-heading h2{

    font-size:2rem;

}

.section-intro{

    font-size:1rem;

    line-height:1.8;

}

.license-card{

    padding:28px;

}

.license-card h4{

    font-size:1.18rem;

}

.license-card p{

    font-size:.98rem;

}

.license-closing{

    margin-top:60px;

    padding:35px 25px;

}

.license-closing h3{

    font-size:1.7rem;

}

.license-closing p{

    font-size:1rem;

    line-height:1.8;

}

}

/*==============================================================
MERCADO Y CONDICIONES DE LA FRANQUICIA
==============================================================*/

.franchise-market{

    padding:110px 0;

    background:#f8fafc;

}


/*==============================================================
CABECERA
==============================================================*/

.franchise-market .section-heading{

    margin-bottom:70px;

}

.franchise-market .section-kicker{

    display:inline-block;

    margin-bottom:18px;

    color:#a8cf3a;

    font-size:.90rem;

    font-weight:700;

    letter-spacing:3px;

    text-transform:uppercase;

}

.franchise-market .section-heading h2{
    max-width: 950px;
    margin: auto;
    font-size: 44px;
    line-height: 1.1;
    font-weight: 700;
    color: #a6ce39;
}


/*==============================================================
TEXTO MERCADO
==============================================================*/

.market-content h3{

    color:#012970;

    font-size:2rem;

    font-weight:700;

    margin-bottom:30px;

    line-height:1.3;

}

.market-content p{
    font-size: 17px;
    line-height: 1.7;
    color: #5b6780;
    max-width: 680px;
    margin-bottom: 38px;
}

.market-content strong{

    color:#5b6780;

}


/*==============================================================
RESUMEN LICENCIA
==============================================================*/

.market-summary{

    background:#ffffff;

    border-radius:24px;

    padding:40px;

    border:1px solid #edf2f7;

    box-shadow:

        0 15px 40px rgba(1,41,112,.06);

}

.market-summary h4{

    color:#012970;

    font-size:1.55rem;

    font-weight:700;

    margin-bottom:30px;

}

.market-summary ul{

    list-style:none;

    margin:0;

    padding:0;

}

.market-summary li{

    display:flex;

    align-items:flex-start;

    gap:14px;

    margin-bottom:22px;

    color:#5f687b;

    font-size:1rem;

    line-height:1.7;

}

.market-summary li:last-child{

    margin-bottom:0;

}

.market-summary i{

    color:#a8cf3a;

    font-size:1.2rem;

    margin-top:2px;

}


/*==============================================================
CARACTERÍSTICAS
==============================================================*/

.feature-card{

    height:100%;

    background:#ffffff;

    border-radius:22px;

    padding:35px;

    border:1px solid #edf2f7;

    transition:.35s;

    box-shadow:

        0 10px 30px rgba(1,41,112,.05);

}

.feature-card:hover{

    transform:translateY(-8px);

    border-color:#a8cf3a;

    box-shadow:

        0 20px 45px rgba(1,41,112,.10);

}

.feature-card h4{

    color:#5f687b;

    font-size:.95rem;

    text-transform:uppercase;

    letter-spacing:2px;

    margin-bottom:12px;

}

.feature-card span{

    display:block;

    color:#012970;

    font-size:1.8rem;

    font-weight:700;

    margin-bottom:20px;

    line-height:1.2;

}

.feature-card p{

    color:#5f687b;

    font-size:1rem;

    line-height:1.8;

    margin:0;

}


/*==============================================================
RESPONSIVE
==============================================================*/

@media (max-width:991px){

.franchise-market{

    padding:90px 0;

}

.franchise-market .section-heading{

    margin-bottom:50px;

}

.franchise-market .section-heading h2{

    font-size:2.4rem;

}

.market-content h3{

    font-size:1.7rem;

}

.market-summary{

    padding:35px;

}

.feature-card{

    padding:30px;

}

.feature-card span{

    font-size:1.5rem;

}

}


@media (max-width:767px){

.franchise-market{

    padding:70px 0;

}

.franchise-market .section-heading h2{

    font-size:2rem;

}

.market-content h3{

    font-size:1.45rem;

}

.market-content p{

    font-size:1rem;

    line-height:1.9;

}

.market-summary{

    padding:28px;

}

.market-summary h4{

    font-size:1.35rem;

}

.market-summary li{

    font-size:.96rem;

}

.feature-card{

    padding:28px;

}

.feature-card span{

    font-size:1.35rem;

}

.feature-card p{

    font-size:.96rem;

}

}

/*==============================================================
CTA FINAL FRANQUICIA
==============================================================*/

.franchise-cta{

    padding:120px 0;

    background:#ffffff;

}

.cta-wrapper{

    max-width:1050px;

    margin:auto;

    text-align:center;

}

.cta-kicker{

    display:inline-block;

    margin-bottom:20px;

    padding:10px 22px;

    border-radius:50px;

    background:#eef7d7;

    color:#a6ce39;

    font-size:.90rem;

    font-weight:700;

    letter-spacing:2px;

    text-transform:uppercase;

}

.cta-wrapper h2{
    margin: auto;
    font-size: 44px;
    line-height: 1.1;
    font-weight: 700;
    color: #a6ce39;
}

.cta-text{

    margin: 25px auto 0;
    font-size: 20px;
    line-height: 1.7;
    color: #5f6c87;

}

.cta-text strong{

    color: #5f6c87;

    font-weight:700;

}

/*==============================================================
BOTONES
==============================================================*/

.cta-buttons{

     display:flex;
    justify-content:center;
    align-items:center;
    gap:28px;
    margin-top:35px;

    flex-wrap:wrap;

    align-content:center;   

}


/*----------------------------------
Botón secundario
----------------------------------*/

.cta-btn-secondary{

    display:inline-flex;

    flex:0 0 auto;     /* IMPORTANTE */

    width:auto;

    max-width:100%;

    align-items:center;

    justify-content:center;

    padding:16px 34px;

    border-radius:60px;

    border:2px solid #a8cf3a;

    color:#a8cf3a;

    font-weight:700;

    gap:12px;
}

.cta-btn-secondary:hover{

    background:#a8cf3a;

    color:#fff;

    transform:translateY(-4px);
}



/*==============================================================
RESPONSIVE
==============================================================*/

@media (max-width:991px){

.cta-wrapper h2{

    font-size:48px;

}

.cta-text{

    font-size:1.25rem;

}


}

@media (max-width:767px){

.franchise-cta{

    padding:80px 0;

}

.cta-wrapper h2{

    font-size:36px;

}

.cta-text{

    font-size:1.08rem;

}


}

/*==============================================================
PÁGINAS LEGALES
==============================================================*/

.legal-page{
    padding:170px 0 110px;
    background:#f8fafc;
}


/*==============================================================
CABECERA
==============================================================*/

.legal-header{
    max-width:900px;
    margin:0 auto 70px;
}

.legal-header .section-kicker{
    display:inline-block;
    margin-bottom:18px;
    color:#a8cf3a;
    font-size:.90rem;
    font-weight:700;
    letter-spacing:3px;
    text-transform:uppercase;
}

.legal-header h1{
    max-width: 950px;
    margin: auto;
    font-size: 44px;
    line-height: 1.1;
    font-weight: 700;
    color: #a6ce39;
}

.legal-header p{
    margin: 25px auto 0;
    font-size: 20px;
    line-height: 1.7;
    color: #5f6c87;
}


/*==============================================================
TARJETA PRINCIPAL
==============================================================*/

.legal-card{
    background:#fff;
    border-radius:26px;
    padding:55px 55px 35px;
    border:1px solid #edf2f7;
    box-shadow:0 18px 45px rgba(1,41,112,.06);
}


/*==============================================================
SECCIONES
==============================================================*/

.legal-card section{

    padding:42px 0;

}

.legal-card section + section{

    border-top:1px solid #edf2f7;

}

.legal-card section h2{

    margin:0 0 22px;

    font-size:2rem;

    font-weight:700;

    color:#012970;

}

.legal-card section p{

    margin: 0 0 18px;
    color: #5b6780;
    font-size: 17px;
    line-height: 1.7;

}

.legal-card section p:last-child{

    margin-bottom:0;

}

.legal-card strong{

    color:#5b6780;

}


/*==============================================================
LISTAS
==============================================================*/

.legal-list{
    list-style:none;
    padding:0;
    margin:0;
}

.legal-list li{
    position:relative;
    padding-left:26px;
    margin-bottom:18px;
    color:#5f687b;
    line-height:1.8;
}

.legal-list li:last-child{
    margin-bottom:0;
}

.legal-list li::before{
    content:"";
    position:absolute;
    left:0;
    top:12px;
    width:9px;
    height:9px;
    border-radius:50%;
    background:#a8cf3a;
}


/*==============================================================
RESPONSIVE
==============================================================*/

@media (max-width:991px){

    .legal-page{
        padding:90px 0;
    }

    .legal-card{
        padding:40px 35px;
    }

    .legal-header h1{
        font-size:46px;
    }

    .legal-index ul{
        grid-template-columns:1fr;
        gap:12px;
    }

}

@media (max-width:767px){

    .legal-page{
        padding:70px 0;
    }

    .legal-header{
        margin-bottom:45px;
    }

    .legal-header h1{
        font-size:36px;
    }

    .legal-header p{
        font-size:1.05rem;
    }

    .legal-card{
        padding:28px;
        border-radius:18px;
    }

    .legal-index{
        margin-bottom:30px;
    }

    .legal-index h5{
        font-size:1.2rem;
        margin-bottom:18px;
    }

    .legal-card section{
        padding:28px 0;

    }

    .legal-card section h2{
        font-size:1.65rem;
        margin-bottom:18px;
    }

    .legal-card section p{
        font-size:1rem;
        line-height:1.8;
    }

}

.legal-page a {
	color: #5f687b;
}

.legal-page a:hover {
	color: #a8cf3a;
}

/*--------------------------------------------------------------
# 404 Page
--------------------------------------------------------------*/

.error-404 {

  min-height: calc(100vh - 180px);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;

  padding: 180px 0 100px;
  background: #f8fbff;

}

.error-404 .container {

  max-width: 850px;

}

.logo404 {

  width: 170px;
  margin-bottom: 40px;

}

.error-code {

  font-size: clamp(90px, 12vw, 150px);
  line-height: 1;
  font-weight: 800;
  font-family: var(--heading-font);
  color: var(--heading-color);

  margin-bottom: 20px;

}

.error-404 h1 {

  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;

  margin-bottom: 20px;

}

.error-404 p {

  max-width: 650px;

  margin: 0 auto;

  font-size: 20px;

  line-height: 1.8;

  color: #6c757d;

}

.buttons {

  margin-top: 50px;

  display: flex;

  justify-content: center;

  gap: 20px;

  flex-wrap: wrap;

}

.btn-primary404,
.btn-secondary404 {

  display: inline-flex;

  align-items: center;

  justify-content: center;

  gap: 10px;

  padding: 15px 34px;

  border-radius: 8px;

  font-weight: 600;

  transition: .35s;

}

.btn-primary404 {

  background: #a8cf3a;

  color: #fff;
	
  border-radius: 60px;

}

.btn-primary404:hover {

  background:  #8db72a;

  color: #fff;

}

.btn-secondary404 {

  border: 2px solid #a8cf3a;

  color: #a8cf3a;
	
  border-radius: 60px;

}

.btn-secondary404:hover {

  background: #a8cf3a;

  color: #fff;

}

.links404 {

  margin-top: 70px;

  display: flex;

  justify-content: center;

  flex-wrap: wrap;

  gap: 14px;

  font-size: 16px;

}

.links404 span {

  color: #bfc6cf;

}

.links404 a {

  color: #5d6773;

  font-weight: 500;

}

.links404 a:hover {

  color: var(--accent-color);

}

@media (max-width: 768px) {

  .error-404 {

    padding: 150px 20px 70px;

  }

  .logo404 {

    width: 140px;

    margin-bottom: 30px;

  }

  .error-404 p {

    font-size: 18px;

  }

  .buttons {

    flex-direction: column;

    align-items: center;

  }

  .btn-primary404,
  .btn-secondary404 {

    width: 100%;
    max-width: 320px;

  }

}

.meeting-note {
    max-width: 900px;
    margin: 20px auto 0;
    display: flex;
    align-items: flex-start;
    gap: 14px;
    font-size: 1.05rem;
    line-height: 1.75;
    color: #495057;
    text-align: left;
}

.meeting-note i {
    flex-shrink: 0;
    font-size: 1.4rem;
    color: #012970;
    margin-top: 3px;
}

#submitBtn{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
}

