/**
* Template Name: Bocor
* Template URL: https://bootstrapmade.com/bocor-bootstrap-template-nice-animation/
* Updated: Aug 07 2024 with Bootstrap v5.3.3
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

/*--------------------------------------------------------------
# Font & Color Variables
# Help: https://bootstrapmade.com/color-system/
--------------------------------------------------------------*/
/* Fonts */
:root {
  --default-font: "Roboto",  system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Raleway",  sans-serif;
  --nav-font: "Poppins",  sans-serif;
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root { 
  --background-color: #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: #213b52; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #fdc134; /* 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: #e7f4ff;  /* The default color of the main navmenu links */
  --nav-hover-color: #fdc134; /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #263c51; /* 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: #444444; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #fdc134; /* 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: #344a5f;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #223b51;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #315575;
  --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: white; /* color del texto y enlaces e iconos de arriba de las páginas secundarias  */
  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);
}


@keyframes pulsate-play-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }

  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}

/* PHP Email Form Messages
------------------------------*/
.php-email-form .error-message {
  display: none;
  background: #df1529;
  color: #ffffff;
  text-align: left;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .sent-message {
  display: none;
  color: #ffffff;
  background: #059652;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .loading {
  display: none;
  background: var(--surface-color);
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
}

.php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid var(--accent-color);
  border-top-color: var(--surface-color);
  animation: php-email-form-loading 1s linear infinite;
}

@keyframes php-email-form-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  --background-color: rgba(0, 0, 0, 0);
  --default-color: #ffffff;
  --heading-color: #f90000;
  color: var(--default-color);
  background-color: var(--background-color);
  transition: all 0.5s;
  height: 50px;
}



.header .logo {
  line-height: 1;
}
/*250px y 8px*/
.header .logo img {
  max-height: 250px;
  margin-right: 100px;
}

.logos img   {
 height: 80px; /* ← ESTA es la línea mágica */
  width: auto; 
 margin-right: 350px;

}



.header .logo h1 {
  font-size: 30px;
  margin: 0;
  font-weight: 700;
  color: var(--heading-color);
}

.header .logo span {
  color: var(--accent-color);
  font-size: 30px;
  font-weight: 700;
}

.header .btn-getstarted,
.header .btn-getstarted:focus {
  color: var(--contrast-color);
  font-size: 14px;
  padding: 6px 30px;
  margin: 0 0 0 30px;
  border-radius: 50px;
  transition: 0.3s;
  border: 2px solid var(--accent-color);
}

.header .btn-getstarted:hover,
.header .btn-getstarted:focus:hover {
  color: var(--contrast-color);
  background: var(--accent-color);
}

@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;
  }
}

/* Global Header on Scroll
------------------------------*/
.scrolled .header {
  --background-color: rgba(8, 24, 38, 0.9);
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Navmenu - Desktop */
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }

  .navmenu ul {
    margin: 17px 0 0 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navmenu li {
    position: relative;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-color);
    padding: 18px 15px;
    font-size: 16px;
    font-family: var(--nav-font);
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }

  .navmenu li:last-child a {
    padding-right: 0;
  }

  .navmenu li:hover>a,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-hover-color);
  }

  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu .dropdown ul li {
    min-width: 200px;
  }

  .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    color: var(--nav-dropdown-color);
  }

  .navmenu .dropdown ul a i {
    font-size: 12px;
  }

  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover>a {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
  }

  .navmenu .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: -100%;
    visibility: visible;
  }
}

/* Navmenu - Mobile */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
  }

  .navmenu {
    padding: 0;
    z-index: 9997;
  }

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: var(--nav-mobile-background-color);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-dropdown-color);
    padding: 10px 20px;
    font-family: var(--nav-font);
    font-size: 17px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: rotate(180deg);
  }

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    transition: all 0.5s ease-in-out;
  }

  .navmenu .dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }

  .navmenu .dropdown>.dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: absolute;
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(33, 37, 41, 0.8);
    transition: 0.3s;
  }

  .mobile-nav-active .navmenu>ul {
    display: block;
  }
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  color: var(--default-color);
  background-color: var(--background-color);
  background: url("../img/footer-bg.webp") center center no-repeat;
  background-size: cover;
  font-size: 14px;
  text-align: center;
  padding: 60px 0 30px 0;
  position: relative;
}

.footer:before {
  content: "";
  background: color-mix(in srgb, var(--background-color), transparent 20%);
  position: absolute;
  inset: 0;
}

.footer .container {
  position: relative;
}

