/* ==========================================
   CATA CAR WASH
   PURPLE · WHITE · BLACK
========================================== */

:root {

    --purple: #7c3aed;
    --purple-dark: #4c1d95;
    --purple-light: #a78bfa;

    --black: #080808;
    --black-soft: #121212;

    --white: #ffffff;
    --white-soft: #f6f5f8;

    --gray: #737373;

    --max-width: 1380px;
}


/* ==========================================
   RESET
========================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "DM Sans", sans-serif;

    background: var(--white-soft);

    color: var(--black);

    overflow-x: hidden;
}

body.no-scroll {
    overflow: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    font-family: inherit;
}


/* ==========================================
   CONTAINER
========================================== */

.container {

    width: min(
        var(--max-width),
        90%
    );

    margin: auto;
}


/* ==========================================
   LOGO
========================================== */

.logo {

    display: flex;

    flex-direction: column;

    line-height: .8;
}

.logo span {

    font-family: "Manrope", sans-serif;

    font-size: 25px;

    font-weight: 800;

    letter-spacing: -1.5px;
}

.logo small {

    margin-top: 6px;

    font-size: 7px;

    letter-spacing: 3px;

    font-weight: 700;
}


/* ==========================================
   HEADER
========================================== */

.header {

    position: fixed;

    top: 0;
    left: 0;

    width: 100%;

    z-index: 1000;

    color: white;

    transition: .35s ease;
}

.header.scrolled {

    background: rgba(
        8,
        8,
        8,
        .94
    );

    backdrop-filter: blur(15px);

    border-bottom:
        1px solid
        rgba(
            124,
            58,
            237,
            .2
        );
}

.nav {

    height: 90px;

    display: flex;

    align-items: center;

    justify-content: space-between;
}

.desktop-nav {

    display: flex;

    gap: 38px;
}

.desktop-nav a {

    font-size: 12px;

    font-weight: 600;

    color:
        rgba(
            255,
            255,
            255,
            .8
        );

    transition: .25s;
}

.desktop-nav a:hover {

    color: var(--purple-light);
}

.nav-cta {

    padding: 12px 20px;

    border:
        1px solid
        rgba(
            167,
            139,
            250,
            .5
        );

    border-radius: 100px;

    font-size: 11px;

    font-weight: 700;

    transition: .25s;
}

.nav-cta:hover {

    background: var(--purple);

    border-color: var(--purple);

    box-shadow:
        0 10px 35px
        rgba(
            124,
            58,
            237,
            .35
        );
}


/* ==========================================
   MOBILE MENU
========================================== */

.menu-toggle {

    display: none;

    width: 40px;
    height: 40px;

    border: 0;

    background: transparent;

    flex-direction: column;

    justify-content: center;

    align-items: flex-end;

    gap: 5px;

    cursor: pointer;
}

.menu-toggle span {

    width: 22px;
    height: 2px;

    background: white;

    transition: .3s;
}

.mobile-menu {

    position: fixed;

    inset: 0;

    z-index: 999;

    background:
        radial-gradient(
            circle at 50% 35%,
            rgba(
                124,
                58,
                237,
                .25
            ),
            transparent 40%
        ),
        var(--black);

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    gap: 30px;

    transform:
        translateY(-100%);

    transition:
        .5s
        cubic-bezier(
            .77,
            0,
            .18,
            1
        );
}

.mobile-menu.active {

    transform:
        translateY(0);
}

.mobile-menu a {

    color: white;

    font-family: "Manrope", sans-serif;

    font-size: 28px;

    font-weight: 700;
}

.mobile-menu a:hover {

    color: var(--purple-light);
}

.mobile-cta {

    background: var(--purple);

    padding: 15px 28px;

    border-radius: 100px;
}


/* ==========================================
   HERO
========================================== */

.hero {

    height: 100vh;

    min-height: 700px;

    position: relative;

    display: flex;

    align-items: center;

    color: white;

    overflow: hidden;
}

.hero-image {
    position: absolute;
    inset: 0;

    background:
        url("portadaccw.jpeg")
        center / cover;

    transform: scale(1.04);

    animation:
        heroZoom
        12s
        ease-out
        forwards;
}
@keyframes heroZoom {

    to {
        transform: scale(1);
    }
}

