/* Montserrat-Regular */
@font-face {
    font-family: 'Montserrat-Bold';
    src: url('../fonts/Montserrat-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

/* Montserrat-Bold */
@font-face {
    font-family: 'Montserrat-Regular';
    src: url('../fonts/Montserrat-Regular.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

:root {
    --default-font: 'Montserrat-Regular', sans-serif;
    --secundary-font: 'Montserrat-Bold', sans-serif;
}

/* Global Colors */
:root {
    --color-1: #1E1E1E;
    --color-2: #ffffff;
    --color-3: #ECECEC;
    --color-4: #D24B3D;
    --color-5: #A6302D;
    --color-6: #2daee2;
    --color-7: #ffe004;
    --color-blue-dark: #1c3f5b;
    --color-blue-light: #59addd;
    --color-yellow: #f9db3a;
    --radius-1: 20px;
    --bs-border-width: 2px;
    --bs-border-style: solid;
    --bs-border-color: #dee2e6;
}

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

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
    color: var(--color-1);
    background-color: var(--color-blue-dark);
    font-family: var(--default-font);
}

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

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

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

.montserrat-regular {
    font-family: var(--default-font);
    font-weight: 400;
}

.montserrat-bold {
    font-family: var(--secundary-font);
    font-weight: 700;
}

.php-email-form {
    webkit-box-shadow: 0 2px 14px 7px rgba(0, 0, 0, 0.1);
    box-shadow: 0 2px 14px 7px rgba(0, 0, 0, 0.1);
}

/*--------------------------------------------------------------
# Global
--------------------------------------------------------------*/
.scrolled .header {
    box-shadow: 0 0 30px 10px rgba(0, 0, 0, 0.1);
}

.form-control {
    border: 1px solid #bbbbbb !important;
    border-radius: var(--radius-1);
    padding: 10px 20px;
    font-size: 20px;
    height: 40px;
    font-weight: 300;
}

.form-select {
    border: 1px solid #bbbbbb !important;
    color: var(--color-2);
    background-color: #848484;
    border-radius: var(--radius-1) 0 0 var(--radius-1);
    padding-left: 20px;
    font-size: 20px;
    height: 40px;
    font-weight: 300;
    appearance: none;
    -webkit-appearance: none;
    padding-right: 2.5rem;
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1rem;
    background-image: url('data:image/svg+xml;utf8,<svg fill="%23ffffff" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" d="M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z"/></svg>');
}

label {
    font-size: 20px;
    color: #1E1E1E;
    font-family: var(--secundary-font);
}

.form-control.phone {
    border-left: 0px solid #bbbbbb !important;
    border-radius: 0 var(--radius-1) var(--radius-1) 0;
    padding: 10px;
}

.sup-price-rate {
    font-size: .5em;
    top: -.9em;
}

/* Index Page Header
------------------------------*/
.index-page .header {
    --color-2: rgba(255, 255, 255, 0);
    --heading-color: #ffffff;
    --nav-color: rgba(255, 255, 255, 0.5);
    --nav-hover-color: #ffffff;
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
    color: var(--color-1);
    background-color: var(--color-2);
    padding: 60px 0 30px 0;
    scroll-margin-top: 98px;
    overflow: clip;
}

.btn-yellow {
    color: var(--color-blue-dark);
    background-color: var(--color-yellow);
    display: inline-block;
    padding: 5px 35px 5px 35px;
    border-radius: var(--radius-1);
    border: 1px solid color-mix(in srgb, var(--color-yellow), transparent 80%);
    font-size: 24px;
    transition: 0.3s;
    cursor: text !important;
    text-decoration: none;
    text-align: left;
    width: fit-content;
    font-family: var(--secundary-font);
}

.btn-yellow:hover {
    background-color: var(--color-yellow);
}

.btn-blue {
    color: var(--color-2);
    background-color: var(--color-blue-dark);
    display: inline-block;
    padding: 5px 35px 5px 35px;
    border-radius: var(--radius-1);
    border: 1px solid color-mix(in srgb, var(--color-blue-light), transparent 80%);
    font-size: 20px;
    transition: 0.3s;
    font-family: var(--secundary-font);
}

.btn-blue:hover {
    color: var(--color-3);
}

.pricing a i {
    color: var(--color-4);
    font-size: 28px;
    vertical-align: middle;
    padding-right: 7px;
}

@media (max-width: 1199px) {
    section,
    .section {
        scroll-margin-top: 64px;
    }
}

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

.section-title h2 {
    font-size: 32px;
    position: relative;
}

.section-title h2:before,
.section-title h2:after {
    content: "";
    width: 50px;
    height: 2px;
    background: var(--color-4);
    display: inline-block;
}

.section-title h2:before {
    margin: 0 15px 10px 0;
}

.section-title h2:after {
    margin: 0 0 10px 15px;
}

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

label {
    color: var(--color-1);
}

.carousel-control-prev {
    margin-left: -24px;
}

.carousel-control-next {
    margin-right: -24px;
}

.logo {
    width: 250px;
}
/*--------------------------------------------------------------
# four Section
--------------------------------------------------------------*/
#four {
    background-color: var(--color-blue-dark);
    display: block;
    position: relative;
}

.four h2 {
    font-size: 2.5rem;
    font-family: var(--secundary-font);
    color: var(--color-2);
}

.etiqueta-aventura {
    display: inline-block;
    background-color: #FFD600; /* amarillo fuerte */
    color: #003B5C;            /* azul oscuro */
    font-weight: bold;
    font-style: italic;
    text-transform: uppercase;
    padding: 0px 5px 0px 5px;
}

@media (max-width: 768px) {
    .four h2 {
        font-size: 20px;
        margin-left: auto;
        margin-right: auto;
        text-align: center;
    }

    .four .btn-yellow {
        margin-left: auto;
        margin-right: auto;
        font-size: 12px;
    }

    .logo {
        width: 200px;
    }

    footer p, footer a {
        font-size: .7rem;
    }
}

/*-------------------------------------------------------------- */
.modal-body ul {
    list-style-type: decimal;
    padding-left: 20px;
}
.modal-body li {
    margin-bottom: 10px;
}
.important-info {
    background: #e8f4f8;
    padding: 15px;
    border-left: 5px solid #0d6efd;
    margin-top: 20px;
}
.important-info h2 {
    font-size: 1.5rem;
    margin-top: 0;
}
.important-info h3 {
    font-size: 1.25rem;
}
.open-modal-btn {
    display: block;
    margin: 20px auto;
    font-size: 16px;
}

.div-block-30 {
    clear: none;
    text-align: left;
    word-break: normal;
    flex: 0 auto;
    justify-content: flex-start;
    align-self: flex-start;
    align-items: center;
    margin-top: 27px;
    margin-bottom: 7px;
    font-family: var(--default-font);;
    display: flex;
    position: static;
    font-size: 20px;
    font-weight: normal;
    margin-left: 30px;
}

.columns {
    width: 100%
}

.div-block-info {
    clear: none;
    text-align: left;
    word-break: normal;
    flex: 0 auto;
    justify-content: flex-start;
    align-self: flex-start;
    align-items: flex-start;
    margin-top: 27px;
    margin-bottom: 7px;
    font-family: var(--secundary-font);
    display: flex;
    position: static;
    font-size: 20px;
    font-weight: normal;
    flex-direction: column;
}

.info-icon {
    width: 100px;
    height: 100px;
}

.promo-text {
    font-size: 18px;
    line-height: 32px;
}

.promo-icon {
    width: 30px;
    height: 30px;
    display: inline-block;
    position: relative;
}

.w-slider {
    text-align: center;
    clear: both;
    -webkit-tap-highlight-color: #0000;
    tap-highlight-color: #0000;
    background: #ffffff;
    position: relative;
    margin-left: auto;
    margin-right: auto;
}

.w-slider-mask {
    z-index: 1;
    white-space: nowrap;
    height: 100%;
    display: block;
    position: relative;
    left: 0;
    right: 0;
    overflow: hidden;
    border-radius: 2.5rem;
    border: 0px solid var(--color-2);
}

.w-slide {
    vertical-align: top;
    white-space: normal;
    text-align: left;
    width: 100%;
    height: 100%;
    display: inline-block;
    position: relative;
}

.w-slider-nav {
    z-index: 2;
    text-align: center;
    -webkit-tap-highlight-color: #0000;
    tap-highlight-color: #0000;
    height: 40px;
    margin: auto;
    padding-top: 10px;
    position: absolute;
    inset: auto 0 0
}

.carousel-control-next, .carousel-control-prev {
    opacity: 1;
}

.carousel-control-prev-icon {
    background-image: url(../img/icos/ICO_IZQUIERDA.svg);
    width: 3em;
    height: 3em;
}

.carousel-control-next-icon {
    background-image: url(../img/icos/ICO_DERECHA.svg);
    width: 3em;
    height: 3em;
}