.footer h3 {
  font-size: 36px;
  font-weight: 700;
  position: relative;
  padding: 0;
  margin: 0 0 15px 0;
}

.footer p {
  font-size: 15;
  font-style: italic;
  padding: 0;
  margin: 0 0 30px 0;
}

.footer .social-links {
  margin: 0 0 30px 0;
}

.footer .social-links a {
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-color);
  color: var(--contrast-color);
  line-height: 1;
  margin: 0 4px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

.footer .social-links a:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
  text-decoration: none;
}

.footer .copyright {
  padding-top: 25px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.footer .credits {
  font-size: 13px;
  padding-top: 5px;
}

/*--------------------------------------------------------------
# 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: var(--accent-color);
  width: 44px;
  height: 44px;
  border-radius: 50px;
  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, var(--accent-color), transparent 20%);
  color: var(--contrast-color);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
  bottom: 15px;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  color: var(--default-color);
  background-color: var(--background-color);
  position: relative;
}

.page-title .heading {
  padding: 160px 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: 90px;
  overflow: clip;
}

@media (max-width: 1199px) {

  section,
  .section {
    scroll-margin-top: 67px;
  }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  text-align: center;
  padding-bottom: 60px;
  position: relative;
}

.section-title h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

.section-title h2:before {
  content: "";
  position: absolute;
  display: block;
  width: 160px;
  height: 1px;
  background: color-mix(in srgb, var(--default-color), transparent 60%);
  left: 0;
  right: 0;
  bottom: 1px;
  margin: auto;
}

.section-title h2::after {
  content: "";
  position: absolute;
  display: block;
  width: 60px;
  height: 3px;
  background: var(--accent-color);
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

.section-title p {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  width: 100%;
  min-height: 70vh;
  position: relative;
  padding: 120px 0 60px 0;
  display: flex;
  align-items: center;
}

.hero h1 {
  margin: 0;
  font-size: 48px;
  font-weight: 700;
  line-height: 56px;
  color: color-mix(in srgb, var(--heading-color), transparent 20%);
}

.hero p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin: 5px 0 30px 0;
  font-size: 20px;
  font-weight: 400;
}

.hero .btn-get-started {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-family: var(--heading-font);
  font-weight: 400;
  font-size: 15px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 28px 12px 28px;
  border-radius: 50px;
  transition: 0.5s;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
}

.hero .btn-get-started:hover {
  color: var(--contrast-color);
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
}

.hero .btn-watch-video {
  font-size: 16px;
  transition: 0.5s;
  margin-left: 25px;
  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;
}

@media (max-width: 640px) {
  .hero h1 {
    font-size: 28px;
    line-height: 36px;
  }

  .hero p {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;
  }

  .hero .btn-get-started,
  .hero .btn-watch-video {
    font-size: 13px;
  }
}

@keyframes up-down {
  0% {
    transform: translateY(10px);
  }

  100% {
    transform: translateY(-10px);
  }
}



/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about .content h3 {
  font-size: 2rem;
  font-weight: 700;
}

.about .content ul {
  list-style: none;
  padding: 0;
}

.about .content ul li {
  display: flex;
  align-items: flex-start;
  margin-top: 40px;
}

.about .content ul i {
  flex-shrink: 0;
  font-size: 48px;
  color: var(--accent-color);
  margin-right: 20px;
  line-height: 0;
}

.about .content ul h5 {
  font-size: 18px;
  font-weight: 700;
}

.about .content ul p {
  font-size: 15px;
}

.about .content p:last-child {
  margin-bottom: 0;
}

.about .pulsating-play-btn {
  position: absolute;
  left: calc(50% - 47px);
  top: calc(50% - 47px);
}
/*--------------------------------------------------------------
# Featured Services Section
--------------------------------------------------------------*/
.featured-services .img {
  border-radius: 8px;
  overflow: hidden;
}

.featured-services .img img {
  transition: 0.6s;
}

.featured-services .details {
  background: color-mix(in srgb, var(--surface-color), transparent 5%);
  padding: 50px 30px;
  margin: -100px 30px 0 30px;
  transition: all ease-in-out 0.3s;
  position: relative;
  text-align: center;
  border-radius: 8px;
  box-shadow: 0px 0 25px rgba(0, 0, 0, 0.1);
}

.featured-services .details .icon {
  margin: 0;
  width: 72px;
  height: 72px;
  background: var(--accent-color);
  color: var(--contrast-color);
  border: 6px solid var(--contrast-color);
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 28px;
  transition: ease-in-out 0.3s;
  position: absolute;
  top: -36px;
  left: calc(50% - 36px);
}

.featured-services .details h3 {
  font-weight: 700;
  margin: 10px 0 15px 0;
  font-size: 22px;
  transition: ease-in-out 0.3s;
}

.featured-services .details p {
  color: color-mix(in srgb, var(--default-color), transparent 10%);
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.featured-services .service-item:hover .details h3 {
  color: var(--accent-color);
}

.featured-services .service-item:hover .details .icon {
  background: var(--surface-color);
  border: 2px solid var(--accent-color);
}

.featured-services .service-item:hover .details .icon i {
  color: var(--accent-color);
}

.featured-services .service-item:hover .img img {
  transform: scale(1.2);
}

/*--------------------------------------------------------------
# Features Section
--------------------------------------------------------------*/
.features .features-item {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.features .features-item+.features-item {
  margin-top: 100px;
}

@media (max-width: 640px) {
  .features .features-item+.features-item {
    margin-top: 40px;
  }
}

.features .features-item h3 {
  font-weight: 700;
  font-size: 26px;
}

.features .features-item ul {
  list-style: none;
  padding: 0;
}

.features .features-item ul li {
  padding-bottom: 10px;
  display: flex;
  align-items: center;
}

.features .features-item ul li:last-child {
  padding-bottom: 0;
}

.features .features-item ul i {
  font-size: 20px;
  padding-right: 4px;
  color: var(--accent-color);
}

.features .features-item p:last-child {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services .service-item {
  background-color: var(--surface-color);
  padding: 50px 30px;
  margin-top: 36px;
  transition: all ease-in-out 0.3s;
  position: relative;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  text-align: center;
}

.services .service-item .icon {
  background: var(--accent-color);
  color: var(--contrast-color);
  margin: 0;
  width: 72px;
  height: 72px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 28px;
  transition: ease-in-out 0.3s;
  position: absolute;
  top: -36px;
  left: calc(50% - 36px);
  border: 6px solid var(--background-color);
}

.services .service-item h3 {
  font-weight: 700;
  margin: 10px 0 15px 0;
  font-size: 22px;
  transition: ease-in-out 0.3s;
}

.services .service-item p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.services .service-item:hover {
  background: var(--background-color);
}

.services .service-item:hover h3 {
  color: var(--accent-color);
}

.services .service-item:hover .icon {
  background: var(--surface-color);
  border: 2px solid var(--accent-color);
}

.services .service-item:hover .icon i {
  color: var(--accent-color);
}
/*--------------------------------------------------------------
# Faq Section
--------------------------------------------------------------*/
.faq .faq-item {
  margin: 20px 0;
  padding: 20px 0;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
}

.faq .faq-item i {
  color: var(--accent-color);
  font-size: 18px;
  margin-right: 10px;
}

.faq .faq-item h4 {
  font-size: 16px;
  line-height: 26px;
  font-weight: 700;
}

.faq .faq-item p {
  font-size: 15px;
}

.faq .faq-item:first-child {
  padding-top: 0;
  margin-top: 0;
}

.faq .faq-item:last-child {
  border: 0;
  padding-bottom: 0;
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
/* # Contact Section
--------------------------------------------------------------*/
.contact .info-wrap {
  background-color: var(--surface-color);
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
  padding: 30px;
  height: 100%;
}

@media (max-width: 575px) {
  .contact .info-wrap {
    padding: 20px;
  }
}

.contact .info-item {
  margin-bottom: 40px;
}

.contact .info-item:last-child {
  margin-bottom: 0;
}

.contact .info-item i {
  font-size: 20px;
  color: var(--accent-color);
  background: color-mix(in srgb, var(--accent-color), transparent 92%);
  width: 44px;
  height: 44px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
  margin-right: 15px;
  flex-shrink: 0;
}

.contact .info-item h3 {
  padding: 0;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 5px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.contact .info-item p {
  padding: 0;
  margin-bottom: 0;
  font-size: 14px;
}

.contact .info-item:hover i {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.contact .php-email-form {
  background-color: var(--surface-color);
  height: 100%;
  padding: 30px;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
}

@media (max-width: 575px) {
  .contact .php-email-form {
    padding: 20px;
  }
}

.contact .php-email-form input[type=text],
.contact .php-email-form input[type=email],
.contact .php-email-form textarea {
  font-size: 14px;
  padding: 10px 15px;
  box-shadow: none;
  border-radius: 0;
  color: var(--default-color);
  background-color: var(--surface-color);
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

.contact .php-email-form input[type=text]:focus,
.contact .php-email-form input[type=email]:focus,
.contact .php-email-form textarea:focus {
  border-color: var(--accent-color);
}

.contact .php-email-form input[type=text]::placeholder,
.contact .php-email-form input[type=email]::placeholder,
.contact .php-email-form textarea::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.contact .php-email-form label {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  font-weight: 600;
  font-size: 14px;
}

.contact .php-email-form button[type=submit] {
  color: var(--contrast-color);
  background: var(--accent-color);
  border: 0;
  padding: 12px 40px;
  transition: 0.4s;
  border-radius: 50px;
  font-weight: 600;
  margin-top: 10px;
}

.contact .php-email-form button[type=submit]:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 25%);
  transform: translateY(-2px);
}

/* Estilos para el mapa */
.contact .info-wrap iframe {
  border-radius: 4px;
  margin-top: 20px;
}

/* Estilos para la sección del título */
.contact .section-title p {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
}

.contact .section-title .description-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent-color);
}

@media (min-width: 768px) {
  .contact .section-title p {
    flex-direction: row;
    justify-content: center;
    gap: 10px;
  }
}
/*--------------------------------------------------------------
# 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);
}
/*--------------------------------------------------------------
# Service Details Section - CoreBiz Adaptation
--------------------------------------------------------------*/
.service-details-page .service-badge span {
  display: inline-block;
  padding: 8px 24px;
  background: color-mix(in srgb, var(--accent-color), transparent 92%);
  color: var(--accent-color);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 30px;
}

.service-details-page .service-image img {
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.service-details-page .feature-item {
  padding: 30px 20px;
  transition: transform 0.3s ease;
}

.service-details-page .feature-item:hover {
  transform: translateY(-5px);
}

.service-details-page .feature-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-details-page .feature-icon i {
  font-size: 28px;
  color: var(--accent-color);
}

.service-details-page .step-number {
  width: 50px;
  height: 50px;
  background: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 18px;
}

.service-details-page .info-card {
  background: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.service-details-page .info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.service-details-page .price-value {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent-color);
  display: block;
}

.service-details-page .price-label {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.service-details-page .info-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.service-details-page .info-list li {
  padding: 8px 0;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  position: relative;
  padding-left: 20px;
}

.service-details-page .info-list li:last-child {
  border-bottom: none;
}

.service-details-page .info-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent-color);
  font-weight: bold;
}

.service-details-page .author-image {
  width: 60px;
  height: 60px;
  object-fit: cover;
}

.service-details-page .testimonial-content p {
  font-style: italic;
  font-size: 1.1rem;
  line-height: 1.6;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.service-details-page .form-control {
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
  padding: 12px 15px;
  border-radius: 8px;
  transition: border-color 0.3s ease;
}

.service-details-page .form-control:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 0.2rem color-mix(in srgb, var(--accent-color), transparent 80%);
}

.service-details-page .btn-primary {
  background: var(--accent-color);
  border: none;
  padding: 12px 30px;
  border-radius: 8px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.service-details-page .btn-primary:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
  transform: translateY(-2px);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .service-details-page .service-text {
    padding-left: 0 !important;
    margin-top: 30px;
  }
  
  .service-details-page .process-info {
    padding-right: 0 !important;
    margin-bottom: 30px;
  }
  
  .service-details-page .feature-item {
    margin-bottom: 20px;
  }
}



/*--------------------------------------------------------------
# Service Details Section - CoreBiz Style
--------------------------------------------------------------*/
.service-details-page {
  --accent-color: #09947d;
  --heading-color: #172624;
  --default-color: #444444;
  --background-color: #ffffff;
  --surface-color: #ffffff;
  --contrast-color: #ffffff;
}

.service-details-page .topbar {
  background-color: var(--accent-color);
  height: 40px;
  padding: 0;
  font-size: 14px;
}

.service-details-page .topbar .contact-info i {
  font-style: normal;
  color: var(--contrast-color);
}

.service-details-page .topbar .contact-info i a,
.service-details-page .topbar .contact-info i span {
  padding-left: 5px;
  color: var(--contrast-color);
}

.service-details-page .topbar .social-links a {
  color: color-mix(in srgb, var(--contrast-color), transparent 40%);
  line-height: 0;
  transition: 0.3s;
  margin-left: 20px;
}

.service-details-page .topbar .social-links a:hover {
  color: var(--contrast-color);
}

.service-details-page .branding {
  min-height: 60px;
  padding: 10px 0;
  background-color: var(--background-color);
}

.service-details-page .page-title {
  background-color: color-mix(in srgb, var(--default-color), transparent 96%);
  padding: 25px 0;
}

.service-details-page .page-title h1 {
  font-size: 24px;
  font-weight: 600;
}

.service-details-page .breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
  font-weight: 400;
}

.service-details-page .breadcrumbs ol li+li {
  padding-left: 10px;
}

.service-details-page .breadcrumbs ol li+li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

/* Service Intro */
.service-details-page .service-intro .service-badge span {
  display: inline-block;
  padding: 8px 24px;
  background: color-mix(in srgb, var(--accent-color), transparent 92%);
  color: black;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 4px;
}

/* Feature Icons */
.service-details-page .feature-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.service-details-page .feature-icon i {
  font-size: 32px;
  color: var(--accent-color);
  transition: all 0.3s ease;
}

.service-details-page .feature-item:hover .feature-icon {
  background: var(--accent-color);
  transform: scale(1.1);
}

.service-details-page .feature-item:hover .feature-icon i {
  color: var(--contrast-color);
}

/* Process Steps */
.service-details-page .step-number {
  width: 60px;
  height: 60px;
  background: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 20px;
  flex-shrink: 0;
}

/* Info Cards */
.service-details-page .info-card {
  background: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.service-details-page .info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.service-details-page .price-value {
  color: var(--accent-color);
}

.service-details-page .info-list li {
  padding: 12px 0;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  position: relative;
  padding-left: 25px;
}

.service-details-page .info-list li:last-child {
  border-bottom: none;
}

.service-details-page .info-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--accent-color);
  font-weight: bold;
  font-size: 18px;
}

/* Footer */
.service-details-page .footer-newsletter {
  background-color: color-mix(in srgb, var(--accent-color), transparent 96%);
  padding: 50px 0;
}

.service-details-page .footer-newsletter .newsletter-form {
  margin-top: 30px;
  margin-bottom: 15px;
  padding: 6px 8px;
  position: relative;
  background-color: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 80%);
  box-shadow: 0px 2px 25px rgba(0, 0, 0, 0.1);
  display: flex;
  transition: 0.3s;
  border-radius: 4px;
}

.service-details-page .footer-newsletter .newsletter-form input[type=email] {
  border: 0;
  padding: 4px;
  width: 100%;
  background-color: var(--surface-color);
  color: var(--default-color);
}

.service-details-page .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;
}

