:root {
    --primary-red: #D9369A;
    --primary-orange: #FF4D6D;
    --glow-color: rgba(217, 54, 154, 0.6);
    --bg-dark: #0a0505;
    --text-white: #ffffff;
    --text-gray: #cccccc;
    --gradient-btn: linear-gradient(90deg, #D9369A 0%, #FF4D6D 100%);
    --glass-bg: rgba(20, 10, 10, 0.7);
    --border-glow: 1px solid rgba(217, 54, 154, 0.3);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-white);
    overflow-x: hidden;
    min-height: 100vh;
}

.mobile-show {
    display: none;
}

/* Background Texture */
.background-texture {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--bg-dark);
    /* Fondo base oscuro + Patrón de "B" sutil + Gradiente de profundidad */
    background-image:
        url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Ctext x='50%25' y='50%25' font-family='Arial, sans-serif' font-weight='900' font-size='30' fill='rgba(255,255,255,0.03)' text-anchor='middle' dominant-baseline='central' transform='rotate(-15 30 30)'%3EB%3C/text%3E%3C/svg%3E"),
        radial-gradient(circle at 50% 50%, #1a0510 0%, #050103 100%);
    background-size: 60px 60px, cover;
    /* Tamaño del patrón y del gradiente */
    background-repeat: repeat, no-repeat;
    background-attachment: fixed;
    z-index: -10;
    /* Asegurar que quede muy atrás */
}

.background-texture::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.2);
    pointer-events: none;
}

/* Layout Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* HEADER PILL STYLE */
header {
    padding-top: 2rem;
    display: flex;
    justify-content: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.4s ease;
    animation: slideDown 0.8s ease-out;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

header.scrolled {
    padding-top: 1rem;
}

.navbar {
    background: rgba(10, 5, 5, 0.9);
    backdrop-filter: blur(10px);
    padding: 0.8rem 2rem;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 95%;
    max-width: 1200px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 0 0 20px rgba(217, 54, 154, 0.3);
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.navbar>div {
    position: relative;
    z-index: 1;
}

.navbar:hover {
    border-color: rgba(217, 54, 154, 0.3);
    box-shadow: 0 15px 40px rgba(217, 54, 154, 0.1);
}

.logo-b {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 50px;
    width: 50px;
    cursor: pointer;
    transition: transform 0.3s ease;
    background: transparent;
    border-radius: 50%;
    overflow: hidden;
    order: 1;
    margin-right: auto;
}

.logo-b:hover {
    transform: scale(1.1);
}

.logo-b span {
    color: var(--primary-red);
    display: inline-block;
}

.logo-b:hover span {
    animation: bounceLogo 0.5s infinite alternate;
}

@keyframes bounceLogo {
    from {
        transform: translateY(0);
    }

    to {
        transform: translateY(-3px);
    }
}

.nav-links {
    display: flex;
    gap: 2rem;
    order: 2;
    margin: 0 auto;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s;
    position: relative;
    padding: 5px 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 2px;
    background: var(--primary-red);
    transition: width 0.3s ease;
    box-shadow: 0 0 10px var(--primary-red);
}

.nav-links a:hover {
    color: white;
    text-shadow: 0 0 10px rgba(217, 54, 154, 0.6);
    transform: translateY(-2px);
}

.nav-links a:hover::after {
    width: 100%;
}

.social-separator {
    width: 1px;
    height: 20px;
    background: rgba(255, 255, 255, 0.2);
    margin: 0 1rem;
}

.nav-socials {
    display: flex;
    gap: 1rem;
    align-items: center;
    order: 3;
    /* Desktop Layout Order */
    margin-left: auto;
    /* Ensure it stays right */
}

.nav-socials a {
    color: white;
    font-size: 1.1rem;
    transition: all 0.3s;
    position: relative;
    z-index: 1;
}

.nav-socials a::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    width: 35px;
    height: 35px;
    background: var(--primary-red);
    border-radius: 50%;
    z-index: -1;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    opacity: 0;
}

.nav-socials a:hover::before {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
}

.nav-socials a:hover {
    color: white;
    transform: rotate(15deg);
}

/* Mobile Menu Toggle Styles (Hidden by default on Desktop) */
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.menu-toggle .bar {
    width: 25px;
    height: 3px;
    background-color: white;
    transition: all 0.3s ease;
    border-radius: 5px;
}

/* Toggle Animation */
.menu-toggle.is-active .bar:nth-child(2) {
    opacity: 0;
}

.menu-toggle.is-active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.menu-toggle.is-active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}


