/* =========================================================
   TRUCA EVENTOS
   Premium Dark Design
   Accent: #f4511b
========================================================= */

@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Space+Grotesk:wght@400;500;600;700&display=swap');

:root {
    --bg: #070707;
    --bg-soft: #0d0d0d;
    --bg-card: #111111;
    --bg-light: #171717;

    --text: #ffffff;
    --text-soft: #b7b7b7;
    --text-muted: #777777;

    --accent: #f4511b;
    --accent-dark: #c93f12;

    --border: rgba(255,255,255,.10);
    --border-light: rgba(255,255,255,.18);

    --radius: 22px;

    --container: 1240px;

    --font-title: "Space Grotesk", sans-serif;
    --font-body: "DM Sans", sans-serif;

    --transition: .35s cubic-bezier(.2,.8,.2,1);
}


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

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

html {
    scroll-behavior: smooth;
}

body {
    background: var(--bg);
    color: var(--text);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

body.menu-open {
    overflow: hidden;
}

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

a {
    color: inherit;
    text-decoration: none;
}
section{
    margin-bottom: 10px;
}
button,
input,
textarea {
    font: inherit;
}

button {
    border: 0;
}

.container {
    width: min(
        calc(100% - 48px),
        var(--container)
    );

    margin-inline: auto;
}


/* =========================================================
   TYPOGRAPHY
========================================================= */

h1,
h2,
h3 {
    font-family: var(--font-title);
    line-height: 1.05;
    letter-spacing: -0.035em;
}

h1 {
    font-size: clamp(3.5rem, 7vw, 7rem);
}

h2 {
    font-size: clamp(2.5rem, 5vw, 5rem);
}

h3 {
    font-size: 2.5rem;
}

p {
    color: var(--text-soft);
}

h1 span,
h2 span {
    color: var(--accent);
}


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

.site-header {
    position: fixed;
    inset: 0 0 auto 0;
    z-index: 1000;

    background: rgba(7,7,7,.82);

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

    border-bottom: 1px solid rgba(255,255,255,.06);

    transition: var(--transition);
}

.site-header.scrolled {
    background: rgba(7,7,7,.96);
    box-shadow: 0 10px 40px rgba(0,0,0,.3);
}

.nav {
    min-height: 82px;

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

    gap: 30px;
}
.desktop-nav a{
    margin: 0px 25px;
}
    


/* =========================================================
   BRAND
========================================================= */

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;

    font-family: var(--font-title);
    font-size: 15px;
    font-weight: 700;
    letter-spacing: .12em;

    white-space: nowrap;
}

.brand strong {
    color: var(--accent);
}

.brand-mark {
    width: 40px;
    height: 40px;

    display: grid;
    place-items: center;

    border: 1px solid var(--accent);

    color: var(--accent);

    font-family: var(--font-title);
    font-size: 18px;

    transform: skew(-10deg);
}


/* =========================================================
   DESKTOP NAV
========================================================= */

.nav-links {
    display: flex;
    align-items: center;
    gap: 42px;
}

.nav-links a {
    position: relative;

    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .12em;

    color: #d6d6d6;

    transition: var(--transition);
}

.nav-links a::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: -8px;

    width: 0;
    height: 2px;

    background: var(--accent);

    transition: var(--transition);
}

.nav-links a:hover {
    color: white;
}

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


/* =========================================================
   NAV BUTTON
========================================================= */

.nav-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    padding: 13px 20px;

    border: 1px solid var(--accent);
    border-radius: 999px;

    color: white;

    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;

    transition: var(--transition);
}

.nav-button:hover {
    background: var(--accent);
    color: #050505;
    transform: translateY(-2px);
}


/* =========================================================
   HAMBURGER
========================================================= */

.menu-toggle {
    display: none;

    width: 46px;
    height: 46px;

    background: transparent;

    border: 1px solid var(--border-light);
    border-radius: 50%;

    cursor: pointer;

    position: relative;

    z-index: 1100;
}

.menu-toggle span,
.menu-toggle span::before,
.menu-toggle span::after {
    content: "";

    position: absolute;

    left: 50%;
    top: 50%;

    width: 19px;
    height: 2px;

    background: white;

    transition: var(--transition);
}

.menu-toggle span {
    transform: translate(-50%, -50%);
}

.menu-toggle span::before {
    left: 0;
    top: -7px;

    transform: none;
}

.menu-toggle span::after {
    left: 0;
    top: 7px;

    transform: none;
}

.menu-toggle.active span {
    background: transparent;
}

.menu-toggle.active span::before {
    top: 0;
    transform: rotate(45deg);
}

.menu-toggle.active span::after {
    top: 0;
    transform: rotate(-45deg);
}


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

.mobile-menu {
    position: fixed;

    inset: 82px 0 auto 0;

    min-height: calc(100vh - 82px);

    padding: 50px 24px;

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

    gap: 28px;

    background: rgba(7,7,7,.98);

    opacity: 0;
    visibility: hidden;
    transform: translateY(-15px);

    transition: var(--transition);

    pointer-events: none;
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.mobile-menu > a {
    font-family: var(--font-title);
    font-size: clamp(0.8rem, 6vw, 3rem);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .04em;
    transition: var(--transition);
}

.mobile-menu > a:hover {
    color: var(--accent);
}

.mobile-cta {
    padding: 15px 25px !important;

    border: 1px solid var(--accent);
    border-radius: 999px;

    color: var(--accent);
}

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

.hero {
    position: relative;

    min-height: 100vh;

    display: flex;
    align-items: center;

    padding: 150px 0 100px;

    background-image: url("assets/img/banner-truca-eventos.png");

    background-position: 72% center;
    background-size: cover;
    background-repeat: no-repeat;

    overflow: hidden;
}


/* =====================================================
   DEGRADADO
===================================================== */

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

    z-index: 0;

    background:
        linear-gradient(
            90deg,

            #070707 0%,
            #070707 18%,

            rgba(7, 7, 7, .97) 30%,
            rgba(7, 7, 7, .88) 42%,

            rgba(7, 7, 7, .55) 57%,
            rgba(7, 7, 7, .20) 75%,

            rgba(7, 7, 7, 0) 100%
        );
}


