﻿/**
* Template Name: TravelTime
* Template URL: https://bootstrapmade.com/traveltime-bootstrap-travel-template/
* Updated: Jul 28 2025 with Bootstrap v5.3.7
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

@charset "UTF-8";

/*--------------------------------------------------------------
# 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: #35211f; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #200f0d; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #c3e6e9; /* 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: #ffffff;  /* The default color of the main navmenu links */
  --nav-hover-color: #c3e6e9; /* 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: #35211f; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #c3e6e9; /* 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: #faf9f6;
  --surface-color: #ffffff;
}

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

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
}

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

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

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


/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  --background-color: rgba(0, 0, 0, 0);
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: rgba(0, 0, 0, 0.26);
  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: 8px;
}

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

.header .btn-getstarted,
.header .btn-getstarted:focus {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-size: 14px;
  padding: 8px 26px;
  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, var(--accent-color), transparent 15%);
}

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

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

  .header .navmenu {
    order: 3;
  }
}

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

/* Global Header on Scroll
------------------------------*/
.scrolled .header {
  --background-color: rgba(0, 0, 0, 0.85);
}

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

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

  .navmenu li {
    position: relative;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-color);
    padding: 18px 15px;
    font-size: 14px;
    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;
  }
}


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

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

.page-title:before {
  content: "";
  background-color: color-mix(in srgb, var(--background-color), transparent 50%);
  position: absolute;
  inset: 0;
}

.page-title h1 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 10px;
}

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

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

.page-title .breadcrumbs ol li+li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

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

@media (max-width: 1199px) {

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

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

.section-title h2 {
  font-size: 14px;
  font-weight: 500;
  padding: 0;
  line-height: 1px;
  margin: 0;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  position: relative;
}

.section-title h2::after {
  content: "";
  width: 120px;
  height: 1px;
  display: inline-block;
  background: var(--accent-color);
  margin: 4px 10px;
}

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

/*--------------------------------------------------------------
# Travel Hero Section
--------------------------------------------------------------*/
.travel-hero {
    background: url(../img/bg-header.webp) center center no-repeat;
    background-size: cover;
    padding: 120px 0;
    min-height: 80vh;
    display: grid;
    place-content: center;
}


.travel-hero .content .logo{
    max-width: 80%;
    margin: 0 10%;
}

.travel-hero .img-right{
    max-width: 100%;
}


    .travel-hero .img-right:hover {
        transform: translateY(-5px);
        transition: all 1s ease-in-out;
    }

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

}

@media (max-width: 768px) {
  .travel-hero .content {
    text-align: center;
  }

  .travel-hero .content .lead {
    font-size: 1rem;
  }

  .travel-hero .d-flex {
    justify-content: center !important;
  }
}

/*--------------------------------------------------------------
# Why Us Section
--------------------------------------------------------------*/
section.why-us {
    background-color: #005441
}

.why-us .content-grid {
    margin-bottom: 5rem;
}

.why-us .img-right{
    width: 30%;
    max-width: 400px;
    margin-bottom: 50px;
}

@media (max-width: 768px) {
  .why-us .content-grid {
    margin-bottom: 3rem;
  }
}

.why-us .about-block {
    background: #faecbb;
    padding: 1rem;
    border-radius: 20px;
    height: 100%;
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    transition: all 0.3s ease;
}

.why-us .about-block:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.why-us .about-block .about-header {
  margin-bottom: 2rem;
}

.about-header .titulo{
/*    max-width: 500px;
    width: 30%;*/
height: 150px
}

.why-us .about-block .about-header h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-top: 1rem;
    line-height: 1.3;
}

    .why-us .about-block .about-content p {
        font-size: 1.1rem;
        line-height: 1.7;
        margin-bottom: 1.5rem;
        color: #005441;
        padding: 0 80px;
    }

.why-us .about-block .feature-list {
  margin-top: 2rem;
}