.hero-overlay {

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(5,5,5,.95),
            rgba(5,5,5,.72),
            rgba(5,5,5,.25)
        );
}

.hero::after {

    content: "";

    position: absolute;

    width: 600px;
    height: 600px;

    left: 15%;
    top: 10%;

    background:
        var(--purple);

    opacity: .13;

    filter: blur(150px);

    border-radius: 50%;
}

.hero-content {

    position: relative;

    z-index: 2;

    padding-top: 70px;
}

.hero-label {

    display: flex;

    align-items: center;

    gap: 12px;

    color:
        rgba(
            255,
            255,
            255,
            .7
        );

    font-size: 9px;

    font-weight: 700;

    letter-spacing: 2.5px;

    margin-bottom: 25px;
}

.hero-label span {

    width: 30px;

    height: 1px;

    background:
        var(--purple-light);
}

.hero h1 {

    font-family:
        "Manrope",
        sans-serif;

    font-size:
        clamp(
            60px,
            9vw,
            130px
        );

    line-height: .85;

    letter-spacing: -7px;

    font-weight: 800;
}

.hero h1 em {

    color:
        var(--purple-light);

    font-style: normal;
}

.hero-content > p {

    max-width: 470px;

    color:
        rgba(
            255,
            255,
            255,
            .7
        );

    line-height: 1.8;

    font-size: 15px;

    margin-top: 35px;
}

.hero-actions {

    display: flex;

    gap: 12px;

    margin-top: 32px;
}


/* ==========================================
   BUTTONS
========================================== */

.btn {

    min-height: 52px;

    padding:
        0 25px;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 18px;

    border-radius: 100px;

    font-size: 11px;

    font-weight: 700;

    transition: .3s ease;
}

.btn-purple {

    background:
        var(--purple);

    color: white;
}

.btn-purple:hover {

    background:
        var(--purple-light);

    color: var(--black);

    transform:
        translateY(-3px);

    box-shadow:
        0 15px 40px
        rgba(
            124,
            58,
            237,
            .4
        );
}

.btn-outline {

    border:
        1px solid
        rgba(
            255,
            255,
            255,
            .45
        );

    color: white;
}

.btn-outline:hover {

    background: white;

    color: var(--black);
}


/* ==========================================
   HERO BOTTOM
========================================== */

.hero-bottom {

    position: absolute;

    z-index: 3;

    bottom: 30px;

    left: 5%;

    display: flex;

    align-items: center;

    gap: 15px;

    font-size: 8px;

    letter-spacing: 3px;

    color:
        rgba(
            255,
            255,
            255,
            .5
        );
}

.hero-line {

    width: 70px;

    height: 1px;

    background:
        rgba(
            167,
            139,
            250,
            .5
        );
}


/* ==========================================
   SECTIONS
========================================== */

.section {

    padding: 140px 0;
}

.section-tag {

    display: block;

    color:
        var(--purple);

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 2.5px;

    margin-bottom: 20px;
}

.section h2 {

    font-family:
        "Manrope",
        sans-serif;

    font-size:
        clamp(
            42px,
            5vw,
            70px
        );

    line-height: .95;

    letter-spacing: -4px;

    font-weight: 800;
}

.section h2 span {

    color:
        var(--purple);
}


/* ==========================================
   INTRO
========================================== */

.intro {

    padding: 130px 0;

    background: white;
}

.intro-grid {

    display: grid;

    grid-template-columns:
        100px 1fr 1fr;

    gap: 50px;

    align-items: start;
}

.intro-number {

    color:
        var(--purple);

    font-family:
        "Manrope",
        sans-serif;

    font-size: 12px;

    font-weight: 800;
}

.intro h2 {

    font-family:
        "Manrope",
        sans-serif;

    font-size:
        clamp(
            45px,
            5vw,
            70px
        );

    line-height: .95;

    letter-spacing: -4px;

    max-width: 650px;
}

.intro h2 span {

    color:
        var(--purple);
}

.intro-text {

    padding-top: 10px;
}

.intro-text p {

    color:
        var(--gray);

    font-size: 14px;

    line-height: 1.8;

    max-width: 450px;

    margin-bottom: 15px;
}


