/* CSS Reset & Variables */
:root {
    --bg-color: #1A2B4C;
    /* Brochure Navy */
    --text-color: #ffffff;
    --brand-red: #da3d2b;
    /* Coral/Orange-Red from brochure */
    --gold-accent: #FFD700;
    /* Star sparkles */
    --font-main: 'Inter', sans-serif;
    --font-display: 'Cormorant Garamond', serif;
}

/* Force Menu Items White on Home */
.home .menu-overlay a,
.home .arts-header-overlay a,
.home .menu-item a {
    color: #ffffff !important;
}

:root {
    --bg-color: #1A2B4C;
    /* Brochure Navy */
    --text-color: #ffffff;
    --brand-red: #da3d2b;
    /* Coral/Orange-Red from brochure */
    --gold-accent: #FFD700;
    /* Star sparkles */
    --font-main: 'Inter', sans-serif;
    --font-display: 'Cormorant Garamond', serif;
}

/* Scope global resets to the front page only */
.home * {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.home body,
body.home {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-main);
    overflow-x: hidden;
    /* Only hide horizontal */
    height: auto;
    /* Allow scrolling */
}

/* Ensure the swiper container handles the full height */
.home .swiper {
    height: 100vh;
}

/* Decorations Container */
.decoration-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
    z-index: 1;
}

/* Animated Elements */
.sparkle {
    position: absolute;
    color: var(--gold-accent);
    z-index: 1;
    animation: pulse 3s infinite ease-in-out;
}

.heart-shape {
    position: absolute;
    color: var(--brand-red);
    opacity: 0.2;
    z-index: 1;
    animation: float 6s infinite ease-in-out;
    font-size: 20px;
}

.star-4 {
    font-size: 24px;
}

.star-small {
    font-size: 10px;
    opacity: 0.6;
    animation-duration: 4s;
}

/* Gradient Orbs for Depth */
.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.15;
    z-index: 0;
}

.orb-coral {
    width: 300px;
    height: 300px;
    background: var(--brand-red);
}

.orb-gold {
    width: 200px;
    height: 200px;
    background: var(--gold-accent);
}

.orb-cream {
    width: 600px;
    height: 600px;
    background: #F9E4E1;
    opacity: 0.05;
}

/* Animations */
@keyframes pulse {

    0%,
    100% {
        opacity: 0.4;
        transform: scale(0.8) rotate(0deg);
    }

    50% {
        opacity: 1;
        transform: scale(1.1) rotate(45deg);
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(10deg);
    }
}

/* Header */
/* Header */
.home .header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    /* Lower z-index so checks logic in theme doesn't get confused, theme usually handles this */
    background: transparent;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-icon,
.site-logo {
    color: var(--brand-red);
    font-size: 24px;
    max-height: 40px;
    width: auto;
}

.menu-btn {
    background: none;
    border: none;
    display: flex;
    align-items: center;
    gap: 15px;
    cursor: pointer;
    color: white;
    z-index: 10060;
    /* Top most */
}

.menu-text {
    font-family: var(--font-main);
    font-size: 14px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hamburger {
    width: 30px;
    height: 20px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-end;
}

.hamburger span {
    display: block;
    height: 1px;
    background-color: white;
    width: 100%;
    transition: all 0.3s ease;
}

.hamburger span:nth-child(2) {
    width: 70%;
}

/* Hamburger active state */
.menu-btn.active .hamburger span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.menu-btn.active .hamburger span:nth-child(2) {
    opacity: 0;
}

.menu-btn.active .hamburger span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
}

/* MENU OVERLAY STYLE */
/* MENU OVERLAY STYLE */
/* Removed aggressively scoped .home .menu-overlay styles to allow parent theme to handle the menu layout and visibility keyframes. */


.menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* FIX: Target default menu items directly */
.menu-overlay li {
    margin-bottom: 30px;
    text-align: center;
}

.menu-overlay li a {
    color: white;
    font-family: var(--font-main);
    font-size: 3rem;
    font-weight: 100;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: -1px;
    transition: color 0.3s;
    display: block;
    /* Ensure hit area */
}

.menu-overlay li a:hover {
    color: var(--brand-red);
}

.menu-bg-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--bg-color);
    /* Matches theme dark blue */
    opacity: 0.98;
}

.menu-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding: 120px 20px 40px;
    text-align: center;
    overflow-y: auto;
}

.custom-menu-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.custom-menu-list li a {
    color: white;
    font-family: var(--font-main);
    font-size: 3rem;
    font-weight: 100;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: -1px;
    transition: color 0.3s;
}

.custom-menu-list li a:hover {
    color: var(--brand-red);
}

.menu-footer {
    margin-top: 50px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    width: 100%;
    max-width: 300px;
    display: flex;
    justify-content: center;
}


/* Swiper Configuration */
.swiper {
    width: 100%;
    height: 100vh;
}

.swiper-slide {
    background-color: var(--bg-color);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 10%;
    position: relative;
    overflow: hidden;
}

/* Typography styles matching original */
.super-title {
    font-family: var(--font-main);
    font-size: 14px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 20px;
    font-weight: 400;
}

.main-title,
.section-title {
    font-family: var(--font-main) !important;
    font-size: 5rem;
    font-weight: 100;
    line-height: 1;
    letter-spacing: -2px;
    margin-bottom: 40px;
    text-transform: uppercase;
    color: #ffffff;
}

.section-desc {
    max-width: 400px;
    font-size: 16px;
    font-weight: 300;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
}

/* Background Watermarks */
.bg-watermark,
.bg-watermark-right {
    position: absolute;
    font-family: var(--font-display);
    font-size: 20rem;
    opacity: 0.03;
    z-index: 0;
    pointer-events: none;
    line-height: 0.8;
}

.bg-watermark {
    left: -5%;
    top: 20%;
}

.bg-watermark-right {
    right: -10%;
    bottom: 0;
    text-align: right;
}

/* Circular Button - Exact Replica */
.btn-circle {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 140px;
    height: 140px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: 20px;
    text-align: center;
}

.btn-circle span {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.2;
}

.btn-circle:hover {
    border-color: var(--brand-red);
    background: rgba(218, 61, 43, 0.1);
    /* Coral tint */
    transform: scale(1.05);
}

.btn-circle.small {
    width: 100px;
    height: 100px;
}

/* Specific Section Styles */

/* Hero */
.section-hero .slide-content {
    position: relative;
    z-index: 2;
}

.mascot-container {
    position: absolute;
    right: 10%;
    top: 50%;
    transform: translateY(-50%);
    width: 300px;
    opacity: 0.8;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.5));
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    z-index: 10;
    /* Make clickable */
}

.scroll-indicator span {
    writing-mode: vertical-rl;
    text-transform: uppercase;
    font-size: 10px;
    letter-spacing: 2px;
    opacity: 0.5;
}

.scroll-indicator .line {
    width: 1px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.3);
}

/* Services Split */
.container-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    width: 100%;
    position: relative;
    z-index: 2;
}

.service-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

/* Service Item Update from Brochure */
.service-item {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 30px;
    transition: all 0.3s ease;
    cursor: default;
}

.service-item:hover {
    padding-left: 20px;
    border-color: var(--brand-red);
}

.service-item .num {
    font-family: var(--font-display);
    font-size: 24px;
    color: var(--brand-red);
    opacity: 0.7;
}

.svc-info {
    display: flex;
    flex-direction: column;
}

.service-item h3 {
    font-size: 24px;
    font-weight: 300;
}

.sub-svc {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 5px;
    font-weight: 300;
}

/* Products */
.section-products .centered {
    text-align: center;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.section-title-center {
    font-family: var(--font-main);
    font-size: 3rem;
    font-weight: 100;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.section-subtitle {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-style: italic;
    color: var(--brand-red);
    margin-bottom: 50px;
}

.products-preview {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
}

.product-card {
    width: 200px;
}

.p-image {
    width: 100%;
    height: 200px;
    background-size: cover;
    background-position: center;
    border-radius: 4px;
    margin-bottom: 15px;
    filter: grayscale(100%);
    transition: all 0.3s ease;
}

.product-card:hover .p-image {
    filter: grayscale(0%);
}

.product-card h4 {
    font-weight: 300;
    font-size: 14px;
    letter-spacing: 1px;
}

/* Client Logos */
.client-logos {
    margin-top: 60px;
    text-align: center;
    width: 100%;
}

.client-logos span {
    display: block;
    margin-bottom: 20px;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0.5;
}

.logos-grid {
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
}

.logo-item {
    font-family: var(--font-main);
    font-weight: 700;
    font-size: 18px;
    color: rgba(255, 255, 255, 0.3);
    letter-spacing: 1px;
}


/* Contact */
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    width: 100%;
    position: relative;
    z-index: 2;
}

.info-group {
    margin-bottom: 30px;
}

.info-group label {
    display: block;
    font-size: 12px;
    text-transform: uppercase;
    color: var(--brand-red);
    margin-bottom: 5px;
}

.info-group p {
    font-size: 18px;
    font-weight: 300;
}

.simple-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.simple-form input,
.simple-form textarea,
.simple-form select {
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding: 15px 0;
    color: white;
    font-family: var(--font-main);
    font-size: 16px;
    font-weight: 300;
}

.simple-form select {
    appearance: none;
    cursor: pointer;
}

.simple-form select option {
    background-color: var(--bg-color);
}

.simple-form input:focus,
.simple-form textarea:focus,
.simple-form select:focus {
    outline: none;
    border-color: var(--brand-red);
}

.btn-text {
    background: none;
    border: none;
    color: white;
    text-align: left;
    margin-top: 20px;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 14px;
}

/* Swiper Pagination Customization */
.swiper-pagination-bullet {
    background: white;
    opacity: 0.2;
    width: 6px;
    height: 6px;
}

.swiper-pagination-bullet-active {
    opacity: 1;
    background: var(--brand-red);
}

.swiper-pagination-vertical.swiper-pagination-bullets,
.swiper-vertical>.swiper-pagination-bullets {
    right: 50px;
}

/* Responsive */
@media (max-width: 900px) {
    .header {
        padding: 20px;
    }

    .swiper-slide {
        padding: 0 30px;
    }

    .mascot-container {
        width: 150px;
        top: 20%;
        right: 0;
        opacity: 0.4;
    }

    .main-title,
    .section-title {
        font-size: 3rem;
    }

    .container-split,
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .products-preview {
        flex-direction: column;
        /* Stack products on mobile */
        gap: 15px;
    }

    .product-card {
        width: 100%;
        display: flex;
        align-items: center;
        gap: 15px;
    }

    .p-image {
        width: 80px;
        height: 80px;
        margin-bottom: 0;
    }

    .bg-watermark {
        font-size: 8rem;
    }

    .logos-grid {
        gap: 20px;
    }

    .logo-item {
        font-size: 14px;
    }

    .orb-cream,
    .orb-gold,
    .orb-coral {
        transform: scale(0.6);
    }
}

/* =========================================
   CUSTOM HOMEPAGE HEADER & MENU STYLES
   ========================================= */

/* Hide Original Theme Header on Home & Custom Pages */
.home .header,
.home header.header,
.home .arts-header-overlay,
.dquiap-custom-nosotros .header,
.dquiap-custom-nosotros header.header,
.dquiap-custom-nosotros .arts-header-overlay {
    display: none !important;
}

/* Custom Home Header */
.custom-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10050;
    padding: 30px 50px;
    background: transparent;
    display: flex;
    justify-content: space-between;
    align-items: center;
    pointer-events: none;
    /* Let clicks pass through, enable on children */
}

.custom-logo,
.custom-burger {
    pointer-events: auto;
}