.why-us .about-block .feature-list .feature-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.why-us .about-block .feature-list .feature-item i {
  color: var(--accent-color);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.why-us .about-block .feature-list .feature-item span {
  font-size: 1rem;
  line-height: 1.5;
}


.why-us .section-badge {
  display: inline-block;
  background: color-mix(in srgb, var(--accent-color), transparent 85%);
  color: var(--accent-color);
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.why-us .image-showcase {
  position: relative;
  height: 100%;
}

.why-us .image-showcase .main-image {
  position: relative;
  height: 100%;
  min-height: 400px;
}

.why-us .image-showcase .main-image img {
  height: 100%;
  object-fit: cover;
}

.why-us .image-showcase .main-image .overlay-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--surface-color);
  padding: 1rem 1.5rem;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.why-us .image-showcase .main-image .overlay-badge .badge-content {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.why-us .image-showcase .main-image .overlay-badge .badge-content i {
  font-size: 1.5rem;
  color: var(--accent-color);
}

.why-us .image-showcase .main-image .overlay-badge .badge-content .badge-text strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--heading-color);
}

.why-us .image-showcase .main-image .overlay-badge .badge-content .badge-text span {
  font-size: 0.8rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.about-content .floating-card {
    position: absolute;
    bottom: 0px;
    right: -130px;
    background: transparent;
/*    padding: 1rem;
*/    min-width: 120px;
    width: 25%;
}

.why-us .image-showcase .floating-card img {
  width: 50px;
  height: 50px;
  object-fit: cover;
}

.why-us .image-showcase .floating-card .card-content .rating {
  display: flex;
  align-items: center;
  gap: 0.2rem;
  margin-bottom: 0.5rem;
}

.why-us .image-showcase .floating-card .card-content .rating i {
  color: #ffc107;
  font-size: 0.8rem;
}

.why-us .image-showcase .floating-card .card-content .rating span {
  font-size: 0.8rem;
  font-weight: 600;
  margin-left: 0.5rem;
}

.why-us .image-showcase .floating-card .card-content p {
  margin: 0;
  font-size: 0.85rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}


@media (max-width: 1200px) {
    .about-content .floating-card {
        position: absolute;
        bottom: -90px;
        right: -90px;
        background: transparent;
        /* padding: 1rem; */
        min-width: 120px;
        width: 30%;
    }
}

@media (max-width: 768px) {
    .why-us .about-block {
        padding: 2rem;
        margin-bottom: 2rem;
    }

        .why-us .about-block .about-header h3 {
            font-size: 1.6rem;
        }

    .about-header .titulo {
        max-height: 150px;
        max-width: 100%
    }

    .why-us .about-block .about-content p {
        padding: 0;
    }

    .about-content .floating-card {
        position: absolute;
        bottom: -25%;
        right: 20%;
        padding: 10px;
        min-width: 120px;
        width: 40%;
        left: 50%;
    }


    .why-us .img-right {
        width: 50%;
        max-width: 400px;
        margin-bottom: 30px;
    }

    section.why-us {
        overflow: visible;
    }
    }

@media (max-width: 768px) {
  .why-us .image-showcase .main-image {
    min-height: 300px;
  }

  .why-us .image-showcase .overlay-badge {
    top: 15px;
    right: 15px;
    padding: 0.8rem 1rem;
  }

  .why-us .image-showcase .floating-card {
    position: static;
    margin-top: 1rem;
    transform: none;
  }
}

.why-us .why-choose-wrapper {
  margin-top: 6rem;
}

.why-us .why-choose-wrapper .section-header {
  margin-bottom: 4rem;
}

.why-us .why-choose-wrapper .section-header h3 {
  font-size: 2.5rem;
  font-weight: 700;
  margin: 1rem 0 1.5rem;
  line-height: 1.2;
}

@media (max-width: 768px) {
  .why-us .why-choose-wrapper .section-header h3 {
    font-size: 2rem;
  }
}

.why-us .why-choose-wrapper .section-header p {
  font-size: 1.1rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  max-width: 600px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .why-us .why-choose-wrapper {
    margin-top: 4rem;
  }

  .why-us .why-choose-wrapper .section-header {
    margin-bottom: 2.5rem;
  }
}

.why-us .feature-box {
  text-align: center;
  padding: 2rem;
  border-radius: 16px;
  background: var(--surface-color);
  border: 2px solid transparent;
  transition: all 0.3s ease;
  height: 100%;
}

.why-us .feature-box:hover {
  border-color: var(--accent-color);
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.why-us .feature-box:hover .feature-icon-wrapper {
  transform: scale(1.1);
}

.why-us .feature-box:hover .feature-icon-wrapper .feature-icon {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.why-us .feature-box .feature-icon-wrapper {
  margin-bottom: 1.5rem;
  transition: transform 0.3s ease;
}

.why-us .feature-box .feature-icon-wrapper .feature-icon {
  width: 70px;
  height: 70px;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  font-size: 1.5rem;
  transition: all 0.3s ease;
}

.why-us .feature-box h4 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--heading-color);
}

.why-us .feature-box p {
  font-size: 1rem;
  line-height: 1.6;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  margin: 0;
}

@media (max-width: 768px) {
  .why-us .feature-box {
    padding: 1.5rem;
  }

  .why-us .feature-box .feature-icon-wrapper .feature-icon {
    width: 60px;
    height: 60px;
    font-size: 1.3rem;
  }

  .why-us .feature-box h4 {
    font-size: 1.2rem;
  }

    /*.about-content .floating-card {
        position: absolute;
        bottom: -200px;
        left: 30%;
        background: transparent;*/
        /* padding: 1rem; */
        /*min-width: 120px;
        width: 40%;
        right: 30%;
    }*/
}


/*--------------------------------------------------------------
# Diferencia Section
--------------------------------------------------------------*/

.diferencia .img-right {
    margin-bottom: 50px;
    /*max-width: 500px;
        width: 30%;*/
    height: 150px
}

.diferencia {
    background: url(../img/bg-diferencia.webp) center center no-repeat;
    background-size: cover;
    padding: 120px 0;
    min-height: 80vh;
    display: grid;
    place-content: center;
    background-attachment: fixed;
}

.recuadro {
    background-color: #c3e6e9;
    border: 1px solid #005441;
    border-radius: 10px;
    color: #005441;
    padding: 10px;
    z-index:10
}

    .recuadro:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
        transition: all 0.3s ease;
    }

