:root {

    --green-black: #010f0c;
    --green-dark: #011914;
    --green: #043b30;
    --green-medium: #075343;
    --green-light: #0a725b;

    --gold-dark: #b98b2f;
    --gold: #d3aa4c;
    --gold-light: #f0d27d;

    --white: #ffffff;
    --cream: #f7f3e9;
    --light: #f4f7f5;

    --text: #173b34;
    --gray: #6c7d78;
    --border: #dce6e2;

}


/* ======================================================
 GENERAL
====================================================== */

* {

    margin: 0;
    padding: 0;
    box-sizing: border-box;

}


html {

    scroll-behavior: smooth;

}


body {

    font-family:
        Arial,
        Helvetica,
        sans-serif;

    background: white;

    color: var(--text);

    line-height: 1.5;

    overflow-x: hidden;

}


a {

    text-decoration: none;

}


img {

    display: block;
    max-width: 100%;

}


.container {

    width: 92%;
    max-width: 1280px;

    margin: 0 auto;

}


/* ======================================================
 TOPBAR
====================================================== */

.topbar {

    background:
        var(--green-black);

    color: #d9c999;

    padding: 8px 0;

    font-size: 11px;

}


.topbar-content {

    display: flex;

    justify-content:
        space-between;

    align-items: center;

}


.topbar-hours {

    color: #5fe19e;

    display: flex;

    align-items: center;

    gap: 8px;

    font-weight: 700;

}


.status-dot {

    width: 7px;
    height: 7px;

    border-radius: 50%;

    background: #50df9a;

    box-shadow:
        0 0 12px #50df9a;

}


/* ======================================================
 HEADER
====================================================== */

.header {

    height: 82px;

    background:
        rgba(1,25,20,.98);

    border-bottom:
        1px solid
        rgba(211,170,76,.28);

    position: sticky;

    top: 0;

    z-index: 1000;

}


.header.scrolled {

    box-shadow:
        0 12px 35px
        rgba(0,0,0,.28);

}


.nav-container {

    height: 100%;

    display: flex;

    align-items: center;

}


.brand {

    width: 210px;

}


.navigation {

    margin-left: auto;

    display: flex;

    align-items: center;

    gap: 22px;

}


.navigation a {

    color: white;

    font-size: 11px;

    font-weight: 700;

    position: relative;

}


.navigation a::after {

    content: "";

    position: absolute;

    bottom: -9px;

    left: 0;

    width: 0;

    height: 2px;

    background:
        var(--gold);

    transition: .3s;

}


.navigation a:hover {

    color:
        var(--gold-light);

}


.navigation a:hover::after {

    width: 100%;

}


.header-whatsapp {

    margin-left: 20px;

    background: #25d366;

    color: white;

    padding: 11px 16px;

    border-radius: 7px;

    display: flex;

    align-items: center;

    gap: 8px;

    font-size: 11px;

    font-weight: 800;

}


.header-whatsapp img {

    width: 21px;
    height: 21px;

    object-fit: contain;

}


.menu-toggle {

    display: none;

}


/* ======================================================
 HERO
====================================================== */

.hero {

    min-height: 680px;

    color: white;

    position: relative;

    overflow: hidden;

    background:

        radial-gradient(
            circle at 80% 35%,
            rgba(211,170,76,.25),
            transparent 23%
        ),

        radial-gradient(
            circle at 10% 15%,
            rgba(10,114,91,.55),
            transparent 35%
        ),

        linear-gradient(
            115deg,
            #01130f,
            #043b30 60%,
            #011c16
        );

}


.hero-pattern {

    position: absolute;

    inset: 0;

    opacity: .07;

    background-image:

        radial-gradient(
            circle,
            #fff 1px,
            transparent 1px
        );

    background-size:
        19px 19px;

}


.hero-orbit {

    position: absolute;

    border-radius: 50%;

    border:
        1px solid
        rgba(211,170,76,.20);

}