.custom-logo img {
    height: 40px;
    width: auto;
}

/* Custom Burger */
.custom-burger {
    background: none;
    border: none;
    cursor: pointer;
    color: white;
    font-family: var(--font-main);
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 15px;
    z-index: 10060;
    /* Above overlay */
}

.hamburger-icon {
    width: 30px;
    height: 14px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.hamburger-icon span {
    display: block;
    width: 100%;
    height: 2px;
    background: white;
    transition: all 0.3s ease;
}

.hamburger-icon span:nth-child(2) {
    width: 70%;
    margin-left: auto;
}

/* Active State for Burger (Close X) */
.custom-burger.active .hamburger-icon span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 4px);
}

.custom-burger.active .hamburger-icon span:nth-child(2) {
    opacity: 0;
}

.custom-burger.active .hamburger-icon span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
    width: 100%;
    /* Restore width */
}

/* Custom Overlay */
.custom-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: var(--bg-color);
    z-index: 10045;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease-in-out;
    display: flex;
    justify-content: center;
    align-items: center;
}

.custom-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.menu-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
    max-width: 1200px;
    height: 100%;
    padding: 100px 0;
}

/* Left Side: Projects Preview */
.menu-left {
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Right Side: Navigation */
.menu-right {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    /* Align left logic */
    padding-left: 100px;
}

.custom-nav-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.custom-nav-list li a {
    font-family: var(--font-main);
    font-size: 3.5rem;
    /* Large size */
    color: white !important;
    text-decoration: none;
    text-transform: capitalize;
    /* As per screenshot "Inicio", "Nosotros" */
    font-weight: 300;
    transition: color 0.3s ease;
}

.custom-nav-list li a:hover {
    color: var(--brand-red) !important;
}

/* Responsive Adjustments for Custom Menu */
@media (max-width: 768px) {
    .menu-inner {
        grid-template-columns: 1fr;
        padding: 50px 20px;
    }

    .menu-left {
        display: none;
        /* Hide preview on mobile */
    }

    .menu-right {
        padding-left: 0;
        align-items: center;
    }

    .custom-nav-list li a {
        font-size: 2rem;
    }

    .custom-header {
        padding: 20px;
    }

    .custom-header {
        padding: 20px;
    }
}

/* =========================================
   DQUIAP CORPORATE THEME 2026 (NEW)
   ========================================= */

:root {
    --brand-dark: #0f172a;
    --brand-red: #da3d2b;
    --brand-gold: #fbbf24;
    --brand-cream: #fbecd0;
    --text-main: #ffffff;
    --text-muted: #94a3b8;
    --font-heading: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    /* Or theme font */
}

/* Reset for Corporate Container */
.dquiap-corporate-site {
    background-color: var(--brand-dark);
    color: var(--text-main);
    font-family: var(--font-main, sans-serif);
    overflow-x: hidden;
    min-height: 100vh;
}

/* Typography Utilities */
.section-title-large {
    font-size: 2.2rem;
    line-height: 1.1;
    margin-bottom: 10px;
    font-weight: 700;
}

.gradient-text,
.highlight-text {
    background: linear-gradient(135deg, #ffffff 0%, #da3d2b 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.btn-primary {
    background: var(--brand-red);
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(218, 61, 43, 0.3);
    color: white;
}

.btn-secondary {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: white;
    color: var(--bg-color);
    border-color: white;
    transform: translateY(-2px);
}

/* Large Buttons / Premium Variants */
.btn-primary-large {
    background: var(--brand-red);
    color: white;
    padding: 18px 45px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    gap: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
    border: none;
}

.btn-primary-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(218, 61, 43, 0.4);
    background: #c23525;
    color: white;
}

.btn-outline-large,
.btn-secondary-large {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    padding: 16px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s ease;
}

.btn-outline-large:hover,
.btn-secondary-large:hover {
    background: white !important;
    color: var(--bg-color) !important;
    border-color: white !important;
    transform: translateY(-3px);
}

/* HEADER STYLES */
.dquiap-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(15, 23, 42, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 15px 0;
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand-identity {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-main {
    height: 45px;
    width: auto;
}

.brand-tagline {
    font-size: 0.8rem;
    color: var(--text-muted);
    border-left: 1px solid rgba(255, 255, 255, 0.2);
    padding-left: 15px;
    display: none;
    /* Hidden on small screens */
}

@media(min-width: 1024px) {
    .brand-tagline {
        display: block;
    }
}

.main-navigation {
    display: none;
    /* Hidden on mobile */
    align-items: center;
    gap: 30px;
}

@media(min-width: 1024px) {
    .main-navigation {
        display: flex;
    }
}

.nav-link {
    color: var(--text-main);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--brand-red);
}

.btn-contact-header {
    background: white;
    color: var(--brand-dark);
    padding: 10px 25px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.btn-contact-header:hover {
    background: var(--brand-red);
    color: white;
}

/* Mobile Toggle */
.mobile-menu-toggle {
    display: block;
    background: none;
    border: none;
    cursor: pointer;
    width: 30px;
    height: 20px;
    position: relative;
    z-index: 1002;
}

@media(min-width: 1024px) {
    .mobile-menu-toggle {
        display: none;
    }

    .mobile-menu-overlay {
        display: none !important;
        visibility: hidden;
    }
}

.mobile-menu-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: white;
    position: absolute;
    transition: all 0.3s;
}

.mobile-menu-toggle span:nth-child(1) {
    top: 0;
}

.mobile-menu-toggle span:nth-child(2) {
    top: 9px;
}

.mobile-menu-toggle span:nth-child(3) {
    top: 18px;
}

/* Mobile Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--brand-dark);
    z-index: 1001;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.77, 0, 0.175, 1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-menu-overlay.active {
    transform: translateX(0);
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.mobile-nav a {
    font-size: 2rem;
    color: white;
    text-decoration: none;
    font-weight: 700;
}

.mobile-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: white;
    font-size: 40px;
    cursor: pointer;
}

/* HERO SECTION */
.hero-corporate {
    padding: 60px 40px 80px;
    position: relative;
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    max-width: 1400px;
    margin: 0 auto;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.1);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-title {
    font-size: 3.8rem;
    line-height: 1.1;
    font-weight: 800;
    margin-bottom: 20px;
    color: white;
}

.hero-description {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin-bottom: 30px;
    max-width: 500px;
}

.hero-cta-group {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
}

.hero-stats {
    display: flex;
    gap: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-item strong {
    font-size: 2rem;
    color: var(--brand-red);
}

.stat-item span {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* Hero Visual */
.hero-visual {
    position: relative;
}

.visual-card {
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 30px;
    padding: 40px;
    text-align: center;
    position: relative;
}

.mascot-hero {
    width: 100%;
    max-width: 500px;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.5));
    animation: float 6s ease-in-out infinite;
}

.visual-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.95);
    color: var(--brand-dark);
    padding: 15px 25px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.visual-badge i {
    color: var(--brand-red);
    font-size: 24px;
}

/* Trust Bar */
.trust-bar {
    max-width: 1400px;
    margin: 80px auto 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 40px;
    text-align: center;
}

.trust-label {
    display: block;
    margin-bottom: 20px;
    color: var(--text-muted);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.trust-logos {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
    opacity: 0.5;
}


.trust-logo {
    font-weight: 700;
    font-size: 1.5rem;
}

/* VALUE PROPOSITION */
.value-proposition {
    padding: 100px 40px;
    background: #0b1120;
}

.value-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.value-card {
    background: rgba(255, 255, 255, 0.03);
    padding: 40px;
    border-radius: 20px;
    transition: transform 0.3s ease;
    border: 1px solid transparent;
}

.value-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
}

.value-icon {
    width: 60px;
    height: 60px;
    background: rgba(218, 61, 43, 0.1);
    color: var(--brand-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 25px;
}

.value-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #ffffff;
}

.value-card p {
    color: var(--text-muted);
    line-height: 1.6;
}

/* SERVICES PREMIUM */
.services-corporate {
    padding: 60px 40px;
}

.services-grid-premium {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 40px;
}

.service-card-premium {
    background: #1e293b;
    border-radius: 20px;
    padding: 28px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.service-card-premium:hover {
    transform: translateY(-5px);
}

.service-card-premium.featured {
    background: var(--brand-red);
    color: white;
}

.service-card-premium.featured .service-icon {
    color: var(--brand-red);
    background: white;
}

.service-card-premium.featured .service-description,
.service-card-premium.featured .service-category {
    color: rgba(255, 255, 255, 0.9);
}

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
}

.service-number {
    font-size: 3rem;
    font-weight: 900;
    line-height: 1;
    color: #ffffff;
}

.service-icon {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.service-title {
    font-size: 1.4rem;
    margin-bottom: 8px;
    color: white;
}

.service-category {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 12px;
    display: block;
}

.service-description {
    font-size: 0.9rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 15px;
}

.service-features {
    list-style: none;
    margin: 15px 0;
    padding: 0;
}

.service-features li {
    margin-bottom: 8px;
    padding-left: 22px;
    position: relative;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
}

.service-features li i {
    position: absolute;
    left: 0;
    top: 4px;
    color: var(--brand-gold);
    font-size: 12px;
}

.service-card-premium.featured .service-features li i {
    color: white;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: white;
    text-decoration: none;
    font-weight: 600;
    margin-top: auto;
    transition: all 0.3s ease;
}

.service-link:hover {
    color: white !important;
    gap: 15px;
}

.link-arrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: white;
    /* Default text color */
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.link-arrow:hover {
    color: var(--brand-red);
    gap: 15px;
}

/* PORTFOLIO GRID - Clean 3 Column Layout */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 20px 0;
    align-items: stretch;
}

.portfolio-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    width: 100%;
    aspect-ratio: 3/4;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.portfolio-card.large {
    /* All cards same size now */
    grid-column: span 1;
    aspect-ratio: 3/4;
}

.portfolio-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(218, 61, 43, 0.3);
}

.portfolio-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.5s ease;
}

.portfolio-card:hover .portfolio-image {
    transform: scale(1.08);
}

.portfolio-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 15px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.95), rgba(0, 0, 0, 0.4) 70%, transparent);
    color: white;
}

.portfolio-overlay h3 {
    font-size: 1.1rem;
    margin-bottom: 3px;
    color: white;
    font-weight: 600;
}