/* HERO SECTION */
.hero {
    min-height: 100vh;
    padding: 180px 0 4rem 0;
    position: relative;
    z-index: 1;
    overflow: hidden;
    background-color: #000;
    background-image: none;
    box-shadow: inset 0 0 100px rgba(0, 0, 0, 0.5);
}

.hero-layout {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 2;
}

.hero-bg-decor {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
    opacity: 0.3;
}

.floating-b {
    position: absolute;
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    color: transparent;
    -webkit-text-stroke: 4px rgba(217, 54, 154, 0.5);
    font-size: 20rem;
    user-select: none;
}

/* B - Positions & Rotations distribution */
.b-1 {
    top: -10%;
    left: -5%;
    transform: rotate(-15deg);
    font-size: 30rem;
    opacity: 0.5;
}

.b-2 {
    bottom: 10%;
    left: 20%;
    transform: rotate(10deg);
    font-size: 25rem;
    -webkit-text-stroke: 4px rgba(255, 255, 255, 0.1);
}

.b-3 {
    top: 15%;
    right: 15%;
    transform: rotate(25deg);
    font-size: 20rem;
    -webkit-text-stroke: 4px rgba(217, 54, 154, 0.3);
}

.b-4 {
    bottom: -15%;
    right: -5%;
    transform: rotate(-10deg);
    font-size: 35rem;
    opacity: 0.3;
}

/* Add Paper Texture Blend back but cleaner */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, transparent 50%, rgba(0, 0, 0, 0.5) 100%);
    z-index: -1;
    pointer-events: none;
}

/* Gradient Fade at the bottom of Hero to blend with next section */
.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 250px;
    background: linear-gradient(to bottom, transparent 0%, var(--bg-dark) 90%);
    z-index: 0;
    pointer-events: none;
}

.hero-text {
    flex: 1;
    max-width: 800px;
    /* Increased to allow centering spread */
    text-align: center;
    /* Center all text inside */
    margin: 0 auto;
    /* Horizontally center block */
}

.hero-text h1,
.hero-text h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

.hero-text .brand-name {
    color: white;
}

.hero-text .brand-name span {
    color: var(--primary-red);
    text-shadow: 0 0 15px rgba(217, 54, 154, 0.8), 0 0 30px rgba(217, 54, 154, 0.4);
    display: inline-block;
    animation: pulseGlow 2s infinite alternate;
}

@keyframes pulseGlow {
    from {
        text-shadow: 0 0 10px rgba(217, 54, 154, 0.6);
        transform: scale(1);
    }

    to {
        text-shadow: 0 0 25px rgba(217, 54, 154, 1), 0 0 50px rgba(217, 54, 154, 0.6);
        transform: scale(1.1) rotate(5deg);
    }
}

.hero-text .highlight {
    color: #ffffff;
    background: none;
    -webkit-text-fill-color: initial;
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
    font-weight: 900;
    letter-spacing: 1px;

    /* Efecto de profundidad y firmeza con tono ROSA */
    text-shadow:
        2px 2px 0 rgba(217, 54, 154, 0.5),
        4px 4px 0 rgba(217, 54, 154, 0.3),
        6px 6px 15px rgba(217, 54, 154, 0.2);
}



.hero-text p {
    color: var(--text-gray);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    max-width: 600px;
    /* Slightly wider for better reading centered */
    margin-left: auto;
    margin-right: auto;
}