/* ==========================================
   SERVICES
========================================== */

.services {

    background:
        var(--white-soft);
}

.section-header {

    display: flex;

    justify-content: space-between;

    align-items: flex-end;

    margin-bottom: 60px;
}

.section-header > p {

    max-width: 400px;

    color:
        var(--gray);

    font-size: 13px;

    line-height: 1.8;
}

.services-grid {

    display: grid;

    grid-template-columns:
        repeat(
            2,
            1fr
        );

    gap: 25px;
}

.service-card {

    background: white;

    border:
        1px solid
        rgba(
            124,
            58,
            237,
            .08
        );

    overflow: hidden;

    transition: .4s ease;
}

.service-card:hover {

    transform:
        translateY(-8px);

    border-color:
        rgba(
            124,
            58,
            237,
            .3
        );

    box-shadow:
        0 25px 60px
        rgba(
            0,
            0,
            0,
            .08
        );
}

.service-card-wide {

    grid-column:
        span 2;

    display: grid;

    grid-template-columns:
        1fr 1fr;
}

.service-photo {

    height: 350px;

    position: relative;

    background-size: cover;

    background-position: center;

    transition: .6s ease;
}

.service-card-wide .service-photo {

    height: 100%;
    min-height: 350px;
}

.service-card:hover
.service-photo {

    transform:
        scale(1.025);
}


/* ==========================================
   SERVICE PHOTOS
========================================== */

.photo-exterior {

    background-image:
        url(
            "https://images.unsplash.com/photo-1607860108855-64acf2078ed9?auto=format&fit=crop&w=1400&q=90"
        );
}

.photo-interior {

    background-image:
        url(
            "interior.jpg"
        );
}

.photo-faros {
    background-image: url("pulir.jpg");
}
.photo-tapiceria {

    background-image:
        url(
            "tapiceria.jpg"
        );
}

.photo-ceramico {

    background-image:
        url(
            "ceramico.jpg"
        );
}

