:root {
    --background-color: #121212;
    --primary-color: #ff69b4;
    --secondary-color: #ff1493;
    --text-color: #ffffff;
    --border-color: rgba(85,18,89, 0.8);
    --hover-color: #ff1493;
    --button-bg: #8a2be2;
    --dark-bg: #000000;
    --card-bg: rgba(18, 18, 18, 0.9);
}

@font-face {
    font-family: 'NexaHeavy';
    src: url('../font/nexaheavy.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
}
@font-face {
    font-family: 'NexaLight';
    src: url('../font/nexalight.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

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

html, body {
    width: 100vw;
    min-height: 100vh;
    overflow-x: hidden;
    overflow-y: auto;
    font-family: 'NexaLight', Arial, Helvetica, sans-serif;
    font-size: 1rem;
}

body {
    width: 100vw;
    min-height: 100vh;
    background: #000;
}

.main-content {
    position: relative;
    z-index: 1;
}

.video-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    z-index: 0;
    pointer-events: none;
}

.video-bg iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 120vw;
    height: 120vh;
    min-width: 100vw;
    min-height: 100vh;
    transform: translate(-50%, -50%);
    border: none;
    display: block;
}

canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 0;
    pointer-events: none;
}

/* Header & Navigation */
.custom-nav {
    background: rgba(10,10,20,0.82);
    box-shadow: 0 2px 10px #0005;
    position: relative;
    width: 100vw;
    top: 0;
    left: 0;
    z-index: 1100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.6rem 2vw 0.6rem 2vw;
    font-family: 'NexaLight', Arial, Helvetica, sans-serif;
    font-weight: 400;
    font-size: 1rem;
}

.top-nav-links {
    display: flex;
    align-items: center;
    gap: 2.2rem;
    margin-left: auto;
    list-style: none;
}

/* LOGOS ALINEADOS HORIZONTALMENTE */
.logo-group {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1.2rem;
    justify-content: flex-start;
}
.isotipo-logo {
    height: 85px !important;
    width: auto !important;
    display: block;
}
.logo img {
    height: 85px !important;
    width: auto !important;
    display: block;
    margin: 0;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1.3rem;
    margin-left: auto;
}

.main-nav-links {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.mobile-menu {
    display: none;
}

.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    cursor: pointer;
    width: 36px;
    height: 36px;
    margin-left: 0.8rem;
    z-index: 1200;
}

.hamburger span {
    height: 4px;
    width: 100%;
    background: var(--primary-color, #a95fff);
    margin: 5px 0;
    border-radius: 2px;
    transition: 0.4s;
    display: block;
}

.hamburger.open span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
    opacity: 0;
}

.hamburger.open span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* MENÚ SIN SUBRAYADO, HOVER Y ACTIVO */
.nav-btn, .lang-btn {
    background: none !important;
    border: none !important;
    color: #fff !important;
    font-family: 'NexaLight', Arial, Helvetica, sans-serif !important;
    font-size: 1rem !important;
    border-radius: 0;
    padding: 0.18rem 0.95rem;
    margin: 0 0.1rem;
    font-weight: 400 !important;
    box-shadow: none !important;
    transition: color 0.18s;
    text-decoration: none !important;
}

.nav-btn:hover, .lang-btn:hover {
    color: #a95fff !important;
    background: none !important;
    border: none !important;
    text-decoration: none !important;
}

.nav-btn.active, .lang-btn.active {
    color: #fff !important;
    background: none !important;
    border: none !important;
    text-decoration: none !important;
    box-shadow: 0 2px 0 0 #7a34c6 inset;
}

.nav-btn:focus {
    outline: none;
}

.lang-switcher-top {
    display: flex;
    gap: 0.2rem;
}