.btn-glow {
    display: inline-block;
    background: var(--gradient-btn);
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 0 20px rgba(217, 54, 154, 0.5);
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-glow:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(217, 54, 154, 0.8);
}





/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: white;
    color: #D9369A;
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.4);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.3s;
    animation: pulse-red 2s infinite;
    font-size: 35px;
    text-decoration: none;
}

@keyframes pulse-red {
    0% {
        box-shadow: 0 0 0 0 rgba(217, 54, 154, 0.7);
    }

    70% {
        box-shadow: 0 0 0 20px rgba(217, 54, 154, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(217, 54, 154, 0);
    }
}

.whatsapp-float i {
    display: block;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    background-color: #D9369A;
    color: white;
    box-shadow: 0 0 20px rgba(217, 54, 154, 0.6);
}

.whatsapp-float:hover i {
    color: white !important;
}

/* Responsive */
@media (max-width: 968px) {
    .hero {
        padding-top: 220px;
        /* Increased to accommodate larger header stack */
    }

    .hero-layout {
        flex-direction: column;
        justify-content: center;
        text-align: center;
        gap: 5rem;
    }

    .hero-text {
        max-width: 100%;
        margin-top: 2rem;
    }

    .hero-text p {
        margin: 0 auto 2rem auto;
    }

    .scroll-pill {
        margin: 2rem auto 0 auto;
        display: none;
        /* Hide on mobile to save space */
    }

    .hero-form-container {
        width: 100%;
        justify-content: center;
    }

    .navbar {
        flex-wrap: wrap;
        width: 90%;
        padding: 1rem 0.5rem;
        justify-content: space-between;
        align-items: center;
    }

    .logo-b {
        margin-right: 0;
        /* Reset desktop margin */
        order: 1;
        /* Keep logo first */
    }

    .menu-toggle {
        display: flex;
        /* Show hamburger on mobile */
        order: 3;
        /* Force to far right */
    }

    /* Logo is order: 0 (default) - Left */

    .nav-socials {
        display: flex;
        order: 2;
        /* Force to middle */
        margin: 0 auto;
        /* Center visually in available space */
        gap: 1.5rem;
        /* More spacing for touch */
    }

    .social-separator {
        display: none;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        text-align: center;
        margin-top: 1rem;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        padding-top: 1rem;
        order: 4;
        /* Links drop down below everything */
    }

    .nav-links.active {
        display: flex;
    }

    .hero-text h2 {
        font-size: 2rem;
    }

    .hero-text .highlight {
        font-size: 1.8rem;
        line-height: 1.1;
    }
}

/* CLIENTS SECTION */
/* CLIENTS SECTION - MODERN ANGLED LOOK */
.clients-section {
    padding: 8rem 0;
    overflow: hidden;
    scroll-margin-top: 100px;
    position: relative;
}

/* Utility Class for Grid Control */
@media (max-width: 767px) {
    .desktop-only {
        display: none !important;
    }
}

/* CLIENTS GRID STYLES */
.clients-grid-wrapper {
    width: 100%;
    padding: 0 2rem;
    display: flex;
    justify-content: center;
}

.clients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
    gap: 1rem;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
}

/* Logos Card Style */
.logo-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    height: 110px;
    padding: 1rem;
    margin: 0 !important;

    /* Neon Styles */
    background: rgba(255, 255, 255, 0.02);
    border-radius: 12px;
    border: 1px solid rgba(217, 54, 154, 0.2);
    box-shadow: 0 0 10px rgba(217, 54, 154, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

.logo-item img {
    height: 50%;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 0 5px rgba(217, 54, 154, 0.3));
    transition: all 0.3s ease;
}

.logo-item span {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    margin-top: auto;
}