.photo-motor {
    background-image: url("antes.jpeg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.service-index {

    position: absolute;

    top: 20px;
    left: 20px;

    width: 42px;
    height: 42px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background:
        rgba(
            255,
            255,
            255,
            .93
        );

    color:
        var(--black);

    font-size: 9px;

    font-weight: 800;
}

/* ==========================================
   PRICING (TARIFAS DESPLEGABLES)
========================================== */

.pricing {

    margin-top: 90px;
}

.pricing-intro {

    display: flex;

    justify-content: space-between;

    align-items: flex-end;

    margin-bottom: 40px;

    gap: 40px;
}

.pricing-intro h3 {

    font-family:
        "Manrope",
        sans-serif;

    font-size:
        clamp(
            28px,
            3vw,
            38px
        );

    letter-spacing: -1.5px;

    font-weight: 800;

    line-height: 1;
}

.pricing-intro h3 span {

    color:
        var(--purple);
}

.pricing-intro > p {

    max-width: 360px;

    color:
        var(--gray);

    font-size: 13px;

    line-height: 1.8;
}

.pricing-list {

    display: flex;

    flex-direction: column;

    gap: 14px;
}

.pricing-item {

    background: white;

    border:
        1px solid
        rgba(
            124,
            58,
            237,
            .08
        );

    transition: .4s ease;
}

.pricing-item:hover {

    border-color:
        rgba(
            124,
            58,
            237,
            .25
        );
}

.pricing-item.active {

    border-color:
        rgba(
            124,
            58,
            237,
            .35
        );

    box-shadow:
        0 25px 60px
        rgba(
            0,
            0,
            0,
            .06
        );
}

.pricing-toggle {

    width: 100%;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;

    padding: 24px 28px;

    background: none;

    border: none;

    cursor: pointer;

    text-align: left;
}

.pricing-toggle-left {

    display: flex;

    align-items: center;

    gap: 18px;

    min-width: 0;
}

.pricing-icon {

    width: 50px;
    height: 50px;

    flex-shrink: 0;

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    color: white;
}

.pricing-icon svg {

    width: 24px;
    height: 24px;
}

.pricing-icon-basico {

    background:
        var(--purple-light);
}

.pricing-icon-extra {

    background:
        var(--purple);
}

.pricing-icon-premium {

    background:
        var(--black);
}

.pricing-name-wrap {

    display: flex;

    flex-direction: column;

    gap: 3px;

    min-width: 0;
}

.pricing-tier-label {

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 2px;

    text-transform: uppercase;

    color:
        var(--purple);
}

.pricing-name {

    font-family:
        "Manrope",
        sans-serif;

    font-size: 17px;

    font-weight: 800;

    letter-spacing: -.3px;

    white-space: nowrap;

    overflow: hidden;

    text-overflow: ellipsis;
}

.pricing-toggle-right {

    display: flex;

    align-items: center;

    gap: 18px;

    flex-shrink: 0;
}

.pricing-discount {

    font-size: 9px;

    font-weight: 800;

    letter-spacing: .5px;

    text-transform: uppercase;

    color:
        var(--purple);

    border:
        1px solid
        rgba(
            124,
            58,
            237,
            .25
        );

    border-radius: 20px;

    padding: 6px 12px;

    white-space: nowrap;
}

.pricing-price {

    font-family:
        "Manrope",
        sans-serif;

    font-size: 20px;

    font-weight: 800;

    color:
        var(--black);

    white-space: nowrap;
}

.pricing-price small {

    font-size: 10px;

    font-weight: 700;

    color:
        var(--gray);

    margin-left: 3px;
}

.pricing-chevron {

    width: 32px;
    height: 32px;

    border-radius: 50%;

    border:
        1px solid
        rgba(
            124,
            58,
            237,
            .2
        );

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 16px;

    font-weight: 600;

    color:
        var(--purple);

    transition: .4s ease;
}

.pricing-item.active .pricing-chevron {

    transform: rotate(45deg);

    background:
        var(--purple);

    color: white;

    border-color:
        var(--purple);
}

.pricing-panel {

    max-height: 0;

    overflow: hidden;

    transition: max-height .5s ease;
}

.pricing-panel-inner {

    padding: 0 28px 28px;
}

.pricing-features {

    display: grid;

    grid-template-columns:
        repeat(
            2,
            1fr
        );

    gap: 10px 20px;

    margin-bottom: 20px;

    padding-top: 4px;

    border-top:
        1px solid
        rgba(
            124,
            58,
            237,
            .08
        );

    padding-top: 18px;
}

.pricing-features li {

    list-style: none;

    display: flex;

    align-items: flex-start;

    gap: 8px;

    font-size: 13px;

    color:
        var(--black);

    line-height: 1.4;
}

.pricing-features li::before {

    content: "✓";

    color:
        var(--purple);

    font-weight: 800;

    font-size: 12px;

    line-height: 1.4;
}

.pricing-extra {

    background:
        var(--purple);

    color: white;

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 1px;

    text-transform: uppercase;

    text-align: center;

    padding: 12px 16px;

    border-radius: 4px;

    margin-bottom: 12px;
}

.pricing-note {

    font-size: 11px;

    letter-spacing: .3px;

    text-align: center;

    color:
        var(--gray);
}


.service-info {

    padding: 30px;
}

.service-info h3 {

    font-family:
        "Manrope",
        sans-serif;

    font-size: 25px;

    letter-spacing: -1px;

    margin-bottom: 12px;
}

.service-info p {

    color:
        var(--gray);

    font-size: 13px;

    line-height: 1.7;

    max-width: 470px;

    margin-bottom: 22px;
}

.service-info a {

    display: inline-flex;

    gap: 15px;

    align-items: center;

    color:
        var(--purple);

    font-size: 10px;

    font-weight: 800;

    text-transform: uppercase;

    letter-spacing: 1px;

    transition: .2s;
}

.service-info a:hover {

    color:
        var(--purple-dark);
}


/* ==========================================
   FEATURE
========================================== */

.feature {

    display: grid;

    grid-template-columns:
        1fr 1fr;

    min-height: 700px;
}

.feature-photo {

    background:
        url(
            "portadaccw.jpeg"
        )
        center / cover;
}

.feature-content {

    background:
        radial-gradient(
            circle at 70% 30%,
            rgba(
                124,
                58,
                237,
                .2
            ),
            transparent 35%
        ),
        var(--black);

    color: white;

    padding:
        110px 9%;

    display: flex;

    flex-direction: column;

    justify-content: center;

    align-items: flex-start;
}

.feature-content
.section-tag {

    color:
        var(--purple-light);
}

.feature-content h2 {

    font-family:
        "Manrope",
        sans-serif;

    font-size:
        clamp(
            50px,
            6vw,
            80px
        );

    line-height: .88;

    letter-spacing: -5px;

    margin-bottom: 30px;
}

.feature-content h2 span {

    color:
        var(--purple-light);
}

.feature-content > p {

    color:
        rgba(
            255,
            255,
            255,
            .55
        );

    font-size: 14px;

    line-height: 1.8;

    max-width: 500px;

    margin-bottom: 35px;
}

.feature-list {

    width: 100%;

    max-width: 500px;

    margin-bottom: 35px;
}

.feature-list div {

    display: flex;

    align-items: center;

    gap: 20px;

    padding: 16px 0;

    border-top:
        1px solid
        rgba(
            255,
            255,
            255,
            .1
        );
}

.feature-list div:last-child {

    border-bottom:
        1px solid
        rgba(
            255,
            255,
            255,
            .1
        );
}

.feature-list span {

    color:
        var(--purple-light);

    font-size: 9px;

    font-weight: 800;
}

.feature-list p {

    font-size: 12px;
}


/* ==========================================
   GALLERY
========================================== */

.gallery {

    background:
        white;
}

.gallery-grid {

    display: grid;

    grid-template-columns:
        1.5fr 1fr 1fr;

    grid-template-rows:
        280px 280px;

    gap: 12px;
}

.gallery-item {

    position: relative;

    overflow: hidden;

    background-size: cover;

    background-position: center;

    display: flex;

    align-items: flex-end;

    padding: 20px;

    transition: .4s ease;
}

.gallery-item::after {

    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            transparent 40%,
            rgba(
                0,
                0,
                0,
                .75
            )
        );
}