/* =====================================================
   CONTENEDOR
===================================================== */

.hero .container {
    position: relative;
    z-index: 2;

    width: min(
        calc(100% - 48px),
        var(--container)
    );

    margin-inline: auto;
}


/* =====================================================
   CONTENIDO IZQUIERDO
   50% DEL ANCHO
===================================================== */

.hero-content {

    width: 50%;

    max-width: 650px;

}


/* =====================================================
   TITULO
===================================================== */

.hero-content h1 {

    margin-bottom: 30px;

    text-shadow:
        0 8px 35px rgba(0, 0, 0, .45);

}


/* =====================================================
   DESCRIPCIÓN
===================================================== */

.hero-content p {

    max-width: 600px;

    font-size: 18px;

    line-height: 1.8;

    color: #d4d4d4;

}


/* =====================================================
   BOTONES
===================================================== */

.hero-actions {

    display: flex;

    flex-wrap: wrap;

    gap: 14px;

    margin-top: 40px;

}

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

.hero-actions {
    display: flex;
    flex-wrap: wrap;

    gap: 14px;

    margin-top: 40px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;

    min-height: 52px;

    padding: 0 25px;

    border-radius: 999px;

    font-size: 12px;
    font-weight: 700;

    text-transform: uppercase;
    letter-spacing: .12em;

    transition: var(--transition);

    cursor: pointer;
}

.btn-primary {
    background: var(--accent);
    color: #050505;
}

.btn-primary:hover {
    background: #ff6732;

    transform:
        translateY(-3px);

    box-shadow:
        0 15px 35px rgba(244,81,27,.25);
}

.btn-outline {
    border: 1px solid rgba(255,255,255,.35);

    color: white;

    background: transparent;
}

.btn-outline:hover {
    border-color: var(--accent);
    color: var(--accent);

    transform: translateY(-3px);
}

.btn-dark {
    background: #080808;
    color: white;
}

.btn-dark:hover {
    background: var(--accent);
    color: #050505;

    transform: translateY(-3px);
}


/* =========================================================
   IMAGE PLACEHOLDER
========================================================= */

.image-placeholder {
    min-height: 560px;

    display: grid;
    place-items: center;

    background:
        linear-gradient(
            135deg,
            #151515,
            #090909
        );

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

    border-radius: 28px;

    color: #555;

    font-size: 12px;
    font-weight: 700;

    letter-spacing: .2em;

    text-transform: uppercase;
}

.hero-image {
    position: relative;
}

.hero-image .image-placeholder {
    min-height: 650px;
}

.hero-badge {
    position: absolute;

    left: -30px;
    bottom: 35px;

    padding: 20px 25px;

    display: flex;
    flex-direction: column;

    background: var(--accent);

    color: #050505;

    border-radius: 15px;

    box-shadow: 0 20px 60px rgba(0,0,0,.5);
}

.hero-badge strong {
    font-family: var(--font-title);
    font-size: 20px;
}

.hero-badge span {
    font-size: 12px;
}


/* =========================================================
   SECTIONS
========================================================= */

.intro-grid {
    display: grid;

    grid-template-columns: .9fr 1.1fr;

    gap: 100px;

    align-items: start;
}

.intro-content {
    padding-top: 15px;
}

.intro-content p {
    font-size: 18px;
    line-height: 1.9;

    margin-bottom: 20px;
}


/* =========================================================
   STATS
========================================================= */

.stats {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 1px;

    margin-top: 50px;

    background: var(--border);
}

.stats > div {
    padding: 25px;

    background: var(--bg);

    display: flex;
    flex-direction: column;

    gap: 5px;
}

.stats strong {
    color: var(--accent);

    font-family: var(--font-title);

    font-size: 34px;
}

.stats span {
    color: var(--text-muted);

    font-size: 12px;

    text-transform: uppercase;

    letter-spacing: .1em;
}


/* =========================================================
   SERVICES
========================================================= */

.services {
    background: #090909;

    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.section-heading {
    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        minmax(300px, .55fr);

    gap: 70px;

    margin-bottom: 70px;
}

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

    font-size: 16px;
    line-height: 1.8;
}

.service-grid {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 20px;
}

.service-card {
    display: flex;
    flex-direction: column;

    background: var(--bg-card);

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

    border-radius: var(--radius);

    overflow: hidden;

    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-8px);

    border-color:
        rgba(244,81,27,.55);

    box-shadow:
        0 30px 80px rgba(0,0,0,.35);
}

.service-image {
    aspect-ratio: 1.35;
    /* display: grid; */
    place-items: center;
    background:
        linear-gradient(
            135deg,
            #181818,
            #0b0b0b
        );
    color: #555;
    font-size: 10px;
    letter-spacing: .2em;
    height: auto;
}

.service-content {
    padding: 22px;
    display: flex;
    flex-direction: column;
    min-height: 280px;
}

.service-content small {
    margin-bottom: 20px;
    color: var(--accent);
    font-family: var(--font-title);
    font-size: 22px;
}

.service-content h3 {
    margin-bottom: 15px;
}

.service-content p {
    font-size: 22px;
    line-height: 1.7;
}

.service-link {
    margin-top: auto;
    padding-top: 25px;
    color: var(--accent);
    font-size: 20px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .12em;
}


/* =========================================================
   FEATURE
========================================================= */

.feature {
    background: var(--bg);
}

.feature-grid {
    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 90px;

    align-items: center;
}

.feature-image .image-placeholder {
    min-height: auto;
}

.feature-content p {
    margin: 30px 0;

    font-size: 17px;

    line-height: 1.8;
}

.feature-content ul {
    list-style: none;

    margin: 30px 0;
}

.feature-content li {
    padding: 13px 0;

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

    color: #ddd;
}