.logo-item:hover {
    transform: translateY(-5px) scale(1.05);
    /* Slight lift and scale of container */
    border-color: rgba(217, 54, 154, 0.8);
    background: rgba(217, 54, 154, 0.1);
    box-shadow: 0 0 30px rgba(217, 54, 154, 0.4);
    z-index: 10;
}

.logo-item:hover img {
    transform: scale(1.5);
    /* Big zoom on the logo itself */
    filter: drop-shadow(0 0 15px rgba(217, 54, 154, 0.8));
}

/* Responsive Grid adjustment */
@media (min-width: 768px) {
    .clients-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (min-width: 1024px) {
    .clients-grid {
        /* Switch to Flexbox for desktop to center the last row beautifully (6-6-4) */
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 2rem;
        max-width: 1200px;
        /* Constrain width to force wrapping */
    }

    .logo-item {
        /* Force approx 6 items per row */
        width: calc(16.666% - 2rem);
        min-width: 150px;
        /* Don't get too small */
    }
}

/* Mobile specific for compact grid */
@media (max-width: 767px) {
    .clients-grid {
        /* Switch to Flexbox to center orphans */
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        /* This centers the last orphan items! */
        gap: 0.5rem;
    }

    .logo-item {
        /* Force width to be roughly 1/4th minus gap, but flexible */
        width: calc(25% - 0.5rem);
        flex-grow: 0;
        flex-shrink: 0;

        padding: 0.2rem;
        height: 80px;
        border-radius: 8px;
    }

    .logo-item img {
        height: 80%;
        /* Maximize logo size in box */
    }

    .logo-item span {
        display: none;
        /* Hide text on mobile to save space */
    }
}

/* SERVICES SECTION - ABSTRACT 3D */
.services-section {
    padding: 8rem 0;
    position: relative;
    z-index: 10;
}

.section-title {
    text-align: center;
    margin-bottom: 5rem;
    position: relative;
    z-index: 2;
}

.section-title h2 {
    font-size: clamp(2rem, 6vw, 3.5rem);
    line-height: 1.1;
    word-break: break-word;
    /* Asegurar que no desborde si es muy largo */
    margin-bottom: 0.5rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    letter-spacing: -1px;
}

.section-title .highlight {
    background: linear-gradient(90deg, #D9369A 0%, #FFFFFF 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 30px rgba(217, 54, 154, 0.4);
    display: inline-block;
    position: relative;
}

/* Floating Abstract Background Elements for Section */
.services-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(217, 54, 154, 0.15) 0%, transparent 60%);
    transform: translate(-50%, -50%);
    z-index: -1;
    pointer-events: none;
}

.services-statement-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto;
}

.service-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    /* Smooth custom easing */
    cursor: pointer;
    background: transparent;
    position: relative;
    overflow: hidden;
}

/* Reveal background on hover */
.service-row::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(217, 54, 154, 0.1), transparent);
    transform: translateX(-100%);
    transition: transform 0.4s ease;
    z-index: 0;
}

.service-row:hover::before {
    transform: translateX(0);
}

.service-row:hover {
    border-bottom: 1px solid var(--primary-red);
    padding-left: 3rem;
    /* Indent on hover */
}

.service-num {
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.4);
    margin-right: 2rem;
    position: relative;
    z-index: 1;
}

/* Hide numbers on Desktop */
@media (min-width: 968px) {
    .service-num {
        display: none;
    }
}

.service-main {
    flex: 1;
    position: relative;
    z-index: 1;
}

.service-name {
    font-size: 2.5rem;
    font-weight: 900;
    text-transform: uppercase;
    color: white;
    font-family: 'Montserrat', sans-serif;
    margin: 0;
    transition: color 0.3s;
}

.service-row:hover .service-name {
    color: var(--primary-red);
}

.service-hidden-details {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: all 0.4s ease;
    margin-top: 0;
    color: #ccc;
    font-weight: 300;
    max-width: 600px;
}

/* Show details on hover */
.service-row:hover .service-hidden-details {
    max-height: 100px;
    opacity: 1;
    margin-top: 0.5rem;
}