.orbit-one {

    width: 700px;
    height: 700px;

    right: -190px;
    top: -130px;

}


.orbit-two {

    width: 470px;
    height: 470px;

    right: -5px;
    top: 15px;

}


.hero-container {

    min-height: 680px;

    position: relative;

    z-index: 2;

    display: flex;

    align-items: center;

}


.hero-content {

    width: 58%;

    padding: 50px 0;

}


.hero-status {

    display: inline-flex;

    align-items: center;

    gap: 8px;

    border:
        1px solid
        rgba(93,225,157,.40);

    color: #7be7ae;

    padding: 7px 13px;

    border-radius: 50px;

    font-size: 10px;

    font-weight: 800;

}


.hero-status span {

    width: 8px;
    height: 8px;

    border-radius: 50%;

    background: #50df9a;

}


.hero-tag {

    margin-top: 16px;

    color:
        var(--gold-light);

    font-size: 12px;

    font-weight: 800;

    letter-spacing: 1.7px;

}


.hero h1 {

    margin-top: 16px;

    font-size:
        clamp(48px,6vw,78px);

    line-height: .95;

}


.hero h1 strong {

    display: block;

    margin-top: 11px;

    color:
        var(--gold-light);

    font-size:
        clamp(67px,8vw,105px);

}


.hero h2 {

    margin-top: 25px;

    font-size: 26px;

}


.hero-content > p {

    max-width: 620px;

    color: #cadbd5;

    margin-top: 13px;

}


.hero-location {

    margin-top: 23px;

    padding: 15px 18px;

    max-width: 500px;

    display: flex;

    align-items: center;

    gap: 13px;

    border-left:
        3px solid var(--gold);

    background:
        rgba(255,255,255,.055);

}


.hero-location-icon {

    font-size: 25px;

}


.hero-location > div:last-child {

    display: flex;

    flex-direction: column;

}


.hero-location span {

    color: #b7cac3;

    font-size: 9px;

    letter-spacing: 2px;

}


.hero-location strong {

    color:
        var(--gold-light);

    font-size: 17px;

}


.hero-location b {

    font-size: 21px;

    letter-spacing: 2px;

    margin-top: 4px;

}


.hero-buttons {

    margin-top: 28px;

    display: flex;

    gap: 13px;

}


.btn-whatsapp-main {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 9px;

    padding: 14px 22px;

    background: #25d366;

    color: white;

    border-radius: 7px;

    font-size: 12px;

    font-weight: 800;

    transition: .3s;

}


.btn-whatsapp-main:hover {

    background: #1ebe5b;

    transform:
        translateY(-2px);

}


.btn-whatsapp-main img {

    width: 23px;
    height: 23px;

}


.btn-secondary {

    display: inline-flex;

    align-items: center;

    padding: 14px 23px;

    border:
        1px solid
        rgba(255,255,255,.65);

    border-radius: 7px;

    color: white;

    font-size: 12px;

    font-weight: 700;

}


.hero-features {

    margin-top: 37px;

    display: flex;

    gap: 42px;

}


.hero-features > div {

    display: flex;

    flex-direction: column;

}


.hero-features strong {

    color:
        var(--gold-light);

    font-size: 24px;

}


.hero-features span {

    color: #9eb5ad;

    font-size: 10px;

}


.hero-visual {

    width: 42%;

    min-height: 530px;

    display: flex;

    align-items: center;

    justify-content: center;

    position: relative;

}


.hero-logo-circle {

    width: 420px;
    height: 420px;

    border-radius: 50%;

    border:
        1px solid
        rgba(211,170,76,.45);

    display: flex;

    align-items: center;

    justify-content: center;

    position: relative;

}


.logo-glow {

    position: absolute;

    inset: 60px;

    border-radius: 50%;

    background:
        rgba(211,170,76,.18);

    filter: blur(45px);

}


.hero-logo {

    width: 470px;

    max-width: none;

    position: relative;

    z-index: 2;

}


