/* ================================================================
   VIBE TRAVEL
   index.css
   https://vibetravel.com.mx/css/index.css
   ================================================================ */


/* ================================================================
   VARIABLES
   ================================================================ */

:root {

    --vibe-coral: #ff5a6b;
    --vibe-coral-dark: #ec4558;

    --vibe-turquoise: #42cfe1;
    --vibe-yellow: #ffb31a;

    --vibe-dark: #121a2c;
    --vibe-dark-soft: #172033;

    --vibe-text: #172033;
    --vibe-text-soft: #667085;

    --vibe-bg: #ffffff;
    --vibe-bg-soft: #f7f8fa;

    --vibe-border: #eaecf0;

    --container: 1180px;

    --radius-sm: 12px;
    --radius-md: 20px;
    --radius-lg: 30px;

    --shadow-sm: 0 8px 30px rgba(18, 26, 44, .07);
    --shadow-md: 0 20px 50px rgba(18, 26, 44, .12);

}


/* ================================================================
   RESET
   ================================================================ */

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 90px;
}

body {
    margin: 0;
    background: var(--vibe-bg);
    color: var(--vibe-text);
    font-family: "DM Sans", sans-serif;
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

body.menu-open {
    overflow: hidden;
}

img {
    display: block;
    width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input {
    font: inherit;
}

button {
    border: 0;
    cursor: pointer;
}

::selection {
    background: var(--vibe-coral);
    color: #fff;
}


/* ================================================================
   GENERAL
   ================================================================ */

.container {
    width: calc(100% - 48px);
    max-width: var(--container);
    margin: 0 auto;
}

.section {
    padding: 110px 0;
}

h1,
h2,
h3,
h4 {
    font-family: "Manrope", sans-serif;
    line-height: 1.08;
}

h2 {
    color: var(--vibe-dark);
    font-size: clamp(2.2rem, 4vw, 4rem);
    font-weight: 800;
    letter-spacing: -2px;
}

.eyebrow {
    display: inline-block;
    margin-bottom: 18px;
    color: var(--vibe-coral);
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: 2.5px;
}

.eyebrow-light {
    color: var(--vibe-turquoise);
}


/* ================================================================
   BUTTONS
   ================================================================ */

.button {
    display: inline-flex;
    min-height: 56px;
    padding: 0 28px;
    align-items: center;
    justify-content: center;
    gap: 10px;

    border-radius: 50px;

    font-weight: 700;

    transition:
        transform .25s ease,
        background .25s ease,
        box-shadow .25s ease;
}

.button:hover {
    transform: translateY(-2px);
}

.button-primary {
    background: var(--vibe-coral);
    color: #fff;

    box-shadow:
        0 12px 30px rgba(255, 90, 107, .32);
}

.button-primary:hover {
    background: var(--vibe-coral-dark);

    box-shadow:
        0 16px 38px rgba(255, 90, 107, .4);
}

.button-glass {
    border: 1px solid rgba(255,255,255,.35);
    background: rgba(255,255,255,.12);
    color: #fff;

    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.button-glass:hover {
    background: rgba(255,255,255,.22);
}


/* ================================================================
   HEADER
   ================================================================ */

.header {
    position: fixed;
    z-index: 1000;
    top: 0;
    right: 0;
    left: 0;

    height: 84px;

    transition:
        background .3s ease,
        box-shadow .3s ease,
        height .3s ease;
}

.header.scrolled {
    height: 72px;

    background: rgba(255,255,255,.94);

    box-shadow:
        0 5px 25px rgba(18,26,44,.07);

    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.nav-container {
    width: calc(100% - 48px);
    max-width: var(--container);
    height: 100%;
    margin: 0 auto;

    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand {
    display: flex;
    align-items: center;
}

.brand img {
    width: auto;
    max-width: 180px;
    height: 54px;
    object-fit: contain;

    transition: height .3s ease;
}

.header.scrolled .brand img {
    height: 46px;
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 34px;
}

.desktop-nav a {
    position: relative;

    color: #fff;

    font-size: .92rem;
    font-weight: 600;

    transition: color .25s ease;
}

.header.scrolled .desktop-nav a {
    color: var(--vibe-dark);
}

.desktop-nav a:not(.nav-cta)::after {
    position: absolute;
    right: 0;
    bottom: -7px;
    left: 0;

    width: 0;
    height: 2px;
    margin: auto;

    background: var(--vibe-coral);

    content: "";

    transition: width .25s ease;
}

.desktop-nav a:hover::after {
    width: 100%;
}

.desktop-nav .nav-cta {
    padding: 12px 21px;

    border: 1px solid rgba(255,255,255,.45);
    border-radius: 50px;
}

.header.scrolled .desktop-nav .nav-cta {
    border-color: var(--vibe-coral);
    background: var(--vibe-coral);
    color: #fff;
}

.mobile-menu-button {
    display: none;

    width: 46px;
    height: 46px;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: rgba(255,255,255,.14);
    color: #fff;
}

.header.scrolled .mobile-menu-button {
    background: var(--vibe-bg-soft);
    color: var(--vibe-dark);
}


/* ================================================================
   MOBILE MENU
   ================================================================ */

.mobile-menu {
    position: fixed;
    z-index: 999;
    top: 72px;
    right: 0;
    left: 0;

    display: none;

    padding: 20px 24px 30px;

    background: #fff;

    box-shadow:
        0 20px 30px rgba(18,26,44,.08);
}

.mobile-menu.active {
    display: flex;
    flex-direction: column;
}

.mobile-menu a {
    padding: 16px 4px;

    border-bottom: 1px solid var(--vibe-border);

    color: var(--vibe-dark);

    font-size: 1.05rem;
    font-weight: 600;
}


/* ================================================================
   HERO
   ================================================================ */

.hero {
    position: relative;

    min-height: 760px;
    height: 92vh;

    display: flex;
    align-items: center;

    overflow: hidden;

    background:
        url("https://vibetravel.com.mx/images/hero-vibe.webp")
        center center / cover no-repeat;
}

.hero-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(10, 18, 35, .78) 0%,
            rgba(10, 18, 35, .50) 45%,
            rgba(10, 18, 35, .10) 100%
        );
}

.hero::after {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            0deg,
            rgba(10,18,35,.55) 0%,
            transparent 35%
        );

    content: "";
}

.hero-content {
    position: relative;
    z-index: 3;

    width: calc(100% - 48px);
    max-width: var(--container);
    margin: 0 auto;
    padding-bottom: 40px;

    color: #fff;
}

.hero-content > * {
    max-width: 720px;
}

.hero-tag {
    display: inline-flex;
    width: auto;
    margin-bottom: 25px;
    padding: 9px 15px;

    align-items: center;
    gap: 9px;

    border: 1px solid rgba(255,255,255,.24);
    border-radius: 50px;

    background: rgba(255,255,255,.10);

    font-size: .85rem;
    font-weight: 600;

    backdrop-filter: blur(10px);
}

.hero-tag-dot {
    width: 8px;
    height: 8px;

    border-radius: 50%;

    background: var(--vibe-turquoise);

    box-shadow:
        0 0 0 5px rgba(66,207,225,.15);
}

.hero h1 {
    margin-bottom: 25px;

    color: #fff;

    font-size: clamp(4rem, 7.5vw, 7rem);
    font-weight: 800;
    letter-spacing: -5px;
    line-height: .93;
}

.hero h1 span {
    display: block;

    color: var(--vibe-turquoise);
}

.hero-content > p {
    max-width: 610px;
    margin-bottom: 35px;

    color: rgba(255,255,255,.87);

    font-size: 1.2rem;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}


/* ================================================================
   HERO FEATURES
   ================================================================ */

.hero-bottom {
    position: absolute;
    z-index: 5;
    right: 0;
    bottom: 0;
    left: 0;

    display: flex;
    justify-content: center;
    gap: 70px;

    padding: 25px 30px;

    border-top: 1px solid rgba(255,255,255,.18);

    color: #fff;

    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 13px;
}

.hero-feature > span {
    color: var(--vibe-turquoise);
    font-size: 28px;
}

.hero-feature strong,
.hero-feature small {
    display: block;
}

.hero-feature strong {
    font-size: .88rem;
}

.hero-feature small {
    margin-top: 1px;

    color: rgba(255,255,255,.62);

    font-size: .74rem;
}


/* ================================================================
   INTRO
   ================================================================ */

.intro {
    background: #fff;
}

.intro-grid {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 100px;
    align-items: center;
}

.intro-copy {
    padding-top: 35px;
}

.intro-copy p {
    margin-bottom: 18px;

    color: var(--vibe-text-soft);

    font-size: 1.12rem;
    line-height: 1.8;
}


/* ================================================================
   SECTION HEADING
   ================================================================ */

.section-heading {
    margin-bottom: 55px;

    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 40px;
}

.section-heading p {
    max-width: 400px;

    color: var(--vibe-text-soft);
}

.section-heading.center {
    display: block;

    text-align: center;
}

.section-heading.center p {
    margin: 20px auto 0;
}


/* ================================================================
   DESTINATIONS
   ================================================================ */

.destinations {
    background: var(--vibe-bg-soft);
}

.destination-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.destination-card {
    position: relative;

    height: 520px;

    overflow: hidden;

    border-radius: var(--radius-md);

    background: var(--vibe-dark);

    box-shadow: var(--shadow-sm);
}

.destination-card img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform .7s cubic-bezier(.2,.7,.2,1);
}

.destination-card:hover img {
    transform: scale(1.06);
}

.destination-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            0deg,
            rgba(10,18,35,.90) 0%,
            rgba(10,18,35,.25) 55%,
            rgba(10,18,35,.03) 100%
        );
}