.diferencia .content-grid .d-flex {
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    height: 100%;
}

.diferencia h5 {
    font-size: 15px;
    font-weight: 800;
    padding-bottom: 10px;
    border-bottom: 1px solid #005441;
    color: #005441;
    padding-top: 5px;
}

.diferencia .ml-60 {
    margin-left: 60px;
}

.diferencia  .col-lg-6 img {
    padding-bottom: 60px;
}

.diferencia .floating-card{
    position:absolute;
    top: -30px;
    right: -30px;
    width: 100px;
}

@media (max-width: 768px) {
    .mr-60{margin-right: 60px}

    .diferencia{
        padding-bottom: 10px
    }

    .diferencia .content-grid .d-flex {
        padding: 10px;
    }

    .diferencia .floating-card {
        position: absolute;
        top: -20px;
        right: 20px;
        width: 100px;
    }

}

@media (max-width: 1200px) {
.recuadro{
    margin-bottom: 20px
}

    .diferencia .mr-60{
        margin-right: 60px
    }
}






    /*--------------------------------------------------------------
# Aplica Section
--------------------------------------------------------------*/

    .aplica .img-right {
        /*    width: 40%;
    max-width: 400px;*/
        margin-bottom: 50px;
        height: 150px;
        max-width: 100%
    }

    .aplica {
        background: url(../img/bg-contact.webp) bottom center;
        background-size: contain;
        padding: 50px 0;
        min-height: 80vh;
        /*    display: grid;*/
        place-content: center;
    }


    .recuadro {
        background-color: #c3e6e9d4;
        border: 1px solid #005441;
        border-radius: 10px;
        color: #005441;
        padding: 10px;
        z-index: 10
    }

    .aplica .content-grid .d-flex {
        display: flex;
        flex-direction: column;
        justify-content: space-evenly;
        height: 100%;
    }

    .aplica h5 {
        font-size: 15px;
        font-weight: 800;
        padding-bottom: 10px;
        border-bottom: 1px solid #005441;
        color: #005441;
        padding-top: 5px;
    }

    .aplica .ml-60 {
        margin-left: 60px;
    }

    .aplica .col-lg-6 img {
        padding-bottom: 60px;
    }

    .aplica .floating-card {
        position: absolute;
        top: -20px;
        right: -20px;
        width: 100px;
    }