/* Mobile adaptations */
@media (max-width: 900px) {
    .custom-nav {
        flex-direction: column;
        align-items: flex-start;
        padding: 0.2rem 0.5rem;
    }
    .logo-group {
        margin-bottom: 0.7rem;
    }
    .top-nav-links {
        display: none;
    }
    .nav-links {
        display: flex !important;
        flex-direction: column;
        width: 100vw;
        left: 0;
        background: rgba(10,10,20,0.97);
        position: absolute;
        top: 100%;
        z-index: 1101;
        padding: 1.2rem 0 1.2rem 0.5rem;
        gap: 0.2rem;
    }
    .nav-btn, .lang-btn {
        width: 96%;
        justify-content: flex-start;
        font-size: 1.07rem;
        padding: 0.36rem 1.05rem;
    }
    .lang-switcher-top {
        width: 100%;
        justify-content: flex-start;
    }
    .landing-highlight-section {
        min-height: 60vh;
    }
    .landing-highlight-bg {
        background-size: cover;
        background-position: center top;
        opacity: 1;
    }
    .landing-highlight-content {
        padding: 1.1rem 0.7rem 1.3rem 0.7rem;
        max-width: 99vw;
    }
    .landing-highlight-main-text {
        font-size: 1.45rem;
        line-height: 1.14;
    }
    .landing-highlight-meets {
        font-size: 1.45rem;
    }
    .landing-highlight-desc {
        font-size: 1.02rem;
    }
    .main-nav-links, .lang-switcher-top {
        display: none !important;
    }
    .hamburger {
        display: flex;
    }
    .mobile-menu {
        display: none;
        position: absolute;
        top: 100%;
        right: 0;
        left: 0;
        background: rgba(10,10,20,0.97);
        z-index: 1201;
        padding: 1.2rem 0 1.2rem 0.5rem;
        box-shadow: 0 8px 24px 0 rgba(0,0,0,0.18);
        border-bottom-left-radius: 16px;
        border-bottom-right-radius: 16px;
    }
    .mobile-menu.open {
        display: block;
    }
    .mobile-nav-links {
        display: flex;
        flex-direction: column;
        gap: 0.2rem;
        list-style: none;
        padding: 0;
        margin: 0;
    }
    .mobile-nav-links li {
        width: 100%;
        margin-bottom: 0.5rem;
    }
    .nav-btn, .lang-btn {
        width: 96%;
        justify-content: flex-start;
        font-size: 1.07rem;
        padding: 0.36rem 1.05rem;
    }
    .logo-group {
        margin-bottom: 0.7rem;
    }
    .landing-highlight-section {
        min-height: 60vh;
    }
    .landing-highlight-bg {
        background-size: cover;
        background-position: center top;
        opacity: 1;
    }
    .landing-highlight-content {
        padding: 1.1rem 0.7rem 1.3rem 0.7rem;
        max-width: 99vw;
    }
    .landing-highlight-main-text {
        font-size: 1.45rem;
        line-height: 1.14;
    }
    .landing-highlight-meets {
        font-size: 1.45rem;
    }
    .landing-highlight-desc {
        font-size: 1.02rem;
    }
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 6rem 1rem;
    position: relative;
}

.hero-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 4.5rem;
    max-width: 1300px;
    margin: 0 auto;
    padding: 5rem 2.5rem 3rem 4.5rem;
}

.hero-content {
    flex: 1 1 520px;
    min-width: 370px;
    max-width: 540px;
    margin-left: 1.5rem;
}

.hero-iframe-circle {
    flex: 0 0 620px;
    width: 500px;
    height: 650px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 0 0 8px #a95fff44, 0 0 32px 0 rgba(120, 80, 200, 0.16);
    background: #1a1126;
}

.hero-iframe-circle iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
    background: #1a1126;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    text-shadow: 0 0 20px rgba(255,105,180,0.5);
    font-family: 'NexaHeavy', Arial, Helvetica, sans-serif;
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.hero-gallery {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    min-height: 220px;
    margin-bottom: 1.5rem;
    width: 480px;
    max-width: 100%;
    position: relative;
    transition: width 0.2s;
}

.hero-gallery-title {
    font-size: 2.1rem;
    color: #fff;
    font-family: 'NexaHeavy', Arial, Helvetica, sans-serif;
    margin-bottom: 0.8rem;
    text-align: left;
    line-height: 1.1;
    min-height: 2.5em;
}

.hero-gallery-text {
    font-size: 1.18rem;
    color: #fff;
    font-family: 'NexaLight', Arial, Helvetica, sans-serif;
    text-align: left;
    line-height: 1.45;
    min-height: 4.5em;
    max-width: 95vw;
    transition: opacity 0.5s, transform 0.5s;
    opacity: 1;
    position: relative;
}

.hero-gallery-text.fade-out {
    opacity: 0;
    transform: translateX(-40px);
}

.hero-gallery-text.fade-in {
    opacity: 1;
    transform: translateX(0);
}