/* Social Links in Footer */
.service-details-page .footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-right: 10px;
  transition: 0.3s;
}

.service-details-page .footer .social-links a:hover {
  color: var(--accent-color);
  border-color: var(--accent-color);
}

/* Responsive */
@media (max-width: 768px) {
  .service-details-page .service-text {
    padding-left: 0 !important;
    margin-top: 30px;
  }
  
  .service-details-page .process-info {
    padding-right: 0 !important;
    margin-bottom: 30px;
  }
  
  .service-details-page .feature-item {
    margin-bottom: 30px;
  }
  
  .service-details-page .topbar .contact-info {
    justify-content: center;
  }
}


/*--------------------------------------------------------------
# Global Header - CoreBiz Style
--------------------------------------------------------------*/
.service-details-page .header {
  color: var(--default-color);
  transition: all 0.5s;
  z-index: 997;
  background-color: transparent;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
}

/* Topbar SIEMPRE visible */
.service-details-page .topbar {
  background-color: var(--accent-color);
  height: 40px;
  padding: 0;
  font-size: 14px;
  transition: all 0.5s;
}

.service-details-page .topbar .contact-info svg {
  width: 16px;
  height: 16px;
  fill: var(--contrast-color); /* Hereda el blanco/contraste */
  transition: all 0.3s ease;
}
.service-details-page .topbar .contact-info  a,
.service-details-page .topbar .contact-info  span {
  padding-left: 5px;
  color: var(--contrast-color);
  text-decoration: none;
}