.open-card {

    position: absolute;

    right: 0;
    bottom: 25px;

    min-width: 230px;

    padding: 18px 22px;

    background:
        rgba(1,25,20,.96);

    border:
        1px solid
        rgba(211,170,76,.65);

    border-radius: 10px;

    display: flex;

    flex-direction: column;

}


.open-card small {

    font-size: 9px;

}


.open-card strong {

    color:
        var(--gold-light);

    font-size: 25px;

}


.open-card p {

    color: #a9beb7;

    font-size: 10px;

}


.open-card b {

    margin-top: 4px;

}


/* ======================================================
 TITULOS
====================================================== */

.section-heading {

    max-width: 760px;

    margin-bottom: 40px;

}


.section-heading > span,
.section-label {

    color:
        var(--green-light);

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 2px;

}


.section-heading h2 {

    margin-top: 8px;

    font-size: 40px;

    line-height: 1.08;

}


.section-heading p {

    margin-top: 12px;

    color:
        var(--gray);

}


.center {

    text-align: center;

    margin-left: auto;
    margin-right: auto;

}


/* ======================================================
 DIVISAS
====================================================== */

.currencies-section {

    padding: 90px 0;

    background:
        var(--cream);

}


.currencies-grid {

    display: grid;

    grid-template-columns:
        repeat(3,1fr);

    gap: 20px;

}


.currency-card {

    position: relative;

    overflow: hidden;

    padding: 31px 20px;

    background: white;

    border:
        1px solid
        var(--border);

    border-radius: 14px;

    text-align: center;

    transition: .35s;

}


.currency-card::before {

    content: "";

    position: absolute;

    top: 0;
    left: 0;

    height: 4px;
    width: 100%;

    background:
        var(--gold);

    transform:
        scaleX(0);

    transition: .35s;

}


.currency-card:hover {

    transform:
        translateY(-7px);

    border-color:
        rgba(211,170,76,.60);

    box-shadow:
        0 18px 35px
        rgba(0,0,0,.09);

}


.currency-card:hover::before {

    transform:
        scaleX(1);

}


.currency-image {

    width: 150px;
    height: 95px;

    margin:
        0 auto 20px;

    overflow: hidden;

    border-radius: 10px;

    border:
        1px solid
        rgba(0,0,0,.08);

    box-shadow:
        0 10px 25px
        rgba(0,0,0,.14);

}


.currency-image img {

    width: 100%;
    height: 100%;

    object-fit: cover;

}


.currency-card h3 {

    color:
        var(--green);

    font-size: 16px;

}


.currency-card span {

    display: inline-block;

    margin-top: 8px;

    color:
        var(--gold-dark);

    font-size: 11px;

    font-weight: 900;

    letter-spacing: 2px;

}


.currency-note {

    margin-top: 34px;

    text-align: center;

    color:
        var(--gray);

}


.currency-note a {

    color:
        var(--green);

    font-weight: 800;

}


/* ======================================================
 HORAS
====================================================== */

.hours-section {

    padding: 52px 0;

}


.hours-container {

    display: grid;

    grid-template-columns:
        .6fr 2.3fr .8fr;

    align-items: center;

    gap: 40px;

}


.hours-number {

    color:
        var(--green);

    font-size: 145px;

    font-weight: 900;

    line-height: .8;

}


.hours-content {

    padding-left: 40px;

    border-left:
        1px solid #c5d0cb;

}


.hours-content > span {

    color:
        var(--gold-dark);

    letter-spacing: 5px;

    font-weight: 800;

}


.hours-content h2 {

    font-size: 35px;

}


.hours-content p {

    margin-top: 10px;

    color:
        var(--gray);

}


.hours-location {

    margin-top: 12px;

    font-size: 12px;

}


.hours-location strong {

    color:
        var(--gold-dark);

}


.hours-badge {

    width: 140px;
    height: 140px;

    border-radius: 50%;

    display: flex;

    flex-direction: column;

    justify-content: center;

    align-items: center;

    background:

        linear-gradient(
            145deg,
            var(--green-medium),
            var(--green-dark)
        );

    color: white;

}