.gallery-item span {

    position: relative;

    z-index: 2;

    color: white;

    font-size: 8px;

    letter-spacing: 2px;

    font-weight: 700;
}

.gallery-item:hover {

    transform:
        translateY(-4px);
}

.gallery-big {

    grid-row:
        span 2;
}

.gallery-1 {

    background-image:
        url(
            "gallery1.jpg"
        );
}

.gallery-2 {

    background-image:
        url(
            "gallery2.jpg"
        );
}

.gallery-3 {

    background-image:
        url(
            "gallery3.jpeg"
        );
}

.gallery-4 {

    background-image:
        url(
            "https://images.unsplash.com/photo-1503736334956-4c8f8e92946d?auto=format&fit=crop&w=1000&q=85"
        );
}

.gallery-5 {

    background-image:
        url(
            "https://images.unsplash.com/photo-1562141961-9c5c9b6f0fbd?auto=format&fit=crop&w=1000&q=85"
        );
}


/* ==========================================
   RESERVATION
========================================== */

.reservation {

    background:
        radial-gradient(
            circle at 20% 50%,
            rgba(
                167,
                139,
                250,
                .25
            ),
            transparent 30%
        ),
        var(--purple);

    color: white;

    padding:
        110px 0;
}

.reservation-inner {

    display: grid;

    grid-template-columns:
        1fr 420px;

    gap: 80px;

    align-items: center;
}

.reservation .section-tag {

    color:
        rgba(
            255,
            255,
            255,
            .75
        );
}

.reservation h2 {

    font-family:
        "Manrope",
        sans-serif;

    font-size:
        clamp(
            48px,
            6vw,
            80px
        );

    line-height: .9;

    letter-spacing: -5px;
}

.reservation h2 span {

    color:
        var(--black);
}

.reservation p {

    max-width: 500px;

    margin-top: 25px;

    color:
        rgba(
            255,
            255,
            255,
            .75
        );

    font-size: 14px;

    line-height: 1.8;
}

.reservation-actions {

    display: flex;

    flex-direction: column;

    gap: 12px;
}