.service-icon i {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.3);
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
}

.service-row:hover .service-icon i {
    color: white;
    transform: rotate(45deg);
}


/* ABOUT SECTION (NOSOTROS) */
.about-section {
    padding: 8rem 0;
    position: relative;
    overflow: hidden;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    /* Single column for all devices */
    gap: 3rem;
    align-items: center;
    /* Robust Design Global */
    text-align: left;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 3rem;
    /* More padding for desktop */
    border-radius: 20px;
    background: radial-gradient(circle at top right, rgba(217, 54, 154, 0.1), transparent 40%);
}

.about-visual {
    display: none !important;
    /* Hidden on all devices */
}

.about-content {
    position: relative;
    z-index: 2;
}

.about-subtitle {
    font-size: 3rem;
    line-height: 1;
    margin-bottom: 2rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    background: linear-gradient(90deg, #fff, #999);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.about-description {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #bbb;
    margin-bottom: 3rem;
}

.about-description strong {
    color: var(--primary-red);
}

.about-stats {
    display: flex;
    flex-wrap: wrap;
    /* Allow wrap on very small screens but mostly row */
    justify-content: space-between;
    /* Space out evenly */
    gap: 2rem;
    margin-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 3rem;
    font-weight: 900;
    color: #ffffff !important;
    /* Force White on all devices */
    font-family: 'Montserrat', sans-serif;
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--primary-red) !important;
    /* Force Pink on all devices */
    text-transform: uppercase;
    font-weight: 700;
}



.about-visual:hover {
    mix-blend-mode: normal;
    opacity: 1;
}

/* Animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-up {
    transform: translateY(30px);
}

.fade-left {
    transform: translateX(-30px);
}

.fade-right {
    transform: translateX(30px);
}

/* Tablet Specific (Center Alignment Request) */
@media (min-width: 600px) and (max-width: 1024px) {
    .about-subtitle {
        text-align: center !important;
        margin-left: auto;
        margin-right: auto;
        display: block;
    }
}

/* Responsive */
@media (max-width: 968px) {

    /* Fix Header Overlap & Layout */
    .mobile-show {
        display: inline;
    }

    .about-section {
        padding-top: 40px;
        scroll-margin-top: 150px;
        /* Ensures header doesn't cover title on click */
    }

    .about-visual {
        display: none;
    }

    /* Robust / Impactful Mobile Design */
    .about-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: left;
        /* Editorial alignment */
        border: 1px solid rgba(255, 255, 255, 0.1);
        padding: 2rem;
        border-radius: 20px;
        background: radial-gradient(circle at top right, rgba(217, 54, 154, 0.1), transparent 40%);
    }

    .about-subtitle {
        font-size: 2.2rem;
        text-align: left;
        line-height: 1.1;
        margin-bottom: 1.5rem;
    }

    .section-title.text-left {
        text-align: center;
    }

    .section-title h2 {
        font-size: 1.5rem !important;
        line-height: 1.2;
        width: 100%;
        overflow-wrap: break-word;
    }

    .about-description {
        text-align: left;
        font-size: 1rem;
        padding-right: 1rem;
    }

    /* Horizontal Stats Row */
    .about-stats {
        flex-direction: row;
        /* Horizontal */
        flex-wrap: nowrap;
        justify-content: space-between;
        gap: 0.5rem;
        margin-top: 3rem;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        padding-top: 1.5rem;
    }

    .stat-item {
        align-items: flex-start;
        /* Align text start */
    }

    .stat-number {
        font-size: 1.8rem;
        /* Scaled to fit 3 in a row */
    }

    .stat-label {
        font-size: 0.7rem;
        text-align: left;
        line-height: 1.2;
    }

    .service-row {
        padding: 1.5rem;
    }

    .service-name {
        font-size: 1.5rem;
    }

    .service-num {
        display: none;
    }

    .service-content h3 {
        font-size: 1.8rem;
    }
}