.hours-badge strong {

    font-size: 35px;

}


/* ======================================================
 SERVICIOS
====================================================== */

.services-section {

    padding: 90px 0;

}


.services-grid {

    display: grid;

    grid-template-columns:
        repeat(4,1fr);

    gap: 18px;

}


.service-card {

    min-height: 285px;

    padding: 30px;

    border:
        1px solid
        var(--border);

    border-radius: 14px;

    position: relative;

    transition: .3s;

}


.service-card:hover {

    transform:
        translateY(-6px);

    box-shadow:
        0 18px 35px
        rgba(0,0,0,.08);

}


.service-number {

    position: absolute;

    right: 20px;
    top: 16px;

    color: #dce6e2;

    font-size: 31px;

    font-weight: 800;

}


.service-icon {

    width: 62px;
    height: 62px;

    border-radius: 50%;

    background: #edf4f1;

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 27px;

    margin-bottom: 23px;

}


.service-card h3 {

    font-size: 18px;

}


.service-card p {

    margin-top: 12px;

    min-height: 70px;

    color:
        var(--gray);

    font-size: 12px;

}


.service-card a {

    color:
        var(--green-light);

    font-size: 11px;

    font-weight: 800;

}


/* ======================================================
 FOTOS LOCAL
====================================================== */

.store-gallery {

    padding: 95px 0;

    background:
        #f4f7f5;

}


.store-location-badge {

    max-width: 760px;

    margin:
        -8px auto 35px;

    padding:
        18px 25px;

    border-radius: 10px;

    background:
        var(--green);

    border-left:
        5px solid
        var(--gold);

    text-align: center;

}


.store-location-badge span {

    display: block;

    color: #b8cdc5;

    font-size: 10px;

    letter-spacing: 2px;

}


.store-location-badge strong {

    display: block;

    margin-top: 5px;

    color:
        var(--gold-light);

    font-size: 20px;

    letter-spacing: 1.5px;

}


.store-gallery-grid {

    display: grid;

    grid-template-columns:
        repeat(2,1fr);

    gap: 20px;

}


.store-photo {

    height: 350px;

    overflow: hidden;

    border-radius: 15px;

    position: relative;

    background: #dce7e2;

    box-shadow:
        0 15px 35px
        rgba(0,0,0,.12);

}


.store-photo-main {

    grid-column:
        span 2;

    height: 520px;

}


.store-photo img {

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition:
        transform .5s ease;

}


.store-photo:hover img {

    transform:
        scale(1.04);

}


.store-photo::after {

    content: "";

    position: absolute;

    inset: 0;

    background:

        linear-gradient(
            to top,
            rgba(1,25,20,.90),
            rgba(1,25,20,.05) 58%
        );

}


.store-photo-overlay {

    position: absolute;

    left: 25px;
    right: 25px;
    bottom: 23px;

    z-index: 2;

    display: flex;

    flex-direction: column;

}


.store-photo-overlay span {

    color:
        var(--gold-light);

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 2px;

}


.store-photo-overlay strong {

    color: white;

    font-size: 23px;

}


.store-photo-overlay small {

    margin-top: 3px;

    color: #d0ded9;

}


.store-gallery-actions {

    margin-top: 30px;

    display: flex;

    justify-content: center;

    gap: 12px;

}


.location-primary {

    padding: 13px 20px;

    border-radius: 7px;

    background:
        var(--green);

    color: white;

    font-size: 11px;

    font-weight: 800;

}


.gallery-whatsapp {

    display: flex;

    align-items: center;

    gap: 8px;

    padding: 13px 20px;

    background: #25d366;

    color: white;

    border-radius: 7px;

    font-size: 11px;

    font-weight: 800;

}


.gallery-whatsapp img {

    width: 21px;
    height: 21px;

}


/* ======================================================
 VIAJEROS
====================================================== */

