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

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root {
  --background-color: #ffffff;
  --default-color: #444d4d;
  --heading-color: #201f58;
  --accent-color: #3a8297;
  --surface-color: #ffffff;
  --contrast-color: #ffffff;
}

/* 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: rgba(255, 255, 255, 0.7);
  /* The default color of the main navmenu links */
  --nav-hover-color: #ffffff;
  /* 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: #444d4d;
  /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #060A15;
  /* 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: #f1f8f7;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #060A15;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --accent-color: #ffffff;
  --surface-color: #252525;
  --contrast-color: #ce611e;
}

/* 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: rgb(192 186 190);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, rgb(143, 141, 141), 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,
.php-email-form .sent-message,
.php-email-form .loading {
  display: none;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
  text-align: center;
}

.php-email-form .error-message {
  background: #df1529;
  color: #ffffff;
  text-align: left;
}

.php-email-form .sent-message {
  background: #059652;
  color: #ffffff;
}

.php-email-form .loading {
  background: var(--surface-color);
}

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

.php-email-form .show {
  display: block !important;
}

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

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

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  --background-color: rgba(0, 0, 0, 0);
  --default-color: #ffffff !important;
  --heading-color: #ffffff !important;
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 15px 0;
  transition: all 0.5s;
  z-index: 997;
}

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

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

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

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

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

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

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

  .header .navmenu {
    order: 3;
  }
}

.scrolled .header {
  box-shadow: 0px 0 18px #12182b;
}

@media (max-width: 768px) {
  header.header.fixed-top {
    padding-left: 16px !important;
    padding-right: 60px !important;
  }
}

/* Global Header on Scroll
------------------------------*/
.scrolled .header {
  --background-color: #12182b;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
    margin-left: auto;
    margin-right: auto;
    display: block;
    text-align: center;
  }
}

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

.navmenu li {
  position: relative;
}

.navmenu>ul>li {
  white-space: nowrap;
  padding: 8px 6px;
}

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

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

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

.navmenu>ul>li>a:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: -6px;
  left: 0;
  background-color: #ce611e;
  visibility: hidden;
  width: 0px;
  transition: all 0.3s ease-in-out 0s;
}

.navmenu a:hover:before,
.navmenu li:hover>a:before,
.navmenu .active:before {
  visibility: visible;
  width: 100%;
}

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

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

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

.navmenu .dropdown ul a {
  padding: 10px 16px;
  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;
}

@media (min-width: 992px) {
  #languageSwitcher {
    padding-right: 2rem !important;
    font-size: 1rem !important;
    background-position: right 0.75rem center;
    background-repeat: no-repeat;
    appearance: none;
  }
}


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

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

  .navmenu ul {
    display: none !important;
    list-style: none;
    position: absolute;
    top: 60px;
    left: 20px;
    right: 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: var(--nav-mobile-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    height: auto;
  }

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

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

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

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

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

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    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: 10px !important;
    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: flex !important;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
}

/*-----------------------
 Mobile header
------------------------*/

@media (max-width: 768px) {
  .header>.container-fluid {
    flex-wrap: nowrap !important;
    align-items: center !important;
  }

  .header .logo {
    order: 1;
    margin-right: 8px;
  }

  .btn-getstarted {
    order: 2;
    margin-right: 8px;
    margin-left: 12px;
  }

  .mobile-nav-toggle {
    order: 4;
    margin-left: 5px;
  }

  .btn-getstarted,
  #languageSwitcher {
    font-size: 14px;
    padding: 6px 10px;
  }

  .header .logo h1 {
    font-size: 20px;
    margin-left: 10px;
    margin-right: 12px;
  }
}

@media (max-width: 768px) {
  body {
    padding-top: 80px;
    background-color: #060A15;
    ;
  }
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  color: #060A15;
  background-color: #d0681a;
  font-size: 14px;
  font-weight: 700;
  padding: 20px 0 20px 0;
  position: relative;
}

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

.footer p {
  line-height: 1.3 !important;   /* opcional: ajusta la altura entre líneas */
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  overflow: hidden;
  background-color: var(--background-color);
  transition: all 0.6s ease-out;
}

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

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

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

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

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

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

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

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

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

.page-title .heading {
  padding: 120px 0 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: 82px;
  overflow: clip;
}