/* ==========================================
   WHATSAPP
========================================== */

.whatsapp-btn {

    min-height: 80px;

    padding:
        15px 20px;

    background:
        var(--black);

    color: white;

    display: grid;

    grid-template-columns:
        45px 1fr 20px;

    align-items: center;

    gap: 15px;

    border-radius: 4px;

    transition: .3s ease;
}

.whatsapp-btn:hover {

    transform:
        translateY(-4px);

    box-shadow:
        0 15px 40px
        rgba(
            0,
            0,
            0,
            .2
        );
}

.whatsapp-icon {

    width: 42px;
    height: 42px;

    border-radius: 50%;

    background:
        #25d366;

    display: flex;

    align-items: center;

    justify-content: center;
}

.whatsapp-icon svg {

    width: 22px;
    height: 22px;

    fill: white;
}

.whatsapp-btn strong {

    display: block;

    font-size: 12px;
}

.whatsapp-btn small {

    display: block;

    margin-top: 4px;

    color: #888;

    font-size: 9px;
}

.call-btn {

    min-height: 55px;

    padding:
        0 20px;

    display: flex;

    justify-content: space-between;

    align-items: center;

    border:
        1px solid
        rgba(
            255,
            255,
            255,
            .5
        );

    font-size: 11px;

    font-weight: 700;

    transition: .3s;
}

.call-btn:hover {

    background: white;

    color: var(--black);
}


/* ==========================================
   LOCATION
========================================== */

.location {

    background:
        var(--white-soft);
}

.location-grid {

    display: grid;

    grid-template-columns:
        .75fr 1.25fr;

    gap: 80px;

    align-items: center;
}

.location-info h2 {

    font-family:
        "Manrope",
        sans-serif;

    font-size:
        clamp(
            50px,
            6vw,
            80px
        );

    line-height: .9;

    letter-spacing: -5px;
}

.location-info h2 span {

    color:
        var(--purple);
}

.location-info > p {

    max-width: 400px;

    color:
        var(--gray);

    font-size: 14px;

    line-height: 1.8;

    margin-top: 25px;
}

.address {

    display: flex;

    align-items: flex-start;

    gap: 15px;

    margin: 35px 0;
}

.address-icon {

    width: 45px;
    height: 45px;

    flex-shrink: 0;

    background:
        var(--purple);

    color: white;

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    box-shadow:
        0 8px 25px
        rgba(
            124,
            58,
            237,
            .3
        );
}

.address small {

    color:
        var(--purple);

    font-size: 8px;

    font-weight: 800;

    letter-spacing: 2px;
}

.address p {

    color:
        var(--gray);

    font-size: 12px;

    line-height: 1.7;

    margin-top: 7px;
}

.map-link {

    display: inline-flex;

    align-items: center;

    gap: 15px;

    color:
        var(--purple);

    font-size: 10px;

    font-weight: 800;

    text-transform: uppercase;

    letter-spacing: 1px;
}

.map-link:hover {

    color:
        var(--purple-dark);
}

.map {

    height: 500px;

    overflow: hidden;

    border-radius: 4px;

    border:
        1px solid
        rgba(
            124,
            58,
            237,
            .15
        );

    box-shadow:
        0 25px 60px
        rgba(
            0,
            0,
            0,
            .08
        );
}

.map iframe {

    width: 100%;
    height: 100%;

    border: 0;
}


/* ==========================================
   FOOTER
========================================== */

footer {

    background:
        var(--black);

    color: white;
}

.footer-grid {

    display: grid;

    grid-template-columns:
        2fr 1fr 1fr 1fr;

    gap: 50px;

    padding:
        80px 0;
}

.footer-brand p {

    color: #777;

    font-size: 12px;

    line-height: 1.7;

    max-width: 250px;

    margin-top: 20px;
}

.footer-column {

    display: flex;

    flex-direction: column;

    gap: 13px;
}

.footer-column h4 {

    color:
        var(--purple-light);

    font-size: 8px;

    letter-spacing: 2px;

    margin-bottom: 7px;
}

.footer-column a {

    color: #777;

    font-size: 11px;

    transition: .2s;
}

.footer-column a:hover {

    color:
        var(--purple-light);
}