.service-details-page .topbar .social-links a {
  display: inline-flex;
  align-items: center;
  margin-left: 20px;
  transition: 0.3s;
}

.service-details-page .topbar .social-links a svg {
  width: 16px;
  height: 16px;
  /* Mantiene tu color-mix original */
  fill: color-mix(in srgb, var(--contrast-color), transparent 40%);
  transition: 0.3s;
}

.service-details-page .topbar .social-links a:hover svg {
  fill: var(--contrast-color); /* Se vuelve sólido al hover */
  transform: scale(1.1);
}


/* Branding INICIALMENTE OCULTO (solo esto se oculta) */
.service-details-page .branding {
  min-height: 0px;
  padding: 10px 0;
  background-color: transparent;
  transition: all 0.5s;
  transform: translateY(-100%);  /* ← Esto lo oculta */
  opacity: 0;                    /* ← Esto lo oculta */
}

.service-details-page .branding .logo h1 {
  font-size: 30px;
  margin: 0;
  font-weight: 700;
  color: var(--contrast-color);
  transition: color 0.3s ease;
}

/* Cuando se hace scroll - MOSTRAR solo el branding */
.service-details-page .scrolled .header {
  background-color: var(--background-color);
  box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}

.service-details-page .scrolled .branding {
  transform: translateY(0);  /* ← Esto lo muestra */
  opacity: 1;                /* ← Esto lo muestra */
  background-color: var(--background-color);
}