@media (max-width: 1199px) {

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

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

.section-title h2 {
  font-size: 13px;
  letter-spacing: 1px;
  font-weight: 700;
  padding: 8px 20px;
  margin: 0;
  background: rgb(246, 230, 238);
  color: #ce611e;
  display: inline-block;
  text-transform: uppercase;
  border-radius: 50px;
  font-family: var(--default-font);
}

.section-title div {
  color: var(--heading-color);
  margin: 10px 0 0 0;
  font-size: 32px;
  font-weight: 700;
  font-family: var(--heading-font);
}

.section-title div .description-title {
  color: rgb(134 31 88);
}

/*--------------------------------------------------------------
# Hero Section - Estilos Generales
--------------------------------------------------------------*/
.hero {
  padding-top: 150px;
  position: relative;
  background-color: var(--background-color);
  overflow: hidden;
  padding-bottom: 120px;
}

@media (max-width: 992px) {
  .hero {
    padding: 120px 0 80px 0;
  }
}

@media (max-width: 768px) {
  .hero {
    padding-top: 150px;
  }
}

/*--------------------------------------------------------------
# Hero Section - Parte Izquierda (Texto, Botones, Stats)
--------------------------------------------------------------*/

.hero .hero-content h2 {
  margin-top: 0rem !important;
  font-weight: 900;
  margin-bottom: 2rem;
  line-height: 1.2;
  color: var(--heading-color);
}

@media (max-width: 768px) {
  .hero .hero-content h2 {
    font-size: 2.5rem !important;
  }
}

.hero .hero-content p {
  font-size: 1.1rem;
  margin-top: 0rem;
  margin-bottom: 3rem;
  color: var(--default-color);
}

.hero .hero-content .hero-btns {
  display: flex;
  gap: 1.5rem;
  margin-top: 3rem;
  margin-bottom: 6rem;
}

@media (max-width: 576px) {
  .hero .hero-content .hero-btns {
    margin-top: 3rem;
    flex-direction: column;
  }
}

.hero .hero-content .hero-btns .btn {
  padding: 12px 30px;
  font-weight: 600;
  border-radius: 5px;
  transition: all 0.3s ease;
}

.hero .hero-content .hero-btns .btn-primary {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--contrast-color);
}

.hero .hero-content .hero-btns .btn-primary:hover {
  background-color: color-mix(in srgb, var(--accent-color), #000 10%);
  border-color: color-mix(in srgb, var(--accent-color), #000 10%);
}

.hero .hero-content .hero-btns .btn-outline {
  background-color: transparent;
  border: 2px solid var(--accent-color);
  color: var(--accent-color);
}

.hero .hero-content .hero-btns .btn-outline:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.hero .hero-content .hero-stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 2.5rem;
}

@media (max-width: 576px) {
  .hero .hero-content .hero-stats {
    flex-wrap: wrap;
    gap: 1.5rem;
  }
}

.hero .hero-content .hero-stats .stat-item h3 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 0.5rem;
}

.hero .hero-content .hero-stats .stat-item p {
  font-size: 0.9rem;
  margin-bottom: 0;
  color: var(--default-color);
}

.hero .hero-content.move-up {
  margin-top: -100px;
}

