@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

:root {
    --white: #FFFFFF;
    --lime: #D2E823;
    --dark-teal: #0E434B;
    --black: #000000;
    --cyan: #02ACC4;
    --olive: #C7D540;
    --bg-dark: #1E2330;
    --bg-darker: #252432;
    --magenta: #C4205C;
    --grey-text: #676B5F;
    --purple: #D717E7;
    --soft-lime: #F1FE92;
    --light-grey: #F3F3F1;
    --success: #2DA771;
    --border-grey: #E6E6E6;
    --dark-red: #780016;
    --lavender: #807BF3;
    --pink: #CA24D9;
    --soft-pink: #E9C0E9;
    --orange: #EC6C47;
    --neon-pink: #FF2272;
    --green: #2DA771;

    --font-main: 'Inter', sans-serif;
    --container-width: 1200px;
    --section-padding: 100px 0;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    font-family: var(--font-main);
    background-color: var(--white);
    color: var(--bg-dark);
    line-height: 1.5;
    overflow-x: hidden !important;
    max-width: 100%;
}

h1,
h2,
h3,
h4 {
    font-weight: 700;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s ease;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* Utilities */
.text-lime {
    color: var(--lime);
}

.bg-lime {
    background-color: var(--lime);
}

.bg-teal {
    background-color: var(--dark-teal);
}

.bg-cyan {
    background-color: var(--cyan);
}

.bg-dark {
    background-color: var(--bg-dark);
}

.bg-light {
    background-color: var(--light-grey);
}

.btn {
    display: inline-block;
    padding: 10px 25px;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s;
    border: none;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-lime {
    background-color: var(--lime);
    color: var(--dark-teal);
}

.btn-outline-teal {
    border: 1px solid var(--dark-teal);
    background: transparent;
    color: var(--dark-teal);
}

.btn-outline-teal:hover {
    background-color: var(--dark-teal);
    color: var(--white);
    transform: translateY(-3px);
}

.btn-outline-lime {
    border: 1px solid var(--lime);
    background: transparent;
    color: var(--lime);
}

.btn-outline-lime:hover {
    background-color: var(--lime);
    color: var(--dark-teal);
    transform: translateY(-3px);
}

/* Header */
header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 30px 0;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid var(--lime);
    border-radius: 100px;
    padding: 10px 10px 10px 40px;
    backdrop-filter: blur(10px);
    background: rgba(14, 67, 75, 0.2);
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
}

.logo img {
    height: 40px;
    /* Adjust based on your logo aspect ratio */
    width: auto;
    display: block;
}

nav ul {
    display: flex;
    gap: 40px;
}

nav ul li a {
    color: var(--lime);
    font-size: 14px;
    font-weight: 400;
    opacity: 0.9;
}

nav ul li a:hover {
    color: var(--white);
    opacity: 1;
}

.btn-header-contact {
    background-color: var(--lime);
    color: var(--dark-teal);
    padding: 15px 45px;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 700;
}

.btn-header-contact:hover {
    transform: translateY(-2px);
    background-color: var(--white);
    color: var(--dark-teal);
}

.bg-dark-teal {
    background-color: var(--dark-teal);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 2100;
}

.menu-toggle span {
    width: 100%;
    height: 3px;
    background-color: var(--lime);
    border-radius: 10px;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Hero Refinement */
.hero {
    background-color: var(--dark-teal);
    padding: 180px 0 120px;
    text-align: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.hero-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.video-wrapper {
    position: relative;
    width: 100%;
    max-width: 850px;
    margin-bottom: -150px;
    /* Overlap effect */
    z-index: 10;
    cursor: pointer;
}

.video-preview {
    width: 100%;
    aspect-ratio: 16/9;
    background: radial-gradient(circle, #2a2a2a 0%, #000 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.6);
    position: relative;
}

.logo-preview img {
    width: 300px;
    /* Larger logo inside video */
    height: auto;
    opacity: 0.9;
}

.sun-decoration {
    position: absolute;
    top: -50px;
    right: -50px;
    width: 140px;
    height: 140px;
    z-index: 20;
    pointer-events: none;
}

.hero-title {
    font-size: 130px;
    line-height: 0.82;
    z-index: 15;
    position: relative;
    pointer-events: none;
    text-transform: none;
    font-weight: 700;
    margin-bottom: 60px;
}

.hero-actions {
    z-index: 25;
}

.btn.small {
    padding: 10px 30px;
    font-size: 14px;
}

/* Modal for Video */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    align-items: center;
    justify-content: center;
}

.modal.active {
    display: flex;
}

.modal-content {
    width: 90%;
    max-width: 1100px;
    position: relative;
    transform: scale(0.8);
    transition: transform 0.3s ease;
}

.modal.active .modal-content {
    transform: scale(1);
}

.close-modal {
    position: absolute;
    top: -50px;
    right: 0;
    color: var(--lime);
    font-size: 50px;
    cursor: pointer;
    line-height: 1;
}

.video-container-full {
    aspect-ratio: 16/9;
    width: 100%;
}

/* Logos Belt */
.logos-belt {
    background-color: var(--lime);
    padding: 30px 0;
    overflow: hidden !important;
    width: 100% !important;
    position: relative;
}

.logos-track {
    display: flex;
    gap: 60px;
    animation: scroll 40s linear infinite;
    width: max-content;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-50% - 30px));
        /* -50% plus half the gap */
    }
}

.logos-track span {
    display: flex;
    align-items: center;
    justify-content: center;
}

.logos-track img {
    height: 45px;
    width: auto;
    object-fit: contain;
    /* filter: brightness(0) opacity(0.8); */
    filter: grayscale(1);
    /* Silueta oscura para contraste con lima */
    transition: filter 0.3s;
}