.traveler-section {

    padding: 90px 0;

    color: white;

    background:

        linear-gradient(
            110deg,
            #032b23,
            #075342
        );

}


.traveler-container {

    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 70px;

    align-items: center;

}


.traveler-visual {

    min-height: 410px;

    position: relative;

    display: flex;

    align-items: center;

    justify-content: center;

}


.world-ring {

    position: absolute;

    border-radius: 50%;

    border:
        1px solid
        rgba(211,170,76,.45);

}


.world-ring-one {

    width: 330px;
    height: 330px;

}


.world-ring-two {

    width: 410px;
    height: 410px;

}


.world-symbol {

    color:
        rgba(211,170,76,.20);

    font-size: 220px;

}


.plane-symbol {

    position: absolute;

    color:
        var(--gold-light);

    font-size: 90px;

}


.traveler-card {

    position: absolute;

    right: 30px;
    bottom: 10px;

    padding: 15px 22px;

    background:
        rgba(1,25,20,.92);

    border:
        1px solid
        rgba(211,170,76,.40);

}


.traveler-card strong {

    display: block;

    color:
        var(--gold-light);

    font-size: 26px;

}


.traveler-content h2 {

    margin: 10px 0 22px;

    font-size: 45px;

    line-height: 1.06;

}


.traveler-content p {

    margin-bottom: 14px;

    color: #c3d6cf;

}


.traveler-points {

    margin: 24px 0;

    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 10px;

}


.text-link {

    color:
        var(--gold-light);

}


/* ======================================================
 PROCESO
====================================================== */

.process-section {

    padding: 90px 0;

    background:
        var(--light);

}


.process-grid {

    display: grid;

    grid-template-columns:
        1fr 80px 1fr 80px 1fr;

    align-items: center;

}


.process-card {

    text-align: center;

}


.process-symbol {

    width: 75px;
    height: 75px;

    margin: 12px auto;

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    background:
        var(--green);

    color: white;

    font-size: 30px;

}


.process-card p {

    color:
        var(--gray);

    font-size: 11px;

}


.process-arrow {

    text-align: center;

    font-size: 30px;

}


/* ======================================================
 MEGA HORAS
====================================================== */


.mega-hours-section {

    padding: 90px 0;

    color: white;

    text-align: center;

    background:

        radial-gradient(
            circle at center,
            rgba(211,170,76,.24),
            transparent 30%
        ),

        linear-gradient(
            135deg,
            #064637,
            #011611
        );

}


.mega-top-text {

    color:
        var(--gold-light);

    letter-spacing: 4px;

    font-size: 12px;

}


.mega-hours-content h2 {

    margin-top: 45px;

    color:
        var(--gold-light);

    font-size:
        clamp(120px,16vw,220px);

    line-height: .75;

}


.mega-hours-content h3 {

    font-size:
        clamp(50px,6vw,80px);

    letter-spacing: 8px;

}


.mega-divider {

    width: 70px;
    height: 2px;

    margin: 20px auto;

    background:
        var(--gold);

}


.mega-hours-content h4 {

    color:
        var(--gold-light);

    letter-spacing: 4px;

}


.mega-location {

    max-width: 680px;

    margin:
        32px auto 25px;

    padding:
        27px 35px;

    border-top:
        1px solid
        rgba(211,170,76,.35);

    border-bottom:
        1px solid
        rgba(211,170,76,.35);

}


.mega-location-pin {

    font-size: 30px;

}


.mega-location-terminal {

    letter-spacing: 4px;

}


.mega-location-module {

    margin-top: 10px;

    color:
        var(--gold-light);

    font-size:
        clamp(42px,5vw,64px);

    font-weight: 900;

}


.mega-location-floor {

    font-size:
        clamp(22px,3vw,34px);

    letter-spacing: 6px;

}


.mega-location-local {

    margin-top: 8px;

    color:
        var(--gold-light);

    font-size:
        clamp(26px,4vw,42px);

    font-weight: 900;

    letter-spacing: 4px;

}