/* FOOTER SECTION */
.fun-footer {
    background: #000;
    position: relative;
    padding: 4rem 0 2rem;
    overflow: hidden;
    margin-top: 4rem;
}

.footer-gradient-border {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #D9369A, #FF4D6D, #D9369A);
    background-size: 200% 100%;
    animation: flowGradient 3s linear infinite;
}

@keyframes flowGradient {
    0% {
        background-position: 0% 50%;
    }

    100% {
        background-position: 100% 50%;
    }
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    /* Reduced gap */
}

.footer-cta {
    text-align: center;
}

.cta-text {
    font-family: 'Outfit', sans-serif;
    font-size: 1.2rem;
    color: #888;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.huge-text {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(3rem, 10vw, 8rem);
    font-weight: 900;
    margin: 0;
    line-height: 1;
    background: linear-gradient(180deg, #fff 0%, rgba(255, 255, 255, 0.1) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.5rem;
    /* Drastically reduced margin */
    transition: transform 0.5s;
}

.huge-text:hover {
    transform: scale(1.05) rotate(-2deg);
    cursor: default;
}

/* Footer Marquee */
.footer-marquee-container {
    width: 100%;
    /* Natural full width */
    overflow: hidden;
    padding: 2rem 0;
    opacity: 0.8;
    background: transparent;
    /* or specific background if needed */
}

.footer-marquee {
    display: flex;
    gap: 2rem;
    white-space: nowrap;
    animation: marqueeFooter 20s linear infinite;
}

.footer-marquee span {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 3rem;
    background: linear-gradient(90deg, #333, #555);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-transform: uppercase;
}

@keyframes marqueeFooter {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.footer-copy {
    color: #666;
    font-size: 0.9rem;
}


/* Video Frame CSS Fixes */
.video-container {
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease;
}

.video-container:hover {
    transform: translateY(-10px);
}

.video-frame {
    position: relative;
    cursor: pointer;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.4);
    transition: opacity 0.3s;
    z-index: 2;
}

.video-overlay i {
    font-size: 4rem;
    color: white;
    filter: drop-shadow(0 0 20px rgba(0, 0, 0, 0.5));
    transition: transform 0.3s;
}

.video-frame:hover .video-overlay i {
    transform: scale(1.2);
    color: var(--primary-red);
}

.video-overlay.playing {
    opacity: 0;
    pointer-events: none;
}

/* =========================================
   PREMIUM AGENCY STYLES (NEW)
   ========================================= */


/* 3. HERO REFACTOR (VIDEO BACKGROUND) */
@media (min-width: 969px) {
    .hero {
        padding: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        background: #000;
    }
}

.hero-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    opacity: 1;
    /* Full visible */
    filter: contrast(1.1) saturate(1.2) brightness(0.6);
    /* Vibrant & Cinematic */
}

/* Texture overlay on top of video */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.8) 100%);
    /* Lighter Vignette */
    z-index: 1;
    /* Clean video - no grain */
    background-image: none;
}

.hero-layout.center-mode {
    flex-direction: column;
    text-align: center;
    z-index: 2;
    position: relative;
    width: 100%;
    max-width: 900px;
}

.hero-text {
    max-width: 100%;
    margin-top: 0;
}

.hero-text h2.brand-name {
    font-size: 5rem;
    /* Massive */
    letter-spacing: -2px;
    margin-bottom: 0px;
}

.hero-text h2.highlight {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    background: linear-gradient(90deg, #fff, #ccc);
    /* Metallic White */
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-text p {
    font-size: 1.2rem;
    max-width: 650px;
    margin: 0 auto 3rem auto;
    color: #ffffff;
    /* Pure white */
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.9);
    /* Strong lift */
    font-weight: 500;
    /* More presence */
    line-height: 1.6;
    opacity: 0.95;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.btn-outline {
    display: inline-block;
    padding: 1rem 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    backdrop-filter: blur(5px);
}

.btn-outline:hover {
    background: white;
    color: black;
    border-color: white;
}



/* FOOTER MARQUEE */
.footer-marquee-container {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 1.5rem 0;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0) 0%, rgba(217, 54, 154, 0.1) 50%, rgba(0, 0, 0, 0) 100%);
    border-top: 2px solid var(--primary-red);
    border-bottom: 2px solid var(--primary-red);
    box-shadow: 0 0 30px rgba(217, 54, 154, 0.15);
}