.portfolio-overlay p {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.portfolio-category {
    display: inline-block;
    background: var(--brand-red);
    padding: 4px 10px;
    border-radius: 15px;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.cta-centered {
    text-align: center;
    margin-top: 25px;
}

@media (max-width: 900px) {
    .portfolio-grid {
        grid-template-columns: 1fr;
    }

    .portfolio-card,
    .portfolio-card.large {
        height: 300px;
    }
}

/* FOOTER */
.corporate-footer {
    background: #020617;
    padding: 80px 0 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-main {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.footer-column h4 {
    color: white;
    margin-bottom: 25px;
    font-size: 1.1rem;
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul li a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-column ul li a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-title {
        font-size: 3rem;
    }

    .hero-cta-group {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .services-grid-premium {
        grid-template-columns: 1fr;
    }

    .portfolio-grid {
        display: flex;
        flex-direction: column;
        height: auto;
    }

    .portfolio-card.large {
        height: 300px;
    }

    .portfolio-card {
        height: 300px;
    }

    .footer-main {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hero-corporate {
        padding: 60px 20px 40px;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .hero-visual {
        order: -1;
    }

    .hero-title {
        font-size: 2.2rem;
        line-height: 1.2;
    }

    .hero-description {
        font-size: 1rem;
    }

    .hero-badge {
        font-size: 0.8rem;
        padding: 6px 12px;
    }

    .hero-stats {
        gap: 20px;
        flex-wrap: wrap;
    }

    .stat-item strong {
        font-size: 1.5rem;
    }

    .stat-item span {
        font-size: 0.8rem;
    }

    .mascot-hero {
        max-width: 350px;
    }

    .footer-links {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .hero-cta-group {
        flex-direction: column;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        justify-content: center;
    }

    /* Fix for Service Boxes Responsiveness */
    .services-corporate {
        padding: 40px 15px;
    }

    .service-card-premium {
        padding: 25px 20px;
    }

    /* Fix for Contact Form Width */
    .corporate-form {
        padding: 30px 20px;
    }

    .contact-corporate {
        padding: 40px 15px;
    }
}

/* =========================================
   NOSOTROS PAGE STYLES
   ========================================= */

/* Hero Nosotros */
.hero-nosotros {
    min-height: 70vh;
    display: flex;
    align-items: center;
    padding: 60px 0 80px;
    background: linear-gradient(135deg, rgba(26, 43, 76, 0.95) 0%, rgba(26, 43, 76, 1) 100%);
    position: relative;
}

.hero-nosotros .hero-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-nosotros .hero-content {
    z-index: 2;
}

.hero-nosotros .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: rgba(218, 61, 43, 0.1);
    border: 1px solid rgba(218, 61, 43, 0.3);
    border-radius: 50px;
    margin-bottom: 30px;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1px;
}

.hero-nosotros .hero-badge i {
    color: var(--brand-red);
}

.hero-nosotros .hero-title-wrapper {
    display: flex;
    align-items: center;
    gap: 20px;
    position: relative;
    margin-bottom: 20px;
}

.hero-nosotros .title-line {
    width: 3px;
    height: 80px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.8) 0%, rgba(218, 61, 43, 0.6) 100%);
    border-radius: 2px;
    flex-shrink: 0;
}

.hero-nosotros .hero-title {
    font-family: var(--font-main);
    font-size: 6rem;
    font-weight: 100;
    line-height: 1.1;
    letter-spacing: -3px;
    margin-bottom: 0;
    text-transform: uppercase;
    word-break: keep-all;
    white-space: normal;
}

.hero-nosotros .hero-description {
    font-size: 1.5rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.7);
}

/* Why Kangaroos Section */
.why-kangaroos-section {
    padding: 100px 0;
    background-color: var(--bg-color);
}

.content-two-column {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 80px;
    align-items: center;
    margin-top: 60px;
}

.content-left .lead-text {
    font-size: 1.125rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 24px;
    font-weight: 300;
}

.kangaroo-image {
    width: 100%;
    max-width: 400px;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3));
}

/* Mission Section */
.mission-section {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--bg-color) 0%, rgba(26, 43, 76, 0.95) 100%);
    position: relative;
}

.mission-content {
    margin-top: 60px;
}

.mission-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.mission-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 40px;
    transition: all 0.3s ease;
}

.mission-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(218, 61, 43, 0.3);
    transform: translateY(-5px);
}

.mission-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(218, 61, 43, 0.2) 0%, rgba(218, 61, 43, 0.1) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.mission-icon i {
    font-size: 28px;
    color: var(--brand-red);
}

.mission-card h3 {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 16px;
    color: white;
}

.mission-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.75);
    font-weight: 300;
}

/* Values Section */
.values-section {
    padding: 100px 0;
    background-color: var(--bg-color);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.values-grid .value-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 40px;
    transition: all 0.3s ease;
}

.values-grid .value-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(218, 61, 43, 0.3);
    transform: translateY(-5px);
}

.values-grid .value-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(218, 61, 43, 0.2) 0%, rgba(218, 61, 43, 0.1) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.values-grid .value-icon i {
    font-size: 24px;
    color: var(--brand-red);
}

.values-grid .value-card h3 {
    font-size: 1.25rem;
    font-weight: 500;
    margin-bottom: 12px;
    color: white;
}

.values-grid .value-card p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 300;
}

/* Responsive Nosotros Page */
@media (max-width: 1024px) {
    .hero-nosotros .hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .hero-nosotros .hero-title-wrapper {
        justify-content: center;
    }

    .hero-nosotros .hero-title {
        font-size: 4rem;
    }

    .content-two-column {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .kangaroo-image {
        margin: 0 auto;
    }

    .mission-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .hero-nosotros {
        min-height: auto;
        padding: 120px 0 40px;
    }

    .hero-nosotros .hero-grid {
        padding: 0 20px;
        gap: 30px;
        text-align: center;
        justify-items: center;
    }

    .hero-nosotros .hero-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
    }

    .hero-nosotros .hero-title-wrapper {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 15px;
        width: 100%;
    }

    .hero-nosotros .title-line {
        height: 60px;
        width: 2px;
    }

    .hero-nosotros .hero-badge {
        margin-bottom: 20px;
        font-size: 12px;
        padding: 10px 20px;
    }

    .hero-nosotros .hero-title {
        font-size: 2.5rem;
        letter-spacing: -1px;
        margin-bottom: 0;
        line-height: 1.1;
        word-break: keep-all;
        overflow-wrap: normal;
        hyphens: none;
        text-align: center;
    }

    .hero-nosotros .hero-description {
        font-size: 1rem;
        line-height: 1.5;
        text-align: center;
        width: 100%;
    }

    /* Mascot positioning for mobile */
    .hero-nosotros .hero-visual {
        display: flex;
        justify-content: center;
        width: 100%;
    }

    .hero-nosotros .visual-card {
        max-width: 200px;
    }

    .hero-nosotros .mascot-hero {
        width: 100%;
        height: auto;
    }

    .why-kangaroos-section,
    .mission-section,
    .values-section {
        padding: 60px 0;
    }

    .content-left .lead-text {
        font-size: 1rem;
    }

    .values-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .mission-card,
    .values-grid .value-card {
        padding: 30px;
    }
}

/* Extra small mobile devices */
@media (max-width: 480px) {
    .hero-nosotros {
        padding: 100px 0 30px;
    }

    .hero-nosotros .hero-grid {
        padding: 0 15px;
        gap: 20px;
        text-align: center;
    }

    .hero-nosotros .hero-content {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-nosotros .hero-title-wrapper {
        gap: 12px;
        justify-content: center;
    }

    .hero-nosotros .title-line {
        height: 50px;
        width: 2px;
    }

    .hero-nosotros .hero-title {
        font-size: 1.75rem;
        letter-spacing: 0;
        line-height: 1.1;
        word-break: keep-all;
        overflow-wrap: normal;
        hyphens: none;
        text-align: center;
    }

    .hero-nosotros .hero-description {
        font-size: 0.9rem;
        text-align: center;
        width: 100%;
    }

    .hero-nosotros .visual-card {
        display: none;
    }
}

/* =========================================
   PAGES SPECIFIC STYLES (Moved from Inline)
   ========================================= */

/* HIDE PARENT THEME ELEMENTS ON CUSTOM PAGES */
.page-template-page-nosotros header.header,
.page-template-page-nosotros .arts-header-overlay,
.page-template-page-nosotros footer.footer,
.page-template-page-nosotros footer#footer,
.page-template-page-nosotros .site-footer,
.page-template-page-servicios header.header,
.page-template-page-servicios .arts-header-overlay,
.page-template-page-servicios footer.footer,
.page-template-page-servicios footer#footer,
.page-template-page-servicios .site-footer,
.page-template-page-nosotros #page-header,
.page-template-page-servicios #page-header {
    display: none !important;
}

/* Ensure our custom header/footer are visible */
.dquiap-header,
.corporate-footer {
    display: block !important;
}

/* SHARED HEADER STYLES */
.dquiap-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.95) 0%, rgba(15, 23, 42, 0.8) 100%);
    backdrop-filter: blur(10px);
    padding: 20px 0;
    font-family: var(--font-main);
}

.dquiap-header .header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.dquiap-header .brand-identity {
    display: flex;
    align-items: center;
    gap: 15px;
}

.dquiap-header .logo-main {
    height: 45px;
    width: auto;
}

.dquiap-header .brand-tagline {
    font-size: 1.25rem;
    font-weight: 600;
    color: white;
}

.dquiap-header .main-navigation {
    display: flex;
    gap: 35px;
    align-items: center;
}

.dquiap-header .nav-link {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 400;
    transition: color 0.3s ease;
}

.dquiap-header .nav-link:hover,
.dquiap-header .nav-link.active {
    color: white;
    font-weight: 500;
    border-bottom: 2px solid var(--brand-red);
}

.dquiap-header .btn-contact-header {
    background: var(--brand-red);
    color: white;
    padding: 12px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.dquiap-header .btn-contact-header:hover {
    background: #c23525;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(218, 61, 43, 0.3);
}

/* SERVICIOS PAGE STYLES */
.hero-servicios {
    padding: 60px 0 60px;
    text-align: center;
    background: radial-gradient(circle at center, rgba(218, 61, 43, 0.05) 0%, rgba(15, 23, 42, 0) 70%);
}

.hero-tag {
    display: inline-block;
    color: var(--brand-red);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 20px;
    font-weight: 600;
}

.hero-servicios .hero-title {
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 30px;
    color: white;
}

.hero-servicios .hero-title span {
    color: var(--brand-red);
}

.hero-desc {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 700px;
    margin: 0 auto 50px;
    line-height: 1.6;
}

.services-grid-layout {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-bottom: 100px;
}

.service-card-detailed {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 40px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card-detailed:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(218, 61, 43, 0.3);
}

.card-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(218, 61, 43, 0.2) 0%, rgba(218, 61, 43, 0.1) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    font-size: 24px;
    color: var(--brand-red);
}

.card-title {
    font-size: 1.75rem;
    margin-bottom: 15px;
    font-weight: 600;
    color: white;
}

.card-desc {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 30px;
}

.card-features {
    list-style: none;
    padding: 0;
    margin: 0 0 30px;
}

.card-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
}

.card-features i {
    color: var(--brand-red);
    font-size: 12px;
}

.btn-card {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: gap 0.3s ease;
}

.btn-card:hover {
    gap: 15px;
    color: var(--brand-red);
}

/* Trust Section */
.trust-section {
    padding: 100px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    background: rgba(255, 255, 255, 0.01);
}

.trust-section .section-header {
    text-align: center;
    margin-bottom: 60px;
}

.trust-section .section-header h2 {
    color: #ffffff !important;
    font-size: 2.5rem;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}

.trust-item h3 {
    font-size: 2.5rem;
    color: var(--brand-red);
    margin-bottom: 10px;
    font-weight: 700;
}

.trust-item p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Process Section */
.process-section {
    padding: 100px 0;
}

.process-section .section-header {
    text-align: center;
    margin-bottom: 60px;
}

.process-section .section-header h2 {
    color: #ffffff !important;
    font-size: 2.5rem;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
    position: relative;
}

.process-grid::after {
    content: '';
    position: absolute;
    top: 40px;
    left: 15%;
    right: 15%;
    height: 1px;
    background: linear-gradient(90deg,
            rgba(255, 255, 255, 0) 0%,
            rgba(218, 61, 43, 0.5) 50%,
            rgba(255, 255, 255, 0) 100%);
    z-index: 0;
}

.process-step {
    position: relative;
    z-index: 1;
    text-align: center;
    background: var(--bg-color);
    padding: 20px;
}

.step-number {
    width: 40px;
    height: 40px;
    background: var(--brand-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-weight: 700;
    box-shadow: 0 0 0 10px rgba(218, 61, 43, 0.1);
    color: white;
}

.process-step h4 {
    font-size: 1.25rem;
    margin-bottom: 15px;
    color: white;
}

.process-step p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
}