.logos-track span:hover img {
    filter: none;
    /* Color original al pasar el mouse */
}

/* History */
.history {
    background-color: var(--lime);
    padding: var(--section-padding);
}

.history .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.history-img img {
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.history-content h2 {
    font-size: 48px;
    margin-bottom: 20px;
    color: var(--dark-teal);
}

.history-content p {
    font-size: 18px;
    margin-bottom: 30px;
    color: var(--dark-teal);
    opacity: 0.8;
}

/* Portfolio */
.portfolio {
    padding: var(--section-padding);
    text-align: center;
}

/* Portfolio Slider Refinement */
.portfolio-card {
    border-radius: 12px;
    padding: 15px;
    height: 100%;
    display: flex;
    flex-direction: column;
    min-height: 400px;
    transition: transform 0.3s;
}

.portfolio-card:hover {
    transform: translateY(-10px);
}

.card-img {
    width: 100%;
    aspect-ratio: 4/3;
    overflow: hidden;
    border-radius: 12px;
    margin-bottom: 20px;
}

.card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-body-custom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 5px 10px;
}

.card-body-custom h3 {
    font-size: 22px;
    margin: 0;
    font-weight: 600;
}

.btn-portfolio {
    border: 1.5px solid var(--dark-teal);
    padding: 10px 30px;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.btn-portfolio:hover {
    background-color: var(--dark-teal);
    color: var(--white);
    transform: scale(1.05);
}

/* Portfolio Card Colors */
.pink-soft {
    background-color: var(--soft-pink);
    color: var(--dark-teal);
}

.lime-card {
    background-color: var(--lime);
    color: var(--dark-teal);
}

.burgundy {
    background-color: var(--dark-red);
    color: var(--white);
}

.burgundy .btn-portfolio {
    border-color: var(--white);
    color: var(--white);
}

.burgundy .btn-portfolio:hover {
    background-color: var(--white);
    color: var(--dark-red);
}

.cyan-card {
    background-color: var(--cyan);
    color: var(--dark-teal);
}

.portfolio-subtitle {
    font-size: 18px;
    line-height: 1.4;
}

/* Custom Swiper Scrollbar */
.portfolio-scrollbar.swiper-scrollbar {
    background: var(--dark-teal);
    /* Dark track */
    height: 8px;
    /* Thick line */
    border-radius: 0;
    position: relative;
    width: 100%;
    margin-top: 60px !important;
}

.portfolio-scrollbar .swiper-scrollbar-drag {
    background: var(--lime);
    /* Lime indicator */
    border-radius: 0;
    height: 100%;
}

/* Services */
.services {
    background-color: var(--dark-teal);
    padding: 100px 0;
    color: var(--white);
    position: relative;
    /* overflow: hidden; */
}

.services-title {
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 20px;
}

.services-subtitle {
    font-size: 18px;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

.services-wrapper {
    max-width: 1000px;
    margin: 60px auto 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.services-grid.bottom-grid {
    grid-template-columns: repeat(2, 1fr);
    max-width: 66.66%;
    margin: 30px auto 0;
}

.service-card {
    background-color: var(--lime);
    border-radius: 12px;
    padding: 40px 30px;
    text-align: center;
    color: var(--dark-teal);
    transition: transform 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-icon-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 25px;
    flex-shrink: 0;
}

.service-img-icon {
    width: 30px;
    height: 30px;
    object-fit: contain;
}

.service-card-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.2;
}

.service-card-text {
    font-size: 15px;
    line-height: 1.4;
    font-weight: 400;
    opacity: 0.9;
}

.services-star {
    position: absolute;
    bottom: -148px;
    right: -20px;
    width: 200px;
    height: 200px;
    opacity: 1;
    z-index: 5;
    pointer-events: none;
}

/* Icon Backgrounds */
.bg-lavender {
    background-color: var(--lavender);
}

.bg-pink {
    background-color: var(--pink);
}

.bg-cyan {
    background-color: var(--cyan);
}

.bg-purple {
    background-color: var(--purple);
}

.bg-magenta {
    background-color: var(--magenta);
}

.bg-orange {
    background-color: var(--orange);
}

.bg-green {
    background-color: var(--green);
}

/* What we do */
.what-we-do {
    padding: 100px 0;
    background: #F3F3F1;
}

.section-title-dark {
    font-size: 56px;
    font-weight: 700;
    color: var(--dark-teal);
    margin-bottom: 20px;
}

.faq-list {
    max-width: 100%;
}

.faq-item {
    border-top: 1.5px solid #D1D1D1;
    padding: 60px 0;
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.faq-item:last-child {
    border-bottom: 1.5px solid #D1D1D1;
}

.faq-num {
    font-weight: 700;
    font-size: 20px;
    width: 40px;
    flex-shrink: 0;
}

.faq-content {
    flex-grow: 1;
    max-width: 800px;
}

.faq-content h3 {
    margin-bottom: 20px;
    font-size: 26px;
    font-weight: 700;
}

.faq-content p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--dark-teal);
    opacity: 0.8;
}

.faq-arrow {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    color: var(--dark-teal);
    background-color: #A9B8BB;
    /* Default grey */
    transition: background-color 0.3s ease;
}

.faq-item:hover .faq-arrow {
    background-color: var(--lime);
    /* Hover yellow/lime */
}

.text-magenta {
    color: var(--magenta);
}

.text-cyan {
    color: var(--cyan);
}

.text-purple {
    color: var(--purple);
}

.text-success {
    color: var(--success);
}

/* Experience */
.experience {
    background-color: var(--dark-teal);
    padding: 160px 0;
    color: var(--white);
    overflow: hidden;
}

.experience .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 100px;
}