.footer-bottom {

    padding:
        20px 0;

    border-top:
        1px solid
        rgba(
            255,
            255,
            255,
            .08
        );

    display: flex;

    justify-content: space-between;

    color: #555;

    font-size: 8px;

    letter-spacing: .5px;
}


/* ==========================================
   FLOATING WHATSAPP
========================================== */

.whatsapp-floating {

    position: fixed;

    right: 25px;

    bottom: 25px;

    z-index: 900;

    width: 58px;
    height: 58px;

    border-radius: 50%;

    background:
        #25d366;

    color: white;

    display: flex;

    align-items: center;

    justify-content: center;

    box-shadow:
        0 10px 30px
        rgba(
            0,
            0,
            0,
            .2
        );

    transition: .3s ease;

    animation:
        whatsappPulse
        2.5s
        infinite;
}

.whatsapp-floating:hover {

    transform:
        translateY(-5px)
        scale(1.05);

    animation: none;
}

.whatsapp-floating svg {

    width: 25px;
    height: 25px;

    fill: white;
}

@keyframes whatsappPulse {

    0% {
        box-shadow:
            0 0 0 0
            rgba(
                37,
                211,
                102,
                .4
            );
    }

    70% {
        box-shadow:
            0 0 0 12px
            rgba(
                37,
                211,
                102,
                0
            );
    }

    100% {
        box-shadow:
            0 0 0 0
            rgba(
                37,
                211,
                102,
                0
            );
    }
}


/* ==========================================
   MOBILE
========================================== */

@media (max-width: 900px) {

    .desktop-nav,
    .nav-cta {

        display: none;
    }

    .menu-toggle {

        display: flex;
    }

    .intro-grid {

        grid-template-columns:
            50px 1fr;
    }

    .intro-text {

        grid-column: 2;
    }

    .services-grid {

        grid-template-columns:
            1fr;
    }

    .service-card-wide {

        grid-column:
            span 1;

        display: block;
    }

    .service-card-wide
    .service-photo {

        min-height: 300px;
    }

    .feature {

        grid-template-columns:
            1fr;
    }

    .feature-photo {

        min-height: 500px;
    }

    .reservation-inner {

        grid-template-columns:
            1fr;
    }

    .location-grid {

        grid-template-columns:
            1fr;
    }

    .footer-grid {

        grid-template-columns:
            1fr 1fr;
    }

    .pricing-intro {

        display: block;
    }

    .pricing-intro > p {

        margin-top: 20px;

        max-width: none;
    }

    .pricing-toggle-right {

        gap: 12px;
    }

    .pricing-discount {

        display: none;
    }
}


/* ==========================================
   MOBILE SMALL
========================================== */

@media (max-width: 600px) {

    .nav {

        height: 75px;
    }

    .hero {

        min-height: 720px;
    }

    .hero h1 {

        font-size: 58px;

        letter-spacing: -4px;
    }

    .hero-content > p {

        font-size: 13px;
    }

    .hero-actions {

        flex-direction: column;

        max-width: 300px;
    }

    .hero-actions .btn {

        width: 100%;
    }

    .hero-bottom {

        font-size: 7px;
    }

    .section,
    .intro {

        padding:
            90px 0;
    }

    .intro-grid {

        display: block;
    }

    .intro-number {

        margin-bottom: 25px;
    }

    .intro-text {

        margin-top: 30px;
    }

    .section-header {

        display: block;
    }

    .section-header > p {

        margin-top: 25px;
    }

    .service-photo {

        height: 260px;
    }

    .feature-photo {

        min-height: 380px;
    }

    .feature-content {

        padding:
            80px 7%;
    }

    .feature-content h2 {

        font-size: 58px;
    }

    .gallery-grid {

        grid-template-columns:
            1fr 1fr;

        grid-template-rows:
            240px
            200px
            200px;
    }

    .gallery-big {

        grid-column:
            span 2;

        grid-row:
            span 1;
    }

    .reservation {

        padding:
            85px 0;
    }

    .reservation-inner {

        gap: 45px;
    }

    .reservation h2 {

        font-size: 55px;
    }

    .map {

        height: 350px;
    }

    .footer-grid {

        grid-template-columns:
            1fr 1fr;

        gap:
            40px 25px;
    }

    .footer-brand {

        grid-column:
            span 2;
    }

    .footer-bottom {

        flex-direction: column;

        gap: 8px;
    }

    .whatsapp-floating {

        right: 18px;

        bottom: 18px;
    }

    .pricing {

        margin-top: 60px;
    }

    .pricing-toggle {

        padding: 20px;

        gap: 12px;
    }

    .pricing-icon {

        width: 42px;
        height: 42px;
    }

    .pricing-icon svg {

        width: 20px;
        height: 20px;
    }

    .pricing-name {

        font-size: 15px;
    }

    .pricing-price {

        font-size: 16px;
    }

    .pricing-panel-inner {

        padding: 0 20px 22px;
    }

    .pricing-features {

        grid-template-columns:
            1fr;
    }
}