.destination-content {
    position: absolute;
    z-index: 2;
    right: 0;
    bottom: 0;
    left: 0;

    padding: 32px;

    color: #fff;
}

.destination-content h3 {
    margin-bottom: 10px;

    color: #fff;

    font-size: 2rem;
    font-weight: 700;
}

.destination-content p {
    margin-bottom: 20px;

    color: rgba(255,255,255,.76);

    font-size: .92rem;
    line-height: 1.6;
}

.destination-content a {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    color: #fff;

    font-size: .85rem;
    font-weight: 700;
}

.destination-content a span {
    font-size: 18px;

    transition: transform .25s ease;
}

.destination-content a:hover span {
    transform: translate(3px, -3px);
}


/* ================================================================
   EXPERIENCE
   ================================================================ */

.experience {
    background: #fff;
}

.experience-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 90px;
    align-items: center;
}

.experience-visual {
    position: relative;

    min-height: 650px;

    overflow: visible;
}

.experience-visual > img {
    width: 100%;
    height: 650px;

    border-radius: var(--radius-lg);

    object-fit: cover;

    box-shadow: var(--shadow-md);
}

.experience-badge {
    position: absolute;
    right: -35px;
    bottom: 45px;

    min-width: 205px;
    padding: 20px 24px;

    display: flex;
    align-items: center;
    gap: 14px;

    border-radius: 18px;

    background: #fff;

    box-shadow:
        0 20px 45px rgba(18,26,44,.18);
}