/* Responsive Overrides */
@media (max-width: 1024px) {
    .dquiap-header .main-navigation {
        display: none;
    }

    .hero-servicios .hero-title {
        font-size: 3rem;
    }

    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 50px;
    }

    .process-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .process-grid::after {
        display: none;
    }
}

@media (max-width: 768px) {

    .dquiap-header .header-container,
    .container-standard {
        padding: 0 30px;
    }

    .hero-servicios {
        padding: 140px 0 60px;
    }

    .services-grid-layout {
        grid-template-columns: 1fr;
    }

}

/* =========================================
   CORPORATE FOOTER STYLES
   ========================================= */

.corporate-footer {
    background-color: #05080f !important;
    /* Deepest Navy/Black */
    color: #ffffff !important;
    padding: 80px 0 30px !important;
    border-top: 1px solid rgba(255, 255, 255, 0.05) !important;
    margin-top: 0 !important;
    position: relative !important;
    z-index: 10 !important;
    box-sizing: border-box !important;
    width: 100% !important;
}

.corporate-footer .container-wide {
    max-width: 1400px !important;
    margin: 0 auto !important;
    padding: 0 40px !important;
    box-sizing: border-box !important;
}

.corporate-footer .footer-main {
    display: flex !important;
    justify-content: space-between !important;
    align-items: flex-start !important;
    flex-wrap: wrap !important;
    gap: 60px !important;
    margin-bottom: 80px !important;
    width: 100% !important;
}

/* Brand Column */
.corporate-footer .footer-brand {
    flex: 0 0 300px !important;
    max-width: 300px !important;
    width: 300px !important;
}

/* LOGO FIX START */
.corporate-footer .footer-logo {
    height: 40px !important;
    width: auto !important;
    max-width: 200px !important;
    margin-bottom: 25px !important;
    filter: brightness(0) invert(1) !important;
    /* Forces logo to be white */
    -webkit-filter: brightness(0) invert(1) !important;
    opacity: 0.9 !important;
    display: block !important;
}

/* LOGO FIX END */

.corporate-footer .footer-tagline {
    font-family: var(--font-display, serif) !important;
    font-size: 1.25rem !important;
    color: rgba(255, 255, 255, 0.9) !important;
    margin-bottom: 20px !important;
    letter-spacing: 0.5px !important;
    font-style: italic !important;
    line-height: 1.4 !important;
    text-align: left !important;
}

.corporate-footer .footer-description {
    font-size: 0.9rem !important;
    line-height: 1.6 !important;
    color: rgba(255, 255, 255, 0.5) !important;
    font-weight: 300 !important;
    text-align: left !important;
    margin: 0 !important;
}

/* Links Columns Container */
.corporate-footer .footer-links {
    flex: 1 !important;
    display: flex !important;
    justify-content: flex-end !important;
    gap: 80px !important;
}

.corporate-footer .footer-column {
    display: flex !important;
    flex-direction: column !important;
    text-align: left !important;
}

.corporate-footer .footer-column h4 {
    font-family: var(--font-display, serif) !important;
    font-size: 1.1rem !important;
    font-weight: 600 !important;
    color: #ffffff !important;
    margin-bottom: 25px !important;
    letter-spacing: 0.5px !important;
    margin-top: 0 !important;
}

.corporate-footer .footer-column ul {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

.corporate-footer .footer-column ul li {
    margin-bottom: 15px !important;
    margin-left: 0 !important;
    padding-left: 0 !important;
}

.corporate-footer .footer-column ul li a {
    color: rgba(255, 255, 255, 0.6) !important;
    text-decoration: none !important;
    font-size: 0.9rem !important;
    font-weight: 300 !important;
    transition: all 0.3s ease !important;
    display: inline-block !important;
    font-family: var(--font-main, sans-serif) !important;
}

.corporate-footer .footer-column ul li a:hover {
    color: #da3d2b !important;
    /* brand-red */
    transform: translateX(5px) !important;
}

/* Footer Bottom */
.corporate-footer .footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05) !important;
    padding-top: 30px !important;
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    font-size: 0.8rem !important;
    color: rgba(255, 255, 255, 0.3) !important;
    width: 100% !important;
}

.corporate-footer .footer-legal {
    display: flex !important;
    gap: 30px !important;
}

.corporate-footer .footer-legal a {
    color: rgba(255, 255, 255, 0.3) !important;
    text-decoration: none !important;
    transition: color 0.3s !important;
}

.corporate-footer .footer-legal a:hover {
    color: white !important;
}

/* PREVENT THEME FOOTER FROM SHOWING */
.site-footer,
footer.footer,
#footer {
    display: none !important;
}

/* Allow OUR footer */
footer.corporate-footer {
    display: block !important;
}

/* Responsive */
@media (max-width: 900px) {
    .corporate-footer .footer-main {
        flex-direction: column !important;
        gap: 50px !important;
    }

    .corporate-footer .footer-brand {
        max-width: 100% !important;
        flex: auto !important;
        width: 100% !important;
    }

    .corporate-footer .footer-links {
        width: 100% !important;
        justify-content: space-between !important;
        gap: 30px !important;
        flex-wrap: wrap !important;
    }

    .corporate-footer .footer-column {
        min-width: 140px !important;
    }

    .corporate-footer .footer-bottom {
        flex-direction: column-reverse !important;
        gap: 20px !important;
        text-align: center !important;
    }

    .corporate-footer .footer-legal {
        justify-content: center !important;
    }
}

/* Hide Parent Theme Elements on Custom Pages */
.page-template-page-nosotros .header,
.page-template-page-nosotros #page-header,
.page-template-page-nosotros .arts-header-overlay,
.page-template-page-nosotros .site-footer,
.page-template-page-nosotros footer.footer,
.page-template-page-nosotros #footer,
.page-template-page-servicios .header,
.page-template-page-servicios #page-header,
.page-template-page-servicios .arts-header-overlay,
.page-template-page-servicios .site-footer,
.page-template-page-servicios footer.footer,
.page-template-page-servicios #footer,
.page-template-page-activaciones .header,
.dquiap-custom-activaciones .header,
.dquiap-custom-tienda .header,
.page-template-page-activaciones #page-header,
.dquiap-custom-activaciones #page-header,
.dquiap-custom-tienda #page-header,
.page-template-page-activaciones .arts-header-overlay,
.dquiap-custom-activaciones .arts-header-overlay,
.dquiap-custom-tienda .arts-header-overlay,
.page-template-page-activaciones .site-footer,
.dquiap-custom-activaciones .site-footer,
.dquiap-custom-tienda .site-footer,
.page-template-page-activaciones footer.footer,
.dquiap-custom-activaciones footer.footer,
.dquiap-custom-tienda footer.footer,
.page-template-page-activaciones #footer,
.dquiap-custom-activaciones #footer,
.dquiap-custom-tienda #footer,
.dquiap-custom-contacto .header,
.dquiap-custom-contacto #page-header,
.dquiap-custom-contacto .arts-header-overlay,
.dquiap-custom-contacto .site-footer,
.dquiap-custom-contacto footer.footer,
.dquiap-custom-contacto #footer {
    display: none !important;
}

/* =========================================
   NOSOTROS PAGE STYLES
   ========================================= */

.dquiap-corporate-site {
    min-height: 100vh;
    padding-top: 60px;
}

/* Hero Nosotros */
.hero-nosotros {
    min-height: 70vh;
    display: flex;
    align-items: center;
    padding: 60px 0 80px;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.95) 0%, rgba(15, 23, 42, 1) 100%);
    position: relative;
}

.hero-nosotros .hero-grid {
    max-width: 1400px;
    margin: 0 auto;
    /*padding: 0 60px;*/
    display: grid;
    grid-template-columns: 1fr 1fr;
    /*gap: 60px;*/
    align-items: center;
}

.hero-nosotros .hero-content {
    z-index: 2;
}

.hero-nosotros .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: rgba(218, 61, 43, 0.1);
    border: 1px solid rgba(218, 61, 43, 0.3);
    border-radius: 50px;
    margin-bottom: 30px;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1px;
}

.hero-nosotros .hero-badge i {
    color: var(--brand-red);
}

.hero-nosotros .hero-title {
    font-family: var(--font-main);
    font-size: 6rem;
    font-weight: 100;
    line-height: 1;
    letter-spacing: -3px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.hero-nosotros .hero-description {
    font-size: 1.5rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.7);
}

.hero-visual {
    position: relative;
}

.visual-card {
    position: relative;
    z-index: 2;
}

.mascot-hero {
    width: 100%;
    max-width: 500px;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3));
}

/* Why Kangaroos Section */
.why-kangaroos-section {
    padding: 100px 0;
    background-color: var(--bg-color);
}

.content-two-column {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 80px;
    align-items: center;
    margin-top: 60px;
}

.content-left .lead-text {
    font-size: 1.125rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 24px;
    font-weight: 300;
}

.kangaroo-image {
    width: 100%;
    max-width: 400px;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3));
}

/* Mission Section */
.mission-section {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--bg-color) 0%, rgba(15, 23, 42, 0.95) 100%);
    position: relative;
}

.mission-content {
    margin-top: 60px;
}

.mission-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.mission-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 40px;
    transition: all 0.3s ease;
}

.mission-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(218, 61, 43, 0.3);
    transform: translateY(-5px);
}

.mission-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(218, 61, 43, 0.2) 0%, rgba(218, 61, 43, 0.1) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.mission-icon i {
    font-size: 28px;
    color: var(--brand-red);
}

.mission-card h3 {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 16px;
    color: white;
}

.mission-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.75);
    font-weight: 300;
}

/* Values Section */
.values-section {
    padding: 100px 0;
    background-color: var(--bg-color);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.values-grid .value-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 40px;
    transition: all 0.3s ease;
}

.values-grid .value-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(218, 61, 43, 0.3);
    transform: translateY(-5px);
}

.values-grid .value-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(218, 61, 43, 0.2) 0%, rgba(218, 61, 43, 0.1) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.values-grid .value-icon i {
    font-size: 24px;
    color: var(--brand-red);
}

.values-grid .value-card h3 {
    font-size: 1.25rem;
    font-weight: 500;
    margin-bottom: 12px;
    color: white;
}

.values-grid .value-card p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 300;
}

/* =========================================
   MISSING CORPORATE SECTIONS STYLES
   ========================================= */

/* UTILITIES */
.container-standard {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 2;
}

.container-wide {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 2;
}

.section-label {
    display: block;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--brand-red);
    margin-bottom: 15px;
    font-weight: 600;
}

.section-title-large {
    font-family: var(--font-display, serif);
    font-size: 3.5rem;
    font-weight: 400;
    line-height: 1.1;
    margin-bottom: 25px;
    color: white;
}

.lead-text {
    font-size: 1.2rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 600px;
}

.highlight-text {
    color: var(--brand-red);
    font-style: italic;
}

/* BUTTONS */
.btn-primary-large,
.btn-secondary-large,
.btn-outline-large {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 18px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.btn-primary-large {
    background: var(--brand-red);
    color: white;
    box-shadow: 0 10px 30px rgba(218, 61, 43, 0.3);
}

.btn-primary-large:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(218, 61, 43, 0.4);
    background: #c23525;
}

.btn-secondary-large {
    background: white;
    color: var(--bg-color);
}

.btn-secondary-large:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
}

.btn-outline-large {
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
}

.btn-outline-large:hover {
    border-color: white;
    background: rgba(255, 255, 255, 0.05);
}

/* MASCOTS SECTION */
.mascots-section {
    padding: 120px 0;
    overflow: hidden;
}