@media (max-width: 992px) {
  .hero .hero-content {
    margin-bottom: 3rem;
    text-align: center;
  }

  .hero .hero-content .hero-btns {
    justify-content: center;
    margin-top: 2rem;
    /* <-- espacio entre subtítulo y botones */
    margin-bottom: 3rem;
  }

  .hero .hero-content .hero-stats {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .hero-content {
    flex-direction: column;
    align-items: center;
  }
}

/*--------------------------------------------------------------
# Hero Section - Parte Derecha (Imagen)
--------------------------------------------------------------*/
.hero .hero-image {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.hero .hero-image img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  transition: transform 0.5s ease;
}

.hero .hero-image img:hover {
  transform: scale(1.03);
}

@media (max-width: 768px) {
  .hero-image {
    order: 2;
    margin-top: 4rem;
  }
}

/*--------------------------------------------------------------
# Hero Section - Responsive Extra (Orden y texto centrado)
--------------------------------------------------------------*/
@media (max-width: 768px) {
  .text-section {
    order: 1;
    text-align: center;
  }
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about {
  padding: 80px 0;
  background-color: var(--background-color);
}

.about .about-image {
  position: relative;
  margin-bottom: 30px;
}

.about .about-image .main-image {
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about .about-image .experience-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 120px;
  min-height: 120px;
}

@media (max-width: 768px) {
  .about .about-image .experience-badge {
    min-width: 100px;
    min-height: 100px;
    padding: 15px;
    right: 0;
  }
}

.about .about-image .experience-badge .years {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
}

@media (max-width: 768px) {
  .about .about-image .experience-badge .years {
    font-size: 2rem;
  }
}

.about .about-image .experience-badge .text {
  font-size: 0.9rem;
  text-align: center;
  line-height: 1.2;
}

.about .about-content {
  padding-left: 20px;
}

@media (max-width: 992px) {
  .about .about-content {
    padding-left: 0;
    margin-top: 30px;
  }
}

.about .about-content h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: #ce611e;
  ;
}

@media (max-width: 768px) {
  .about .about-content h2 {
    font-size: 2rem;
  }
}

.about .about-content .lead {
  font-size: 1.2rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
  color: var(--default-color);
}

.about .about-content p {
  margin-bottom: 1.5rem;
  color: var(--default-color);
}

.about .about-content .features-row {
  margin-top: 2rem;
  margin-bottom: 2rem;
}

.about .about-content .feature-item {
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
}

.about .about-content .feature-item .icon {
  margin-bottom: 1rem;
  font-size: 2.5rem;
  color: rgb(134 31 88);
  /*#0f134b;*/
}

.about .about-content .feature-item .icon i {
  display: inline-block;
  transition: transform 0.3s ease;
}

.about .about-content .feature-item .icon:hover i {
  transform: translateY(-5px);
}

.about .about-content .feature-item h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--heading-color);
  /*#480f4d;*/
}

.about .about-content .feature-item p {
  font-size: 0.85rem;
  margin-bottom: 0;
}

.about .about-content .cta-button {
  margin-top: 1rem;
}