.footer-marquee {
    display: flex;
    width: max-content;
    animation: scrollMarquee 20s linear infinite;
    /* Slightly faster */
}

.footer-marquee span {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: 2.5rem;
    /* Bigger */
    color: #fff;
    font-style: italic;
    /* Dynamic */
    text-shadow: 0 0 15px rgba(217, 54, 154, 0.8);
    /* Neon Glow */
    margin-right: 4rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    white-space: nowrap;
}

/* 5. FOOTER FORM STYLES */
.contact-section-dedicated {
    padding: 6rem 0;
    position: relative;
    background-color: var(--bg-dark);
    /* Revert to dark bg for section */
}

.footer-form-container {
    width: 100%;
    /* max-width removed to fit grid */
    margin: 0;

    /* MATCHING STYLE: Glass Effect like Info Card */
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);

    padding: 3rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

/* Subtle 'B' in Form Background */
.footer-form-container::after {
    content: 'B!';
    position: absolute;
    top: 55%;
    left: 45%;
    transform: translate(-50%, -50%) rotate(-10deg);
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: 30rem;
    color: rgba(255, 255, 255, 0.02);
    /* Very subtle white */
    pointer-events: none;
    z-index: 0;
    line-height: 1;
}

/* Ensure content sits above the B */
.footer-form-container>* {
    position: relative;
    z-index: 1;
}

.footer-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: flex;
    gap: 1.5rem;
}

.form-control-footer {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    padding: 1rem 0;
    color: white;
    font-family: 'Outfit', sans-serif;
    font-size: 1.1rem;
    transition: border-color 0.3s;
}

.form-control-footer:focus {
    outline: none;
    border-bottom-color: var(--primary-red);
}

.form-control-footer::placeholder {
    color: rgba(255, 255, 255, 0.7);
    /* Lighter placeholder for better contrast on pink */
}

.btn-footer-submit {
    margin-top: 1rem;
    align-self: flex-start;
    padding: 1rem 0;
    /* Full width feel or balanced padding */
    width: 100%;
    /* Make it full width for better alignment */
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    background: var(--gradient-btn);
    color: white;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    box-shadow: 0 5px 20px rgba(217, 54, 154, 0.4);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.btn-footer-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(217, 54, 154, 0.6);
}

.btn-footer-submit:active {
    transform: translateY(-1px);
}

@media (max-width: 768px) {
    .form-row {
        flex-direction: column;
        gap: 1rem;
    }

    .hero-text h2.brand-name {
        font-size: 3.5rem;
    }

    .hero-text h2.highlight {
        font-size: 2rem;
    }

    .footer-form-container {
        padding: 1.5rem;
    }

    .cursor-dot,
    .cursor-circle {
        display: none !important;
        /* No custom cursor on touch */
    }
}

/* Dock Studio Gradient Link */
.dock-studio-link {
    background: linear-gradient(90deg, #ffaad4, #d9369a);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: #d9369a;
    /* Fallback */
    font-weight: 800;
    text-decoration: none;
    transition: all 0.3s ease;
}

.dock-studio-link:hover {
    filter: brightness(1.2);
    /* Make it pop on hover */
}

/* =========================================
   CONTACT GRID LAYOUT
   ========================================= */
.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    /* Equal width for both cards */
    gap: 2rem;
    max-width: 900px;
    margin: 3rem auto 0;
    align-items: stretch;
}

/* Info Card Style */
.contact-info-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