.feature-content li::before {
    content: "→";

    margin-right: 15px;

    color: var(--accent);
}


/* =========================================================
   CTA
========================================================= */

.cta {
    padding: 100px 0;

    background: var(--accent);

    color: #050505;
}

.cta .eyebrow {
    color: #050505;
    opacity: .65;
}

.cta-grid {
    display: grid;

    grid-template-columns: 1fr .7fr;

    gap: 100px;

    align-items: center;
}

.cta h2 {
    max-width: 850px;
}

.cta h2 span {
    color: #050505;
}

.cta h2 strong {
    display: block;

    color: #050505;
}

.cta p {
    margin-bottom: 25px;

    color: rgba(0,0,0,.7);
}


/* =========================================================
   CONTACT
========================================================= */

.contact-grid {
    display: grid;

    grid-template-columns:
        .8fr 1.2fr;

    gap: 100px;
}

.contact-copy p {
    margin: 30px 0;

    max-width: 500px;

    font-size: 17px;
}

.contact-details {
    display: flex;
    flex-direction: column;

    gap: 20px;

    margin-top: 40px;
}

.contact-details a {
    display: flex;
    font-size: 25px;
    flex-direction: column;
    padding-bottom: 18px;
    border-bottom: 1px solid var(--border);
    transition: var(--transition);
}

.contact-details a:hover {
    color: var(--accent);
}

.contact-details small {
    margin-bottom: 4px;
    color: var(--text-muted);
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: .15em;
    font-size: 15px;
}


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

.contact-form {
    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 20px;
}

.contact-form label {
    display: flex;
    flex-direction: column;

    gap: 9px;

    color: #aaa;

    font-size: 11px;

    text-transform: uppercase;

    letter-spacing: .1em;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    font-size: 20px;

    padding: 17px;

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

    border-radius: 12px;

    outline: none;

    background: #101010;

    color: white;

    transition: var(--transition);
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--accent);

    box-shadow:
        0 0 0 3px rgba(244,81,27,.08);
}

.contact-form textarea {
    min-height: 160px;

    resize: vertical;
}

.contact-form .full {
    grid-column: 1 / -1;
}


/* =========================================================
   SERVICE INTERNAL HERO
========================================================= */

.service-hero {
    min-height: 80vh;

    padding:
        200px 0
        100px;

    display: flex;
    align-items: center;

    background:
        radial-gradient(
            circle at 80% 50%,
            rgba(244,81,27,.10),
            transparent 35%
        );

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

.service-hero .container {
    max-width: 1000px;
    margin-left: max(
        24px,
        calc((100vw - var(--container)) / 2)
    );
}

.service-hero h1 {
    max-width: 950px;

    margin-bottom: 30px;
}

.service-hero p {
    max-width: 700px;

    font-size: 18px;
}


/* =========================================================
   INTERNAL SERVICE CONTENT
========================================================= */

.service-intro-grid {
    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 90px;

    align-items: center;
}

.service-art .image-placeholder {
    min-height: 600px;
}

.service-copy p {
    margin: 25px 0;

    font-size: 17px;

    line-height: 1.85;
}


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

.gallery {
    background: #090909;

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

.gallery h2 {
    margin-bottom: 60px;
}

.gallery-grid {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 15px;
}

.gallery-item {
    min-height: auto;
    display: grid;
    place-items: center;
    background:
        linear-gradient(
            135deg,
            #161616,
            #0b0b0b
        );
    border: 1px solid var(--border);
    border-radius: 18px;
    color: #444;
    font-size: 10px;
    letter-spacing: .2em;
    transition: var(--transition);
}

.gallery-item:hover {
    border-color: var(--accent);

    transform: translateY(-5px);
}
.gallery-item img{
    border-radius: 18px;
}

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

.footer {
    padding: 50px 0 25px;

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

    background: #050505;
}

.footer-top {
    display: flex;

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

    padding-bottom: 35px;

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

.footer-links {
    display: flex;
    gap: 30px;
}

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

    font-size: 12px;

    text-transform: uppercase;
    letter-spacing: .1em;

    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--accent);
}

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

    display: flex;

    justify-content: space-between;

    color: #555;

    font-size: 11px;
}


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

.whatsapp {
    position: fixed;

    right: 25px;
    bottom: 25px;

    width: 58px;
    height: 58px;

    display: grid;
    place-items: center;

    border-radius: 50%;

    background: #20c968;

    color: white;

    font-family: var(--font-title);
    font-weight: 700;

    box-shadow:
        0 10px 40px rgba(0,0,0,.4);

    z-index: 900;

    transition: var(--transition);
}
.img-whatsApp{
    width: 25px;
}

.whatsapp:hover {
    transform:
        translateY(-5px)
        scale(1.05);
}


/* =========================================================
   SCROLL REVEAL
========================================================= */

.reveal {
    opacity: 0;

    transform: translateY(35px);

    transition:
        opacity .8s ease,
        transform .8s ease;
}

.reveal.visible {
    opacity: 1;

    transform: translateY(0);
}


/* =========================================================
   SELECTION
========================================================= */

::selection {
    background: var(--accent);
    color: #050505;
}


/* =========================================================
   SCROLLBAR
========================================================= */

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #050505;
}

::-webkit-scrollbar-thumb {
    background: #292929;

    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent);
}


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

@media (max-width: 1050px) {

    .nav-links,
    .nav-button {
        display: none;
    }

    .menu-toggle {
        display: block;
    }

    .hero-grid,
    .feature-grid,
    .service-intro-grid {
        grid-template-columns: 1fr;

        gap: 50px;
    }

    .hero-content {
        max-width: 850px;
    }

    .hero-image .image-placeholder {
        min-height: 500px;
    }

    .intro-grid {
        grid-template-columns: 1fr;

        gap: 40px;
    }

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

    .cta-grid {
        grid-template-columns: 1fr;

        gap: 40px;
    }

    .contact-grid {
        grid-template-columns: 1fr;

        gap: 60px;
    }

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

}