.about .about-content .cta-button .btn-primary:hover {
  background-color: color-mix(in srgb, #e28144, #000 10%);
  border-color: color-mix(in srgb, #e28144, #000 10%);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.section-heading {
  background-color: rgb(246, 230, 238);
  padding: 6px 16px;
  display: inline-block;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  color: #ce611e;
  margin-bottom: 10px;
}

.about-pill {
  text-align: center;
}

/*--------------------------------------------------------------
# Work Process Section
--------------------------------------------------------------*/
.work-process .steps-content {
  padding-right: 30px;
  margin-bottom: 40px;
}

@media (max-width: 992px) {
  .work-process .steps-content {
    padding-right: 0;
  }
}

.work-process .steps-content h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: rgb(134 31 88);
}

@media (max-width: 768px) {
  .work-process .steps-content h2 {
    font-size: 2rem;
  }
}

.work-process .steps-content .lead {
  font-size: 1.2rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
  color: var(--default-color);
}

.work-process .steps-content p {
  margin-bottom: 2rem;
  color: var(--default-color);
}

.work-process .steps-content .steps-cta {
  display: flex;
  gap: 15px;
}

@media (max-width: 576px) {
  .work-process .steps-content .steps-cta {
    flex-direction: column;
  }
}

.work-process .steps-content .steps-cta .btn {
  padding: 12px 30px;
  font-weight: 600;
  border-radius: 5px;
  transition: all 0.3s ease;
}

.work-process .steps-content .steps-cta .btn-primary {
  background-color: #ce611e;
  border-color: #ce611e;
  color: var(--contrast-color);
}

.work-process .steps-content .steps-cta .btn-primary:hover {
  background-color: color-mix(in srgb, #e28144, #000 10%);
  border-color: color-mix(in srgb, #e28144, #000 10%);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.work-process .steps-content .steps-cta .btn-outline {
  background-color: transparent;
  border: 2px solid #ce611e;
  color: #ce611e;
}

.work-process .steps-content .steps-cta .btn-outline:hover {
  background-color: #e28144;
  color: var(--contrast-color);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.work-process .steps-list {
  position: relative;
}

.work-process .steps-list::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 25px;
  width: 2px;
  background-color: color-mix(in srgb, #ce611e, transparent 70%);
}

@media (max-width: 576px) {
  .work-process .steps-list::before {
    left: 20px;
  }
}

.work-process .steps-list .step-item {
  display: flex;
  margin-bottom: 30px;
  position: relative;
}

.work-process .steps-list .step-item:last-child {
  margin-bottom: 0;
}

.work-process .steps-list .step-item:hover .step-number {
  background-color: #ce611e;
  color: var(--contrast-color);
  transform: scale(1.1);
}

.work-process .steps-list .step-item .step-number {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: color-mix(in srgb, #ce611e 10%, white 90%);
  color: #ce611e;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 700;
  margin-right: 20px;
  z-index: 1;
  transition: all 0.3s ease;
}

@media (max-width: 576px) {
  .work-process .steps-list .step-item .step-number {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
}

.work-process .steps-list .step-item .step-content {
  padding-top: 5px;
}

.work-process .steps-list .step-item .step-content h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--heading-color);
}

@media (max-width: 576px) {
  .work-process .steps-list .step-item .step-content h3 {
    font-size: 1.1rem;
  }
}

.work-process .steps-list .step-item .step-content p {
  font-size: 0.95rem;
  color: var(--default-color);
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services {
  padding: 80px 0;
}

.services .section-title h2.section-heading {
  margin-bottom: 10px;
}

.services .section-title .subheading-container {
  margin-top: 5px;
}

.services .service-card {
  background-color: var(--surface-color);
  border-radius: 10px;
  padding: 30px;
  height: 100%;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
  margin-bottom: 30px;
}

.services .service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.services .service-card:hover .icon-box {
  background-color: #ce611e;
  color: var(--contrast-color);
}

.services .service-card .icon-box {
  width: 70px;
  height: 70px;
  border-radius: 10px;
  background-color: color-mix(in srgb, #ce611e, transparent 90%);
  color: #ce611e;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.services .section-title h2.section-heading {
  margin-bottom: 10px;
  padding: 10px 24px;
  background-color: rgb(246, 230, 238);
  display: inline-block;
  border-radius: 30px;
}

.services .service-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--heading-color);
}

.services .service-card p {
  margin-bottom: 20px;
  color: var(--default-color);
}

.services .service-card .service-features {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
}

.services .service-card .service-features li {
  padding: 8px 0;
  display: flex;
  align-items: center;
  color: var(--default-color);
}

.services .service-card .service-features li i {
  color: #de712e;
  margin-right: 10px;
  font-size: 1.1rem;
}

.services .service-card .read-more:hover {
  color: color-mix(in srgb, var(--accent-color), #000 10%);
}

.services .service-card .read-more:hover i {
  transform: translateX(5px);
}

.services .btn-primary {
  background-color: #ce611e;
  border-color: #ce611e;
  color: var(--contrast-color);
  padding: 12px 30px;
  font-weight: 600;
  border-radius: 5px;
  transition: all 0.3s ease;
}

.services .btn-primary:hover {
  background-color: color-mix(in srgb, #e28144, #000 10%);
  border-color: color-mix(in srgb, #e28144, #000 10%);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.services .section-title {
  margin-bottom: 10px;
}

.services .section-title h2,
.services .section-title span {
  margin: 0;
  padding: 0;
}

.services .container.section-title {
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
}

.subheading-pill {
  display: inline-block;
  background-color: rgba(0, 0, 0, 0.05);
  color: #1e6f9f;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 14px;
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 10px;
}

.container.section-title+.container {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

.col-lg-4.col-md-6[data-aos-delay="300"] .service-card h3 {
  margin-bottom: 0;
}

.col-lg-4.col-md-6[data-aos-delay="300"] .service-card p {
  margin-top: 1.5rem;
  margin-bottom: 1rem;
}

.col-lg-4.col-md-6[data-aos-delay="300"] .service-card ul.service-features {
  margin-top: 1.5rem;
}

/*--------------------------------------------------------------
# Why Choose Us Section
--------------------------------------------------------------*/
.why-choose-us {
  padding: 80px 0 30px 0;
  background-color: var(--background-color);
}

.feature-highlight h2 {
  font-size: 25px !important;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #0056b3;
}

.why-choose-us .features-content {
  padding-right: 30px;
}

@media (max-width: 992px) {
  .why-choose-us .features-content {
    padding-right: 0;
    margin-bottom: 50px;
  }
}

.why-choose-us .features-content h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: rgb(134 31 88);
}

@media (max-width: 768px) {
  .why-choose-us .features-content h2 {
    font-size: 2rem;
  }
}

.why-choose-us .features-content .lead {
  font-size: 1.2rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
  color: var(--default-color);
}

.why-choose-us .features-content p {
  margin-bottom: 2rem;
  color: var(--default-color);
}

.why-choose-us .features-content .features-list .feature-item {
  display: flex;
  margin-bottom: 2rem;
}

.why-choose-us .features-content .features-list .feature-item:last-child {
  margin-bottom: 0;
}

.why-choose-us .features-content .features-list .feature-item .feature-icon {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  border-radius: 10px;
  background-color: color-mix(in srgb, #ce611e, transparent 90%);
  color: #ce611e;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-right: 20px;
  transition: all 0.3s ease;
}

.why-choose-us .features-content .features-list .feature-item .feature-icon:hover {
  background-color: #ce611e;
  color: var(--contrast-color);
  transform: translateY(-5px);
}

.why-choose-us .features-content .features-list .feature-item .feature-text h4 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--heading-color);
}

.why-choose-us .features-content .features-list .feature-item .feature-text p {
  font-size: 0.95rem;
  margin-bottom: 0;
  color: var(--default-color);
}

.why-choose-us .features-image {
  position: relative;
}

.why-choose-us .features-image .main-image {
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 1;
}

.why-choose-us .features-image .stats-card {
  position: absolute;
  top: -30px;
  left: -30px;
  background-color: var(--surface-color);
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  z-index: 2;
  width: 220px;
}

@media (max-width: 768px) {
  .why-choose-us .features-image .stats-card {
    width: 180px;
    padding: 15px;
    top: -20px;
    left: -10px;
  }
}

.why-choose-us .features-image .stats-card .stat-item {
  text-align: center;
}

.why-choose-us .features-image .stats-card .stat-item h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent-color);
  margin-bottom: 5px;
}

@media (max-width: 768px) {
  .why-choose-us .features-image .stats-card .stat-item h3 {
    font-size: 1.2rem;
  }
}

.why-choose-us .features-image .stats-card .stat-item p {
  font-size: 0.8rem;
  margin-bottom: 0;
  color: var(--default-color);
}

@media (max-width: 768px) {
  .why-choose-us .features-image .stats-card .stat-item p {
    font-size: 0.7rem;
  }
}

.why-choose-us .features-image .experience-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  z-index: 2;
}

@media (max-width: 768px) {
  .why-choose-us .features-image .experience-badge {
    padding: 15px;
    right: 0;
  }
}

.why-choose-us .features-image .experience-badge .badge-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.why-choose-us .features-image .experience-badge .badge-content .number {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
}

@media (max-width: 768px) {
  .why-choose-us .features-image .experience-badge .badge-content .number {
    font-size: 2rem;
  }
}

.why-choose-us .features-image .experience-badge .badge-content .text {
  font-size: 0.9rem;
  text-align: center;
  line-height: 1.2;
}

.feature-highlight {
  margin-top: 0.3rem;
  margin-bottom: 1rem;
  padding: 0;
}

.feature-highlight .feature-text {
  margin: 0;
  padding: 0;
}

.feature-highlight h2 {
  margin-top: 0;
  margin-bottom: 0.3rem;
  font-size: 25px !important;
}

.feature-highlight p {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 1rem;
}

.feature-highlight .feature-text h2 {
  margin-bottom: 0px;
}

.feature-highlight .feature-text p {
  margin-top: 0;
}

.feature-highlight .feature-text {
  text-align: center;
  margin-bottom: -35px;
}

.section-title {
  margin-bottom: -50px;
}

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

.section-title>div {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact {
  padding: 80px 0;
  overflow: hidden;
}

.invalid-feedback {
  display: block;
  background-color: #f8d7da;
  color: #842029;
  border: 1px solid #f5c2c7;
  border-radius: 4px;
  padding: 10px;
  margin-top: 5px;
  font-weight: 600;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.contact .contact-info {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-bottom: 30px;
}

@media (max-width: 992px) {
  .contact .contact-info {
    margin-bottom: 40px;
  }
}

.contact .contact-card {
  background-color: var(--surface-color);
  border-radius: 10px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  padding: 30px;
  position: relative;
  overflow: hidden;
}

.contact .contact-card:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: var(--accent-color);
}

.contact .contact-card h3 {
  font-size: 22px;
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 15px;
  position: relative;
  padding-bottom: 15px;
}

.contact .contact-card h3:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 2px;
  background-color: var(--accent-color);
}

.contact .contact-card p {
  color: var(--default-color);
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 25px;
}

.contact .contact-card .contact-details {
  margin-bottom: 25px;
}

.contact .contact-card .contact-details .contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
}

.contact .contact-card .contact-details .contact-item i {
  color: var(--accent-color);
  font-size: 18px;
  margin-right: 15px;
  margin-top: 5px;
  flex-shrink: 0;
}

.contact .contact-card .contact-details .contact-item div h4 {
  font-size: 16px;
  font-weight: 600;
  color: var(--heading-color);
  margin: 0 0 5px;
}

.contact .contact-card .contact-details .contact-item div p {
  font-size: 14px;
  color: var(--default-color);
  margin: 0 0 5px;
  line-height: 1.5;
}

.contact .contact-card .contact-details .contact-item div p:last-child {
  margin-bottom: 0;
}

.contact .contact-card .contact-details .contact-item:last-child {
  margin-bottom: 0;
}

.contact .contact-card .social-links {
  display: flex;
  gap: 12px;
}

.contact .contact-card .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  font-size: 16px;
  transition: all 0.3s ease;
}

.contact .contact-card .social-links a:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-3px);
}