.experience-badge > span {
    color: var(--vibe-coral);
    font-size: 32px;
}

.experience-badge strong,
.experience-badge small {
    display: block;
}

.experience-badge strong {
    color: var(--vibe-dark);
}

.experience-badge small {
    color: var(--vibe-text-soft);
}

.experience-intro {
    margin: 25px 0 38px;

    color: var(--vibe-text-soft);

    font-size: 1.08rem;
    line-height: 1.8;
}

.benefits {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.benefit {
    display: grid;
    grid-template-columns: 55px 1fr;
    gap: 18px;
}

.benefit-icon {
    width: 52px;
    height: 52px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 16px;

    background: rgba(66,207,225,.12);
    color: #20aabd;
}

.benefit-icon span {
    font-size: 26px;
}

.benefit h3 {
    margin-bottom: 6px;

    color: var(--vibe-dark);

    font-size: 1rem;
}

.benefit p {
    color: var(--vibe-text-soft);

    font-size: .9rem;
    line-height: 1.6;
}


/* ================================================================
   INSPIRATION / GALLERY
   ================================================================ */

.inspiration {
    background: var(--vibe-bg-soft);
}

.photo-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 260px;
    gap: 14px;
}

.photo {
    overflow: hidden;

    border-radius: 16px;
}

.photo-large {
    grid-column: span 2;
    grid-row: span 2;
}

.photo-wide {
    grid-column: span 2;
}

.photo img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition:
        transform .6s ease,
        filter .6s ease;
}

.photo:hover img {
    transform: scale(1.04);

    filter: brightness(.92);
}


/* ================================================================
   QUOTE
   ================================================================ */

.quote-section {
    background: #fff;
}

.quote-card {
    position: relative;

    padding: 80px;

    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 90px;
    align-items: center;

    overflow: hidden;

    border-radius: 35px;

    background:
        radial-gradient(
            circle at 10% 10%,
            rgba(66,207,225,.13),
            transparent 30%
        ),
        radial-gradient(
            circle at 95% 90%,
            rgba(255,90,107,.16),
            transparent 30%
        ),
        var(--vibe-dark);

    box-shadow:
        0 30px 70px rgba(18,26,44,.16);
}

.quote-card::before {
    position: absolute;
    top: -100px;
    left: -100px;

    width: 250px;
    height: 250px;

    border: 1px solid rgba(255,255,255,.07);
    border-radius: 50%;

    content: "";
}

.quote-copy {
    position: relative;
    z-index: 2;
}

.quote-copy h2 {
    margin-bottom: 25px;

    color: #fff;
}