/* =========================================================
   RESPONSIVE MOBILE
========================================================= */

@media (max-width: 650px) {

    .container {
        width: min(
            calc(100% - 32px),
            var(--container)
        );
    }

    .nav {
        min-height: 72px;
    }

    .mobile-menu {
        inset: 72px 0 auto 0;

        min-height:
            calc(100vh - 72px);
    }

    .brand {
        font-size: 12px;
    }

    .brand-mark {
        width: 35px;
        height: 35px;
    }

    .hero {
        padding-top: 130px;
        padding-bottom: 70px;
    }

    .hero h1 {
        font-size:
            clamp(
                3rem,
                14vw,
                5rem
            );
    }

    .hero p {
        font-size: 16px;
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .btn {
        width: 100%;
        font-size: 20px;
    }

    .hero-image .image-placeholder,
    .image-placeholder {
        min-height: 400px;
    }

    .hero-badge {
        left: 15px;
        bottom: 15px;
    }

    .section {
        padding: 40px 0;
    }

    .section-heading {
        grid-template-columns: 1fr;

        gap: 25px;

        margin-bottom: 45px;
    }

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

    .service-content {
        min-height: auto;
    }

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

    .feature-image .image-placeholder {
        min-height: auto;
    }

    .cta {
        padding: 75px 0;
    }

    .contact-form {
        grid-template-columns: 1fr;
    }

    .contact-form .full {
        grid-column: auto;
    }

    .service-hero {
        min-height: auto;

        padding:
            160px 0
            80px;
    }

    .service-hero .container {
        margin-left: auto;
    }

    .service-hero h1 {
        font-size:
            clamp(
                3rem,
                13vw,
                5rem
            );
    }

    .service-intro-grid {
        gap: 40px;
    }

    .service-art .image-placeholder {
        min-height: 400px;
    }

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

    .gallery-item {
        min-height: 280px;
    }

    .footer-top {
        flex-direction: column;

        align-items: flex-start;

        gap: 30px;
    }

    .footer-links {
        flex-wrap: wrap;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 10px;
        font-size: 15px;
    }

    .whatsapp {
        right: 16px;
        bottom: 16px;

        width: 54px;
        height: 54px;
    }

}


/* =========================================================
   REDUCED MOTION
========================================================= */

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

    html {
        scroll-behavior: auto;
    }

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

}
@media (max-width: 1050px) {

    .hero-content {
        width: 65%;
    }

}


@media (max-width: 650px) {

    .hero {

        min-height: 100svh;

        padding: 130px 0 70px;

        background-position: 68% center;

    }

    .hero-overlay {

        background:
            linear-gradient(
                180deg,

                #070707 0%,

                rgba(7, 7, 7, .92) 35%,

                rgba(7, 7, 7, .72) 65%,

                rgba(7, 7, 7, .35) 100%
            );

    }

    .hero-content {

        width: 100%;

        max-width: 100%;

    }

    .hero-content h1 {

        font-size:
            clamp(
                3rem,
                14vw,
                5rem
            );

    }

    .hero-content p {

        font-size: 16px;

    }

    .hero-actions {

        flex-direction: column;

        align-items: stretch;

    }

    .hero-actions .btn {

        width: 100%;
        font-size: 20px;

    }

}

/* =========================================================
   TRUCA EVENTOS — ADMIN AREA
   Login & Dashboard
========================================================= */

:root {
    --admin-primary: #f4511b;
    --admin-primary-hover: #d94312;

    --admin-dark: #111111;
    --admin-dark-soft: #1a1a1a;

    --admin-text: #181818;
    --admin-text-muted: #737373;

    --admin-border: #e9e9e9;
    --admin-surface: #ffffff;
    --admin-background: #f6f6f4;

    --admin-danger: #c62828;
    --admin-danger-bg: #fff1f0;

    --admin-success: #2e7d32;

    --admin-radius-sm: 10px;
    --admin-radius-md: 16px;
    --admin-radius-lg: 24px;

    --admin-shadow-sm:
        0 4px 16px rgba(0, 0, 0, 0.04);

    --admin-shadow-md:
        0 16px 45px rgba(0, 0, 0, 0.08);

    --admin-shadow-lg:
        0 30px 80px rgba(0, 0, 0, 0.28);

    --admin-transition:
        0.25s ease;
}


/* =========================================================
   ADMIN LOGIN
========================================================= */

.login-page {
    min-height: 100vh;
    margin: 0;

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

    padding: 32px 20px;

    position: relative;
    overflow: hidden;

    background:
        radial-gradient(
            circle at top right,
            rgba(244, 81, 27, 0.18),
            transparent 32%
        ),
        radial-gradient(
            circle at bottom left,
            rgba(244, 81, 27, 0.08),
            transparent 30%
        ),
        var(--admin-dark);

    box-sizing: border-box;
}


.login-page::before {
    content: "";

    position: absolute;
    inset: 0;

    pointer-events: none;

    background-image:
        linear-gradient(
            rgba(255, 255, 255, 0.025) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.025) 1px,
            transparent 1px
        );

    background-size: 50px 50px;
}


.login-container {
    width: 100%;
    max-width: 480px;

    position: relative;
    z-index: 1;
}


.login-card {
    width: 100%;

    padding: 52px 48px;

    box-sizing: border-box;

    background:
        rgba(255, 255, 255, 0.98);

    border:
        1px solid rgba(255, 255, 255, 0.15);

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

    box-shadow:
        var(--admin-shadow-lg);
}


.login-brand {
    display: inline-flex;
    align-items: center;

    margin-bottom: 48px;

    text-decoration: none;

    transition:
        transform var(--admin-transition);
}


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


.login-header {
    margin-bottom: 36px;
}


.login-header .eyebrow {
    display: inline-flex;

    margin-bottom: 14px;

    color:
        var(--admin-primary);

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 0.14em;
}