.mega-location-address {

    margin-top: 15px;

    color: #b9cdc6;

}


.mega-message {

    margin-bottom: 25px;

    color: #c6d7d1;

}


.mega-actions {

    display: flex;

    justify-content: center;

    gap: 12px;

}


.btn-primary {

    padding: 14px 23px;

    border-radius: 7px;

    background:

        linear-gradient(
            135deg,
            var(--gold-light),
            var(--gold)
        );

    color:
        var(--green);

    font-size: 12px;

    font-weight: 800;

}


.mega-whatsapp {

    display: flex;

    align-items: center;

    gap: 8px;

    padding: 14px 23px;

    border-radius: 7px;

    background: #25d366;

    color: white;

    font-size: 12px;

    font-weight: 800;

}


.mega-whatsapp img {

    width: 22px;
    height: 22px;

}


/* ======================================================
 UBICACION
====================================================== */

.location-section {

    padding: 90px 0;

}


.location-container {

    display: grid;

    grid-template-columns:
        .9fr 1.1fr;

    gap: 60px;

    align-items: center;

}


.location-content h2 {

    font-size: 43px;

}


.location-content > p {

    color:
        var(--gray);

}


.location-highlight {

    margin-top: 25px;

    padding: 20px 22px;

    border-radius: 10px;

    border-left:
        5px solid
        var(--gold);

    background:
        var(--green);

    color: white;

    display: flex;

    flex-direction: column;

}


.location-highlight strong {

    color:
        var(--gold-light);

    font-size: 35px;

}


.location-highlight b {

    font-size: 18px;

}


.location-highlight em {

    color:
        var(--gold-light);

    font-size: 25px;

    font-style: normal;

    font-weight: 900;

}


.location-list {

    margin: 28px 0;

    display: grid;

    gap: 18px;

}


.location-item {

    display: flex;

    gap: 15px;

}


.location-icon {

    width: 43px;
    height: 43px;

    flex-shrink: 0;

    border-radius: 50%;

    background: #eef4f1;

    display: flex;

    align-items: center;

    justify-content: center;

}


.whatsapp-location-icon {

    background: #25d366;

}


.whatsapp-location-icon img {

    width: 23px;
    height: 23px;

}


.location-item > div:last-child {

    display: flex;

    flex-direction: column;

}


.location-item span,
.location-item a {

    color:
        var(--gray);

    font-size: 12px;

}


.location-buttons {

    display: flex;

    gap: 10px;

}


.location-whatsapp {

    padding: 12px 20px;

    border-radius: 6px;

    display: flex;

    align-items: center;

    gap: 7px;

    background: #25d366;

    color: white;

    font-size: 11px;

    font-weight: 800;

}


.location-whatsapp img {

    width: 20px;
    height: 20px;

}


.map-container {

    height: 470px;

    border-radius: 16px;

    overflow: hidden;

    position: relative;

    border:
        1px solid
        var(--border);

}


.map-label {

    position: absolute;

    left: 20px;
    bottom: 20px;

    padding: 14px 20px;

    border-radius: 8px;

    background:
        rgba(1,25,20,.94);

    color: white;

    display: flex;

    flex-direction: column;

}


.map-label strong {

    color:
        var(--gold-light);

}


/* ======================================================
 CONTACTO
====================================================== */

.contact-section {

    padding: 40px 0;

    background: #f5f8f6;

}


.contact-box {

    padding: 34px 42px;

    border-radius: 14px;

    display: grid;

    grid-template-columns:
        auto 1fr auto;

    gap: 28px;

    align-items: center;

    background:

        linear-gradient(
            120deg,
            var(--green),
            var(--green-medium)
        );

    color: white;

}


.contact-whatsapp-icon {

    width: 72px;
    height: 72px;

    border-radius: 50%;

    display: flex;

    justify-content: center;

    align-items: center;

    background: #25d366;

}


.contact-whatsapp-icon img {

    width: 39px;
    height: 39px;

}