.contact .contact-form-wrapper {
  background-color: var(--surface-color);
  border-radius: 10px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  padding: 35px;
  position: relative;
  overflow: hidden;
}

.contact .contact-form-wrapper:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: rgb(134 31 88);
}

.contact .contact-form-wrapper .php-email-form .form-group {
  margin-bottom: 15px;
}

.contact .contact-form-wrapper .php-email-form .form-group label {
  font-weight: 500;
  color: var(--heading-color);
  margin-bottom: 8px;
  font-size: 14px;
  display: block;
}

.contact .contact-form-wrapper .php-email-form .form-group .form-control {
  height: auto;
  border-radius: 8px;
  padding: 12px 20px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
  color: var(--default-color);
  background-color: var(--surface-color);
  font-size: 14px;
}

.contact .contact-form-wrapper .php-email-form .form-group .form-control:focus {
  border-color: var(--accent-color);
  outline: none;
  box-shadow: none;
}

.contact .contact-form-wrapper .php-email-form .form-group .form-control::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.contact .contact-form-wrapper .php-email-form .form-group textarea.form-control {
  min-height: 150px;
  resize: vertical;
}

.contact .contact-form-wrapper .php-email-form .form-check {
  margin-bottom: 20px;
}

.contact .contact-form-wrapper .php-email-form .form-check .form-check-input {
  margin-top: 0.3em;
}