.mascots-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.mascots-visual {
    position: relative;
    text-align: center;
}

.mascots-image {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.5));
    animation: float 6s ease-in-out infinite;
}

.mascots-decoration {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.mascots-decoration i {
    position: absolute;
    color: var(--brand-red);
    opacity: 0.6;
    animation: pulse 3s infinite;
}

.mascots-decoration i:nth-child(1) {
    top: 10%;
    left: 10%;
    font-size: 24px;
}

.mascots-decoration i:nth-child(2) {
    bottom: 20%;
    right: 10%;
    font-size: 20px;
}

.mascots-decoration i:nth-child(3) {
    top: 40%;
    right: 0;
    color: var(--gold-accent, #FFD700);
    font-size: 18px;
}

.mascots-values {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin: 40px 0;
}

.value-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.value-item i {
    font-size: 24px;
    color: var(--brand-red);
    background: rgba(218, 61, 43, 0.1);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
}

.value-item strong {
    display: block;
    color: white;
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.value-item p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.5;
    margin: 0;
}

.mascots-quote {
    border-left: 3px solid var(--brand-red);
    padding-left: 20px;
    font-style: italic;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-top: 20px;
}

/* PORTFOLIO PREVIEW */
.portfolio-preview {
    padding: 100px 0;
    background: rgba(255, 255, 255, 0.02);
}

.section-header-centered {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.section-subtitle {
    color: var(--brand-red);
    font-family: var(--font-display, serif);
    font-style: italic;
    font-size: 1.5rem;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 30px;
    height: 500px;
    margin-bottom: 60px;
}

.portfolio-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    height: 100%;
}

.portfolio-card.large {
    grid-column: span 1;
}

.portfolio-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.6s ease;
}

.portfolio-card:hover .portfolio-image {
    transform: scale(1.05);
}

.portfolio-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 40px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
}

.portfolio-category {
    background: var(--brand-red);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.7rem;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 15px;
}

.portfolio-card h3 {
    font-size: 1.5rem;
    color: white;
    margin-bottom: 5px;
    font-weight: 600;
}

.portfolio-card p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
}

.portfolio-card:hover p {
    opacity: 1;
    transform: translateY(0);
}

.cta-centered {
    text-align: center;
}

/* CTA CORPORATE */
.cta-corporate {
    padding: 100px 0;
}