.service-details-page .scrolled .branding .logo h1 {
  color: var(--heading-color);
}

/* Asegurar que el main no quede detrás del header */
.service-details-page .main {
  margin-top: 40px; /* Compensa la altura del topbar siempre visible */
}

/* Navegación transparente inicial (oculta junto con el branding) */
.service-details-page .navmenu a {
  color: var(--contrast-color);
  transition: color 0.3s ease;
}

/* Cuando está scrolleado, cambiar colores a normales */
.service-details-page .scrolled .navmenu a {
  color: var(--nav-color);
}

.service-details-page .scrolled .navmenu a:hover,
.service-details-page .scrolled .navmenu .active {
  color: var(--nav-hover-color);
}


/*--------------------------------------------------------------
# Navbar Main - Comportamiento de desvanecimiento
--------------------------------------------------------------*/
.navbar-main {
  background-color: transparent;
  padding: 10px 0;
  transition: all 0.5s ease;
  top: 40px; /* Para que quede debajo del topbar */
  height: 50px;
  transform: translateY(-100%);
  opacity: 0;
  
}

.navbar-main.scrolled {
  background-color: rgba(8, 24, 38, 0.9);
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

/* Asegurar que el contenido principal no quede oculto */
.service-details-page .main {
  margin-top: 40px; /* Solo compensa el topbar fijo */
}

/* Estilos para el navbar cuando está visible */
.navbar-main .logo img {
  max-height: 40px;
  transition: all 0.3s ease;
}

.navbar-main .navmenu a {
  color: var(--contrast-color);
  transition: color 0.3s ease;
}

.navbar-main .navmenu a:hover,
.navbar-main .navmenu .active {
  color: var(--nav-hover-color);
}

.navbar-main .btn-getstarted {
  color: var(--contrast-color);
  background: transparent;
  border: 2px solid var(--accent-color);
  transition: all 0.3s ease;
}

.navbar-main .btn-getstarted:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
}