/* ==========================================
   VERY SMALL PHONES
========================================== */

@media (max-width: 380px) {

    .hero h1 {

        font-size: 50px;
    }

    .feature-content h2 {

        font-size: 50px;
    }

    .reservation h2 {

        font-size: 48px;
    }
}
/* =========================================
   MOTOR · ANTES Y DESPUÉS
========================================= */

.engine {
    background: #0b0b0d;
    position: relative;
    overflow: hidden;
}


/* CABECERA */

.engine-heading {
    display: grid;
    grid-template-columns: 1fr 0.7fr;
    gap: 80px;
    align-items: end;
    margin-bottom: 55px;
}

.engine-heading h2 {
    margin-top: 18px;
    margin-bottom: 0;
    font-family: "Manrope", sans-serif;
    font-size: clamp(42px, 5vw, 72px);
    line-height: 0.95;
    font-weight: 800;
    letter-spacing: -3px;
}

.engine-heading h2 strong {
    color: #ffffff;
    font-weight: 800;
}

.engine-heading h2 span {
    color: #a855f7;
    font-style: italic;
}

.engine-heading > p {
    max-width: 430px;
    margin: 0;
    color: rgba(255,255,255,.58);
    font-size: 15px;
    line-height: 1.8;
}


/* FOTOS */

.engine-comparison {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
}


/* TARJETA */

.engine-card {
    position: relative;
    overflow: hidden;
    background: #151518;
}


/* IMAGEN */

.engine-image {
    position: relative;
    width: 100%;
    height: 560px;
    overflow: hidden;
}

.engine-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0,0,0,.78) 0%,
        rgba(0,0,0,.05) 45%,
        rgba(0,0,0,0) 70%
    );
    pointer-events: none;
}

.engine-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform .7s ease;
}


/* EFECTO HOVER */

.engine-card:hover img {
    transform: scale(1.04);
}


/* ETIQUETA */

.engine-label {
    position: absolute;
    left: 28px;
    bottom: 25px;
    z-index: 2;

    display: flex;
    align-items: center;
    gap: 14px;

    font-family: "Manrope", sans-serif;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 2px;
    color: #fff;
}

.engine-label span {
    width: 34px;
    height: 34px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(255,255,255,.45);

    font-size: 11px;
    letter-spacing: 0;
}


/* LÍNEA INFERIOR */

.engine-bottom {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-top: 35px;
}

.engine-bottom span {
    height: 1px;
    flex: 1;
    background: rgba(255,255,255,.12);
}

.engine-bottom p {
    margin: 0;
    color: rgba(255,255,255,.35);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2.5px;
}


/* =========================================
   MOTOR · MÓVIL
========================================= */

@media (max-width: 768px) {

    .engine-heading {
        grid-template-columns: 1fr;
        gap: 25px;
        margin-bottom: 35px;
    }

    .engine-heading h2 {
        font-size: 48px;
        letter-spacing: -2px;
    }

    .engine-comparison {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .engine-image {
        height: 400px;
    }

    .engine-label {
        left: 20px;
        bottom: 20px;
    }

    .engine-bottom {
        margin-top: 25px;
    }

}


/* MÓVILES PEQUEÑOS */

@media (max-width: 480px) {

    .engine-heading h2 {
        font-size: 42px;
    }

    .engine-image {
        height: 330px;
    }

}