.hero-gallery-dots {
    display: flex;
    gap: 2.4rem;
    margin-top: 1.5rem;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    min-height: 36px;
}

.hero-gallery-dot {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #fff4;
    border: 3px solid #fff;
    cursor: pointer;
    transition: background 0.2s, border 0.2s, transform 0.2s;
    box-shadow: 0 0 0 2px #a95fff44;
    display: inline-block;
    margin-right: 1rem;
    margin-top:1rem;
}

.hero-gallery-dot.active {
    background: #a95fff;
    border-color: #fff;
    transform: scale(1.18);
    box-shadow: 0 0 0 3px #a95fff88;
}

@media (max-width: 900px) {
    .hero-flex {
        flex-direction: column;
        align-items: center;
        gap: 2rem;
        padding: 2.5rem 0.5rem 1.5rem 0.5rem;
    }
    .hero-content {
        min-width: 0;
        max-width: 100vw;
        margin-left: 0;
    }
    .hero-gallery {
        width: 98vw;
        max-width: 98vw;
    }
    .hero-gallery-title {
        font-size: 1.3rem;
    }
    .hero-gallery-text {
        font-size: 1rem;
    }
}

/* Services Section */
.services {
    padding: 5rem 1rem;
    text-align: center;
    background-color: rgba(0, 0, 0, 0.8);
}

.trusted {
    margin-top: 2rem;
    font-size: 1.5rem;
    color: var(--primary-color);
    text-shadow: 0 0 10px rgba(255,105,180,0.3);
}

/* Skills Section */
.skills, .skills * {
    color: #fff !important;
}

.skills {
    padding: 5rem 1rem;
    background-color: rgba(0, 0, 0, 0.0);
}

.skills h2, .latest-work h2 {
    text-align: left;
    margin-bottom: 1.5rem;
    color: var(--text-color) !important;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 1rem;
    font-weight: normal;
    font-family: 'NexaHeavy', Arial, Helvetica, sans-serif;
    font-size: 2.1rem;
}

.bold-text {
    font-weight: bold;
    color: var(--text-color) !important;
    font-family: 'NexaHeavy', Arial, Helvetica, sans-serif;
    font-size: 1.18rem;
}

.section-description {
    text-align: left;
    margin-bottom: 3rem;
    color: var(--text-color) !important;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 1rem;
    font-size: 1rem;
}

.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1rem;
}

.skill-card {
    background: rgba(0, 0, 0, 0.8);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(255,105,180,0.1);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.skill-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 20px var(--primary-color);
}

.skill-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-family: 'NexaHeavy', Arial, Helvetica, sans-serif;
    font-size: 1.7rem;
}

.work-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 2rem auto 0;
    padding: 0 1rem;
}

.work-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 10px;
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.work-item img:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px var(--primary-color);
}

/* Contact Form Section */
/* --- INCLUÍDO EN contacto.css --- */

/* Footer */
footer {
    padding: 3.5rem 0 1.1rem 0;
    color: #fff;
    font-family: 'NexaLight', Arial, Helvetica, sans-serif;
    font-size: 1.19rem;
    border-top: 3.5px solid var(--border-color);
    margin-top: 0;
    width: 100vw;
    min-width: 100vw;
}

/* === FOOTER CUSTOM STYLE (solo columnas y layout, sin fondo ni degradado) === */
.footer-content {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    gap: 2.2rem;
    padding: 0 1.2rem;
}
.footer-logo.logo-row {
    flex-direction: row !important;
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    gap: 0 !important;
    padding: 0 !important;
}
.footer-logo.logo-row img.footer-logo-img {
    margin: 0 !important;
    padding: 0 !important;
    display: inline-block !important;
    vertical-align: middle !important;
}
.footer-logo {
    flex: 0 0 220px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 1.2rem;
}
.footer-logo-img {
    width: 150px;
    margin-bottom: 1rem;
    height: auto;
}
.footer-contact, .footer-links, .footer-social {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 0.7rem;
}
.footer-contact h3, .footer-links h3, .footer-social h3 {
    color: #fff;
    font-family: 'NexaHeavy', Arial, Helvetica, sans-serif;
    font-size: 1.7rem;
    margin-bottom: 0.7rem;
}
.footer-links a {
    color: #fff;
    text-decoration: none;
    font-size: 1.14rem;
    margin-bottom: 0.2rem;
    transition: color 0.2s;
}
.footer-links a:hover {
    color: #b967e3;
}
@media (max-width: 900px) {
    .footer-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.3rem;
        padding: 0 1rem;
    }
    .footer-logo {
        margin-bottom: 1.2rem;
    }
    .footer-logo-img {
        width: 70px !important;
    }
    footer {
        font-size: 1.07rem;
    }
    .footer-contact h3, .footer-links h3, .footer-social h3 {
        font-size: 1.3rem;
    }
}