.contact-content span,
.contact-content small {

    color:
        var(--gold-light);

}


.contact-button {

    display: flex;

    align-items: center;

    gap: 8px;

    padding: 15px 22px;

    border-radius: 7px;

    background: #25d366;

    color: white;

    font-size: 11px;

    font-weight: 800;

}


.contact-button img {

    width: 23px;
    height: 23px;

}


/* ======================================================
 FOOTER
====================================================== */

.footer {

    background:
        var(--green-black);

    color: white;

}


.footer-main {

    padding: 55px 0;

    display: grid;

    grid-template-columns:
        1.7fr 1fr 1.3fr 1.3fr;

    gap: 45px;

}


.footer-brand img {

    width: 215px;

}


.footer-brand p {

    margin-top: 10px;

    color: #9fb3ac;

    font-size: 11px;

}


.footer-open {

    margin-top: 10px;

    display: flex;

    align-items: center;

    gap: 7px;

    color:
        var(--gold-light);

    font-size: 10px;

}


.footer-open span {

    width: 7px;
    height: 7px;

    border-radius: 50%;

    background: #50df9a;

}


.footer-column {

    display: flex;

    flex-direction: column;

    gap: 9px;

}


.footer-column h3 {

    color:
        var(--gold-light);

}


.footer-column a,
.footer-column p {

    color: #9fb3ac;

    font-size: 10px;

}


.footer-location-important,
.footer-local {

    color:
        var(--gold-light) !important;

    font-weight: 700;

}


.footer-whatsapp {

    display: flex;

    align-items: center;

    gap: 7px;

}


.footer-whatsapp img {

    width: 19px;
    height: 19px;

}


.footer-bottom {

    padding: 18px 0;

    border-top:
        1px solid
        rgba(255,255,255,.10);

    display: flex;

    justify-content:
        space-between;

    color: #71877f;

    font-size: 9px;

}


.webmaster {

    margin-top: 4px;

}


.webmaster strong {

    color:
        var(--gold-light);

}


.footer-legal {

    display: flex;

    gap: 15px;

}


.footer-legal a {

    color: #71877f;

}


/* ======================================================
 WHATSAPP FLOTANTE
====================================================== */

.floating-whatsapp {

    position: fixed;

    right: 25px;
    bottom: 25px;

    width: 64px;
    height: 64px;

    border-radius: 50%;

    background: #25d366;

    display: flex;

    align-items: center;

    justify-content: center;

    z-index: 9999;

    box-shadow:
        0 12px 32px
        rgba(0,0,0,.30);

    transition: .3s;

}


.floating-whatsapp:hover {

    transform:
        scale(1.10);

    background: #20c45a;

}


.floating-whatsapp img {

    width: 37px;
    height: 37px;

    object-fit: contain;

    position: relative;

    z-index: 2;

}


.floating-pulse {

    position: absolute;

    inset: -7px;

    border:
        2px solid
        rgba(37,211,102,.50);

    border-radius: 50%;

    animation:
        whatsappPulse
        2s infinite;

}


@keyframes whatsappPulse {

    0% {

        transform: scale(.85);

        opacity: 1;

    }


    100% {

        transform: scale(1.35);

        opacity: 0;

    }

}


/* ======================================================
 TABLET
====================================================== */

@media (max-width: 1050px) {


    .navigation,
    .header-whatsapp {

        display: none;

    }


    .menu-toggle {

        display: block;

        margin-left: auto;

        padding: 7px 11px;

        border:
            1px solid
            var(--gold);

        background: transparent;

        color: white;

        cursor: pointer;

    }


    .navigation.mobile-open {

        display: flex;

        position: absolute;

        left: 0;
        right: 0;
        top: 82px;

        padding: 25px 5%;

        flex-direction: column;

        align-items: flex-start;

        background:
            var(--green-dark);

    }


    .hero-container {

        flex-direction: column;

        text-align: center;

    }


    .hero-content,
    .hero-visual {

        width: 100%;

    }


    .hero-location {

        margin-left: auto;
        margin-right: auto;

        text-align: left;

    }


    .hero-buttons,
    .hero-features {

        justify-content: center;

    }


    .currencies-grid {

        grid-template-columns:
            repeat(2,1fr);

    }


    .services-grid {

        grid-template-columns:
            repeat(2,1fr);

    }


    .traveler-container,
    .location-container {

        grid-template-columns:
            1fr;

    }


    .footer-main {

        grid-template-columns:
            repeat(2,1fr);

    }

}