.exp-content {
    max-width: 580px;
}

.exp-content h1 {
    font-size: 64px;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 35px;
}

.exp-content p {
    font-size: 22px;
    line-height: 1.4;
    opacity: 0.9;
    margin-bottom: 50px;
    max-width: 500px;
}

.btn-contact-exp {
    display: inline-block;
    border: 2px solid var(--lime);
    color: var(--lime);
    padding: 18px 50px;
    border-radius: 100px;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s ease;
}

.btn-contact-exp:hover {
    background-color: var(--lime);
    color: var(--dark-teal);
    transform: translateY(-3px);
}

.exp-cards {
    position: relative;
    width: 500px;
    height: 450px;
    flex-shrink: 0;
}

/* Designing the stacked cards to match the image precisely */
.exp-card-stack {
    position: absolute;
    width: 320px;
    height: 320px;
    border-radius: 40px;
    box-shadow: -20px 20px 50px rgba(0, 0, 0, 0.3);
    transition: all 0.5s ease;
}

.exp-card-1 {
    background-color: #D62B5B;
    /* Magenta/Reddish */
    z-index: 1;
    top: 0;
    right: 0;
}

.exp-card-2 {
    background-color: #D2E823;
    /* Lime */
    z-index: 2;
    top: 30px;
    right: 30px;
}

.exp-card-3 {
    background-color: #1AC2D9;
    /* Cyan */
    z-index: 3;
    top: 60px;
    right: 60px;
}

.exp-card-4 {
    background-color: #BD23D2;
    /* Purple */
    z-index: 4;
    top: 90px;
    right: 90px;
}

.exp-card-main {
    z-index: 5;
    top: 130px;
    right: 130px;
    background: #fff;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.exp-card-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.minecraft-tag {
    position: absolute;
    bottom: 50%;
    left: -40px;
    transform: translateY(50%);
    background: #fff;
    padding: 15px 25px;
    border-radius: 100px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    z-index: 10;
}

.minecraft-tag img {
    height: 25px;
}

.exp-cards:hover .exp-card-stack {
    transform: translate(-10px, -10px);
}

/* Contact Section Refined */
.contact {
    background-color: var(--lime);
    padding: 120px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.form-label {
    display: block;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--dark-teal);
    font-size: 15px;
}

.contact-form .form-control {
    background-color: transparent;
    border: 1px solid var(--dark-teal);
    border-radius: 30px;
    padding: 18px 25px;
    color: var(--dark-teal);
    font-weight: 500;
}

.contact-form textarea.form-control {
    border-radius: 40px;
    padding: 25px;
}

.contact-form .form-control::placeholder {
    color: rgba(14, 67, 75, 0.4);
}

.btn-dark-teal {
    background-color: var(--dark-teal);
    color: var(--white);
    border-radius: 30px;
    font-weight: 700;
    padding: 18px;
    font-size: 16px;
    transition: all 0.3s ease;
    border: none;
}

.btn-dark-teal:hover {
    background-color: var(--olive);
    color: var(--dark-teal);
    transform: translateY(-3px);
}

.contact-info-card {
    background-color: var(--dark-teal);
    padding: 80px 50px;
    border-radius: 80px;
    color: var(--white);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
}

.contact-info-card h2 {
    font-size: 52px;
    font-weight: 600;
    margin-bottom: 40px;
}

.contact-locations {
    margin-top: 40px;
}

.location-row {
    font-size: 14px;
    display: flex;
    flex-wrap: wrap;
    gap: 15px 20px;
}

.loc-item {
    display: flex;
    align-items: center;
    font-weight: 500;
}

.loc-item svg {
    flex-shrink: 0;
}