.quote-copy p {
    max-width: 460px;

    color: rgba(255,255,255,.65);

    font-size: 1.05rem;
    line-height: 1.8;
}


/* ================================================================
   FORM
   ================================================================ */

.quote-form {
    position: relative;
    z-index: 2;

    padding: 35px;

    border: 1px solid rgba(255,255,255,.10);
    border-radius: 24px;

    background: rgba(255,255,255,.08);

    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
}

.form-group {
    margin-bottom: 18px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.quote-form label {
    display: block;

    margin-bottom: 7px;

    color: rgba(255,255,255,.75);

    font-size: .78rem;
    font-weight: 600;
}

.quote-form input {
    width: 100%;
    height: 52px;

    padding: 0 16px;

    border: 1px solid rgba(255,255,255,.13);
    border-radius: 12px;
    outline: none;

    background: rgba(255,255,255,.08);
    color: #fff;

    transition:
        border .2s ease,
        background .2s ease,
        box-shadow .2s ease;
}

.quote-form input::placeholder {
    color: rgba(255,255,255,.38);
}

.quote-form input:focus {
    border-color: var(--vibe-turquoise);

    background: rgba(255,255,255,.12);

    box-shadow:
        0 0 0 3px rgba(66,207,225,.10);
}

.quote-form input[type="date"] {
    color-scheme: dark;
}

.quote-button {
    width: 100%;
    margin-top: 8px;

    border: none;

    background: var(--vibe-coral);
    color: #fff;
}

.quote-button:hover {
    background: var(--vibe-coral-dark);
}

.form-note {
    display: block;

    margin-top: 15px;

    color: rgba(255,255,255,.42);

    text-align: center;
    font-size: .72rem;
}


/* ================================================================
   FOOTER
   ================================================================ */

footer {
    padding: 75px 0 30px;

    background: var(--vibe-bg-soft);
}

.footer-main {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 80px;

    padding-bottom: 55px;
}

.footer-brand img {
    width: auto;
    max-width: 180px;
    height: 58px;
    margin-bottom: 18px;

    object-fit: contain;
}

.footer-brand p {
    max-width: 300px;

    color: var(--vibe-text-soft);

    font-size: .9rem;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links strong {
    margin-bottom: 8px;

    color: var(--vibe-dark);

    font-size: .85rem;
}

.footer-links a {
    color: var(--vibe-text-soft);

    font-size: .85rem;

    transition:
        color .2s ease,
        transform .2s ease;
}

.footer-links a:hover {
    color: var(--vibe-coral);

    transform: translateX(3px);
}

.footer-bottom {
    padding-top: 25px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    border-top: 1px solid var(--vibe-border);

    color: #98a2b3;

    font-size: .75rem;
}


/* ================================================================
   WHATSAPP FLOAT
   ================================================================ */

.whatsapp-float {
    position: fixed;
    z-index: 900;
    right: 24px;
    bottom: 24px;

    width: 60px;
    height: 60px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #25d366;
    color: #fff;

    box-shadow:
        0 10px 30px rgba(37,211,102,.35);

    transition:
        transform .25s ease,
        box-shadow .25s ease;
}

.whatsapp-float span {
    font-size: 27px;
}

.whatsapp-float:hover {
    transform: translateY(-4px) scale(1.03);

    box-shadow:
        0 15px 38px rgba(37,211,102,.45);
}


/* ================================================================
   TABLET
   ================================================================ */

@media (max-width: 1024px) {

    .section {
        padding: 90px 0;
    }

    .desktop-nav {
        gap: 20px;
    }

    .hero {
        min-height: 700px;
    }

    .hero h1 {
        font-size: 5rem;
    }

    .hero-bottom {
        gap: 35px;
    }

    .intro-grid {
        gap: 50px;
    }

    .destination-card {
        height: 450px;
    }

    .experience-grid {
        gap: 55px;
    }

    .experience-visual,
    .experience-visual > img {
        min-height: 570px;
        height: 570px;
    }

    .experience-badge {
        right: -15px;
    }

    .quote-card {
        padding: 60px;
        gap: 50px;
    }

}


/* ================================================================
   MOBILE / TABLET
   ================================================================ */

@media (max-width: 820px) {

    .header {
        height: 72px;
    }

    .desktop-nav {
        display: none;
    }

    .mobile-menu-button {
        display: flex;
    }

    .brand img {
        height: 46px;
    }

    .hero {
        min-height: 720px;
        height: 100svh;

        background-position: 62% center;
    }

    .hero-overlay {
        background:
            linear-gradient(
                90deg,
                rgba(10,18,35,.82),
                rgba(10,18,35,.45)
            );
    }

    .hero-content {
        padding-bottom: 60px;
    }

    .hero h1 {
        font-size: clamp(3.6rem, 12vw, 5.5rem);
    }

    .hero-bottom {
        display: none;
    }

    .intro-grid,
    .experience-grid,
    .quote-card {
        grid-template-columns: 1fr;
    }

    .intro-grid {
        gap: 25px;
    }

    .intro-copy {
        padding-top: 0;
    }

    .destination-grid {
        grid-template-columns: 1fr 1fr;
    }

    .destination-card:last-child {
        grid-column: span 2;
    }

    .experience-grid {
        gap: 65px;
    }

    .experience-visual,
    .experience-visual > img {
        min-height: 520px;
        height: 520px;
    }

    .experience-badge {
        right: 20px;
    }

    .photo-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .quote-card {
        padding: 55px 40px;
        gap: 45px;
    }

    .footer-main {
        grid-template-columns: 2fr 1fr 1fr;
        gap: 30px;
    }

}


/* ================================================================
   CELULAR
   ================================================================ */

@media (max-width: 600px) {

    .container,
    .nav-container,
    .hero-content {
        width: calc(100% - 36px);
    }

    .section {
        padding: 75px 0;
    }

    h2 {
        font-size: 2.35rem;
        letter-spacing: -1.5px;
    }

    .header {
        background:
            linear-gradient(
                180deg,
                rgba(10,18,35,.35),
                transparent
            );
    }

    .header.scrolled {
        background: rgba(255,255,255,.96);
    }

    .brand img {
        max-width: 145px;
        height: 43px;
    }

    .hero {
        min-height: 690px;

        background-position: 65% center;
    }

    .hero-content {
        padding-top: 60px;
        padding-bottom: 0;
    }

    .hero-tag {
        margin-bottom: 20px;

        font-size: .72rem;
    }

    .hero h1 {
        margin-bottom: 20px;

        font-size: 3.65rem;
        letter-spacing: -3px;
    }

    .hero-content > p {
        margin-bottom: 28px;

        font-size: 1rem;
        line-height: 1.65;
    }

    .hero-actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .button {
        width: 100%;
    }

    .section-heading {
        margin-bottom: 35px;

        display: block;
    }

    .section-heading p {
        margin-top: 15px;
    }

    .destination-grid {
        grid-template-columns: 1fr;
    }

    .destination-card,
    .destination-card:last-child {
        grid-column: auto;

        height: 430px;
    }

    .destination-content {
        padding: 25px;
    }

    .destination-content h3 {
        font-size: 1.7rem;
    }

    .experience-grid {
        gap: 50px;
    }

    .experience-visual {
        min-height: 470px;
    }

    .experience-visual > img {
        height: 470px;
        min-height: 470px;

        border-radius: 22px;
    }

    .experience-badge {
        right: 15px;
        bottom: 20px;

        min-width: auto;
        padding: 15px 18px;
    }

    .experience-badge > span {
        font-size: 27px;
    }

    .experience-content h2 br {
        display: none;
    }

    .benefit {
        grid-template-columns: 50px 1fr;
        gap: 15px;
    }

    .benefit-icon {
        width: 48px;
        height: 48px;
    }

    .photo-grid {
        grid-template-columns: 1fr 1fr;
        grid-auto-rows: 190px;
        gap: 8px;
    }

    .photo-large {
        grid-column: span 2;
        grid-row: span 2;
    }

    .photo-wide {
        grid-column: span 2;
    }

    .photo {
        border-radius: 10px;
    }

    .quote-section {
        padding-right: 10px;
        padding-left: 10px;
    }

    .quote-card {
        padding: 45px 22px;

        border-radius: 25px;
    }

    .quote-copy h2 {
        font-size: 2.4rem;
    }

    .quote-form {
        padding: 25px 18px;

        border-radius: 18px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    footer {
        padding-top: 55px;
    }

    .footer-main {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .whatsapp-float {
        right: 17px;
        bottom: 17px;

        width: 56px;
        height: 56px;
    }

}


/* ================================================================
   CELULARES PEQUEÑOS
   ================================================================ */

@media (max-width: 380px) {

    .hero h1 {
        font-size: 3.2rem;
    }

    .hero-tag {
        font-size: .67rem;
    }

    .quote-card {
        padding-right: 16px;
        padding-left: 16px;
    }

}


/* ================================================================
   ACCESIBILIDAD / REDUCIR MOVIMIENTO
   ================================================================ */

@media (prefers-reduced-motion: reduce) {

    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        transition-duration: .01ms !important;
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
    }

}