/* Transición más suave para todos los elementos del navbar */
.navbar-main * {
  transition: all 0.3s ease;
}

/* Asegurar que el topbar siempre sea visible y con el color correcto */
.topbar.dark-background {
  background-color: #066857 !important; /* El color que especificaste */
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 998;
  height: 40px;
}


/* Mostrar el navbar en móviles */
@media (max-width: 1199px) {
  .navbar-main {
    transform: none !important;
    opacity: 1 !important;
    visibility: visible !important;
    top: 10 !important; /* Ajusta si quieres */
  }
}

.navbar-main {
  transform: translateY(-100%);
  opacity: 0;
  visibility: hidden;
}


@media (max-width: 1199px) {
  .navbar-main {
    overflow: hidden !important; /* Evita que el contenido se vea */
    height: auto;
  }

  .navbar-main:not(.scrolled) {
    pointer-events: none; /* evita clics cuando está oculto */
  }

  .navbar-main .logo,
  .navbar-main #navmenu,
  .navbar-main .btn-getstarted {
    opacity: 0 !important;
    transition: opacity 0.3s ease;
  }

  .navbar-main.scrolled .logo,
  .navbar-main.scrolled #navmenu,
  .navbar-main.scrolled .btn-getstarted {
    opacity: 1 !important;
  }
}


/* whatsapp button */

/* Estilos para el Botón Flotante de WhatsApp */
.whatsapp-flotante {
    /* Posición Fija en la pantalla */
    position: fixed;
    /* Ubicación: Inferior Derecha */
    bottom: 80px; /* Separación de 20px desde la parte inferior */
    right: 20px; /* Separación de 20px desde la derecha */
    /* Apariencia */
    z-index: 1000; /* Asegura que esté por encima de otros elementos */
    display: block; /* Mantiene la consistencia del enlace */
}