.contact .contact-form-wrapper .php-email-form .form-check .form-check-input:checked {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
}

.contact .contact-form-wrapper .php-email-form .form-check .form-check-input:focus {
  box-shadow: none;
  border-color: color-mix(in srgb, var(--accent-color), transparent 50%);
}

.contact .contact-form-wrapper .php-email-form .form-check .form-check-label {
  color: var(--default-color);
  font-size: 14px;
  padding-left: 5px;
}

.contact .contact-form-wrapper .php-email-form button {
  background-color: #ce611e;
  color: var(--contrast-color);
  border: none;
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 500;
  font-size: 16px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.contact .contact-form-wrapper .php-email-form button:hover {
  background-color: color-mix(in srgb, #e28144, transparent 20%);
  transform: translateY(-3px);
}

@media (max-width: 992px) {

  .contact .contact-card,
  .contact .newsletter-card,
  .contact .contact-form-wrapper {
    padding: 25px;
  }
}

@media (max-width: 768px) {
  .contact {
    padding: 60px 0;
  }

  .contact .contact-card h3 {
    font-size: 20px;
  }

  .contact .newsletter-card h3 {
    font-size: 18px;
  }
}

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

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

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

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

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

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

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

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

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

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

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

.cta-stats .text {
  display: inline !important;
  opacity: 1 !important;
  visibility: visible !important;
  color: inherit !important;
  font-size: 1rem !important;
}

/*TERMS AND CONDITIONS*/
/* Header específico para Terms */
.terms-page .header {
  --background-color: #ce611e !important;
  --default-color: #ffffff !important;
  --heading-color: #ffffff !important;
  background-color: var(--background-color);
  transition: all 0.5s;
  flex-direction: column;
  text-align: center;
}

.terms-page .header .logo h1:hover {
  color: rgb(134 31 88) !important;
  text-decoration: none !important;
}

.terms-page a {
  text-decoration: none !important;
}

.terms-page a:hover {
  color: rgb(167, 162, 165) !important;
  text-decoration: none !important;
}

.terms-page .breadcrumb-item.active:hover {
  color: rgb(134 31 88);
  cursor: pointer;
}

.terms-page header .breadcrumbs .breadcrumb {
  flex: 1;
  display: flex !important;
  justify-content: center;
  align-items: center;
  margin-top: 5px;
  font-size: 1rem;
  color: #ffffff;
  font-weight: 700;
}

.terms-page header .breadcrumbs .breadcrumb:hover {
  color: #eb801c !important;
  text-decoration: none !important;
}

.terms-page header .breadcrumbs .breadcrumb a {
  color: #ffffff;
  font-weight: 700;
}

.terms-page .page-title .heading {
  position: relative;
  z-index: 2;
  background-color: #eb801c;
  padding: 90px 90px 0;
  color: #ffffff;
}

.terms-page .page-title .heading h1 {
  display: block !important;
  opacity: 1 !important;
  color: #ffffff !important;
  font-weight: 700;
  font-size: 2.5rem;
}

.terms-page .lead {
  font-weight: 500;
}

[data-aos] {
  opacity: 1 !important;
  transform: none !important;
}

.terms-page .terms-sidebar {
  background-color: #f8f9fa;
  border: 1px solid #ddd;
}

.terms-page h2 {
  color: #1a1a1a;
}

.terms-page .terms-sidebar a {
  color: #1a1a1a;
  text-decoration: none;
}

.terms-page .terms-sidebar a:hover {
  color: #060A15;
  text-decoration: underline;
}

.terms-page #main {
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: #333;
}

.terms-page .styled-list {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.terms-page .styled-list li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 10px;
  color: #060A15,
}

.terms-page .services-list a {
  display: block;
  line-height: 1;
  padding: 8px 0 8px 15px;
  border-left: 3px solid color-mix(in srgb, #060A15, transparent 70%);
  margin: 20px 0;
  color: #3a8297;
  transition: 0.3s;
  font-size: 1rem;
  font-weight: 700;
}

.terms-page .styled-list li a:hover {
  color: #316e81;
}

.terms-page .col-lg-8 article {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 2rem;
  color: #333;
  scroll-margin-top: 120px;
}

.terms-page .col-lg-8 article h2 {
  font-weight: 700;
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: rgb(134 31 88);
}

.terms-page .col-lg-8 article p {
  margin-bottom: 1rem;
}

@media (max-width: 992px) {
  .terms-page .terms-sidebar {
    margin-bottom: 2rem;
  }
}

.terms-page ul li i.bi-check-circle {
  color: #ce611e;
  font-size: 1.2rem;
  margin-right: 0.5rem;
  flex-shrink: 0;
  margin-top: 0.15rem;
}

.terms-page a {
  color: rgb(192 186 190);
  font-weight: 700;
  font-size: 1rem;
}

.terms-page ul {
  list-style: none;
}



/*PRIVACY NOTICE*/
/* ===== PRIVACY PAGE STYLES ===== */

/* Header general de la página de privacidad */

.privacy-page .header {
  background: var(--primary-color, rgb(134 31 88));
  transition: all 0.5s;
  flex-direction: column;
  text-align: center;
}

.privacy-page .page-title {
  background: var(--primary-color, rgb(153, 38, 101));
  color: #fff;
  padding: 5px 0 5px 0;
  text-align: center;
  position: relative;
}

/* Título principal */
.privacy-page .page-title h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 10px;
}

/* Subtítulo (lead text) */
.privacy-page .page-title p.lead {
  font-size: 1.1rem;
  font-weight: 400;
  margin-bottom: 0;
  opacity: 0.9;
}

/* Breadcrumbs contenedor */
.privacy-page .breadcrumbs {
  text-align: center;
  margin-top: 10px;
}

/* Items del breadcrumb */
.privacy-page .breadcrumb-item {
  font-size: 0.95rem;
  color: #fff;
  font-weight: 500;
}

.privacy-page .breadcrumb-item a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s;
  font-weight: 790;
}