.login-header h1 {
    margin: 0 0 14px;
    color:
        var(--admin-text);
    font-size:
        clamp(34px, 5vw, 46px);
    line-height: 1.05;
    letter-spacing:
        -0.045em;
    font-size: 40px;
    text-align: center;
}


.login-header h1 span {
    color:
        var(--admin-primary);
}


.login-header p {
    max-width: 420px;
    margin: 0;
    color:
        var(--admin-text-muted);
    font-size: 25px;
    line-height: 1.7;
}


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

.login-form {
    display: flex;
    flex-direction: column;

    gap: 22px;
}


.login-field {
    display: flex;
    flex-direction: column;
    gap: 9px;
}


.login-field label {
    color:
        var(--admin-text);
    font-size: 22px;
    font-weight: 700;
}


.login-field input {
    width: 100%;

    min-height: 52px;

    padding:
        0 16px;

    box-sizing:
        border-box;

    color:
        var(--admin-text);

    background:
        #fafafa;

    border:
        1px solid var(--admin-border);

    border-radius:
        var(--admin-radius-sm);

    font-family:
        inherit;

    font-size: 15px;

    transition:
        border-color var(--admin-transition),
        background var(--admin-transition),
        box-shadow var(--admin-transition);
}


.login-field input::placeholder {
    color:
        #a8a8a8;
}


.login-field input:hover {
    border-color:
        #d2d2d2;
}


.login-field input:focus {
    outline: none;

    background:
        #ffffff;

    border-color:
        var(--admin-primary);

    box-shadow:
        0 0 0 4px
        rgba(244, 81, 27, 0.1);
}


.login-button {
    width: 100%;
    min-height: 54px;

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

    margin-top: 6px;

    border: none;

    font-weight: 700;

    transition:
        transform var(--admin-transition),
        box-shadow var(--admin-transition),
        opacity var(--admin-transition);
}


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

    box-shadow:
        0 10px 25px
        rgba(244, 81, 27, 0.25);
}


.login-button:active {
    transform:
        translateY(0);
}


.login-button:disabled {
    cursor:
        not-allowed;

    opacity: 0.65;

    transform:
        none;

    box-shadow:
        none;
}


/* =========================================================
   LOGIN ERROR
========================================================= */

.login-error {
    display: none;

    align-items: center;

    padding:
        14px 16px;

    color:
        var(--admin-danger);

    background:
        var(--admin-danger-bg);

    border:
        1px solid
        rgba(198, 40, 40, 0.12);

    border-radius:
        var(--admin-radius-sm);

    font-size: 14px;

    line-height: 1.5;
}


.login-error.active {
    display: flex;

    animation:
        adminFadeIn 0.25s ease;
}


/* =========================================================
   ADMIN PANEL
========================================================= */

.admin-page {
    min-height: 100vh;

    margin: 0;

    color:
        var(--admin-text);

    background:
        var(--admin-background);
}


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

.admin-header {
    position: sticky;
    top: 0;

    z-index: 100;

    padding: 18px 0;

    background:
        rgba(17, 17, 17, 0.96);

    border-bottom:
        1px solid
        rgba(255, 255, 255, 0.06);

    backdrop-filter:
        blur(12px);
}


.admin-container {
    width:
        min(1200px, calc(100% - 48px));

    margin:
        0 auto;
}


.admin-header .admin-container {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 24px;
}


.admin-header .brand {
    color:
        #ffffff;

    text-decoration:
        none;
}


.admin-header-actions {
    display: flex;
    align-items: center;

    gap: 18px;
}


.admin-user {
    display: flex;
    align-items: center;

    gap: 8px;

    color:
        #b8b8b8;

    font-size: 14px;
}


.admin-user::before {
    content: "";

    width: 8px;
    height: 8px;

    border-radius: 50%;

    background:
        var(--admin-success);

    box-shadow:
        0 0 0 4px
        rgba(46, 125, 50, 0.12);
}


/* =========================================================
   ADMIN MAIN
========================================================= */

.admin-main {
    padding:
        72px 0 90px;
}


.admin-title {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;

    gap: 40px;

    margin-bottom: 38px;
}


.admin-title .eyebrow {
    color:
        var(--admin-primary);

    font-size: 11px;

    font-weight: 700;

    letter-spacing:
        0.14em;
}


.admin-title h1 {
    margin:
        12px 0;

    color:
        var(--admin-text);

    font-size:
        clamp(36px, 5vw, 58px);

    line-height: 1;

    letter-spacing:
        -0.05em;
}


.admin-title h1 span {
    color:
        var(--admin-primary);
}


.admin-title p {
    max-width: 620px;

    margin: 0;

    color:
        var(--admin-text-muted);

    line-height: 1.7;
}


/* =========================================================
   ADMIN STATUS
========================================================= */

.admin-status {
    display: flex;
    align-items: center;

    min-height: 48px;

    margin-bottom: 24px;

    padding:
        0 18px;

    color:
        var(--admin-text-muted);

    background:
        rgba(255, 255, 255, 0.65);

    border:
        1px solid var(--admin-border);

    border-radius:
        var(--admin-radius-sm);

    font-size: 14px;
}


/* =========================================================
   COMMENTS GRID
========================================================= */

.comments-grid {
    display: grid;

    grid-template-columns:
        repeat(auto-fill, minmax(340px, 1fr));

    gap: 22px;
}


/* =========================================================
   COMMENT CARD
========================================================= */

.comment-card {
    position: relative;

    display: flex;
    flex-direction: column;

    padding: 28px;

    background:
        var(--admin-surface);

    border:
        1px solid var(--admin-border);

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

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

    transition:
        transform var(--admin-transition),
        box-shadow var(--admin-transition),
        border-color var(--admin-transition);
}


.comment-card:hover {
    transform:
        translateY(-4px);

    border-color:
        rgba(244, 81, 27, 0.28);

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


.comment-card-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;

    gap: 20px;

    padding-bottom: 22px;

    border-bottom:
        1px solid var(--admin-border);
}


.comment-card-header h3 {
    margin:
        7px 0 0;
    color:
        var(--admin-text);
    font-size: 30px;
    line-height: 1.2;
}