.whatsapp-flotante img {
    /* Tamaño del Ícono */
    width: 60px; /* Ajusta el tamaño según tu preferencia */
    height: auto;
    /* Efecto Visual */
    border-radius: 50%; /* Si el ícono no es ya circular */
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.4); /* Sombra para que destaque */
    transition: transform 0.3s ease; /* Transición suave para el efecto hover */
}

/* Efecto al pasar el mouse (opcional) */
.whatsapp-flotante:hover img {
    transform: scale(1.1); /* Hace que el ícono crezca ligeramente */
}

/* Opcional: Ajustes para Móviles */
@media (max-width: 600px) {
    .whatsapp-flotante {
        bottom: 80px;
        right: 15px;
    }
    .whatsapp-flotante img {
        width: 50px; /* Un poco más pequeño en dispositivos móviles */
    }
}

/*transicion de iconos*/

/* Estilo base del icono */
.mi-icon-svg {
  width: 40px;      /* Ajusta el tamaño a tu gusto */
  height: 40px;
  fill: #6c757d;    /* Color gris inicial (muted) */
  transition: all 0.4s ease; /* Transición suave para color y movimiento */
}

/* Cuando el usuario entra a cualquier parte del SERVICE-ITEM */
.service-item:hover .mi-icon-svg {
  fill: #ffcd2a;    /* Tu amarillo deseado */
  transform: translateY(-5px); /* Efecto extra: el icono sube un poco */
}

/* 1. Mantenemos el círculo y posición original */
.featured-services .details .icon {
    margin: 0;
    width: 72px;
    height: 72px;
    background: var(--accent-color);
    border: 6px solid var(--contrast-color);
    border-radius: 50%; /* 50% hace un círculo perfecto */
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: ease-in-out 0.3s;
    position: absolute;
    top: -36px;
    left: calc(50% - 36px);
}

/* 2. Estilo del SVG dentro del círculo */
.featured-services .details .icon svg {
    width: 28px;  /* Equivalente al font-size original */
    height: 28px;
    fill: var(--contrast-color); /* Color del icono blanco/contraste */
    transition: ease-in-out 0.3s;
}

/* 3. EFECTO HOVER: Cuando tocas cualquier parte del cuadro */
.featured-services .service-item:hover .details .icon {
    background: var(--surface-color);
    border: 2px solid var(--accent-color);
}

/* 4. Cambiamos el color del SVG a AMARILLO en el hover */
.featured-services .service-item:hover .details .icon svg {
    fill: #ffcd2a; 
} 

.static-icon {
  width: 100px;      /* Ajusta el tamaño a tu gusto */
  height: 100px;
  fill: #ffdf6c;    /* Color gris inicial (muted) */
  transition: all 0.4s ease; /* Transición suave para color y movimiento */
}


/* Contenedor del icono en la lista */
li {
  display: flex; /* Para que el icono y el texto estén alineados */
  align-items: flex-start;
  margin-bottom: 20px;
}

.icon-li {
  margin-right: 15px;
  flex-shrink: 0; /* Evita que el icono se aplaste */
}

.icon-li svg {
  width: 50px;
  height: 50px;
  fill: var(--accent-color); /* Color por defecto */
  transition: fill 0.3s ease;
}

/* EFECTO: Cuando pasas el mouse por el <li> completo */
li:hover .icon-li svg {
  fill: #ffcd2a; /* Cambio a amarillo */
}


/*menu hamburguesa dimensiones*/

/* Estilo para el SVG del menú móvil */
.mobile-nav-toggle svg {
  fill: var(--nav-color, #fff); /* Usa el color de navegación o blanco por defecto */
  transition: fill 0.3s ease;
  cursor: pointer;
}

/* Efecto hover/active */
.mobile-nav-toggle:hover svg {
  fill: #ffcd2a; /* Tu amarillo de marca */
}

/* Ajuste opcional por si el botón tiene fondo */
.mobile-nav-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
}

/*apariencia de arrow scroll*/
.scroll-icon {
  fill: #ffffff; /* Esto la pone blanca */
  transition: fill 0.3s ease;
}

.scroll-top:hover .scroll-icon {
  fill: #ffffff; /* Esto la pone amarilla al pasar el mouse */
}


/* Aplicamos el estilo del círculo al contenedor del SVG */
.contact .info-item .icon-svg-wrapper {
    width: 44px;
    height: 44px;
    background: color-mix(in srgb, var(--accent-color), transparent 92%);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50px;
    transition: all 0.3s ease-in-out;
    margin-right: 15px;
    flex-shrink: 0;
}

/* Estilo para el SVG */
.contact .info-item .icon-svg-wrapper svg {
    width: 20px; /* Tamaño que tenía la fuente antes */
    height: 20px;
    fill: var(--accent-color); /* Color inicial */
    transition: all 0.3s ease-in-out;
}