.privacy-page .breadcrumb-item a:hover {
  color: #ce611e !important;
  text-decoration: none !important;
}

/* Item activo */
.privacy-page .breadcrumb-item.active {
  color: #d9e7f0;
  font-weight: 600;
}

.privacy-page .styled-list {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.privacy-page .styled-list li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 10px;
  color: #060A15,
}

.privacy-page .sublist {
    list-style: none; 
    padding-left: 1.8em; 
}

.privacy-page .sublist li::before {
    content: "●";       
    color: #000;       
    display: inline-block;
    width: 1em;         
    margin-left: -1em;  
}

.privacy-page .services-list a {
  display: block;
  line-height: 1;
  padding: 8px 0 8px 15px;
  border-left: 3px solid color-mix(in srgb, #060A15, transparent 70%);
  margin: 20px 0;
  color: #3a8297;
  transition: 0.3s;
  font-size: 1rem;
  font-weight: 700;
}

.privacy-page .services-list a:hover {
  color: #ce611e !important;
}

.privacy-page .header .logo h1:hover {
  color: #ce611e !important;
  text-decoration: none !important;
}

.privacy-page a {
  text-decoration: none !important;
}

.privacy-page footer {
  color: rgb(0, 0, 0);
  background-color: rgb(134 31 88);
  padding: 20px 0 20px 0 !important;
}

.privacy-page a {
  color: rgb(192 186 190);
  text-decoration: none;
  transition: 0.3s;
  font-weight: 700;
  font-size: 1rem;
}

.privacy-page a:hover {
  color: color-mix(in srgb, rgb(143, 141, 141), transparent 25%);
  text-decoration: none;
}

li[data-i18n="recipients.subitem1"],
li[data-i18n="recipients.subitem2"],
li[data-i18n="recipients.subitem3"] {
  list-style: none;
  position: relative;
  padding-left: 2em;
}

li[data-i18n="recipients.subitem1"]::before,
li[data-i18n="recipients.subitem2"]::before,
li[data-i18n="recipients.subitem3"]::before {
  content: "•";
  position: absolute;
  left: 20px;
  color: #000;
  font-size: 1.2em;
  top: 0;
}

.privacy-page ul li i.bi-check-circle {
  color: rgb(134 31 88);
  margin-right: 8px;
  font-size: 1.2em;
}

.privacy-page ul {
  list-style: none;
}

.privacy-page {
  font-family: 'Arial', sans-serif;
  color: #333;
  line-height: 1.6;
}

/* Títulos h2 */
.privacy-page h2 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-top: 2rem;
  margin-bottom: 1rem;
}

/* Párrafos */
.privacy-page p {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #000000
}

.privacy-page footer p {
  font-size: 14px;
  font-weight: 700;
  color: #111010;
  margin-bottom: 0;
  line-height: 3 !important;
}

/* Listas */
.privacy-page ul {
  list-style: none;
  padding-left: 0;
}

.privacy-page ul li {
  font-size: 1rem;
  font-weight: 400;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
}

/* Todo dentro de la página de privacidad */
.privacy-page {
  font-family: 'Arial', sans-serif;
  color: #333;
  line-height: 1.6;
}

/* Títulos h2 */
.privacy-page h2 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-top: 2rem;
  margin-bottom: 1rem;
  color: #ce611e;
}

/* Listas */
.privacy-page ul {
  list-style: none;
  padding-left: 0;
}

.privacy-page ul li {
  font-size: 1rem;
  font-weight: 400;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
}

.privacy-page h2[id] {
  scroll-margin-top: 100px;
}