.comment-id {
    display: inline-flex;
    padding:
        5px 9px;
    color:
        var(--admin-primary);
    background:
        rgba(244, 81, 27, 0.09);
    border-radius:
        999px;
    font-size: 22px;
    font-weight: 800;
    letter-spacing:
        0.05em;
}


.comment-date {
    flex-shrink: 0;
    color:
        var(--admin-text-muted);
    font-size: 21px;
    line-height: 0.4;
    text-align:
        right;
}


/* =========================================================
   COMMENT INFORMATION
========================================================= */

.comment-info {
    display: grid;
    grid-template-columns:
        1fr;
    gap: 8px;
    margin: 12px 0;
}


.comment-info > div {
    padding-bottom: 14px;

    border-bottom:
        1px solid #f0f0f0;
}


.comment-info > div:last-child {
    padding-bottom: 0;

    border-bottom: none;
}


.comment-info strong {
    display: block;
    margin-bottom: 5px;
    color:
        var(--admin-text-muted);
    font-size: 16px;
    font-weight: 700;
    letter-spacing:
        0.06em;
    text-transform:
        uppercase;
}


.comment-info a,
.comment-info span {
    color:
        var(--admin-text);
    font-size: 24px;
    text-decoration:
        none;
    overflow-wrap:
        anywhere;
}


.comment-info a {
    transition:
        color var(--admin-transition);
}


.comment-info a:hover {
    color:
        var(--admin-primary);
}


/* =========================================================
   COMMENT MESSAGE
========================================================= */

.comment-message {
    flex: 1;

    padding:
        18px;

    background:
        #fafafa;

    border:
        1px solid #f0f0f0;

    border-radius:
        var(--admin-radius-sm);
}


.comment-message strong {
    display: block;
    margin-bottom: 9px;
    color:
        var(--admin-text);
    font-size: 21px;
    font-weight: 700;
}


.comment-message p {
    margin: 0;
    color:
        var(--admin-text-muted);
    font-size: 20px;
    line-height: 1.7;
    /* white-space:
        pre-wrap; */
    overflow-wrap:
        anywhere;
}


/* =========================================================
   COMMENT ACTIONS
========================================================= */

.comment-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;

    margin-top: 22px;

    padding-top: 20px;

    border-top:
        1px solid var(--admin-border);
}


.delete-comment {
    color:
        var(--admin-danger);

    border-color:
        rgba(198, 40, 40, 0.2);

    background:
        transparent;

    transition:
        background var(--admin-transition),
        color var(--admin-transition),
        border-color var(--admin-transition),
        transform var(--admin-transition);
}


.delete-comment:hover {
    color:
        #ffffff;

    background:
        var(--admin-danger);

    border-color:
        var(--admin-danger);

    transform:
        translateY(-1px);
}


/* =========================================================
   EMPTY STATE
========================================================= */

.empty-comments {
    grid-column:
        1 / -1;

    padding:
        80px 30px;

    text-align:
        center;

    background:
        var(--admin-surface);

    border:
        1px dashed #d8d8d8;

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


.empty-comments h3 {
    margin:
        0 0 10px;

    font-size: 22px;
}


.empty-comments p {
    margin: 0;

    color:
        var(--admin-text-muted);
}


/* =========================================================
   ANIMATIONS
========================================================= */

@keyframes adminFadeIn {

    from {
        opacity: 0;

        transform:
            translateY(8px);
    }

    to {
        opacity: 1;

        transform:
            translateY(0);
    }

}


.comment-card {
    animation:
        adminFadeIn 0.35s ease both;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 900px) {

    .admin-title {
        align-items:
            flex-start;

        flex-direction:
            column;
    }

}


@media (max-width: 700px) {

    .login-page {
        align-items:
            flex-start;

        padding:
            20px 16px;
    }


    .login-container {
        margin:
            auto 0;
    }


    .login-card {
        padding:
            36px 26px;

        border-radius:
            20px;
    }


    .login-brand {
        margin-bottom:
            38px;
    }


    .admin-container {
        width:
            min(100% - 32px, 1200px);
    }


    .admin-header .admin-container {
        align-items:
            flex-start;

        flex-direction:
            column;
    }


    .admin-header-actions {
        width: 100%;

        justify-content:
            space-between;
    }


    .admin-main {
        padding:
            46px 0 70px;
    }


    .admin-title {
        gap: 22px;

        margin-bottom:
            28px;
    }


    .admin-title h1 {
        font-size:
            40px;
    }


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


    .comment-card {
        padding:
            22px;
    }


    .comment-card-header {
        flex-direction: column;
        gap: 12px;
    }


    .comment-date {
        text-align:
            left;
    }

}


@media (max-width: 420px) {

    .login-card {
        padding:
            30px 20px;
    }


    .login-header h1 {
        font-size:
            36px;
    }


    .admin-header-actions {
        align-items:
            flex-start;

        flex-direction:
            column;

        gap: 14px;
    }


    .admin-header-actions .btn {
        width: 100%;

        justify-content:
            center;
    }

}

/* =========================================================
   SUCCESS POPUP
========================================================= */

.success-popup {
    position: fixed;

    top: 0;
    left: 0;

    width: 100%;
    height: 100%;

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

    padding: 20px;

    box-sizing: border-box;

    background: rgba(0, 0, 0, 0.65);

    backdrop-filter: blur(6px);

    z-index: 9999;

    opacity: 0;
    visibility: hidden;

    transition:
        opacity 0.3s ease,
        visibility 0.3s ease;
}


/* POPUP ACTIVO */

.success-popup.active {
    opacity: 1;
    visibility: visible;
}


/* CONTENIDO */

.success-popup-content {
    width: 100%;
    max-width: 480px;

    padding: 45px 40px;

    text-align: center;

    background: #ffffff;

    border-radius: 24px;

    box-shadow:
        0 25px 80px rgba(0, 0, 0, 0.35);

    transform:
        translateY(20px) scale(0.97);

    transition:
        transform 0.35s ease;
}


/* ANIMACIÓN AL ABRIR */

.success-popup.active .success-popup-content {
    transform:
        translateY(0) scale(1);
}


/* ICONO */

.success-icon {
    width: 72px;
    height: 72px;

    margin: 0 auto 25px;

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

    color: #ffffff;

    background: #f4511b;

    border-radius: 50%;

    font-size: 36px;
    font-weight: 700;

    box-shadow:
        0 12px 30px rgba(244, 81, 27, 0.3);
}


/* TITULO */

.success-popup-content h3 {
    margin: 0 0 15px;

    color: #111;

    font-size: 28px;

    line-height: 1.2;
}


/* TEXTO */

.success-popup-content p {
    max-width: 380px;

    margin: 0 auto 30px;

    color: #666;

    font-size: 15px;

    line-height: 1.7;
}


/* BOTÓN */

.success-popup-content .btn {
    min-width: 180px;

    justify-content: center;
}


/* RESPONSIVE */

@media (max-width: 600px) {

    .success-popup {
        padding: 16px;
    }

    .success-popup-content {
        padding: 38px 25px;

        border-radius: 20px;
    }

    .success-popup-content h3 {
        font-size: 24px;
    }

    .success-icon {
        width: 64px;
        height: 64px;

        font-size: 30px;
    }

}   
/* =====================================================
   NOSOTROS / ABOUT
===================================================== */

.about-section {
    position: relative;
    overflow: hidden;
    background: #f5f2ed;
}


/* HEADER */

.about-header {
    display: grid;
    grid-template-columns: 0.8fr 2fr;
    gap: 60px;
    align-items: end;
    padding-bottom: 80px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.12);
}