#contactForm:hover {
    transform: translateY(-5px);
    transition: all 1s ease-in-out;
}


    @media (max-width: 768px) {
        .recuadro {
            margin-bottom: 20px;
        }

        .aplica .img-right {
            max-width: 100%;
            margin-bottom: 50px;
            max-height: 150px;
            width: auto;
            height: auto;
        }

        .aplica {
            padding: 0;
            background: url(../img/bg-contact.webp) bottom center;
            background-size: cover;
        }
    }


    /*--------------------------------------------------------------
# Call To Action Section
--------------------------------------------------------------*/
    .call-to-action {
        background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 5%) 0%, color-mix(in srgb, var(--accent-color), transparent 5%) 100%);
        position: relative;
        overflow: hidden;
    }

        .call-to-action::before {
            content: "";
            position: absolute;
            top: 0;
            right: 0;
            width: 100%;
            height: 100%;
            background: url("../img/travel/misc-5.webp") center/cover no-repeat;
            opacity: 0.1;
            z-index: 0;
        }

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

        .call-to-action h2 {
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
            color: var(--contrast-color);
        }

    @media (max-width: 768px) {
        .call-to-action h2 {
            font-size: 2.2rem;
        }
    }

    .call-to-action p {
        font-size: 1.1rem;
        margin-bottom: 2.5rem;
        color: color-mix(in srgb, var(--contrast-color), transparent 15%);
        line-height: 1.6;
    }

    .call-to-action .cta-buttons {
        display: flex;
        gap: 1rem;
        justify-content: center;
        margin-bottom: 3rem;
    }

    @media (max-width: 576px) {
        .call-to-action .cta-buttons {
            flex-direction: column;
            align-items: center;
        }
    }

    .call-to-action .cta-buttons .btn-primary,
    .call-to-action .cta-buttons .btn-secondary {
        padding: 12px 30px;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 1px;
        border-radius: 50px;
        transition: all 0.3s ease;
        border: 2px solid transparent;
        text-decoration: none;
        display: inline-block;
    }

    .call-to-action .cta-buttons .btn-primary {
        background-color: var(--contrast-color);
        color: var(--accent-color);
        border-color: var(--contrast-color);
    }

        .call-to-action .cta-buttons .btn-primary:hover {
            background-color: transparent;
            color: var(--contrast-color);
            border-color: var(--contrast-color);
            transform: translateY(-3px);
            box-shadow: 0 10px 30px color-mix(in srgb, var(--default-color), transparent 70%);
        }

    .call-to-action .cta-buttons .btn-secondary {
        background-color: transparent;
        color: var(--contrast-color);
        border-color: var(--contrast-color);
    }

        .call-to-action .cta-buttons .btn-secondary:hover {
            background-color: var(--contrast-color);
            color: var(--accent-color);
            transform: translateY(-3px);
            box-shadow: 0 10px 30px color-mix(in srgb, var(--default-color), transparent 70%);
        }

    .call-to-action .feature-item {
        background-color: color-mix(in srgb, var(--contrast-color), transparent 90%);
        backdrop-filter: blur(10px);
        padding: 2rem 1.5rem;
        border-radius: 15px;
        margin-bottom: 2rem;
        transition: all 0.3s ease;
        border: 1px solid color-mix(in srgb, var(--contrast-color), transparent 80%);
    }

        .call-to-action .feature-item:hover {
            transform: translateY(-10px);
            background-color: color-mix(in srgb, var(--contrast-color), transparent 85%);
            box-shadow: 0 20px 40px color-mix(in srgb, var(--default-color), transparent 80%);
        }

        .call-to-action .feature-item .icon {
            width: 70px;
            height: 70px;
            background-color: var(--contrast-color);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1rem;
            transition: all 0.3s ease;
        }

            .call-to-action .feature-item .icon i {
                font-size: 2rem;
                color: var(--accent-color);
            }

        .call-to-action .feature-item h4 {
            color: var(--contrast-color);
            font-size: 1.3rem;
            font-weight: 600;
            margin-bottom: 0.5rem;
        }

        .call-to-action .feature-item p {
            color: color-mix(in srgb, var(--contrast-color), transparent 25%);
            font-size: 0.95rem;
            margin: 0;
            line-height: 1.5;
        }

    .call-to-action .stats-section {
        background-color: color-mix(in srgb, var(--contrast-color), transparent 90%);
        backdrop-filter: blur(10px);
        border-radius: 20px;
        padding: 3rem 2rem;
        margin-top: 3rem;
        border: 1px solid color-mix(in srgb, var(--contrast-color), transparent 80%);
    }

    @media (max-width: 768px) {
        .call-to-action .stats-section {
            padding: 2rem 1rem;
        }
    }

    .call-to-action .stat-item {
        padding: 1rem 0;
    }

        .call-to-action .stat-item .stat-number {
            display: block;
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--contrast-color);
            margin-bottom: 0.5rem;
        }

    @media (max-width: 768px) {
        .call-to-action .stat-item .stat-number {
            font-size: 2rem;
        }
    }

    .call-to-action .stat-item .stat-label {
        display: block;
        font-size: 1rem;
        color: color-mix(in srgb, var(--contrast-color), transparent 25%);
        font-weight: 500;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    @media (max-width: 992px) {
        .call-to-action .feature-item {
            margin-bottom: 1.5rem;
        }
    }

    @media (max-width: 768px) {
        .call-to-action {
            padding: 80px 0;
        }

            .call-to-action .stats-section {
                margin-top: 2rem;
            }
    }

    /*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
    .about .content h2 {
        font-weight: 300;
        font-size: 2.5rem;
        line-height: 1.3;
        margin-bottom: 1.5rem;
    }

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

    .about .content .lead {
        font-size: 1.125rem;
        font-weight: 300;
        color: color-mix(in srgb, var(--default-color), transparent 20%);
        line-height: 1.7;
    }

    .about .content p {
        line-height: 1.8;
        color: color-mix(in srgb, var(--default-color), transparent 15%);
    }

    .about .stat-item {
        padding: 1.5rem 0;
    }

        .about .stat-item .stat-number {
            font-size: 2.5rem;
            font-weight: 300;
            color: var(--accent-color);
            margin-bottom: 0.5rem;
            line-height: 1;
        }

        .about .stat-item .stat-label {
            font-size: 0.875rem;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            color: color-mix(in srgb, var(--default-color), transparent 30%);
        }

    .about .btn-learn-more {
        display: inline-flex;
        align-items: center;
        gap: 0.75rem;
        padding: 0;
        background: none;
        border: none;
        color: var(--accent-color);
        font-size: 1rem;
        font-weight: 400;
        text-decoration: none;
        transition: all 0.3s ease;
    }

        .about .btn-learn-more span {
            border-bottom: 1px solid transparent;
            padding-bottom: 2px;
            transition: border-color 0.3s ease;
        }

        .about .btn-learn-more i {
            font-size: 1.125rem;
            transition: transform 0.3s ease;
        }

        .about .btn-learn-more:hover {
            color: var(--accent-color);
        }

            .about .btn-learn-more:hover span {
                border-bottom-color: var(--accent-color);
            }

            .about .btn-learn-more:hover i {
                transform: translateX(4px);
            }

    .about .image-stack {
        position: relative;
    }

        .about .image-stack .image-main {
            position: relative;
            z-index: 1;
        }

            .about .image-stack .image-main img {
                border-radius: 8px;
                box-shadow: 0 20px 40px color-mix(in srgb, var(--default-color), transparent 90%);
            }

        .about .image-stack .image-overlay {
            position: absolute;
            bottom: -40px;
            right: -40px;
            z-index: 2;
            max-width: 200px;
        }

    @media (max-width: 768px) {
        .about .image-stack .image-overlay {
            bottom: -20px;
            right: -20px;
            max-width: 150px;
        }
    }

    .about .image-stack .image-overlay img {
        border-radius: 8px;
        border: 4px solid var(--background-color);
        box-shadow: 0 15px 30px color-mix(in srgb, var(--default-color), transparent 85%);
    }

    .about .feature-item {
        padding: 2.5rem 1.5rem;
        transition: transform 0.3s ease;
    }

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

        .about .feature-item .feature-icon {
            width: 80px;
            height: 80px;
            margin: 0 auto 1.5rem;
            display: flex;
            align-items: center;
            justify-content: center;
            background: color-mix(in srgb, var(--accent-color), transparent 90%);
            border-radius: 50%;
            transition: all 0.3s ease;
        }

            .about .feature-item .feature-icon i {
                font-size: 2rem;
                color: var(--accent-color);
                transition: all 0.3s ease;
            }

        .about .feature-item h5 {
            font-size: 1.125rem;
            font-weight: 400;
            margin-bottom: 1rem;
            color: var(--heading-color);
        }

        .about .feature-item p {
            font-size: 0.875rem;
            line-height: 1.7;
            color: color-mix(in srgb, var(--default-color), transparent 25%);
            margin: 0;
        }

        .about .feature-item:hover .feature-icon {
            background: var(--accent-color);
            transform: scale(1.05);
        }

            .about .feature-item:hover .feature-icon i {
                color: var(--contrast-color);
            }

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

            .about .image-stack {
                margin-top: 3rem;
            }

            .about .stat-item {
                padding: 1rem 0;
            }

                .about .stat-item .stat-number {
                    font-size: 2rem;
                }
    }



    /*--------------------------------------------------------------
# Contact Section 
--------------------------------------------------------------*/
    form {
        background-color: #fff;
        border-radius: 15px;
        padding: 30px 40px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
        width: 100%;
        border: 1px solid #E6E6E6;
    }

    label {
        font-weight: 600;
        font-size: 14px;
        display: block;
        margin-bottom: 6px;
        color: #004C3F;
    }

    input {
        width: 100%;
        padding: 12px 14px;
        margin-bottom: 18px;
        border-radius: 8px;
        border: 1px solid #E3E3E3;
        background-color: #FAFAF8;
        font-size: 15px;
        color: #333;
        transition: border 0.2s;
    }

        input:focus {
            outline: none;
            border-color: #006652;
        }

    button {
        display: block;
        width: 100%;
        background-color: #004C3F;
        color: #fff;
        border: none;
        border-radius: 8px;
        padding: 14px;
        font-weight: 600;
        font-size: 15px;
        cursor: pointer;
        transition: background-color 0.2s, opacity 0.2s;
    }

        button:hover {
            background-color: #006652;
        }

        button:disabled {
            opacity: .6;
            cursor: not-allowed;
        }

    .alert {
        display: none;
        margin: 0 0 12px 0;
        padding: 10px;
        border-radius: 8px;
        border: 1px solid transparent;
        font-size: 14px;
    }

        .alert.success {
            display: block;
            background: #E7F6EC;
            color: #0F5132;
            border-color: #B7E4C7;
        }

        .alert.error {
            display: block;
            background: #FDE2E1;
            color: #842029;
            border-color: #F5C2C7;
        }

    /*--------------------------------------------------------------
# footer Section
--------------------------------------------------------------*/

    .footer-bottom {
        font-size: 10px;
        letter-spacing: 1px;
        text-align: center;
    }