/* Subtle 'B!' in Info Card Background */
.contact-info-card::after {
    content: 'B!';
    position: absolute;
    top: 55%;
    left: 45%;
    transform: translate(-50%, -50%) rotate(-10deg);
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: 30rem;
    color: rgba(255, 255, 255, 0.02);
    pointer-events: none;
    z-index: 0;
    line-height: 1;
}

/* Ensure content sits above the B */
.contact-info-card>* {
    position: relative;
    z-index: 1;
}

.info-item {
    margin-bottom: 2.5rem;
}

.info-item:last-child {
    margin-bottom: 0;
}

.info-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    font-weight: 800;
    color: var(--primary-red);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
    display: block;
}

.info-content {
    font-size: 1.1rem;
    color: white;
    font-weight: 300;
    text-decoration: none;
    line-height: 1.6;
}

.info-content a {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
}

.info-content a:hover {
    color: var(--primary-red);
}

.info-socials {
    display: flex;
    gap: 1rem;
    margin-top: 0.5rem;
}

.info-social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.info-social-link:hover {
    background: var(--primary-red);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(217, 54, 154, 0.4);
}

/* Mobile Adjustments for Contact Grid */
@media (max-width: 650px) {
    .contact-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .contact-info-card {
        padding: 2.5rem;
        text-align: center;
        align-items: center;
    }
}

/* Tablet & Desktop Adjustments for Contact Info Card */
@media (min-width: 651px) {
    .contact-info-card {
        text-align: center;
        align-items: center;
    }
}

/* Mobile Landscape Fix - Prevent header from covering hero title */
/* Landscape Fix (Mobile & Tablet) - Broad range to catch all phones */
@media (max-width: 1200px) and (orientation: landscape) and (max-height: 600px) {
    .hero {
        padding: 160px 0 4rem 0 !important;
        height: auto !important;
        min-height: 100vh;
    }

    .hero-text h2 {
        font-size: 2.2rem !important;
    }

    .hero-text h2.highlight {
        font-size: 1.8rem !important;
        margin-bottom: 1rem !important;
    }
}



/* DIAGONAL MARQUEE SEPARATOR */
.diagonal-marquee-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 3rem 0;
    margin-top: -3rem;
    /* Solapamiento negativo para unir secciones */
    z-index: 10;
    background: transparent;
    pointer-events: none;
    /* Que no bloquee clicks */
}

.diagonal-marquee {
    background: #000;
    /* Fondo negro elegante */
    transform: rotate(-2deg) scale(1.1);
    width: 110%;
    margin-left: -5%;
    padding: 0.8rem 0;

    /* Bordes de neón finos */
    border-top: 2px solid var(--primary-red);
    border-bottom: 2px solid var(--primary-red);

    /* Glow sofisticado */
    box-shadow: 0 0 30px rgba(217, 54, 154, 0.3);

    display: flex;
    align-items: center;
}

.track-diagonal {
    display: flex;
    white-space: nowrap;
    animation: scrollMarquee 20s linear infinite;
}

.track-diagonal span {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: 1.6rem;
    color: #fff;
    /* Texto blanco puro */
    text-transform: uppercase;
    margin-right: 4rem;
    letter-spacing: 3px;
    text-shadow: 0 0 15px rgba(217, 54, 154, 0.8);
    /* Resplandor rosa neón */
}

/* Reutilizar animación scrollMarquee existente o definir si no está */
@keyframes scrollMarquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* CONTACT SOCIAL ICONS CLEANUP */
.info-social-link {
    text-decoration: none !important;
    border: none !important;
    outline: none !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    font-size: 1.2rem;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
    margin-right: 0.5rem;
}

.info-social-link:hover,
.info-social-link:active,
.info-social-link:focus {
    color: var(--text-white);
    background: var(--primary-red);
    transform: translateY(-3px);
    text-decoration: none !important;
    box-shadow: 0 5px 15px rgba(217, 54, 154, 0.4);
}