.about-label {
    display: flex;
    align-items: center;
    gap: 16px;
}

.about-line {
    width: 45px;
    height: 1px;
    background: currentColor;
}

.about-intro h2 {
    max-width: 850px;
    margin: 0;
    font-size: clamp(3rem, 6vw, 6.5rem);
    line-height: 0.95;
    letter-spacing: -0.055em;
    font-weight: 500;
}

.about-intro h2 span {
    display: block;
    color: #b55332;
    font-style: italic;
}

.about-intro p {
    max-width: 560px;
    margin: 35px 0 0;
    font-size: 1.15rem;
    line-height: 1.7;
    color: #66615b;
}


/* MAIN */

.about-main {
    display: grid;
    grid-template-columns: 0.35fr 1.25fr 0.8fr;
    gap: 70px;
    padding: 90px 0;
}


/* NUMBER */

.about-number {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.about-number > span {
    font-size: 7rem;
    line-height: 0.8;
    font-weight: 500;
    letter-spacing: -0.08em;
    color: #b55332;
}

.about-number-line {
    width: 100%;
    max-width: 100px;
    height: 1px;
    margin: 35px 0 20px;
    background: #222;
}

.about-number small {
    font-size: 0.65rem;
    line-height: 1.5;
    letter-spacing: 0.2em;
    color: #777;
}


/* CONTENT */

.about-content {
    max-width: 650px;
}

.about-lead {
    margin: 0 0 35px;
    font-size: clamp(1.8rem, 3vw, 3rem);
    line-height: 1.1;
    letter-spacing: -0.035em;
    color: #222;
}

.about-lead strong {
    display: block;
    color: #b55332;
    font-weight: 500;
}

.about-content > p:not(.about-lead) {
    max-width: 590px;
    margin: 0 0 20px;
    font-size: 1rem;
    line-height: 1.8;
    color: #68635d;
}

.about-link {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    margin-top: 25px;
    padding-bottom: 8px;
    color: #222;
    text-decoration: none;
    border-bottom: 1px solid #222;
    transition: 0.3s ease;
}

.about-link span {
    transition: transform 0.3s ease;
}

.about-link:hover span {
    transform: translate(5px, -5px);
}


/* CARD */

.about-card {
    position: relative;
    min-height: 390px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
    background: #20201e;
    color: #fff;
    transform: rotate(1.5deg);
    transition: transform 0.4s ease;
}

.about-card:hover {
    transform: rotate(0deg) translateY(-8px);
}

.about-card::before {
    content: "";
    position: absolute;
    width: 220px;
    height: 220px;
    right: -80px;
    top: -80px;
    border-radius: 50%;
    background: rgba(181, 83, 50, 0.45);
    filter: blur(10px);
}

.about-card-top,
.about-card-footer {
    position: relative;
    display: flex;
    justify-content: space-between;
    font-size: 0.65rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    opacity: 0.7;
}

.about-card-icon {
    position: relative;
    width: 65px;
    height: 65px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 25px;
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 50%;
    font-size: 1.5rem;
}

.about-card h3 {
    position: relative;
    margin: 25px 0 15px;
    font-size: 2.5rem;
    line-height: 0.95;
    letter-spacing: -0.04em;
    font-weight: 400;
}

.about-card h3 span {
    display: block;
    color: #d47754;
    font-style: italic;
}

.about-card p {
    position: relative;
    max-width: 280px;
    color: rgba(255,255,255,0.65);
    line-height: 1.6;
}

.about-card-footer {
    padding-top: 25px;
    border-top: 1px solid rgba(255,255,255,0.15);
}


/* STATS */

.about-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid rgba(0,0,0,0.12);
    border-bottom: 1px solid rgba(0,0,0,0.12);
}

.about-stat {
    min-height: 150px;
    padding: 30px;
    display: flex;
    align-items: center;
    gap: 22px;
    border-right: 1px solid rgba(0,0,0,0.12);
}

.about-stat:first-child {
    padding-left: 0;
}

.about-stat:last-child {
    border-right: 0;
}

.about-stat strong {
    font-size: clamp(2.5rem, 4vw, 4.5rem);
    line-height: 1;
    font-weight: 400;
    letter-spacing: -0.07em;
    color: #b55332;
}