.footer-links h3, .footer-social h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-family: 'NexaHeavy', Arial, Helvetica, sans-serif;
}

.footer-links ul {
    list-style: none;
}

.footer-links a {
    color: var(--text-color);
    text-decoration: none;
    margin: 0.5rem 0;
    display: inline-block;
    transition: color 0.3s ease;
}

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

.social-icons {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-icons a {
    color: var(--text-color);
    transition: all 0.3s ease;
}

.social-icons a:hover {
    transform: scale(1.1);
}

.social-icon {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    font-family: 'NexaHeavy', Arial, Helvetica, sans-serif;
}

.footer-logo-img {
    width: 150px;
    margin-bottom: 1rem;
    height: auto;
}

.footer-contact {
    color: var(--text-color);
}

.footer-contact p {
    margin: 0.5rem 0;
}

.lang-switcher {
    position: fixed;
    top: 18px;
    left: 18px;
    z-index: 2000;
    background: rgba(20,20,20,0.75);
    padding: 8px 18px 8px 10px;
    border-radius: 12px;
    box-shadow: 0 2px 12px 0 rgba(0,0,0,0.18);
    display: flex;
    gap: 8px;
    align-items: center;
}

.lang-switcher button {
    background: none;
    border: none;
    color: #fff;
    font-size: 1.08rem;
    font-weight: bold;
    cursor: pointer;
    padding: 3px 8px;
    border-radius: 6px;
    transition: background 0.2s, color 0.2s;
}

.lang-switcher button:hover {
    background: #a95fff;
    color: #fff;
}

/* Todas las secciones principales con fondo semitransparente para que el shader siempre se vea */
.hero,
.services,
.skills,
.latest-work,
footer {
    background-color: rgba(0, 0, 0, 0.0) !important;
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--background-color);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 5px;
}

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

/* Responsive */
@media (max-width: 768px) {
    /* .nav-links { display: none; } */
    .hero h1 {
        font-size: 2.5rem;
    }
    .skills-grid, .work-grid {
        grid-template-columns: 1fr;
    }
}

/* === LANDING HIGHLIGHT SECTION === */
.landing-highlight-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    overflow: hidden;
    background: transparent;
}
.landing-highlight-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    /*background: linear-gradient(180deg, rgba(30,16,48,0.96) 0%, rgba(30,16,48,0.89) 100%), url('../img/landing.png') center center/cover no-repeat;*/
    background: url('../img/landing.png') center center/cover no-repeat;

    z-index: 1;
    opacity: 0.96;
}
.landing-highlight-content {
    position: relative;
    z-index: 2;
    color: #fff;
    text-align: left;
    max-width: 900px;
    margin: 0 auto;
    padding: 4rem 2rem 3rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}