/* EFECTO HOVER: Cuando pasas el mouse por el item completo */
.contact .info-item:hover .icon-svg-wrapper {
    background: var(--accent-color);
}

.contact .info-item:hover .icon-svg-wrapper svg {
    fill: #ffcd2a !important; /* El amarillo SEO que elegimos */
}

/* El contenedor circular del icono */
.service-details-page .feature-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

/*   ESTA REGLA SIRVE PARA LOS ICONOS INFERIORES DE LAS PÁGINAS SECUNDARIAS SVG */

/* NUEVA REGLA: Para el SVG en lugar del <i> */
.service-details-page .feature-icon svg {
  font-size: 32px;
  width: 1em;       /* Esto hace que el SVG mida 32px */
  height: 1em;
  fill: var(--accent-color); /* Color turquesa */
  transition: all 0.3s ease;
}

/* Efecto hover en el círculo */
.service-details-page .feature-item:hover .feature-icon {
  background: var(--accent-color);
  transform: scale(1.1);
}

/* NUEVA REGLA: El icono se vuelve blanco (o var(--contrast-color)) al hacer hover */
.service-details-page .feature-item:hover .feature-icon svg {
  fill: var(--contrast-color); /* Usualmente blanco */
}

/* CODIGO PARA ICONOS SUPERIORES EN PAGINAS SECUNDARIAS /*

/* --- TOPBAR ACTUALIZADA PARA SVG --- */
.service-details-page .topbar {
  background-color: var(--accent-color);
  height: 40px;
  padding: 0;
  font-size: 14px;
  transition: all 0.5s;
}

/* Reemplaza al antiguo .contact-info i */
.service-details-page .topbar .contact-info svg {
  width: 16px;
  height: 16px;
  fill: var(--contrast-color); /* Hereda el blanco/contraste */
  transition: all 0.3s ease;
}

/* Ajuste para los textos y links junto al icono de la parte superior de páginas secundarias */
.service-details-page .topbar .contact-info a,
.service-details-page .topbar .contact-info span {
  padding-left: 5px;
  color: var(--contrast-color);
  text-decoration: none;
}

/* Redes Sociales */
.service-details-page .topbar .social-links a {
  display: inline-flex;
  align-items: center;
  margin-left: 20px;
  transition: 0.3s;
}

.service-details-page .topbar .social-links a svg {
  width: 16px;
  height: 16px;
  /* Mantiene tu color-mix original */
  fill: color-mix(in srgb, var(--contrast-color), transparent 40%);
  transition: 0.3s;
}

.service-details-page .topbar .social-links a:hover svg {
  fill: var(--contrast-color); /* Se vuelve sólido al hover */
  transform: scale(1.1);
}

/* ESTE CODIGO LO PUSE PARA SOLUCIONAR EL BUG DE LOS ICONOS SUPERIORES EN LAS PAGINAS SECUNDARIAS Y LO SOLUCIONO */
.navbar-main > .container-fluid.container-xl {
  height: 50px !important;
  min-height: 50px !important;
  overflow: hidden; /* Evita que contenido se salga */
}
/* Estilos para animaciones AOS de reemplazo */
[data-aos] {
  opacity: 0;
  transition-property: opacity, transform;
  transition-duration: 0.6s;
  transition-timing-function: ease-in-out;
}

[data-aos="fade-up"] {
  transform: translateY(30px);
}

[data-aos="fade-down"] {
  transform: translateY(-30px);
}

[data-aos="fade-left"] {
  transform: translateX(-30px);
}

[data-aos="fade-right"] {
  transform: translateX(30px);
}

[data-aos="zoom-in"] {
  transform: scale(0.6);
}

[data-aos="zoom-out"] {
  transform: scale(1.2);
}

[data-aos].aos-animate {
  opacity: 1;
  transform: translate(0) scale(1);
}

/* Respetar prefers-reduced-motion para accesibilidad */
@media (prefers-reduced-motion: reduce) {
  [data-aos] {
    transition: none !important;
    transform: none !important;
  }
}



/* Focus styles para accesibilidad */
.lightbox-overlay button:focus {
  outline: 2px solid #4D90FE;
  outline-offset: 2px;
}



/* código para ingresar video de fondo */

#hero {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  color: #fff;
}

/* Video de fondo */
.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: 1;
}

/* Capa oscura encima del video */


/* Contenido encima del overlay */
#hero .container {
  position: relative;
  z-index: 3;
}