.cta-card {
    background: linear-gradient(135deg, #2a1b1b, #1a0f0f);
    border: 1px solid rgba(218, 61, 43, 0.2);
    border-radius: 30px;
    padding: 80px;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.cta-title {
    font-size: 3rem;
    color: white;
    margin-bottom: 25px;
    font-family: var(--font-display, serif);
}

.cta-description {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.cta-decoration {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.cta-decoration i {
    position: absolute;
    font-size: 100px;
    color: var(--brand-red);
    opacity: 0.05;
}

.cta-decoration i:nth-child(1) {
    top: -20px;
    left: -20px;
    transform: rotate(-20deg);
}

.cta-decoration i:nth-child(2) {
    bottom: -30px;
    right: -20px;
    transform: rotate(20deg);
}

.cta-decoration i:nth-child(3) {
    top: 20%;
    right: 10%;
    font-size: 40px;
    opacity: 0.1;
    color: var(--gold-accent);
}

/* CONTACT CORPORATE */
.contact-corporate {
    padding: 100px 0 150px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
}

.contact-title {
    font-size: 3rem;
    margin-bottom: 20px;
    color: white;
}

.contact-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 50px;
    line-height: 1.6;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.detail-item {
    display: flex;
    gap: 20px;
    align-items: center;
}

.detail-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--brand-red);
    transition: all 0.3s ease;
}

.detail-item:hover .detail-icon {
    background: var(--brand-red);
    color: white;
}

.detail-content strong {
    display: block;
    color: white;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.detail-content p {
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    line-height: 1.4;
}

.social-links-corporate {
    margin-top: 50px;
    display: flex;
    gap: 20px;
}

.social-link {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--brand-red);
    border-color: var(--brand-red);
    transform: translateY(-3px);
}

.corporate-form {
    background: rgba(255, 255, 255, 0.03);
    padding: 50px;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.form-group {
    margin-bottom: 25px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 10px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding: 15px 0;
    color: white;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-bottom-color: var(--brand-red);
}

.form-group select option {
    background: #1a2b4c;
    color: white;
}

.btn-submit {
    width: 100%;
    background: white;
    color: var(--bg-color);
    border: none;
    padding: 20px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
    margin-top: 20px;
}

.btn-submit:hover {
    background: var(--brand-red);
    color: white;
    transform: translateY(-2px);
}

/* RESPONSIVE */
@media (max-width: 900px) {

    .mascots-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .portfolio-grid {
        grid-template-columns: 1fr;
        height: auto;
    }

    .portfolio-card {
        height: 300px;
    }

    .cta-card {
        padding: 40px 20px;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .section-title-large,
    .cta-title,
    .contact-title {
        font-size: 2.5rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }
}

/* =========================================
   ACTIVACIONES PAGE STYLES
   ========================================= */

/* Hero Activaciones */
.hero-activaciones {
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 140px 0 80px;
    background: radial-gradient(circle at center, #1a2b4c 0%, #080c16 100%);
    position: relative;
    overflow: hidden;
}

.hero-activaciones::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://www.transparenttextures.com/patterns/stardust.png');
    opacity: 0.1;
    pointer-events: none;
}

.page-title-centered {
    font-family: var(--font-display);
    font-size: 5rem;
    color: white;
    margin-bottom: 50px;
    letter-spacing: -2px;
    font-weight: 400;
    position: relative;
    z-index: 2;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.hero-brand-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border-radius: 30px;
    padding: 60px;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.brand-card-visual {
    position: relative;
    margin-bottom: 40px;
    display: inline-block;
}

.brand-card-visual img {
    max-width: 300px;
    height: auto;
    filter: grayscale(100%);
}

.mascot-float {
    position: absolute;
    top: -40px;
    right: -60px;
    width: 120px;
    animation: float 6s ease-in-out infinite;
}

.hero-quote {
    font-size: 1.25rem;
    font-weight: 300;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    font-style: italic;
    margin-bottom: 40px;
}

.hero-quote i {
    color: var(--brand-red);
}

.btn-primary-rounded {
    background: var(--brand-red);
    color: white;
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-primary-rounded:hover {
    background: white;
    color: var(--brand-red);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Modelo Section */
.modelo-section {
    padding: 100px 0;
    background-color: var(--bg-color);
}

.content-split-reverse {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.content-features {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.feature-list-box h4 {
    font-size: 1.5rem;
    color: var(--brand-red);
    margin-bottom: 25px;
    font-family: var(--font-display);
}

.features-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.features-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
}

.features-list li i {
    color: var(--gold-accent);
}

/* Tipos Activaciones */
.tipos-activaciones {
    padding: 100px 0;
    background: #0d121c;
}

.section-title-centered {
    text-align: center;
    font-size: 3rem;
    font-family: var(--font-display);
    margin-bottom: 60px;
    color: white;
}

.activaciones-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.activacion-card {
    background: var(--bg-color);
    border-radius: 20px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.activacion-card:hover {
    transform: translateY(-10px);
}

.activacion-image {
    height: 250px;
    position: relative;
    overflow: hidden;
}

.activacion-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.activacion-card:hover .activacion-image img {
    transform: scale(1.1);
}

.activacion-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.activacion-card:hover .activacion-overlay {
    opacity: 1;
}

.activacion-overlay i {
    font-size: 3rem;
    color: white;
}

.activacion-content {
    padding: 30px;
}

.activacion-content h3 {
    font-size: 1.5rem;
    color: white;
    margin-bottom: 15px;
}

.activacion-content p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.link-simple {
    color: var(--brand-red);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: gap 0.3s ease;
}

.link-simple:hover {
    gap: 10px;
}

/* Eventos Section */
.eventos-section {
    padding: 100px 0;
    background-color: var(--bg-color);
}

.section-header-with-bg {
    position: relative;
    padding-left: 60px;
    margin-bottom: 60px;
}

.bg-accent-left {
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 100%;
    background: var(--brand-red);
}

.eventos-gallery {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    /* Complex grid for masonry look */
    grid-template-rows: 300px 300px;
    gap: 20px;
}

.evento-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
}

.evento-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Grid Layout Customization */
.evento-item:nth-child(1) {
    grid-column: span 2;
}

.evento-item:nth-child(2) {
    grid-column: span 4;
}

.evento-item:nth-child(3) {
    grid-column: span 2;
}

.evento-item:nth-child(4) {
    grid-column: span 2;
}

.evento-item:nth-child(5) {
    grid-column: span 2;
}

.evento-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    color: white;
}

.evento-date {
    font-size: 0.8rem;
    text-transform: uppercase;
    color: var(--gold-accent);
    display: block;
    margin-bottom: 5px;
}

.evento-info h4 {
    margin: 0;
    font-size: 1.2rem;
    color: #ffffff;
}

/* Testimonials */
.testimonial-section {
    padding: 100px 0;
    background: #0d121c;
    text-align: center;
}

.testimonial-card {
    max-width: 800px;
    margin: 0 auto;
}

.quote-icon {
    font-size: 3rem;
    color: var(--brand-red);
    opacity: 0.3;
    margin-bottom: 30px;
}

.testimonial-text {
    font-family: var(--font-display);
    font-size: 2rem;
    font-style: italic;
    color: white;
    line-height: 1.4;
    margin-bottom: 30px;
}

.testimonial-author {
    font-size: 1rem;
    color: var(--brand-red);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Stats */
.stats-section {
    padding: 60px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    text-align: center;
}

.stat-number {
    font-size: 4rem;
    font-weight: 700;
    color: white;
    font-family: var(--font-display);
}

.stat-label {
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

/* Contactanos */
.contactanos-section {
    padding: 100px 0;
    background: var(--bg-color);
}

.contact-grid-activaciones {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 30px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.contact-form-area {
    padding: 60px;
}

.contact-visual-area {
    position: relative;
    background: #000;
}

.contact-image-card {
    height: 100%;
}

.contact-image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.7;
}

.contact-info-box {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 40px;
    background: linear-gradient(to top, #000, transparent);
}

.activaciones-form .form-group label {
    font-weight: 500;
    color: white;
}

.btn-submit-primary {
    background: var(--brand-red);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    transition: background 0.3s ease;
}

.btn-submit-primary:hover {
    background: #c23525;
}

.contact-details-list {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.contact-details-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    color: white;
    margin-bottom: 15px;
}

.contact-details-list li i {
    color: var(--brand-red);
    width: 20px;
}

/* Responsive Activaciones */
@media (max-width: 900px) {

    .content-split-reverse,
    .activaciones-grid,
    .contact-grid-activaciones {
        grid-template-columns: 1fr;
    }

    .eventos-gallery {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }

    .evento-item {
        grid-column: span 1 !important;
        height: 250px;
    }

    .page-title-centered {
        font-size: 3rem;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .contact-visual-area {
        height: 300px;
    }
}

/* =========================================
   TIENDA PAGE STYLES
   ========================================= */

.tienda-page {
    background-color: var(--bg-color);
    color: white;
}

/* Hero Tienda */
.hero-tienda {
    padding-bottom: 60px;
    text-align: center;
}

.page-title-tienda {
    font-size: 5rem;
    font-family: var(--font-display);
    color: white;
    margin-bottom: 50px;
    line-height: 1;
}

.hero-image-tienda {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    height: 60vh;
    border-radius: 30px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    background: rgba(255, 255, 255, 0.02);
}

.hero-img-full {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

/* Productos Intro Section */
.productos-intro-section {
    padding: 100px 0;
    background: #0d121c;
    /* Slightly lighter navy */
    text-align: center;
    position: relative;
}

.section-title-elegant {
    font-size: 3.5rem;
    font-family: var(--font-display);
    line-height: 1.2;
    margin-bottom: 70px;
    color: white;
}

.underline-accent {
    position: relative;
    display: inline-block;
    z-index: 1;
}

.underline-accent::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: -5%;
    width: 110%;
    height: 12px;
    background: var(--brand-red);
    opacity: 0.6;
    z-index: -1;
    transform: rotate(-1deg);
}

.productos-grid-preview {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 50px;
    flex-wrap: nowrap;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 20px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    scrollbar-width: none;
    /* Hide scrollbar Firefox */
    -webkit-overflow-scrolling: touch;
}

.productos-grid-preview::-webkit-scrollbar {
    display: none;
    /* Hide scrollbar Chrome/Safari */
}

.producto-card-preview {
    min-width: calc(45% - 10px);
    /* Show exactly 2 items including gap */
    width: calc(45% - 10px);
    height: 280px;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
    scroll-snap-align: start;
}



.producto-card-preview:hover {
    transform: translateY(-10px);
}

.producto-image {
    width: 100%;
    height: 100%;
}

.producto-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pagination-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 50px;
}

.dot {
    width: 10px;
    height: 10px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
    cursor: pointer;
}

.dot.active {
    background: var(--brand-red);
    transform: scale(1.2);
}

.btn-tienda-outline {
    display: inline-block;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    padding: 18px 50px;
    border-radius: 50px;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-tienda-outline:hover {
    background: white;
    color: var(--bg-color);
    border-color: white;
}

/* Productos Showcase Section */
.productos-showcase-section {
    padding: 120px 0;
    background: var(--bg-color);
    text-align: center;
}

.section-title-elegant-dark {
    font-size: 3rem;
    font-family: var(--font-display);
    color: white;
    margin-bottom: 80px;
}

.productos-grid-showcase {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.producto-showcase-card {
    text-align: center;
}

.producto-showcase-image {
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 25px;
    height: 350px;
    position: relative;
}

.producto-showcase-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.producto-showcase-card:hover .producto-showcase-image img {
    transform: scale(1.1);
}

.producto-title {
    font-size: 1rem;
    color: white;
    letter-spacing: 2px;
    font-weight: 500;
    text-transform: uppercase;
    margin: 0;
}

/* Responsive Tienda */
@media (max-width: 1024px) {
    .productos-grid-showcase {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .page-title-tienda {
        font-size: 3.5rem;
    }

    .hero-image-tienda {
        height: 50vh;
    }
}

@media (max-width: 768px) {
    .hero-tienda {
        padding-bottom: 40px;
    }

    .page-title-tienda {
        font-size: 2.5rem;
        margin-bottom: 30px;
    }

    .hero-image-tienda {
        height: 21vh;
        border-radius: 20px;
    }

    .section-title-elegant {
        font-size: 2.2rem;
    }

    .productos-grid-preview {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .producto-card-preview {
        min-width: 100%;
        width: 100%;
        height: 250px;
    }

    .productos-grid-showcase {
        grid-template-columns: 1fr;
    }

    .producto-showcase-image {
        height: 300px;
    }
}

@media (max-width: 480px) {
    .hero-tienda {
        padding-bottom: 30px;
    }

    .page-title-tienda {
        font-size: 2rem;
        margin-bottom: 20px;
    }

    .hero-image-tienda {
        height: 30vh;
        border-radius: 15px;
    }

    .section-title-elegant {
        font-size: 1.8rem;
    }
}

/* =========================================
   CONTACTO PAGE STYLES
   ========================================= */

/* Hero Contacto */
.hero-contacto {
    position: relative;
    padding: 20px 0 40px;
    background-color: var(--color-navy-dark);
    overflow: hidden;
    text-align: center;
}

.hero-contacto::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 30%, rgba(13, 110, 253, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(220, 53, 69, 0.1) 0%, transparent 50%);
    z-index: 1;
}

.hero-contacto .container-standard {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
}

.page-title-contacto {
    font-family: var(--font-primary, 'Outfit', sans-serif);
    font-size: clamp(3rem, 5vw, 4.5rem);
    font-weight: 700;
    color: var(--color-white, #ffffff);
    margin-bottom: 40px;
    line-height: 1.1;
}

.hero-brand-card-contacto {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
}

.brand-card-visual-navy {
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 20px;
    position: relative;
    display: inline-block;
}

.brand-card-visual-navy img {
    max-width: 200px;
    height: auto;
}

.mascot-float-right {
    position: absolute;
    top: -30px;
    right: -40px;
    width: 100px;
    animation: float 6s ease-in-out infinite;
}

.mascot-small {
    width: 100%;
    height: auto;
}

.contacto-subtitle {
    font-size: 1.5rem;
    color: var(--color-gray-300, #cbd5e1);
    margin-bottom: 40px;
}

.cta-contacto-centered .btn-contacto-navy {
    display: inline-block;
    padding: 16px 40px;
    background: var(--color-navy, #0f172a);
    color: var(--color-white, #ffffff);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.cta-contacto-centered .btn-contacto-navy:hover {
    background: var(--color-primary, #dc3545);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(220, 53, 69, 0.2);
}

/* Form Contacto Section */
.form-contacto-section {
    padding: 100px 0;
    background: var(--color-navy-darker, #020617);
}

.contacto-grid-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.form-area-contacto {
    background: rgba(255, 255, 255, 0.03);
    padding: 40px;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
}

.form-area-contacto .section-title-white {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: var(--color-white);
}

.contacto-form-main .form-group {
    margin-bottom: 24px;
}

.contacto-form-main label {
    display: block;
    color: var(--color-gray-300);
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.contacto-form-main input,
.contacto-form-main textarea {
    width: 100%;
    padding: 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: var(--color-white);
    font-family: inherit;
    transition: all 0.3s ease;
}

.contacto-form-main input:focus,
.contacto-form-main textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    background: rgba(255, 255, 255, 0.1);
}

.form-row-dual {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.btn-submit-contacto {
    width: 100%;
    padding: 16px;
    background: var(--color-primary);
    color: white;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit-contacto:hover {
    background: #c82333;
    transform: translateY(-2px);
}

.visual-area-contacto {
    position: relative;
    height: 100%;
}

.visual-area-contacto .contacto-image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* Info Section */
.info-contacto-section {
    padding: 80px 0;
    background: var(--color-navy-dark);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.info-contacto-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    text-align: center;
}

.info-block h3 {
    color: var(--color-gold, #fbbf24);
    font-size: 1.5rem;
    margin-bottom: 16px;
    font-weight: 600;
}

.info-block p,
.info-block a {
    color: var(--color-gray-300);
    font-size: 1.1rem;
    text-decoration: none;
    line-height: 1.6;
    margin-bottom: 8px;
    display: block;
}

.info-block a:hover {
    color: var(--color-white);
}

/* Responsive */
@media (max-width: 991px) {
    .contacto-grid-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .visual-area-contacto {
        order: -1;
        height: 400px;
    }
}

@media (max-width: 768px) {
    .hero-contacto {
        padding: 120px 0 60px;
    }

    .page-title-contacto {
        font-size: 2.5rem;
    }

    .form-row-dual {
        grid-template-columns: 1fr;
    }

    .form-area-contacto {
        padding: 24px;
    }

    .visual-area-contacto {
        height: 300px;
    }
}

/* =========================================
   ACTIVACIONES PAGE STYLES
   ========================================= */

.hero-activaciones {
    padding: 60px 0 60px;
    text-align: center;
}

/* Layout Spacing Fix */
.activaciones-page .container-standard {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 80px;
    /* Generous breathing room */
}

@media (max-width: 1024px) {
    .activaciones-page .container-standard {
        padding: 0 40px;
    }
}

@media (max-width: 768px) {
    .activaciones-page .container-standard {
        padding: 0 24px;
    }
}

.hero-brand-card {
    position: relative;
    display: inline-block;
    margin: 40px auto;
    max-width: 600px;
}

.brand-card-visual {
    position: relative;
    border-radius: 24px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    /* Ensure image container has size */
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    padding: 10px;
}

.brand-card-visual>img {
    display: block;
    max-width: 100%;
    height: auto;
    border-radius: 16px;
    filter: none !important;
}

.mascot-float {
    position: absolute;
    top: -40px;
    right: -40px;
    width: 120px;
    z-index: 2;
    animation: float 6s ease-in-out infinite;
}

.mascot-small {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.2));
}

.hero-quote {
    font-size: 1.25rem;
    font-style: italic;
    max-width: 700px;
    margin: 40px auto;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

.activacion-card {
    background: #1e293b;
    border-radius: 20px;
    overflow: hidden;
    transition: transform 0.3s ease;
    height: 100%;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.activacion-card:hover {
    transform: translateY(-10px);
}

.activacion-image {
    position: relative;
    height: 200px;
}

.activacion-image img,
.activacion-image iframe {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border: 0;
}

.activacion-overlay {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    background: var(--brand-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
    box-shadow: 0 5px 15px rgba(218, 61, 43, 0.4);
}

.activacion-content {
    padding: 25px;
}

.activacion-content h3 {

    margin-bottom: 10px;
    color: white;
    font-size: 1.25rem;
}

/* =========================================
   COMPACT CONTACT FORM (ACTIVACIONES)
   ========================================= */

.contactanos-section {
    padding: 60px 0 !important;
}

.contact-grid-activaciones {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: stretch;
}

.contact-form-area {
    padding: 20px !important;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.contact-form-area .section-title {
    font-size: 2rem !important;
    margin-bottom: 20px !important;
}

.contact-form-area .section-description {
    font-size: 0.95rem;
    margin-bottom: 20px;
    color: #ffffff;
}

.activaciones-form .form-group {
    margin-bottom: 12px;
}

.activaciones-form label {
    font-size: 0.85rem;
    margin-bottom: 4px;
    display: block;
    color: white;
}

.activaciones-form input,
.activaciones-form textarea {
    padding: 10px 15px;
    font-size: 0.95rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    width: 100%;
    color: white;
}

.activaciones-form button[type="submit"] {
    margin-top: 10px;
    padding: 12px 25px;
    font-size: 1rem;
}

/* Visual Area */
.contact-visual-area {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    /* Match form height roughly */
}

.contact-image-card {
    height: 100%;
}

.contact-image-card img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.contact-info-box {
    padding: 30px !important;
}

.contact-info-box h4 {
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: var(--text-muted);
}

.contact-details-list li {
    font-size: 0.9rem;
    margin-bottom: 10px;
}

@media (max-width: 900px) {
    .contact-grid-activaciones {
        grid-template-columns: 1fr;
    }

    .contact-visual-area {
        height: 300px;
    }
}

/* =========================================
   PAGE CONTACTO SPECIFICS
   ========================================= */

.form-contacto-section {
    background-color: var(--brand-dark);
}

/* Labels */
.contacto-form-main label {
    color: #ffffff;
    font-weight: 500;
    display: block;
    margin-bottom: 8px;
    font-size: 0.95rem;
}

/* Inputs & Textareas */
.contacto-form-main input,
.contacto-form-main textarea {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #ffffff;
    border-radius: 6px;
    padding: 12px 15px;
    width: 100%;
    font-family: inherit;
    transition: all 0.3s ease;
}

.contacto-form-main input:focus,
.contacto-form-main textarea:focus {
    border-color: var(--brand-red);
    outline: none;
    background: rgba(255, 255, 255, 0.08);
}

/* Placeholder Text */
.contacto-form-main input::placeholder,
.contacto-form-main textarea::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

/* Helper Text */
.form-helper-text {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    margin-bottom: 10px;
    line-height: 1.5;
}

.character-count {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.8rem;
    text-align: right;
    margin-top: 5px;
}

/* Submit Button Styling */
.btn-submit-contacto {
    background-color: var(--brand-red);
    color: white;
    border: none;
    padding: 15px 40px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 50px;
    font-size: 1rem;
    margin-top: 10px;
    display: inline-block;
}

.btn-submit-contacto:hover {
    background-color: white;
    color: var(--brand-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Form Container as Card */
.form-area-contacto {
    background-color: #1a2436;
    /* Slightly lighter than brand-dark */
    padding: 60px;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

/* Reduced padding on mobile */
@media (max-width: 768px) {
    .form-area-contacto {
        padding: 30px;
        border-radius: 20px;
    }
}

.contacto-grid-layout {
    align-items: stretch;
    /* Make both cards same height if possible */
}

.visual-area-contacto {
    display: flex;
}

.contacto-image-card {
    width: 100%;
    height: 100%;
}

.contacto-image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 30px;
    /* Match form radius */
}

/* Form Layout Adjustments */
.form-row-dual {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 5px;
    /* Spacing handled by groups */
}

.form-group {
    margin-bottom: 25px;
}

@media (max-width: 768px) {
    .form-row-dual {
        grid-template-columns: 1fr;
        gap: 0;
    }
}

/* Typography Matching (Front Page) */
.page-title-contacto {
    font-family: var(--font-main);
    font-size: 4.5rem;
    line-height: 1.1;
    font-weight: 800;
    margin-bottom: 25px;
    color: white;
}

.section-title-white {
    font-family: var(--font-main);
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 40px;
    font-weight: 700;
    color: white;
}

/* Layout Grid */
.contacto-grid-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contacto-image-card img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    display: block;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* Ensure Form Font Inheritance */
.contacto-form-main,
.contacto-form-main input,
.contacto-form-main textarea,
.contacto-form-main label,
.contacto-form-main button {
    font-family: var(--font-main) !important;
}

/* Responsive Adjustments */
@media (max-width: 900px) {
    .contacto-grid-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .page-title-contacto {
        font-size: 2.8rem;
        /* Reduced from 4.5rem */
    }

    .section-title-white {
        font-size: 2.2rem;
        /* Reduced from 3.5rem */
        margin-bottom: 20px;
    }

    /* Fix visual stacking order if needed */
    .visual-area-contacto {
        order: -1;
        margin-bottom: 20px;
    }

    .contacto-image-card {
        max-width: 400px;
        /* Limit image size on mobile */
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .page-title-contacto {
        font-size: 2.2rem;
    }

    .section-title-white {
        font-size: 1.8rem;
    }
}

/* =========================================
   ACTIVACIONES PAGE STYLES
   ========================================= */

/* Hero Section - Compact Layout */
.hero-activaciones {
    padding: 40px 0 30px;
    background: radial-gradient(circle at center, rgba(218, 61, 43, 0.05) 0%, rgba(15, 23, 42, 0) 70%);
}

.hero-activaciones .container-standard {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px;
}

.page-title-centered {
    font-family: var(--font-main);
    font-size: 2.8rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 25px;
    color: white;
    line-height: 1.1;
}

.hero-brand-card {
    max-width: 410px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 25px;
    position: relative;
}

.brand-card-visual {
    width: 100%;
    max-width: 100%;
    margin: 0 auto 20px;
    position: relative;
    border-radius: 16px;
    overflow: hidden;
}

.brand-card-visual img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 16px;
}

.mascot-float {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 50%;
    padding: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
}

.mascot-small {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.hero-quote {
    text-align: center;
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
    font-style: italic;
    margin-bottom: 20px;
    font-weight: 300;
}

.hero-quote i {
    color: var(--brand-red);
    font-size: 0.85rem;
}

.hero-cta-centered {
    display: flex;
    justify-content: center;
}

.btn-primary-rounded {
    background: var(--brand-red);
    color: white;
    padding: 12px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary-rounded:hover {
    background: #c23525;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(218, 61, 43, 0.4);
}

/* Modelo Section */
.modelo-section {
    padding: 80px 0;
    background-color: var(--bg-color);
}

.content-split-reverse {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: white;
}

.section-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
    line-height: 1.5;
    font-weight: 400;
}

.section-description {
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 30px;
    font-weight: 300;
}

.feature-list-box {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 30px;
}

.feature-list-box h4 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: white;
    font-weight: 600;
}

.features-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.features-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
}

.features-list i {
    color: var(--brand-red);
    font-size: 14px;
}

/* Tipos de Activaciones */
.tipos-activaciones {
    padding: 80px 0;
}

.section-title-centered {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    color: white;
}

.activaciones-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.activacion-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.activacion-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(218, 61, 43, 0.3);
}

.activacion-image {
    width: 100%;
    height: 250px;
    position: relative;
}

.activacion-image iframe {
    border-radius: 0;
}

.activacion-content {
    padding: 30px;
}

.activacion-content h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: white;
    font-weight: 600;
}

.activacion-content p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
}

.link-simple {
    color: var(--brand-red);
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.3s ease;
}

.link-simple:hover {
    gap: 12px;
}

/* Eventos Section */
.eventos-section {
    padding: 80px 0;
    background: rgba(255, 255, 255, 0.01);
}

.section-header-with-bg {
    position: relative;
    margin-bottom: 60px;
}

.bg-accent-left {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 80px;
    height: 4px;
    background: var(--brand-red);
}

.section-title-large {
    font-size: 3rem;
    font-weight: 700;
    color: white;
    padding-left: 100px;
}

.eventos-gallery {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 30px;
}

.evento-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease;
}

/* First 2 items: span 3 columns each (2 large images) */
.evento-item:nth-child(1),
.evento-item:nth-child(2) {
    grid-column: span 3;
}

/* Remaining items: span 2 columns each (3 medium images) */
.evento-item:nth-child(n+3) {
    grid-column: span 2;
}

.evento-item:hover {
    transform: scale(1.02);
}

.evento-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
}

.evento-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 100%);
}

.evento-date {
    font-size: 0.85rem;
    color: var(--brand-red);
    margin-bottom: 5px;
    display: block;
}

.evento-info h4 {
    color: white;
    font-size: 1.1rem;
    margin: 0;
    font-weight: 600;
}

/* Testimonial Section */
.testimonial-section {
    padding: 80px 0;
}

.testimonial-card {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    padding: 50px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    position: relative;
}

.quote-icon {
    color: var(--brand-red);
    font-size: 3rem;
    margin-bottom: 30px;
    opacity: 0.3;
}

.testimonial-text {
    font-size: 1.25rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    font-style: italic;
    margin-bottom: 30px;
    font-weight: 300;
}

.testimonial-author {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1rem;
    font-weight: 500;
}

/* Stats Section */
.stats-section {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(218, 61, 43, 0.05) 0%, rgba(15, 23, 42, 0) 100%);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
    text-align: center;
}

.stat-card {
    padding: 30px;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--brand-red);
    margin-bottom: 15px;
    line-height: 1;
}

.stat-label {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Contact Section on Activaciones */
.contactanos-section {
    padding: 80px 0;
}

.contact-grid-activaciones {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-form-area .section-title {
    margin-bottom: 15px;
}

.contact-form-area .section-description {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 40px;
}

.activaciones-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.activaciones-form .form-group {
    display: flex;
    flex-direction: column;
}

.activaciones-form label {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    margin-bottom: 8px;
    font-weight: 500;
}

.activaciones-form input,
.activaciones-form textarea {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 14px 16px;
    color: white;
    font-family: var(--font-main);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.activaciones-form input:focus,
.activaciones-form textarea:focus {
    outline: none;
    border-color: var(--brand-red);
    background: rgba(255, 255, 255, 0.08);
}

.btn-submit-primary {
    background: var(--brand-red);
    color: white;
    padding: 16px 32px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.btn-submit-primary:hover {
    background: #c23525;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(218, 61, 43, 0.4);
}

.contact-image-card img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    margin-bottom: 30px;
}

.contact-info-box {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 30px;
}

.contact-info-box h4 {
    font-size: 1.5rem;
    color: white;
    margin-bottom: 20px;
    font-weight: 600;
}

.contact-details-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-details-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
}

.contact-details-list i {
    color: var(--brand-red);
    width: 20px;
    text-align: center;
}

/* CTA Section */
.cta-corporate {
    padding: 80px 0;
    background: radial-gradient(circle at center, rgba(218, 61, 43, 0.08) 0%, rgba(15, 23, 42, 0) 70%);
}

.cta-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
    line-height: 1.3;
}

.cta-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-primary-large {
    background: var(--brand-red);
    color: white;
    padding: 16px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.btn-primary-large:hover {
    background: #c23525;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(218, 61, 43, 0.4);
}

.btn-outline-large {
    background: transparent;
    color: white;
    padding: 16px 40px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.btn-outline-large:hover {
    border-color: var(--brand-red);
    background: rgba(218, 61, 43, 0.1);
}

.cta-decoration {
    position: absolute;
    top: 20px;
    right: 20px;
    display: flex;
    gap: 15px;
    font-size: 2rem;
    color: var(--brand-red);
    opacity: 0.1;
}

/* Mobile Menu */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    flex-direction: column;
    gap: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 2px;
    background: white;
    transition: all 0.3s ease;
}

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.98);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-content {
    text-align: center;
}

.mobile-close {
    position: absolute;
    top: 30px;
    right: 30px;
    background: none;
    border: none;
    color: white;
    font-size: 3rem;
    cursor: pointer;
    line-height: 1;
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
}

.mobile-nav a {
    color: white;
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.mobile-nav a:hover {
    color: var(--brand-red);
}

.mobile-cta p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
}

/* Responsive Activaciones */
@media (max-width: 1024px) {

    .content-split-reverse,
    .contact-grid-activaciones {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .dquiap-header .main-navigation {
        display: none;
    }

    /* Eventos gallery: 2 columns on tablets */
    .eventos-gallery {
        grid-template-columns: repeat(2, 1fr);
    }

    .evento-item:nth-child(1),
    .evento-item:nth-child(2),
    .evento-item:nth-child(n+3) {
        grid-column: span 1;
    }
}

@media (max-width: 768px) {
    .hero-activaciones {
        padding: 100px 0 50px;
    }

    .hero-activaciones .container-standard {
        padding: 0 30px;
    }

    .page-title-centered {
        font-size: 2.5rem;
    }

    .hero-brand-card {
        padding: 30px 20px;
    }

    .activaciones-grid {
        grid-template-columns: 1fr;
    }

    .eventos-gallery {
        grid-template-columns: 1fr;
    }

    .evento-item:nth-child(1),
    .evento-item:nth-child(2),
    .evento-item:nth-child(n+3) {
        grid-column: span 1;
    }

    .section-title-large {
        font-size: 2rem;
        padding-left: 0px;
    }

    .bg-accent-left {
        width: 50px;
    }

    .cta-title {
        font-size: 1.8rem;
    }

    .cta-card {
        padding: 40px 30px;
    }
}

/* =========================================
   WHY KANGAROOS SECTION - NOSOTROS PAGE
   (Updated Mobile Fix v2 - Full Width Forced)
   ========================================= */

.why-kangaroos-section {
    padding: 80px 0;
    background: #0f172a;
}

.why-kangaroos-section .container-standard {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.why-kangaroos-section .section-header-centered {
    text-align: center;
    margin-bottom: 60px;
}

.why-kangaroos-section .section-title-large {
    font-size: 2.5rem;
    font-weight: 300;
    line-height: 1.3;
    color: #ffffff;
    margin: 0;
}

.why-kangaroos-section .highlight-text {
    color: #da3d2b;
    font-weight: 400;
}

/* DESKTOP LAYOUT */
.why-kangaroos-section .content-two-column {
    display: grid;
    grid-template-columns: 1fr 1fr;
    /* Two equal columns */
    gap: 60px;
    align-items: center;
}

.why-kangaroos-section .content-left {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.why-kangaroos-section .lead-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 300;
    margin: 0;
    max-width: 100%;
    /* Ensure it can fill container */
}

.why-kangaroos-section .content-right {
    display: flex;
    justify-content: center;
    align-items: center;
}

.why-kangaroos-section .kangaroo-image {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

/* MOBILE/TABLET RESPONSIVE (< 991px) */
/* Increased breakpoint to ensure tablets also get the stacked view */
@media (max-width: 991px) {
    .why-kangaroos-section {
        padding: 60px 0;
    }

    .why-kangaroos-section .container-standard {
        padding: 0 25px;
        /* Slightly more padding on sides */
    }

    .why-kangaroos-section .section-header-centered {
        margin-bottom: 40px;
        padding: 0 10px;
    }

    .why-kangaroos-section .section-title-large {
        font-size: 1.8rem;
        /* Smaller title on mobile */
    }

    /* CRITICAL: SWITCH TO FLEX COLUMN FOR TOTAL CONTROL */
    .why-kangaroos-section .content-two-column {
        display: flex;
        flex-direction: column;
        grid-template-columns: none;
        /* Reset grid */
        gap: 40px;
    }

    /* Force text container to be 100% width */
    .why-kangaroos-section .content-left {
        order: 1;
        /* First */
        width: 100% !important;
        max-width: 100% !important;
        flex: 0 0 100%;
    }

    /* Force paragraphs to be 100% width and justify/left align */
    .why-kangaroos-section .lead-text {
        font-size: 1rem;
        width: 100% !important;
        max-width: 100% !important;
        text-align: left;
    }

    /* Force image container to be 100% width */
    .why-kangaroos-section .content-right {
        order: 2;
        /* Second */
        width: 100% !important;
        max-width: 100% !important;
    }

    .why-kangaroos-section .kangaroo-image {
        width: 100%;
        height: auto;
    }
}

/* =========================================
   HERO SECTION - NOSOTROS PAGE
   (Added for alignment fix)
   ========================================= */

.hero-nosotros {
    padding: 120px 0 80px;
    background: #0f172a;
    position: relative;
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
    /* Default left align for desktop */
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    color: var(--brand-red);
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.hero-title {
    font-family: var(--font-main);
    font-size: 5rem;
    font-weight: 700;
    line-height: 1;
    color: white;
    margin: 0;
}

.hero-title .gradient-text {
    background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-description {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 300;
    margin: 0;
}

.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
}

.hero-visual img {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3));
}

/* Mobile Hero Styles */
@media (max-width: 991px) {
    .hero-nosotros {
        padding: 60px 5px 60px;
        text-align: center;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .hero-content {
        align-items: center;
        /* Center items on mobile */
        text-align: center;
        /* Center text on mobile */
    }

    .hero-badge {
        margin: 0 auto;
    }

    .hero-title {
        font-size: 3.5rem;
    }

    .hero-description {
        font-size: 1.2rem;
    }

    .hero-visual {
        order: -1;
    }
}

/* =========================================
   HOTFIX: MOBILE ALIGNMENT OVERRIDES
   (Ensures centering on mobile devices)
   ========================================= */
@media (max-width: 991px) {

    /* Force center for Why Kangaroos Header */
    .why-kangaroos-section .section-header-centered {
        text-align: center !important;
        width: 100% !important;
        display: block !important;
        padding: 0 20px !important;
    }

    /* Ensure Hero Title is Centered */
    .hero-nosotros {
        text-align: center !important;
    }

    .hero-content {
        align-items: center !important;
        text-align: center !important;
    }

    .hero-title-wrapper {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
    }
}

/* =========================================
   MISSION SECTION - NOSOTROS PAGE
   (Added for layout fix)
   ========================================= */

.mission-section {
    padding: 100px 0;
    background: #0f172a;
    position: relative;
}

.mission-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.mission-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 40px 30px;
    text-align: center;
    transition: transform 0.3s ease, background 0.3s ease;
}

.mission-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.05);
}

.mission-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 30px;
    background: rgba(218, 61, 43, 0.1);
    /* brand-red tint */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mission-icon i {
    font-size: 28px;
    color: var(--brand-red);
}

.mission-card h3 {
    font-family: var(--font-main);
    font-size: 1.5rem;
    color: white;
    margin-bottom: 20px;
}

.mission-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 300;
}

/* =========================================
   VALUES SECTION - NOSOTROS PAGE
   (Added for layout fix)
   ========================================= */

.values-section {
    padding: 100px 0;
    background: #0b1120;
    /* Slightly darker */
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    /* 3 columns for 5 items? Maybe auto-fit */
    gap: 30px;
    margin-top: 60px;
    justify-content: center;
}

/* Make the last 2 items centered if 5 total? Or just use flex wrap */
.values-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.value-card {
    flex: 0 1 calc(33.333% - 30px);
    background: rgba(255, 255, 255, 0.02);
    border-radius: 20px;
    padding: 30px;
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.value-icon {
    font-size: 24px;
    color: var(--brand-red);
    margin-bottom: 20px;
}

.value-card h3 {
    font-size: 1.25rem;
    color: white;
    margin-bottom: 15px;
}

.value-card p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
}

/* =========================================
   MOBILE FIXES FOR MISSION & VALUES
   ========================================= */

@media (max-width: 991px) {

    .mission-section,
    .values-section {
        padding: 60px 0;
    }

    /* MISSION GRID MOBILE */
    .mission-grid {
        display: flex;
        flex-direction: column;
        /* Stack vertically! */
        gap: 30px;
    }

    .mission-card {
        width: 100%;
        /* Full width */
        margin: 0;
    }

    /* VALUES GRID MOBILE */
    .values-grid {
        flex-direction: column;
    }

    .value-card {
        flex: 0 0 100%;
        width: 100%;
        max-width: 100%;
    }
}

/* =========================================
   TIENDA PAGE STYLES
   (Added for responsive fix)
   ========================================= */

.dquiap-corporate-site.tienda-page {
    background-color: var(--bg-color);
    color: white;
}

/* HERO TIENDA */
.hero-tienda {
    padding: 120px 0 60px;
    position: relative;
    background: radial-gradient(circle at center, rgba(218, 61, 43, 0.05) 0%, rgba(15, 23, 42, 0) 70%);
}

.page-title-tienda {
    font-family: var(--font-header);
    font-size: 3.5rem;
    font-weight: 400;
    text-align: center;
    color: white;
    margin-bottom: 30px;
    line-height: 1.2;
}

.hero-image-tienda {
    max-width: 900px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-img-full {
    width: 100%;
    height: auto;
    display: block;
}

/* PRODUCTOS INTRO SECTION (Consigue nuestros productos...) */
.productos-intro-section {
    padding: 80px 0;
    text-align: center;
}

.section-title-elegant {
    font-family: var(--font-header);
    font-size: 2.5rem;
    color: white;
    margin-bottom: 50px;
    line-height: 1.3;
}

.underline-accent {
    position: relative;
    z-index: 1;
    display: inline-block;
}

.underline-accent::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    width: 100%;
    height: 12px;
    background-color: var(--brand-red);
    z-index: -1;
    opacity: 0.7;
}

/* CAROUSEL / GRID OF PRODUCTS */
.productos-grid-preview {
    display: flex;
    overflow-x: auto;
    gap: 20px;
    padding-bottom: 30px;
    max-width: 1000px;
    margin: 0 auto 30px;
    scrollbar-width: none;
    /* Hide scrollbar Firefox */
    -ms-overflow-style: none;
    /* Hide scrollbar IE/Edge */
    scroll-behavior: smooth;
    justify-content: center;
    /* Center if items fit */
    align-items: center;
}

.productos-grid-preview::-webkit-scrollbar {
    display: none;
    /* Hide scrollbar Chrome/Safari */
}

.producto-card-preview {
    flex: 0 0 280px;
    /* Fixed width for items */
    border-radius: 20px;
    overflow: hidden;
    transition: transform 0.3s ease;
    scroll-snap-align: center;
}

.producto-card-preview:hover {
    transform: translateY(-5px);
}

.producto-image img {
    width: 100%;
    height: 350px;
    /* Fixed height for consistency */
    object-fit: contain;
    /* Contain to show full product */
    background: transparent;
    border-radius: 20px;
}

/* CTA BUTTON */
.cta-tienda-centered {
    margin-top: 40px;
}

.btn-tienda-outline {
    display: inline-block;
    padding: 12px 30px;
    border: 1px solid var(--brand-red);
    color: white;
    text-transform: uppercase;
    text-decoration: none;
    font-weight: 500;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    background: rgba(218, 61, 43, 0.1);
}

.btn-tienda-outline:hover {
    background: var(--brand-red);
    color: white;
}

/* SHOWCASE SECTION (Algunos de nuestros productos) */
.productos-showcase-section {
    padding: 80px 0;
    background: rgba(255, 255, 255, 0.02);
}

.section-title-elegant-dark {
    font-family: var(--font-header);
    font-size: 2.2rem;
    color: white;
    /* Changed to white for dark bg */
    text-align: center;
    margin-bottom: 50px;
}

.productos-grid-showcase {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.producto-showcase-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    padding: 15px;
    text-align: center;
}

.producto-showcase-image img {
    width: 100%;
    height: 250px;
    object-fit: contain;
    margin-bottom: 15px;
}

.producto-title {
    font-size: 0.9rem;
    font-weight: 700;
    color: #333;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0;
}

/* PAGINATION DOTS */
.pagination-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 30px;
}

.dot {
    width: 8px;
    height: 8px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: var(--brand-red);
    transform: scale(1.2);
}

/* =========================================
   RESPONSIVE ADJUSTMENTS
   ========================================= */
@media (max-width: 900px) {
    .productos-grid-showcase {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .page-title-tienda {
        font-size: 2.5rem;
        /* Smaller title on tablet */
    }
}

@media (max-width: 600px) {

    /* Hero */
    .hero-tienda {
        padding: 60px 5px 50px;
        /* More top padding for header space */
    }

    .page-title-tienda {
        font-size: 2rem;
    }

    /* Product Intro */
    .section-title-elegant {
        font-size: 1.8rem;
        padding: 0 15px;
    }

    /* Carousel mobile adjustment */
    .productos-grid-preview {
        justify-content: flex-start;
        /* Align start to allow scrolling */
        padding-left: 20px;
        padding-right: 20px;
    }

    .producto-card-preview {
        flex: 0 0 240px;
        /* Slightly smaller cards */
    }

    .producto-image img {
        height: 280px;
    }

    /* Showcase Grid - Single Column */
    .productos-grid-showcase {
        grid-template-columns: 1fr;
        /* Stack vertically */
        max-width: 320px;
        margin: 0 auto;
    }

    .producto-showcase-card {
        margin-bottom: 15px;
    }
}

/* Mobile Menu Logo */
.mobile-logo-container {
    text-align: center;
    margin-bottom: 20px;
    margin-top: 10px;
}

.mobile-logo {
    height: 70px;
    width: auto;
    display: inline-block;
}