.landing-highlight-main-text {
    font-size: 2.7rem;
    font-family: 'NexaHeavy', Arial, Helvetica, sans-serif;
    margin-bottom: 1.4rem;
    line-height: 1.15;
    text-shadow: 0 4px 32px #000a;
}
.landing-highlight-where {
    font-weight: 400;
    color: #fff;
}
.landing-highlight-meets {
    font-weight: 800;
    color: #fff;
    font-family: 'NexaHeavy', Arial, Helvetica, sans-serif;
    background: linear-gradient(90deg, #fff 70%, #a95fff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    font-size: 2.7rem;
}
.landing-highlight-desc {
    font-size: 1.35rem;
    margin-top: 1.2rem;
    color: #fff;
    font-family: 'NexaLight', Arial, Helvetica, sans-serif;
    text-shadow: 0 2px 16px #0007;
}
.landing-highlight-bold {
    font-weight: bold;
    color: #fff;
    font-family: 'NexaHeavy', Arial, Helvetica, sans-serif;
}

@media (max-width: 900px) {
    .landing-highlight-section {
        min-height: 38vh;
        padding: 0;
    }
    .landing-highlight-content {
        padding: 2.2rem 1rem 2rem 1rem;
        max-width: 96vw;
    }
    .landing-highlight-main-text {
        font-size: 1.45rem;
        line-height: 1.18;
    }
    .landing-highlight-meets {
        font-size: 1.45rem;
    }
    .landing-highlight-desc {
        font-size: 1.02rem;
    }
}

/* --- HAMBURGER MENU --- */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    cursor: pointer;
    width: 36px;
    height: 36px;
    z-index: 1100;
    margin-left: 10px;
}
.hamburger span {
    height: 4px;
    width: 100%;
    background: var(--primary-color);
    margin: 5px 0;
    border-radius: 2px;
    transition: 0.4s;
    display: block;
}
.hamburger.open span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}
.hamburger.open span:nth-child(2) {
    opacity: 0;
}
.hamburger.open span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* --- NAVIGATION MOBILE --- */
@media (max-width: 900px) {
    .nav-links {
        position: absolute;
        top: 64px;
        right: 0;
        background: #1a1126ee;
        flex-direction: column;
        align-items: flex-end;
        width: 70vw;
        max-width: 320px;
        height: 0;
        overflow: hidden;
        transition: height 0.3s;
        box-shadow: 0 8px 24px 0 rgba(0,0,0,0.18);
        z-index: 1001;
        gap: 0;
        padding: 0 0.5rem;
    }
    .nav-links.open {
        height: 220px;
        padding: 1.5rem 0.5rem;
    }
    .nav-links li {
        width: 100%;
        margin: 0.7rem 0;
        text-align: right;
    }
    .nav-links a, .nav-links .cta-button {
        font-size: 1.1rem;
        padding: 0.5rem 0.8rem;
        display: inline-block;
        width: auto;
    }
    .hamburger {
        display: flex;
    }
    .desktop-lang {
        display: none !important;
    }
    .mobile-lang {
        display: block !important;
        margin-top: 0.8rem;
        text-align: right;
    }
    .mobile-lang button {
        font-size: 0.9rem;
        margin-left: 0.3rem;
        padding: 0.2rem 0.7rem;
    }
}

/* --- IFRAME CIRCLE MOBILE --- */
@media (max-width: 900px) {
    .hero-iframe-circle {
        width: 90vw;
        height: 90vw;
        max-width: 320px;
        max-height: 320px;
        aspect-ratio: 1/1;
        border-radius: 50%;
        margin: 0 auto;
        overflow: hidden;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .hero-iframe-circle iframe {
        width: 100%;
        height: 100%;
        border-radius: 50%;
        object-fit: cover;
        display: block;
    }
}

/* Sección de video hero */
.landing-video-section {
    width: 100vw;
    height: 100vh;
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}
.video-wrapper {
    width: 100vw;
    height: 100vh;
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.video-wrapper iframe {
    width: 140vw;
    height: 140vh;
    min-width: 100vw;
    min-height: 100vh;
    object-fit: cover;
    border: none;
    pointer-events: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(1.18);
    opacity: 0.5;
}

/* Resto del contenido sigue igual, fondo shader */
.main-content {
    position: relative;
    z-index: 2;
}

@media (max-width: 900px) {
    .footer-logo.logo-row {
        flex-direction: row !important;
        gap: 0 !important;
        justify-content: flex-start !important;
        align-items: center !important;
    }
    .footer-logo.logo-row img.footer-logo-img {
        width: 60px !important;
    }
}


/* Botón flotante de WhatsApp */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 28px;
    right: 28px;
    background: #25d366;
    color: #fff;
    border-radius: 50%;
    box-shadow: 0 4px 16px 0 rgba(0,0,0,0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    z-index: 9999;
    transition: background 0.2s, box-shadow 0.2s, transform 0.2s;
    text-decoration: none;
}
.whatsapp-float:hover {
    background: #1ebe57;
    color: #fff;
    transform: scale(1.08);
    box-shadow: 0 8px 24px 0 rgba(0,0,0,0.28);
}
.whatsapp-float i {
    pointer-events: none;
}
@media (max-width: 600px) {
    .whatsapp-float {
        width: 48px;
        height: 48px;
        font-size: 1.7rem;
        bottom: 18px;
        right: 18px;
    }
}