.about-stat div {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.about-stat div span {
    font-size: 0.95rem;
    font-weight: 600;
}

.about-stat small {
    font-size: 0.7rem;
    color: #777;
}


/* CTA */

.about-stat-cta {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 12px;
    padding-left: 35px;
}

.about-stat-cta > span {
    font-size: 0.8rem;
    color: #777;
}

.about-stat-cta a {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: #222;
    text-decoration: none;
    font-size: 1.3rem;
    font-weight: 500;
}

.about-stat-cta a span {
    color: #b55332;
    transition: transform 0.3s ease;
}

.about-stat-cta a:hover span {
    transform: translate(5px, -5px);
}


/* RESPONSIVE */

@media (max-width: 1000px) {

    .about-header {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .about-main {
        grid-template-columns: 0.25fr 1fr;
        gap: 45px;
    }

    .about-card {
        grid-column: 2;
    }

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

    .about-stat {
        border-bottom: 1px solid rgba(0,0,0,0.12);
    }

    .about-stat:nth-child(2) {
        border-right: 0;
    }

    .about-stat-cta {
        padding-left: 30px;
    }
}


@media (max-width: 650px) {

    .about-header {
        padding-bottom: 50px;
    }

    .about-intro h2 {
        font-size: 3.2rem;
    }

    .about-main {
        grid-template-columns: 1fr;
        gap: 35px;
        padding: 60px 0;
    }

    .about-number {
        flex-direction: row;
        align-items: center;
        gap: 20px;
    }

    .about-number > span {
        font-size: 4rem;
    }

    .about-number-line {
        width: 50px;
        margin: 0;
    }

    .about-card {
        grid-column: auto;
        min-height: 340px;
        transform: none;
    }

    .about-stats {
        grid-template-columns: 1fr;
    }

    .about-stat,
    .about-stat:first-child,
    .about-stat-cta {
        padding: 25px 0;
        border-right: 0;
    }

    .about-stat:last-child {
        border-bottom: 0;
    }
}
/* =========================================================
   NOSOTROS
========================================================= */

.about {
    position: relative;
    overflow: hidden;
}


/* TOP */

.about-top {
    display: flex;
    align-items: center;
    justify-content: space-between;

    padding-bottom: 25px;

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


.about-number {
    font-family: var(--font-title);

    font-size: 14px;

    color: var(--text-muted);

    letter-spacing: .15em;
}


/* GRID */

.about-grid {
    display: grid;

    grid-template-columns: 1.15fr .85fr;

    gap: 100px;

    padding-top: 70px;
}


/* TITLE */

.about-title h2 {
    max-width: 750px;

    margin: 0;

    font-family: var(--font-title);

    font-size: clamp(
        3.5rem,
        7vw,
        7rem
    );

    line-height: .92;

    letter-spacing: -.055em;

    font-weight: 500;
}


.about-title h2 span {
    display: block;

    color: var(--accent);
}


/* TEXT */

.about-text {
    padding-top: 15px;
}


.about-text > p {
    max-width: 470px;

    margin: 0;

    font-size: 19px;

    line-height: 1.8;

    color: var(--text-muted);
}


/* STATS */

.about-stats {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 1px;

    margin-top: 65px;

    background: var(--border);
}


.about-stats > div {
    min-height: 110px;

    padding: 22px 18px;

    display: flex;

    flex-direction: column;

    justify-content: center;

    gap: 7px;

    background: var(--bg);
}


.about-stats strong {
    font-family: var(--font-title);

    font-size: 32px;

    line-height: 1;

    color: var(--accent);
}


.about-stats span {
    font-size: 10px;

    color: var(--text-muted);

    text-transform: uppercase;

    letter-spacing: .1em;
}


/* HOVER SUTIL */

.about-stats > div {
    transition: var(--transition);
}


.about-stats > div:hover {
    background: #111;

    transform: translateY(-4px);
}


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

@media (max-width: 1050px) {

    .about-grid {
        grid-template-columns: 1fr;

        gap: 45px;
    }

    .about-text {
        padding-top: 0;
    }

}


@media (max-width: 650px) {

    .about {
        padding: 70px 0;
    }

    .about-grid {
        padding-top: 45px;

        gap: 40px;
    }

    .about-title h2 {
        font-size: 3.5rem;
    }

    .about-text > p {
        font-size: 17px;
    }

    .about-stats {
        grid-template-columns: 1fr;

        margin-top: 40px;
    }

    .about-stats > div {
        min-height: 85px;
    }

}


.brands-section {overflow: hidden;/* background: #f7f5f1; */}
            .brands-heading { align-items: end; margin-bottom: 48px; }
            .brands-carousel { width: 100%; overflow: hidden; mask-image: linear-gradient(to right, transparent, #000 7%, #000 93%, transparent); -webkit-mask-image: linear-gradient(to right, transparent, #000 7%, #000 93%, transparent); }
            .brands-track { display: flex; width: max-content; gap: 20px; animation: brands-scroll 32s linear infinite; }
            .brands-carousel:hover .brands-track { animation-play-state: paused; }
            .brand-slide { width: 246px; height: 140px; flex: 0 0 246px; display: flex; align-items: center; justify-content: center; padding: 24px; background: #fff; border: 1px solid rgba(0,0,0,.07); border-radius: 8px; box-sizing: border-box; }
            .brand-slide img {display: block;width: 100%;height: 100%;max-width: 190px;max-height: 85px;object-fit: contain;/* filter: grayscale(100%); *//* opacity: .72; *//* transition: filter .3s ease, opacity .3s ease, transform .3s ease; */}
            .brand-slide:hover img { filter: grayscale(0); opacity: 1; transform: scale(1.04); }
            @keyframes brands-scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
            @media (max-width: 768px) { .brands-heading { margin-bottom: 32px; } .brand-slide { width: 190px; flex-basis: 190px; height: 110px; } .brands-track { gap: 14px; animation-duration: 26s; } }
            @media (prefers-reduced-motion: reduce) { .brands-track { animation: none; } }