/* ======================================================
 CELULAR
====================================================== */

@media (max-width: 700px) {


    .container {

        width: 90%;

    }


    .topbar-content {

        flex-direction: column;

        text-align: center;

        gap: 4px;

    }


    .brand {

        width: 165px;

    }


    .hero {

        min-height: auto;

    }


    .hero-container {

        min-height: auto;

    }


    .hero h1 {

        font-size: 40px;

    }


    .hero h1 strong {

        font-size: 60px;

    }


    .hero-location {

        width: 100%;

    }


    .hero-buttons {

        flex-direction: column;

    }


    .hero-buttons a {

        width: 100%;

    }


    .hero-features {

        gap: 20px;

    }


    .hero-logo-circle {

        width: 270px;
        height: 270px;

    }


    .hero-logo {

        width: 320px;

    }


    .open-card {

        display: none;

    }


    .section-heading h2 {

        font-size: 31px;

    }


    .currencies-grid {

        grid-template-columns:
            repeat(2,1fr);

        gap: 10px;

    }


    .currency-card {

        padding: 22px 10px;

    }


    .currency-image {

        width: 105px;
        height: 70px;

    }


    .currency-card h3 {

        font-size: 12px;

    }


    .hours-container {

        grid-template-columns:
            1fr;

        text-align: center;

    }


    .hours-number {

        font-size: 110px;

    }


    .hours-content {

        padding-left: 0;

        border-left: 0;

    }


    .services-grid {

        grid-template-columns:
            1fr;

    }


    .store-gallery-grid {

        grid-template-columns:
            1fr;

    }


    .store-photo-main {

        grid-column:
            span 1;

    }


    .store-photo,
    .store-photo-main {

        height: 290px;

    }


    .store-location-badge strong {

        font-size: 15px;

    }


    .store-gallery-actions {

        flex-direction: column;

    }


    .store-gallery-actions a {

        width: 100%;

        justify-content: center;

        text-align: center;

    }


    .traveler-points {

        grid-template-columns:
            1fr;

    }


    .process-grid {

        grid-template-columns:
            1fr;

        gap: 25px;

    }


    .process-arrow {

        transform:
            rotate(90deg);

    }


    .mega-hours-content h2 {

        font-size: 135px;

    }


    .mega-hours-content h3 {

        font-size: 43px;

    }


    .mega-location-module {

        font-size: 44px;

    }


    .mega-location-local {

        font-size: 30px;

    }


    .mega-actions {

        flex-direction: column;

    }


    .mega-actions a {

        width: 100%;

        max-width: 310px;

        margin: auto;

        justify-content: center;

    }


    .location-buttons {

        flex-direction: column;

    }


    .location-buttons a {

        justify-content: center;

        text-align: center;

    }


    .map-container {

        height: 360px;

    }


    .contact-box {

        grid-template-columns:
            1fr;

        text-align: center;

    }


    .contact-whatsapp-icon {

        margin: auto;

    }


    .contact-button {

        justify-content: center;

    }


    .footer-main {

        grid-template-columns:
            1fr;

    }


    .footer-bottom {

        flex-direction: column;

        gap: 15px;

    }


    .footer-legal {

        flex-wrap: wrap;

    }


    .floating-whatsapp {

        width: 58px;
        height: 58px;

        right: 16px;
        bottom: 16px;

    }


    .floating-whatsapp img {

        width: 34px;
        height: 34px;

    }

}