/* Pre-footer Banner Updated */
.pre-footer-banner {
    background: linear-gradient(to bottom, var(--lime) 50%, #252432 50%);
    /* Half lime, half dark bg */
    padding-bottom: 80px;
}

.pre-footer-card {
    background-color: #F1F1F1;
    border-radius: 60px;
    padding: 100px 40px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

.banner-title {
    font-size: 56px;
    color: var(--black);
    font-weight: 700;
    line-height: 1.1;
}

.btn-lime-rounded {
    background-color: var(--lime);
    color: var(--black);
    border-radius: 100px;
    font-weight: 700;
    font-size: 14px;
}

.btn-lime-rounded:hover {
    background-color: var(--white);
    color: var(--dark-teal);
    transform: scale(1.05);
}

/* Main Footer Updated (Unified Cyan) */
.main-footer {
    background-color: var(--cyan);
    padding: 100px 0 40px;
    color: var(--black);
}

.footer-top-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 80px;
}

.footer-cta-title {
    font-size: 86px;
    font-weight: 700;
    line-height: 0.95;
    margin-bottom: 40px;
    color: var(--black);
}

.btn-hablemos {
    background-color: var(--white);
    padding: 10px 10px 10px 40px;
    border-radius: 100px;
    display: inline-flex;
    align-items: center;
    gap: 30px;
    font-weight: 700;
    font-size: 14px;
    color: var(--black);
    transition: transform 0.3s ease;
}

.btn-hablemos:hover {
    transform: scale(1.05);
}

.arrow-circle {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-social ul {
    list-style: none;
    text-align: right;
}

.footer-social ul li {
    margin-bottom: 12px;
}

.footer-social ul li a {
    font-size: 16px;
    font-weight: 600;
    opacity: 0.8;
}

.footer-social ul li a:hover {
    opacity: 1;
}

.footer-middle-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 30px;
    padding-bottom: 10px;
}

.footer-logo-img {
    height: 60px;
    width: auto;
    filter: brightness(0);
    /* Make logo black if it's the color version */
}

.footer-nav ul {
    display: flex;
    gap: 40px;
}

.footer-nav ul li a {
    font-size: 16px;
    font-weight: 600;
}

.footer-bottom-row {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    padding-top: 25px;
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 13px;
    opacity: 0.8;
}

.footer-legal {
    display: flex;
    gap: 15px;
}

.footer-legal a:hover {
    text-decoration: underline;
}

@media (max-width: 1024px) {
    .hero-title {
        font-size: 80px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        justify-content: center;
    }
}

@media (max-width: 768px) {

    .exp-content h1 {
        font-size: 48px;
    }

    header .container {
        padding: 10px 20px;
        margin: 10px 20px;
        width: calc(100% - 40px);
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background-color: var(--dark-teal);
        display: flex;
        justify-content: center;
        align-items: center;
        transition: 0.4s ease;
        z-index: 999;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-menu ul {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    .nav-menu ul li a {
        font-size: 24px;
        font-weight: 700;
    }

    .menu-toggle {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        width: 30px;
        height: 20px;
        background: transparent;
        border: none;
        cursor: pointer;
        z-index: 1001;
        padding: 0;
    }

    .menu-toggle span {
        width: 100%;
        height: 2px;
        background-color: var(--lime);
        transition: 0.3s ease;
    }

    .menu-toggle.active span:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }

    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.active span:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }

    .hero-title {
        font-size: 50px;
        margin-bottom: 40px;
    }

    .video-wrapper {
        margin-bottom: -50px;
    }

    .sun-decoration {
        width: 80px;
        height: 80px;
        top: -30px;
        right: -20px;
    }

    .services-title,
    .section-title-dark,
    .banner-title,
    .footer-cta-title {
        font-size: 32px !important;
    }

    .services-subtitle {
        font-size: 16px;
    }

    .services-grid,
    .services-grid.bottom-grid {
        grid-template-columns: 1fr !important;
        max-width: 100% !important;
    }

    .faq-item {
        flex-direction: column;
        gap: 20px;
        padding: 40px 0;
    }

    .faq-arrow {
        align-self: flex-end;
    }

    .experience .container {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }

    .history .container {
        grid-template-columns: 1fr;
        padding: 0;
        text-align: center;
    }

    .history-content {
        padding: 40px 20px !important;
    }

    .pre-footer-banner {
        padding: 0 15px 40px;
        background: linear-gradient(to bottom, var(--lime) 30%, #252432 30%);
    }

    .pre-footer-card {
        padding: 50px 20px;
        border-radius: 30px;
    }

    .contact-info-card {
        padding: 40px 20px;
        border-radius: 30px;
    }

    .location-row {
        flex-direction: column;
        gap: 15px;
    }

    .main-footer {
        padding: 60px 0 30px;
    }

    .footer-top-row {
        margin-bottom: 40px;
    }

    .btn-hablemos {
        width: 100%;
        justify-content: space-between;
    }

    .footer-middle-row {
        flex-direction: column;
        align-items: center;
        gap: 40px;
        text-align: center;
    }

    .footer-nav ul {
        flex-direction: column;
        align-items: center;
        gap: 20px;
        padding: 0px;
    }

    .footer-bottom-row {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .footer-legal {
        flex-direction: column;
        gap: 10px;
    }

    .footer-legal span {
        display: none;
    }
}

.menu-open {
    overflow: hidden;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.menu-toggle {
    display: none;
    /* Hidden on desktop */
}

/* --- About Page Styles --- */

.about-hero {
    background-color: var(--dark-teal);
    padding: 160px 0 100px;
    color: var(--white);
    overflow: hidden;
}

.about-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.about-title {
    font-size: 35px;
    line-height: 1.2;
    margin-bottom: 30px;
    font-weight: 500;
}

.outline-pill {
    display: inline-block;
    border: 1px solid var(--white);
    border-radius: 100px;
    padding: 2px 25px;
    margin-bottom: 10px;
}

.pink-pill {
    display: inline-block;
    background-color: var(--soft-pink);
    border-radius: 100px;
    padding: 2px 25px;
    color: var(--dark-teal);
}

.about-hero-sub {
    font-size: 17px;
    opacity: 0.9;
    max-width: 520px;
    margin-bottom: 30px;
    line-height: 1.4;
}

.star-wrapper {
    margin-top: 20px;
}

.about-star {
    width: 65px;
    height: auto;
}

/* Gallery Layout */
.about-hero-gallery {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.gallery-item {
    border-radius: 25px;
    overflow: hidden;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.top-main {
    height: 240px;
    width: 70%;
    margin-left: auto;
}

.gallery-bottom-row {
    display: grid;
    grid-template-columns: 1.7fr 1fr;
    gap: 15px;
}

.bot-left {
    height: 200px;
}

.bot-right {
    height: 200px;
}

/* History Section About */
.about-history {
    padding: 100px 0;
    background-color: var(--light-grey);
}

.history-grid-about {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}

.history-main-img img {
    width: 100%;
    height: auto;
    display: block;
}

.history-text h2 {
    font-size: 40px;
    margin-bottom: 30px;
    color: var(--dark-teal);
}

.history-text p {
    font-size: 17px;
    margin-bottom: 20px;
    color: var(--dark-teal);
    line-height: 1.5;
    opacity: 0.8;
}

/* What We Do About */
.about-what {
    background-color: var(--dark-teal);
    padding: 100px 0;
    color: var(--white);
}

.about-what-title {
    font-size: 56px;
    color: var(--lime);
    margin-bottom: 10px;
    font-weight: 700;
}

.about-what-subtitle {
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 25px;
    color: var(--white);
}

.about-what-text {
    max-width: 700px;
    font-size: 16px;
    line-height: 1.5;
    opacity: 0.8;
}

.about-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 60px;
}

.about-service-card {
    background-color: var(--lime);
    border-radius: 12px;
    padding: 45px 25px;
    text-align: center;
    color: var(--dark-teal);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.about-service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.service-icon-circle {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 25px;
    flex-shrink: 0;
}

.service-icon-circle img {
    width: 32px;
    height: 32px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.about-service-card h3 {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.2;
    margin: 0;
}

/* Pillars Section */
.about-pillars {
    background-color: var(--bg-dark);
    padding: 120px 0;
    color: var(--white);
}

.pillars-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
}

.pillar-item {
    padding: 0 40px;
}

.pillar-item:not(:last-child) {
    border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.pillar-icon {
    margin-bottom: 40px;
}

.pillar-icon img {
    height: 70px;
    width: auto;
    object-fit: contain;
}

.pillar-item h3 {
    font-size: 24px;
    margin-bottom: 25px;
    color: var(--lime);
    font-weight: 600;
}

.pillar-item p {
    font-size: 15px;
    opacity: 0.8;
    line-height: 1.6;
    margin: 0;
}

/* Brands Section About */
.about-brands {
    background-color: var(--lime);
    padding: 100px 0;
}

.brands-grid-about {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 40px;
    align-items: center;
    justify-items: center;
}

.brands-grid-about img {
    max-width: 140px;
    filter: grayscale(1);
    opacity: 0.6;
    transition: opacity 0.3s;
}

.brands-grid-about img:hover {
    opacity: 1;
}

/* CTA About */
.about-cta {
    background-color: var(--bg-dark);
    padding: 100px 0;
}

.cta-white-box {
    background-color: var(--light-grey);
    border-radius: 30px;
    padding: 80px 40px;
    text-align: center;
}

.cta-white-box h2 {
    font-size: 48px;
    color: var(--dark-teal);
}


/* --- Services Page Styles --- */

.services-hero {
    background-color: var(--dark-teal);
    padding: 180px 0 100px;
    color: var(--white);
}

.services-title {
    font-size: 56px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 25px;
}

.services-subtitle {
    font-size: 18px;
    opacity: 0.8;
    max-width: 650px;
    line-height: 1.5;
}

/* Running Ribbon */
.running-ribbon {
    background-color: var(--lime);
    padding: 15px 0;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.ribbon-content {
    display: inline-block;
    animation: ribbon-scroll 30s linear infinite;
}

.ribbon-content span {
    font-size: 18px;
    font-weight: 800;
    color: var(--dark-teal);
    padding-right: 50px;
}

@keyframes ribbon-scroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

/* Service Detail Sections */
.service-detail-section {
    padding: 140px 0;
}

.service-row {
    display: flex;
    gap: 70px;
}

.service-col-img,
.service-col-text {
    flex: 1;
}

.tag-pink {
    background-color: var(--soft-pink);
    color: var(--dark-teal);
}

.tag-dark {
    background-color: var(--dark-teal);
    color: var(--white);
}

.tag-lime {
    background-color: var(--lime);
    color: var(--dark-teal);
}

.service-name {
    font-size: 56px;
    font-weight: 700;
    line-height: 1.05;
    margin-bottom: 35px;
    color: var(--dark-teal);
}

.service-col-text p {
    font-size: 19px;
    line-height: 1.5;
    margin-bottom: 45px;
    opacity: 0.8;
    max-width: 480px;
}

/* Tags */
.service-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 15px 12px;
    margin-top: 30px;
}

.tag {
    padding: 15px 30px;
    border-radius: 100px;
    font-size: 15px;
    font-weight: 700;
}

.tag-pink {
    background-color: var(--soft-pink);
    color: var(--dark-teal);
}

.tag-dark {
    background-color: var(--dark-teal);
    color: var(--white);
}

.tag-lime {
    background-color: var(--lime);
    color: var(--dark-teal);
}

/* Layouts */
.main-service-img {
    width: 100%;
    display: block;
}

/* Eventos Layout */
.img-layout-eventos {
    position: relative;
}

.decor-star-lime {
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100px;
    height: 100px;
    background: url('assets/img/vector-estrellita.png') no-repeat center;
    background-size: contain;
    z-index: -1;
    filter: brightness(1.2);
}

/* Gaming Layout */
.img-layout-gaming {
    perspective: 1000px;
}

.img-layout-gaming img {
    transform: rotateY(-10deg) rotateX(5deg);
}

/* Activaciones Layout */
.img-layout-activaciones {
    position: relative;
}

.decor-star-lime-large {
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 150px;
    height: 150px;
    background: url('assets/img/vector-estrellita.png') no-repeat center;
    background-size: contain;
    opacity: 0.5;
}

/* Grid Layout OOH */
.img-layout-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.img-layout-grid .grid-item {
    border-radius: 20px;
    overflow: hidden;
    height: 150px;
}

.img-layout-grid .grid-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Phones Layout */
.img-layout-phones {
    display: flex;
    justify-content: center;
    gap: 15px;
    align-items: flex-end;
}

.phone-frame {
    width: 30%;
    aspect-ratio: 9/16;
    background: #000;
    border-radius: 20px;
    overflow: hidden;
    border: 4px solid #333;
}

.phone-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.phone-frame:nth-child(2) {
    height: 280px;
}

.phone-frame:not(:nth-child(2)) {
    height: 240px;
}

/* CTA Servicios */
.services-cta-section {
    background-color: var(--dark-teal);
    padding: 100px 0;
}

.cta-white-box-servicios {
    background-color: var(--white);
    border-radius: 40px;
    padding: 100px 40px;
    text-align: center;
}

.cta-white-box-servicios h2 {
    font-size: 56px;
    color: var(--dark-teal);
    font-weight: 700;
}

.btn-lime-pill {
    background-color: var(--lime);
    color: var(--black);
    padding: 15px 40px;
    border-radius: 100px;
    font-weight: 700;
    text-decoration: none;
    display: inline-block;
    transition: transform 0.3s ease;
}

.btn-lime-pill:hover {
    transform: scale(1.05);
}

/* --- Portfolio Page Styles --- */
.portfolio-page {
    background-color: var(--dark-teal);
    color: var(--white);
    padding-top: 150px;
}

.portfolio-hero {
    padding: 80px 0;
}

.portfolio-hero-title {
    font-size: 72px;
    font-weight: 700;
    margin-bottom: 30px;
}

.portfolio-hero-title .pill-title {
    background-color: var(--lime);
    color: var(--dark-teal);
    padding: 5px 40px;
    border-radius: 100px;
    display: inline-block;
}

.portfolio-hero-subtitle {
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto 50px;
    opacity: 0.9;
}

.portfolio-filters {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.filter-btn {
    background: transparent;
    color: var(--lime);
    border: 1px solid var(--lime);
    padding: 10px 30px;
    border-radius: 100px;
    font-weight: 700;
    font-size: 14px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.filter-btn:hover,
.filter-btn.active {
    background-color: var(--lime);
    color: var(--dark-teal);
    transform: translateY(-2px);
}

/* Bento Grid */
.portfolio-grid-section {
    padding: 100px 0;
    background-color: var(--bg-darker);
}

.portfolio-bento-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.bento-item {
    width: 100%;
}

.bento-inner {
    padding: 1rem;
    border-radius: 24px;
    overflow: hidden;
}

/* Project Specific Layouts */
.brand-logo-box {
    /* padding: 15px 25px; */
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.brand-logo {
    max-height: 80px;
    max-width: 150px;
    width: auto !important;
    height: auto !important;
    object-fit: contain !important;
}

.btn-ver-mas {
    padding: 12px 25px;
    border-radius: 10px;
    color: var(--white);
    font-weight: 700;
    font-size: 14px;
    text-align: center;
    display: block;
    transition: transform 0.3s;
}

.btn-ver-mas:hover {
    transform: scale(1.05);
}

/* Vanguard Colors */
.bg-vanguard {
    background-color: #E11E3B;
}

.bg-vanguard-soft {
    background-color: #ECCCE6;
    /* Soft Lavender/Pink */
    color: var(--black);
    font-weight: 700;
    border-radius: 20px;
    padding: 15px 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.project-vanguard .btn-ver-mas {
    border-radius: 20px;
    padding: 18px 25px;
}

/* Microsoft Colors */
.bg-microsoft {
    background-color: #00A4EF;
}

.bg-microsoft-soft {
    background-color: #BBEFFD;
    /* Very Light Cyan */
}

.project-microsoft .btn-ver-mas {
    border-radius: 20px;
    padding: 18px 25px;
}

/* Walmart Colors */
.bg-walmart-soft {
    background-color: var(--lavender);
    color: var(--white);
    font-weight: 700;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Monster Colors */
.bg-monster {
    background-color: #0E434B;
}

/* XBox Colors */
.bg-xbox {
    background-color: #107C10;
}

.bg-xbox-soft {
    background-color: #D6EBD2;
    /* Light Xbox Green */
}

/* Mastercard Colors */
.bg-mastercard {
    background-color: #EB001B;
}

/* Cluster Layouts */
.vanguard-grid {
    display: flex;
    gap: 15px;
}

.vanguard-left {
    flex: 2;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.vanguard-top-row {
    display: flex;
    gap: 15px;
}

.vanguard-top-row .brand-logo-box,
.vanguard-top-row .brand-name-box {
    flex: 1;
}

.vanguard-main-img {
    flex: 1;
    border-radius: 20px;
    overflow: hidden;
}

.vanguard-main-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.vanguard-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.vanguard-side-img {
    flex: 1;
    border-radius: 20px;
    overflow: hidden;
}

.vanguard-side-img img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

/* Microsoft Cluster */
.microsoft-grid {
    display: flex;
    gap: 15px;
}

.microsoft-left {
    flex: 2;
    border-radius: 20px;
    overflow: hidden;
}

.microsoft-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.microsoft-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.microsoft-event-img {
    flex: 1;
    border-radius: 20px;
    overflow: hidden;
}

.microsoft-event-img img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

/* Walmart Cluster */
.walmart-grid {
    display: flex;
    gap: 15px;
}

.walmart-left {
    flex: 2;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.walmart-top-img {
    border-radius: 20px;
    overflow: hidden;
}

.walmart-bottom-row {
    display: flex;
    height: 40%;
    gap: 15px;
}

.walmart-group-img {
    flex: 1;
    border-radius: 20px;
    overflow: hidden;
}

.bg-walmart-soft {
    background-color: #B2B1F2 !important;
    /* Soft Lavender */
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 15px;
}

.walmart-text {
    font-size: 10px;
    font-weight: 700;
    color: var(--dark-teal);
    text-align: center;
}

.walmart-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.bg-walmart-btn {
    background-color: #807BF3 !important;
    border-radius: 20px;
    padding: 18px 25px !important;
}

.walmart-star-img {
    flex: 1;
    border-radius: 20px;
    overflow: hidden;
}

.walmart-grid img:not(.brand-logo) {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Monster Cluster */
.monster-grid {
    display: flex;
    gap: 15px;
}

.monster-main {
    flex: 1.5;
    border-radius: 20px;
    overflow: hidden;
}

.monster-side-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.monster-ramp-img {
    border-radius: 20px;
    overflow: hidden;
}

.bg-monster-btn {
    background-color: #2D6C74 !important;
    border-radius: 20px;
    padding: 18px 25px !important;
}

.monster-last-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.monster-last-col .brand-logo-box {
    /* height: 140px; */
    padding: 8px;
    flex: none;
    margin-bottom: 5px;
}

.monster-interview-img {
    flex: 1;
    border-radius: 20px;
    overflow: hidden;
}

.monster-grid img:not(.brand-logo) {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* XBox Cluster */
.xbox-grid {
    display: flex;
    gap: 15px;
}

.xbox-col-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.xbox-gamers-img {
    border-radius: 20px;
    overflow: hidden;
    height: 100%;
}

.xbox-col-middle {
    flex: 1;
    border-radius: 20px;
    overflow: hidden;
}

.xbox-col-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.xbox-booth-img {
    flex: 1;
    border-radius: 20px;
    overflow: hidden;
}

.project-xbox .btn-ver-mas {
    border-radius: 20px;
    padding: 18px 25px !important;
}

.xbox-grid img:not(.brand-logo) {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Mastercard Cluster */
.mastercard-grid {
    display: flex;
    gap: 15px;
}

.mc-left-col {
    flex: 3;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.mc-wide-img {
    border-radius: 20px;
    overflow: hidden;
}

.mc-sunset-img {
    border-radius: 20px;
    overflow: hidden;
}

.mc-right-col {
    flex: 2;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.mc-stage-img {
    border-radius: 20px;
    overflow: hidden;
}

.project-mastercard .btn-ver-mas {
    background-color: #FF9E1B !important;
    border-radius: 20px;
    padding: 18px 25px !important;
}

.mc-red-bar {
    width: 60px;
    background-color: #EB001B;
    border-radius: 20px;
}

.mastercard-grid img:not(.brand-logo) {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Globant Cluster */
.globant-grid {
    display: flex;
    gap: 15px;
}

.globant-col-left {
    flex: 1;
    border-radius: 20px;
    overflow: hidden;
}

.globant-col-right {
    flex: 2;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.globant-top-img {
    border-radius: 20px;
    overflow: hidden;
}

.globant-bottom-row {
    display: flex;
    gap: 15px;
}

.globant-bottom-row .brand-logo-box {
    flex: 1;
}

.bg-globant-btn {
    background-color: #BFD730 !important;
    border-radius: 20px;
    padding: 18px 25px !important;
    color: var(--dark-teal) !important;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.globant-grid img:not(.brand-logo) {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Spotify Cluster */
.spotify-grid {
    display: flex;
    gap: 15px;
}

.spotify-col-left {
    flex: 2;
    border-radius: 20px;
    overflow: hidden;
}

.spotify-col-middle {
    flex: 0.5;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.spotify-col-middle .brand-logo-box {
    height: 80px;
    padding: 10px;
}

.spotify-color-pillar {
    flex: 1;
    background-color: #1DB954;
    border-radius: 20px;
}

.spotify-col-right {
    flex: 1.5;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.spotify-box-img {
    flex: 1;
    border-radius: 20px;
    overflow: hidden;
}

.bg-spotify-btn {
    background-color: #A7F3D0 !important;
    color: var(--dark-teal) !important;
    border-radius: 20px;
    padding: 18px 25px !important;
    text-align: center;
    font-weight: 700;
}

.spotify-grid img:not(.brand-logo) {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Ignite Cluster */
.ignite-grid {
    display: flex;
    gap: 15px;
}

.ignite-left {
    flex: 0.8;
    border-radius: 20px;
    overflow: hidden;
}

.ignite-right {
    flex: 2;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.ignite-top-img {
    flex: 1;
    border-radius: 20px;
    overflow: hidden;
}

.ignite-bottom-row {
    display: flex;
    gap: 15px;
}

.ignite-bottom-row .brand-logo-box {
    flex: 1.5;
    padding: 15px;
}

.ignite-text {
    color: #AB3E6E;
    /* Pinkish color from Ignite */
    font-weight: 700;
    font-size: 1.2rem;
}

.project-ignite .btn-ver-mas {
    flex: 1;
    background-color: #00B6CC !important;
    border-radius: 20px;
    padding: 18px 25px !important;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ignite-grid img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* AI Tour Cluster */
.altour-grid {
    display: flex;
    gap: 15px;
}

.altour-left {
    flex: 2;
    border-radius: 20px;
    overflow: hidden;
}

.altour-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.altour-side-img {
    flex: 1.2;
    border-radius: 20px;
    overflow: hidden;
}

.altour-text {
    color: #0E434B;
    font-weight: 700;
    font-size: 1rem;
}

.project-altour .brand-logo-box {
    padding: 15px;
}

.project-altour .btn-ver-mas {
    background-color: #807BF3 !important;
    border-radius: 20px;
    padding: 18px 25px !important;
    display: flex;
    align-items: center;
    justify-content: center;
}

.altour-grid img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Portfolio CTA */
.portfolio-cta {
    background-color: var(--bg-dark);
}

.cta-footer-portafolio {
    background: var(--bg-dark) !important;
}

.portfolio-cta .pre-footer-card {
    background-color: var(--white);
    padding: 100px 40px;
    border-radius: 40px;
}

.btn-lime-rounded {
    background-color: var(--lime);
    color: var(--dark-teal);
    font-weight: 700;
    border-radius: 100px;
    transition: all 0.3s;
}

.btn-lime-rounded:hover {
    background-color: var(--dark-teal);
    color: var(--white);
    transform: scale(1.05);
}

/* Responsive Design Starts Here */
@media (max-width: 992px) {

    /* Header */
    .menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 68px;
        left: 0;
        /* width: 100vw; */
        height: 43vh;
        background-color: var(--dark-teal);
        display: none;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        z-index: 2000;
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    .nav-menu.active {
        display: flex;
        opacity: 1;
    }

    body.menu-open {
        overflow: hidden;
    }

    .nav-menu ul {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }

    .nav-menu ul li a {
        font-size: 24px;
        font-weight: 700;
    }

    .btn-header-contact {
        display: none;
    }

    /* Index Hero */
    .hero {
        padding: 140px 0 80px;
    }

    .hero-title {
        font-size: 60px;
        margin-bottom: 40px;
    }

    .video-wrapper {
        margin-bottom: -100px;
    }

    /* About Us Page */
    .about-hero {
        padding: 140px 0 60px;
    }

    .about-hero-grid {
        display: flex !important;
        flex-direction: column !important;
        gap: 30px !important;
        text-align: center !important;
    }

    .about-title {
        font-size: 28px !important;
        line-height: 1.3 !important;
        text-align: center !important;
    }

    .about-hero-sub {
        margin-left: auto;
        margin-right: auto;
    }

    .top-main {
        width: 100% !important;
        height: 200px !important;
        margin: 0 !important;
    }

    .gallery-bottom-row {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        gap: 15px !important;
        width: 100% !important;
    }

    .bot-left,
    .bot-right {
        height: 180px;
    }

    .history-grid-about {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .about-what-title {
        font-size: 42px;
    }

    .about-services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pillars-grid {
        grid-template-columns: 1fr;
    }

    .pillar-item {
        padding: 40px 20px;
        text-align: center;
        border-right: none !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .pillar-item:last-child {
        border-bottom: none;
    }

    .brands-grid-about {
        grid-template-columns: repeat(2, 1fr);
    }

    .service-row {
        flex-direction: column !important;
        gap: 40px;
    }

    /* Services Page */
    .services-hero {
        padding: 140px 0 80px !important;
    }

    .services-title {
        font-size: 32px !important;
        line-height: 1.2;
    }

    .services-subtitle {
        font-size: 16px;
    }

    .service-detail-section {
        padding: 80px 0 !important;
    }

    .service-row {
        flex-direction: column !important;
        gap: 40px !important;
        text-align: center !important;
    }

    .service-row.flex-row-reverse {
        flex-direction: column !important;
    }

    .service-name {
        font-size: 30px !important;
        margin-bottom: 20px !important;
    }

    .service-col-text p {
        margin: 0 auto 30px !important;
        max-width: 100% !important;
    }

    .service-tags {
        justify-content: center !important;
    }

    .tag {
        padding: 10px 20px !important;
        font-size: 13px !important;
    }

    /* Layout specific adjustments */
    .img-layout-gaming img {
        transform: none !important;
    }

    .img-layout-grid {
        gap: 10px !important;
    }

    .img-layout-grid .grid-item {
        height: 120px !important;
    }

    .img-layout-phones {
        justify-content: center !important;
        gap: 10px !important;
    }

    .phone-frame {
        width: 45% !important;
    }

    .phone-frame:nth-child(3) {
        display: none !important;
    }

    .decor-star-lime,
    .decor-star-lime-large {
        display: none !important;
    }

    .services-title {
        font-size: 40px;
    }

    .service-name {
        font-size: 32px;
    }

    .cta-white-box-servicios h2 {
        font-size: 40px;
    }

    .portfolio-bento-grid {
        grid-template-columns: 1fr;
    }

    .portfolio-hero-title {
        font-size: 48px;
    }

    /* Portfolio Bento Mobile Fix */
    .portfolio-bento-grid {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
    }

    .bento-inner {
        padding: 8px !important;
    }

    /* Reducir todos los gaps internos de los clusters */
    .vanguard-grid,
    .microsoft-grid,
    .walmart-grid,
    .monster-grid,
    .xbox-grid,
    .mastercard-grid,
    .globant-grid,
    .spotify-grid,
    .ignite-grid,
    .altour-grid {
        gap: 10px !important;
    }

    .vanguard-left,
    .vanguard-right,
    .microsoft-left,
    .microsoft-right,
    .walmart-left,
    .walmart-right,
    .monster-main,
    .monster-side-col,
    .monster-last-col,
    .xbox-col-left,
    .xbox-col-middle,
    .xbox-col-right,
    .mc-left-col,
    .mc-right-col,
    .globant-col-left,
    .globant-col-right,
    .spotify-col-left,
    .spotify-col-middle,
    .spotify-col-right,
    .ignite-left,
    .ignite-right,
    .altour-left,
    .altour-right {
        gap: 10px !important;
    }

    .vanguard-top-row,
    .walmart-bottom-row,
    .globant-bottom-row {
        gap: 10px !important;
    }

    .btn-ver-mas {
        padding: 10px 5px !important;
        font-size: 12px !important;
        border-radius: 12px !important;
    }

    .bg-vanguard-soft {
        padding: 10px !important;
        font-size: 12px !important;
        border-radius: 12px !important;
    }

    /* Forzar que las cajas de logo y extras no se deformen */
    .brand-logo-box {
        padding: 10px !important;
    }

    .brand-logo {
        max-width: 80% !important;
    }
}

@media (max-width: 576px) {
    .services-title {
        font-size: 28px !important;
    }

    .service-name {
        font-size: 26px !important;
    }

    .about-title {
        font-size: 24px !important;
    }
}