/* FIX: Reseteo de box-sizing para evitar desbordamientos y colapsos de layout */
* {
    box-sizing: border-box;
}

/* FIX: Asegura que el elemento raíz HTML ocupe el 100% de la altura para estabilidad del viewport */
html {
    height: 100%;
}

.main-header {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    height: 90px;
    z-index: 1000;
    background: #151F3A !important;
    display: flex;
    align-items: center;
}

.header-container {
    width: 90%;
    max-width: 1800px;
    margin: 0 auto;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    position: relative;
    z-index: 1001;
    /* Above mobile navigation */
}

.header-logo {
    display: block;
    max-height: 45px;
    width: auto;
    min-width: 150px;
    filter: brightness(0) invert(1) !important;
    -webkit-filter: brightness(0) invert(1) !important;
    transition: opacity 0.3s ease;
}

.header-navigation {
    display: flex;
    align-items: center;
    gap: 40px;
    height: 100%;
}

.main-nav {
    height: 100%;
}

.main-nav ul {
    list-style: none;
    display: flex;
    gap: 40px;
    margin: 0;
    padding: 0;
    height: 100%;
}

.main-nav ul li {
    height: 100%;
    display: flex;
    align-items: center;
}

.main-nav ul li a {
    color: white;
    text-decoration: none;
    font-family: 'Play', sans-serif;
    font-weight: 500;
    font-size: 18px;
    transition: opacity 0.3s;
    height: 100%;
    display: flex;
    align-items: center;
}

.main-nav ul li a:hover {
    color: #169976;
    /* Changed from opacity to color accent for clarity */
}

/* Dropdown Menu Styles */
.has-dropdown {
    position: relative;
    height: 100%;
}

.arrow-down {
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 8px;
    vertical-align: middle;
    border-top: 4px solid #fff;
    border-right: 4px solid transparent;
    border-left: 4px solid transparent;
}

.has-dropdown:hover .arrow-down {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 90px;
    left: 0;
    background: #151F3A !important;
    border: none;
    min-width: 260px;
    padding: 0 !important;
    margin: 0 !important;
    list-style: none;
    border-radius: 0 0 4px 4px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    display: none !important;
    z-index: 2000;
}

.has-dropdown:hover .dropdown-menu {
    display: block !important;
}

.dropdown-menu li {
    margin: 0 !important;
    display: block !important;
    border-bottom: none !important;
    /* Removed separators as requested */
}

.dropdown-menu li:last-child {
    border-bottom: none;
}

.dropdown-menu li a {
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    /* Aligned to the left */
    padding: 25px 30px !important;
    color: #fff !important;
    font-size: 16px !important;
    /* Adjusted to 16px */
    font-weight: 400 !important;
    /* Set to 400 */
    font-family: 'Manrope', sans-serif !important;
    text-decoration: none !important;
    background: #151F3A !important;
    opacity: 1 !important;
    width: 100%;
    transition: all 0.3s ease !important;
}

.dropdown-menu li a:hover {
    background: #1C2A4F !important;
    color: #169976 !important;
}

.btn-client-area {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    padding: 10px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-family: 'Play', sans-serif;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
}

.btn-client-area:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-2px);
}

.header-right {
    display: flex;
    align-items: center;
    gap: 30px;
}

/* Menu Toggle */
.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: 3000;
}

.menu-toggle .bar {
    width: 100%;
    height: 2px;
    background-color: white;
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Menu Mobile Styles */
@media (max-width: 1024px) {
    .menu-toggle {
        display: flex;
    }

    .header-navigation {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 400px;
        height: 100vh;
        background: #151F3A;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        padding: 120px 40px 40px 40px;
        gap: 40px;
        transition: right 0.4s ease;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
        z-index: 2000;
        overflow-y: auto;
    }

    .header-navigation.active {
        right: 0;
    }

    .main-nav {
        width: 100%;
        height: auto !important;
        display: block !important;
    }

    .main-nav ul {
        display: flex !important;
        flex-direction: column;
        gap: 0;
        width: 100%;
        height: auto !important;
    }

    .main-nav ul li {
        width: 100%;
        height: auto !important;
        display: block !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .main-nav ul li a {
        padding: 18px 0;
        font-size: 18px;
        width: 100%;
        height: auto !important;
        display: flex !important;
        align-items: center;
        color: #ffffff !important;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    .main-nav ul li.has-dropdown .dropdown-menu {
        position: static;
        display: block !important;
        background: rgba(255, 255, 255, 0.05) !important;
        box-shadow: none;
        padding: 0 !important;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .main-nav ul li.has-dropdown.mobile-open .dropdown-menu {
        max-height: 500px;
        padding: 0 !important;
    }

    .main-nav ul li.has-dropdown .arrow-down {
        margin-left: auto;
        transition: transform 0.3s ease;
    }

    .main-nav ul li.has-dropdown.mobile-open .arrow-down {
        transform: rotate(180deg);
    }

    .header-right {
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
        gap: 30px;
    }

    .lang-selector {
        width: 100%;
    }

    .btn-client-area {
        width: 100%;
        text-align: center;
    }

    /* Toggle Animation */
    .menu-toggle.active .bar:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }

    .menu-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.active .bar:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }
}

/* Language Selector Dropdown */
.lang-selector.dropdown {
    position: relative;
    cursor: pointer;
    font-family: 'Play', sans-serif;
    font-size: 14px;
    font-weight: 500;
}

.lang-current {
    display: flex;
    align-items: center;
    gap: 8px;
    color: white;
    padding: 8px 0;
    transition: color 0.3s ease;
}

.lang-current .arrow-down {
    border-top-color: rgba(255, 255, 255, 0.5);
    transition: transform 0.3s ease;
}

.lang-selector.dropdown:hover .lang-current .arrow-down {
    transform: rotate(180deg);
}

.lang-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background: rgba(21, 31, 58, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    min-width: 120px;
    list-style: none;
    padding: 10px 0;
    margin: 0;
    border-radius: 4px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    display: none;
    z-index: 2005;
}

.lang-selector.dropdown:hover .lang-dropdown {
    display: block;
}

.lang-dropdown li {
    padding: 0;
}

.lang-dropdown .lang-link {
    padding: 10px 20px;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.lang-dropdown .lang-link:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

.flag-icon {
    border-radius: 2px;
    width: 20px;
    height: auto;
}

/* Mobile Language Selector (Full list) */
@media (max-width: 1024px) {
    .lang-selector.dropdown {
        width: 100%;
        display: flex;
        flex-direction: row;
        gap: 20px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        padding-top: 20px;
    }

    .lang-current {
        padding: 0;
    }

    .lang-current .arrow-down {
        display: none;
    }

    .lang-dropdown {
        position: static;
        display: flex !important;
        background: transparent;
        backdrop-filter: none;
        box-shadow: none;
        border: none;
        padding: 0;
        min-width: auto;
    }

    .lang-dropdown .lang-link {
        padding: 0;
    }
}

body {
    color: white;
    margin: 0;
    font-family: 'Manrope', sans-serif;
    min-height: 100vh;
    text-align: left;
    overflow-x: hidden;
    background-color: #000;
}

.slide-media {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    z-index: -2;
    object-fit: cover;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(21, 31, 58, 1) 3%, rgba(21, 31, 58, 0.5) 40%, transparent 100%);
    z-index: -1;
}

.hero-overlay-dark {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(21, 31, 58, 0.4) 10%, transparent);
    z-index: -1;
}

/* Info Section Styles */
.info-section {
    background-color: #ffffff;
    color: #151F3A;
    padding: 150px 0;
    position: relative;
    z-index: 5;
}

.info-container {
    width: 90%;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 80px;
}

.grid-column {
    flex: 1;
}

.mask-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0px;
    max-width: 600px;
}

.mask-item {
    aspect-ratio: 1/1;
    background-size: cover;
    background-position: center;
}

/* Colors & Specific Shapes */
.box-beige {
    background-color: #D6C2AC;
    border-radius: 0px 0px 60px 0px;
}

.box-img-angel {
    background-image: url(' img/cdmx.jpg');
    border-radius: 0px 60px 0 60px;
}

.box-blue-light {
    background-color: #BDE7F9;
    border-radius: 100px 100px 100px 0;
}

.box-blue-dark {
    background-color: #151F3A;
    border-radius: 0px 60px 0px 60px;
}

.box-blue-circle {
    background-color: #BDE7F9;
    border-radius: 50%;
}

.box-img-office {
    background-image: url('https://images.pexels.com/photos/3183153/pexels-photo-3183153.jpeg');
    border-radius: 0px 60px 0px 60px;
}

.box-img-shake {
    background-image: url('https://images.pexels.com/photos/3184418/pexels-photo-3184418.jpeg');
    border-radius: 60px 0px 60px 60px;
}

.box-blue-dark-alt {
    background-color: #151F3A;
    border-radius: 0px 60px 0px 60px;
}

.box-beige-alt {
    background-color: #D6C2AC;
    border-radius: 60px 0px 60px 0px;
}

.content-column {
    flex: 1.2;
}

.section-title {
    font-family: 'Play', sans-serif;
    font-size: 42px;
    font-weight: 400;
    margin-bottom: 25px;
    color: #151F3A;
}

.section-intro {
    font-size: 16px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 40px;
    max-width: 600px;
}

.feature-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    padding-top: 30px;
    border-top: 1px solid #eee;
}

.feature-icon {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
}

.feature-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.feature-text h3 {
    font-family: 'Play', sans-serif;
    font-size: 20px;
    margin: 0 0 10px 0;
}

.feature-text p {
    font-size: 15px;
    line-height: 1.6;
    color: #777;
    margin: 0;
}

/* Blog Section Styles */
.blog-section {
    background-color: #fff;
    padding: 80px 0;
    position: relative;
    z-index: 5;
}

.blog-container {
    width: 90%;
    max-width: 1400px;
    margin: 0 auto;
}

.blog-main-title {
    font-family: 'Play', sans-serif;
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 50px;
    color: #333;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.blog-card {
    border: 1px solid #eee;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: box-shadow 0.3s ease;
}

.blog-card:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.blog-image {
    width: 100%;
    aspect-ratio: 16/10;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-body {
    padding: 30px;
    flex-grow: 1;
    border-left: 2px solid #D5BFA3;
    /* Cyan accent border */
    margin-left: 0px;
    /* Align with card border */
}

.blog-body h3 {
    font-family: 'Play', sans-serif;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.4;
    margin: 0 0 20px 0;
    color: #333;
}

.blog-body p {
    font-size: 15px;
    line-height: 1.6;
    color: #666;
    margin: 0;
}

.blog-footer {
    padding: 0 30px 30px 30px;
}

.blue-link {
    color: #652324;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.blue-arrow {
    font-size: 24px;
    line-height: 1;
}

@media (max-width: 1024px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }

    .blog-main-title {
        font-size: 28px;
        text-align: center;
    }
}

/* Dark Info Section Styles */
.dark-info-section {
    background-color: #151F3A;
    padding: 100px 0;
    color: #fff;
    position: relative;
    z-index: 5;
}

.dark-info-container {
    width: 90%;
    max-width: 1400px;
    margin: 0 auto;
}

.label-wrapper {
    margin-bottom: 30px;
}

.top-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #fff;
    border-bottom: 2px solid #D5BFA3;
    /* Orange underline */
    padding-bottom: 5px;
    display: inline-block;
}

.main-dark-title {
    font-family: 'Play', sans-serif;
    font-size: 48px;
    font-weight: 700;
    margin: 0 0 60px 0;
}

.split-content {
    display: flex;
    align-items: flex-start;
    gap: 80px;
}

.column {
    flex: 1;
}

.column h3 {
    font-family: 'Play', sans-serif;
    font-size: 24px;
    font-weight: 700;
    margin: 0 0 20px 0;
}

.column p {
    font-size: 15px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 30px;
}

.vertical-divider {
    width: 1px;
    height: 150px;
    background-color: rgba(255, 255, 255, 0.3);
    align-self: center;
}

.arrow-link {
    color: #fff;
    text-decoration: none;
    font-family: 'Manrope', sans-serif;
    font-weight: 700;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: opacity 0.3s ease;
}

.arrow-link:hover {
    opacity: 0.8;
}

.orange-arrow {
    color: #D5BFA3;
    font-size: 24px;
    line-height: 1;
}

@media (max-width: 820px) {
    .main-dark-title {
        font-size: 32px;
    }

    .split-content {
        flex-direction: column;
        gap: 50px;
    }

    .vertical-divider {
        display: none;
    }
}

/* Cards Section Styles */
.cards-section {
    background-color: #f4f4f4;
    padding: 150px 0;
    position: relative;
    z-index: 5;
}

.cards-container {
    width: 90%;
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.card {
    background-color: #ffffff;
    padding: 50px 50px 30px 50px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 400px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
}

.card-title {
    font-family: 'Play', sans-serif;
    font-size: 32px;
    font-weight: 700;
    margin: 0 0 25px 0;
    color: #000;
}

.card-subtitle {
    font-family: 'Manrope', sans-serif;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #000;
}

.card-desc {
    font-family: 'Manrope', sans-serif;
    font-size: 15px;
    line-height: 1.6;
    color: #444;
    margin-bottom: 40px;
}

.card-btn {
    align-self: flex-start;
    background-color: #151F3A;
    color: #fff;
    padding: 12px 25px;
    text-decoration: none;
    font-family: 'Manrope', sans-serif;
    font-weight: 700;
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: background-color 0.3s ease;
}

.card-btn .arrow {
    color: #ff3b30;
    /* Characteristic orange/red arrow as seen in reference */
    font-size: 20px;
    line-height: 1;
}

.card-btn:hover {
    background-color: #222;
}

@media (max-width: 820px) {
    .cards-container {
        grid-template-columns: 1fr;
    }

    .card {
        padding: 40px 30px;
        min-height: auto;
    }
}

@media (max-width: 1024px) {
    .info-container {
        flex-direction: column;
        gap: 50px;
        text-align: center;
    }

    .section-intro {
        margin: 0 auto 40px auto;
    }

    .feature-item {
        text-align: left;
    }

    .mask-grid {
        margin: 0 auto;
    }
}

.hero-slider {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1.5s ease-in-out;
    display: flex;
    flex-direction: column;
    z-index: 1;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

.slider-dots {
    position: absolute;
    bottom: 50px;
    left: 90px;
    /* Aligned with the layout margin approx */
    display: flex;
    gap: 15px;
    z-index: 10;
}

.slider-dot {
    width: 40px;
    height: 3px;
    background: rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dot.active {
    background: #fff;
}

.hero-layout {
    width: 90%;
    max-width: 1800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    position: relative;
}

.hero-content {
    height: 100%;
}

.hero-main {
    flex: 1;
    /* Take up all available space */
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* Center title vertically */
    text-align: left;
    /* Aligned to the left as requested */
}

.hero-title {
    font-family: 'Play', sans-serif;
    font-weight: 300;
    font-size: 4vw;
    line-height: 1.1;
    margin: 0;
    color: #151F3A;
    /* Updated global color */
}

/* Home Slider Title Override */
.hero-slide .hero-title {
    color: #ffffff;
}

.bold-text {
    font-weight: 700;
}

.btn-primary {
    display: inline-block;
    background-color: white;
    color: black;
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-family: 'Play', sans-serif;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    background-color: rgba(255, 255, 255, 0.9);
}

.hero-details {
    display: flex;
    gap: 5%;
    margin-top: auto;
    margin-bottom: 80px;
    justify-content: flex-end;
    /* Align details to the right */
}

.detail-column {
    flex: 1;
    max-width: 450px;
    text-align: right;
    /* Text alignment within columns to the right */
}

.detail-column p {
    font-family: 'Manrope', sans-serif;
    font-weight: 300;
    font-size: 15px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.feature-tags {
    display: flex;
    gap: 15px;
    padding-bottom: 40px;
    justify-content: center;
    /* Centered as requested */
}

.tag {
    font-family: 'Manrope', sans-serif;
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 500;
    color: white;
    background: rgba(255, 255, 255, 0.05);
    letter-spacing: 0.5px;
}

.main-footer {
    background-color: #0b111d;
    /* Fondo muy oscuro como la imagen */
    padding: 80px 0 40px 0;
    color: #fff;
    position: relative;
    z-index: 10;
}

.footer-container {
    width: 90%;
    max-width: 1400px;
    margin: 0 auto;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 80px;
}

.footer-brand {
    flex: 1;
}

.footer-logo {
    height: 40px;
    /* Ajustar según logo real */
    margin-bottom: 25px;
    filter: brightness(0) invert(1) !important;
}

.footer-slogan {
    font-size: 15px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.footer-nav {
    flex: 2;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.footer-col h4 {
    font-family: 'Play', sans-serif;
    font-size: 15px;
    font-weight: 700;
    margin: 0 0 25px 0;
    color: #fff;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col ul li {
    margin-bottom: 15px;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: #fff;
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.4);
    margin: 0;
}

@media (max-width: 1024px) {
    .footer-top {
        flex-direction: column;
        gap: 60px;
    }

    .footer-nav {
        width: 100%;
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .footer-nav {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 1024px) {
    .hero-title {
        font-size: 8vw;
    }

    .hero-details {
        flex-direction: column;
        gap: 30px;
        margin-bottom: 40px;
    }

    .feature-tags {
        flex-wrap: wrap;
    }
}

@media (max-width: 820px) {
    .main-header {
        position: relative;
        padding: 30px 0;
    }

    .main-nav {
        display: none;
    }

    .btn-client-area {
        display: none;
    }

    .hero-content {
        height: auto;
        padding: 50px 0;
        text-align: center;
    }

    .hero-title {
        font-size: 12vw;
    }

    .hero-details {
        align-items: center;
    }

    .detail-column {
        max-width: 100%;
    }

    .feature-tags {
        justify-content: center;
    }

    footer {
        position: relative;
        margin-top: 40px;
    }
}

/* Standardized Internal Page Styles */
.internal-page {
    background-color: #f9f9f9;
}

.hero-section-internal {
    position: relative;
    width: 100%;
    overflow: hidden;
    display: flex;
    margin-top: 80px;
}

.hero-66 {
    height: 46vh;
}

.hero-33 {
    height: 33vh;
}

.hero-main-area {
    position: relative;
    width: 66%;
    height: 100%;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-sidebar {
    width: 34%;
    background-color: #D6C2AC;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 5%;
    /* Aligned with the 90% container margin */
    z-index: 1;
}

/* Page Title in Sidebar (Inverted) */
.hero-sidebar .hero-title {
    color: #151F3A;
    font-size: 3.5rem;
    margin: 0;
    line-height: 1.1;
    transform: none;
    /* Reset any slider transforms if applied */
}

/* Paragraph Text over Image (Inverted) */
.hero-main-area .hero-description {
    position: relative;
    z-index: 10;
    color: #ffffff;
    font-family: 'Manrope', sans-serif;
    font-size: 18px;
    line-height: 1.6;
    max-width: 600px;
    padding: 0 60px;
    font-weight: 100;
}

.hero-video-bg,
.hero-img-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    z-index: -2;
    object-fit: cover;
}

.hero-overlay-dark {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: -1;
}

/* Adjust layout to be contained in main area */
.hero-section-internal .hero-layout {
    width: 100%;
    padding: 0 60px;
}

@media (max-width: 1024px) {
    .hero-section-internal {
        flex-direction: column;
        height: auto;
    }

    .hero-main-area {
        width: 100%;
        height: 40vh;
    }

    .hero-sidebar {
        width: 100%;
        padding: 40px;
        height: auto;
    }
}




.internal-content-strip {
    padding: 80px 0;
    min-height: 40vh;
}

.green-strip {
    background-color: #fff;
    padding: 20px 0;
    width: 100%;
}

.green-strip-inner {
    width: 90%;
    max-width: 1400px;
    margin: 0 auto;
}

.green-strip-text {
    font-family: 'Manrope', sans-serif;
    color: #444;
    /* Slightly softer color */
    font-size: 13px;
    font-weight: 500;
    margin: 0;
}

.green-strip-text a {
    color: #000;
    text-decoration: none;
    transition: color 0.3s ease;
}

.green-strip-text a:hover {
    color: #169976;
}

@media (max-width: 768px) {
    .green-strip-text {
        font-size: 18px;
        text-align: center;
    }

    .hero-section-internal {
        height: 40vh !important;
    }
}

/* Mission Section Styles */
.mission-section {
    background-color: #fff;
    color: #000;
    padding: 100px 0;
}

.mission-container {
    width: 90%;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 80px;
}

.mission-content {
    flex: 1;
}

.mission-title {
    font-family: 'Play', sans-serif;
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 30px;
}

.mission-desc {
    font-family: 'Manrope', sans-serif;
    font-size: 16px;
    line-height: 1.8;
    color: rgba(0, 0, 0, 0.7);
    margin-bottom: 40px;
    max-width: 630px;
}

.mission-list {
    list-style: none;
    padding: 0;
    margin: 0 0 50px 0;
}

.mission-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    font-family: 'Manrope', sans-serif;
    font-weight: 500;
    font-size: 16px;
}

.check-icon {
    width: 22px;
    height: 22px;
    background-color: #169976;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 14px;
}

.mission-btn {
    display: inline-block;
    background-color: #000;
    color: #fff;
    padding: 15px 40px;
    text-decoration: none;
    border-radius: 4px;
    font-family: 'Manrope', sans-serif;
    font-weight: 700;
    font-size: 14px;
    transition: background-color 0.3s ease;
}

.mission-btn:hover {
    background-color: #333;
}

/* Chart Graphic */
.mission-graphic {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: flex-end;
}

.mission-chart {
    display: flex;
    align-items: flex-end;
    gap: 25px;
    padding-bottom: 30px;
}

.chart-bar-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.chart-outline {
    border: 1px dashed rgba(0, 0, 0, 0.2);
    width: 80px;
    height: 300px;
    position: relative;
    display: flex;
    align-items: flex-end;
}

.chart-bar {
    width: 100%;
    border-radius: 4px 4px 0 0;
}

.bar-2020 {
    height: 50%;
    background-color: #FFED00;
}

.bar-2021 {
    height: 75%;
    background-color: #f5f5f5;
    border: 1px solid #ddd;
}

.bar-2022 {
    height: 100%;
    background-color: #BDE7F4;
}

.chart-year {
    font-family: 'Manrope', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: #000;
}

@media (max-width: 1024px) {
    .mission-container {
        flex-direction: column;
        text-align: center;
        gap: 60px;
    }

    .mission-desc {
        margin-left: auto;
        margin-right: auto;
    }

    .mission-list {
        display: inline-block;
        text-align: left;
    }
}

/* ==========================================================================
   BLOG SYSTEM STYLES
   ========================================================================== */

/* Blog List Grid */
.blog-list-section {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.blog-container {
    max-width: 1459px;
    margin: 0 auto;
    padding: 0 20px;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 40px;
}

.blog-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    /* For link compatibility */
    color: inherit;
    /* For link compatibility */
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.blog-image {
    height: 220px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.1);
}

.blog-body {
    padding: 30px;
    flex-grow: 1;
}

.blog-date {
    display: block;
    font-size: 13px;
    color: #888;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.blog-body h3 {
    font-family: 'Play', serif;
    font-size: 22px;
    color: #151F3A;
    margin-bottom: 15px;
    line-height: 1.3;
}

.blog-body p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 0;
}

.blog-footer {
    padding: 0 30px 30px;
}

/* Single Article View */
.article-content-section {
    padding: 80px 0;
    background: #fff;
}

.article-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.article-meta {
    margin-bottom: 40px;
    font-size: 14px;
    color: #888;
    font-family: 'Manrope', sans-serif;
}

.article-meta .divider {
    margin: 0 15px;
}

.article-body {
    font-family: 'Manrope', sans-serif;
    font-size: 18px;
    line-height: 1.8;
    color: #333;
}

.article-body h2 {
    font-family: 'Play', serif;
    font-size: 32px;
    color: #151F3A;
    margin: 40px 0 20px;
}

.article-body h3 {
    font-family: 'Play', serif;
    font-size: 24px;
    color: #151F3A;
    margin: 30px 0 15px;
}

.article-body p {
    margin-bottom: 25px;
}

.article-body ul {
    margin-bottom: 25px;
    padding-left: 20px;
}

.article-body li {
    margin-bottom: 10px;
}

.article-footer {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid #eee;
}

.back-btn {
    text-decoration: none;
    color: #151F3A;
    font-weight: 600;
    font-size: 16px;
    transition: color 0.3s ease;
}

.back-btn:hover {
    color: #169976;
}

.hero-46 {
    height: 46vh;
}

@media (max-width: 768px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }

    .article-body h2 {
        font-size: 28px;
    }
}

/* ==========================================================================
   WHO WE ARE SECTION (NOSOTROS)
   ========================================================================== */

.who-we-are-section {
    padding: 100px 0;
    background-color: #FAF7F2;
    /* Premium cream background */
}

.who-we-are-container {
    max-width: 1313.09px;
    margin: 0 auto;
    padding: 0 40px;
}

.who-we-are-split {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 80px;
    align-items: center;
}

.who-we-are-image {
    width: 100%;
    height: 600px;
    border-radius: 4px;
    /* Minimalist rounding */
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

.who-we-are-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.who-we-are-content {
    padding-right: 40px;
}

.who-we-are-label {
    display: block;
    font-family: 'Manrope', sans-serif;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #151F3A;
    margin-bottom: 20px;
}

.who-we-are-title {
    font-family: 'Play', serif;
    font-size: 42px;
    font-weight: 700;
    line-height: 1.2;
    color: #000;
    margin-bottom: 30px;
}

.who-we-are-desc {
    font-family: 'Manrope', sans-serif;
    font-size: 16px;
    line-height: 1.8;
    color: rgba(0, 0, 0, 0.7);
    margin-bottom: 40px;
    max-width: 630px;
}

.philosophy-horizontal-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.philosophy-item h4 {
    font-family: 'Manrope', sans-serif;
    font-weight: 700;
    font-size: 18px;
    color: #151F3A;
    /* Dark blue/black */
    margin-bottom: 15px;
}

.philosophy-item p {
    font-family: 'Manrope', sans-serif;
    font-size: 15px;
    line-height: 1.7;
    color: rgba(0, 0, 0, 0.7);
    /* Matching the desc style */
    margin-bottom: 0;
}

.who-we-are-actions {
    display: flex;
    justify-content: center;
    width: 100%;
    margin-top: 80px;
}

.who-btn-black {
    display: inline-flex;
    align-items: center;
    background-color: #000;
    color: #fff;
    padding: 18px 35px;
    text-decoration: none;
    font-family: 'Manrope', sans-serif;
    font-weight: 800;
    font-size: 15px;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.who-btn-black:hover {
    background-color: #151F3A;
}

.orange-arrow-icon {
    color: #FF6B00;
    margin-right: 15px;
    font-size: 18px;
    font-weight: bold;
}

@media (max-width: 1024px) {
    .who-we-are-split {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .who-we-are-image {
        height: 400px;
    }

    .who-we-are-content {
        padding-right: 0;
    }
}

/* ==========================================================================
   CONTACT & MAP SECTION
   ========================================================================== */

.contact-hero {
    height: 40vh;
    min-height: 400px;
    background: #000;
}

#contact-map {
    width: 100%;
    height: 500px;
    background: #eee;
    z-index: 1;
    margin-top: 90px;
    /* Header height */
}

.offices-section {
    padding: 100px 0;
    background: #fff;
}

.offices-container {
    max-width: 1313.09px;
    margin: 0 auto;
    padding: 0 40px;
}

.offices-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.office-card {
    padding: 40px;
    background: #FAF7F2;
    border-radius: 4px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.office-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

.office-card h3 {
    font-family: 'Play', serif;
    font-size: 24px;
    margin-bottom: 20px;
    color: #151F3A;
}

.office-card p {
    font-family: 'Manrope', sans-serif;
    font-size: 15px;
    line-height: 1.6;
    color: rgba(0, 0, 0, 0.7);
    margin-bottom: 15px;
}

.office-card .phone {
    font-weight: 700;
    color: #151F3A;
    display: block;
    margin-top: 15px;
    font-size: 14px;
}

.office-card .email {
    font-weight: 500;
    color: #169976;
    display: block;
    margin-top: 10px;
    /* Increased from 5px for better breathing */
    font-size: 14px;
    text-decoration: none;
}

.office-card .remote-tag {
    display: inline-flex;
    align-items: center;
    margin-top: 20px;
    margin-bottom: 5px;
    padding: 12px 25px;
    background: #151F3A;
    /* Matches header and image */
    color: #fff;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 700;
    text-transform: none;
    /* Removed uppercase for a more natural look matching the image */
    letter-spacing: 0;
    text-decoration: none;
    gap: 12px;
}

.office-card .remote-tag .red-arrow {
    color: #E72E2E;
    /* Bright red from reference image */
    font-size: 20px;
    font-weight: 900;
    line-height: 1;
}

@media (max-width: 1024px) {
    .who-we-are-split {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .who-we-are-image {
        height: 400px;
    }

    .who-we-are-content {
        padding-right: 0;
    }
}

@media (max-width: 768px) {
    #contact-map {
        height: 350px;
    }

    .who-we-are-actions {
        margin-top: 40px;
    }
}

/* Specialized Services Detail Section */
.service-detail-section {
    padding: 100px 0;
    background: #fff;
}

.service-detail-container {
    width: 90%;
    max-width: 1400px;
    margin: 0 auto;
}

.service-detail-grid {
    display: flex;
    gap: 80px;
    align-items: center;
}

.service-detail-image {
    flex: 1;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.service-detail-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.service-detail-image:hover img {
    transform: scale(1.05);
}

.service-detail-content {
    flex: 1.2;
}

.service-detail-label {
    font-family: 'Manrope', sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 14px;
    color: #D6C2AC;
    font-weight: 700;
    margin-bottom: 20px;
    display: block;
}

.service-detail-title {
    font-family: 'Play', sans-serif;
    font-size: 2.8rem;
    color: #151F3A;
    margin-bottom: 30px;
    line-height: 1.2;
}

.service-detail-subtitle {
    font-family: 'Manrope', sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: #151F3A;
    margin-bottom: 15px;
}

.service-detail-text {
    font-family: 'Manrope', sans-serif;
    font-size: 18px;
    line-height: 1.8;
    color: rgba(0, 0, 0, 0.7);
    margin-bottom: 30px;
}

.service-detail-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-detail-item {
    font-family: 'Manrope', sans-serif;
    font-size: 17px;
    color: #151F3A;
    padding: 12px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: flex-start;
    /* Better for multiline text */
    font-weight: 500;
}

.service-detail-item:last-child {
    border-bottom: none;
}

.service-detail-item::before {
    content: "";
    width: 8px;
    height: 8px;
    background-color: #D6C2AC;
    border-radius: 50%;
    margin-right: 15px;
    margin-top: 8px;
    /* Aligns with the first line of text */
    flex-shrink: 0;
}

@media (max-width: 1024px) {
    .service-detail-grid {
        flex-direction: column;
        gap: 50px;
    }

    .service-detail-image {
        width: 100%;
    }

    .service-detail-title {
        font-size: 2.2rem;
    }
}

/* --- Ardo Contact Section --- */
.ardo-contact-wrapper {
    width: 100%;
    overflow: hidden;
}

/* Top Dark Section */
.ardo-contact-top {
    background: #032642;
    padding: 100px 0 150px 0;
}

.ardo-contact-container {
    width: 90%;
    max-width: 1400px;
    margin: 0 auto;
}

.ardo-contact-header {
    text-align: left;
    position: relative;
}

.ardo-contact-header::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 250px;
    height: 250px;
    background-color: #D6C2AC;
    -webkit-mask-image: url('img/arrow.svg');
    mask-image: url('img/arrow.svg');
    -webkit-mask-size: contain;
    mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    opacity: 0.2;
    pointer-events: none;
}

.ardo-contact-tag {
    font-family: 'Manrope', sans-serif;
    color: #D6C2AC;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 20px;
}

.ardo-contact-main-title {
    font-family: 'Play', sans-serif;
    color: #ffffff;
    font-size: 3.5rem;
    line-height: 1.1;
    margin: 0;
}

/* Bottom Light Section */
.ardo-contact-bottom {
    background: #ffffff;
    padding-top: 100px;
    /* Added more space at the beginning */
    padding-bottom: 100px;
    margin-top: -80px;
    /* Overlap effect */
}

.ardo-contact-grid {
    display: flex;
    gap: 80px;
}

.ardo-contact-info {
    flex: 1;
}

.ardo-contact-text-block {
    margin-bottom: 50px;
}

.ardo-contact-desc {
    font-family: 'Manrope', sans-serif;
    font-size: 1.2rem;
    color: #151F3A;
    line-height: 1.6;
    margin-bottom: 30px;
}

.ardo-contact-phone-btn {
    display: inline-block;
    padding: 18px 35px;
    background: #151F3A;
    color: #ffffff;
    text-decoration: none;
    font-family: 'Manrope', sans-serif;
    font-weight: 700;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.ardo-contact-phone-btn:hover {
    background: #D6C2AC;
    color: #151F3A;
}

/* Benefits Section */
.ardo-benefits-section {
    margin-bottom: 60px;
}

.ardo-benefits-title {
    font-family: 'Manrope', sans-serif;
    font-size: 1.1rem;
    font-weight: 800;
    color: #151F3A;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.ardo-benefits-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.ardo-benefits-list {
    list-style: none;
    padding: 0;
}

.ardo-benefits-list li {
    font-family: 'Manrope', sans-serif;
    font-size: 1rem;
    color: #555555;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.check-icon {
    color: #D6C2AC;
    margin-right: 12px;
    font-size: 1.2rem;
}

/* Procedure Section */
.ardo-procedure-title {
    font-family: 'Manrope', sans-serif;
    font-size: 1rem;
    font-weight: 800;
    color: #151F3A;
    margin-bottom: 25px;
}

.ardo-procedure-steps {
    display: flex;
    align-items: center;
    gap: 20px;
}

.ardo-step {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.ardo-step-num {
    width: 35px;
    height: 35px;
    background: #D6C2AC;
    color: #151F3A;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-family: 'Manrope', sans-serif;
    font-weight: 800;
}

.ardo-step-text {
    font-family: 'Manrope', sans-serif;
    font-size: 0.95rem;
    color: #151F3A;
    line-height: 1.4;
    font-weight: 600;
}

.ardo-step-divider {
    color: #D6C2AC;
    font-size: 1.2rem;
}

/* Form Column */
.ardo-contact-form-col {
    flex: 1;
}

.ardo-form-card {
    background: transparent;
}

/* Responsive */
@media (max-width: 1024px) {
    .ardo-contact-grid {
        flex-direction: column;
        gap: 50px;
    }

    .ardo-contact-bottom {
        margin-top: 0;
        padding-top: 50px;
    }

    .ardo-contact-main-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .ardo-benefits-grid {
        grid-template-columns: 1fr;
    }

    .ardo-procedure-steps {
        flex-direction: column;
        align-items: flex-start;
    }

    .ardo-step-divider {
        display: none;
    }
}


/* Leaflet Custom Marker */
.custom-map-marker {
    width: 20px;
    height: 20px;
    background: url('img/map-marker.svg') center/contain no-repeat;
}

/* --- Strategic Alliance Section --- */
.alliance-section {
    padding: 100px 0;
    background-color: #fcfcfc;
}

.alliance-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.alliance-header {
    text-align: center;
    margin-bottom: 80px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.alliance-tag {
    font-family: 'Manrope', sans-serif;
    color: #D6C2AC;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 20px;
}

.alliance-title {
    font-family: 'Play', sans-serif;
    font-size: 3rem;
    color: #151F3A;
    margin-bottom: 20px;
}

.alliance-subtitle {
    font-family: 'Manrope', sans-serif;
    font-size: 1.1rem;
    color: rgba(0, 0, 0, 0.6);
    line-height: 1.6;
}

.alliance-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 80px;
}

.alliance-card {
    background: #ffffff;
    padding: 50px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    transition: transform 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.alliance-card:hover {
    transform: translateY(-10px);
}

.partner-logo-box {
    margin-bottom: 30px;
    height: 60px;
    display: flex;
    align-items: center;
}

.partner-logo {
    max-height: 45px;
    max-width: 180px;
    filter: grayscale(1);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.partner-logo-text {
    font-family: 'Play', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #151F3A;
    letter-spacing: 2px;
    opacity: 0.5;
    transition: all 0.3s ease;
}

.alliance-card:hover .partner-logo-text {
    opacity: 1;
    color: #032642;
}

.alliance-card:hover .partner-logo {
    filter: grayscale(0);
    opacity: 1;
}

.alliance-card h3 {
    font-family: 'Play', sans-serif;
    font-size: 1.5rem;
    color: #151F3A;
    margin-bottom: 20px;
}

.alliance-card p {
    font-family: 'Manrope', sans-serif;
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(0, 0, 0, 0.7);
    margin-bottom: 25px;
}

.alliance-features {
    list-style: none;
    padding: 0;
}

.alliance-features li {
    font-family: 'Manrope', sans-serif;
    font-size: 0.95rem;
    color: #151F3A;
    font-weight: 600;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
}

.alliance-features li::before {
    content: "→";
    color: #D6C2AC;
    margin-right: 15px;
    font-weight: 800;
}

/* Synergy Banner */
.alliance-synergy {
    width: 100%;
    height: 400px;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
}

.synergy-visual {
    width: 100%;
    height: 100%;
}

.synergy-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.synergy-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(21, 31, 58, 0.9), transparent);
    display: flex;
    align-items: center;
    padding: 60px;
}

.synergy-content {
    max-width: 500px;
    color: #ffffff;
}

.synergy-content h4 {
    font-family: 'Play', sans-serif;
    font-size: 2rem;
    margin-bottom: 15px;
}

.synergy-content p {
    font-family: 'Manrope', sans-serif;
    font-size: 1.1rem;
    font-weight: 300;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.8);
}

@media (max-width: 992px) {
    .alliance-grid {
        grid-template-columns: 1fr;
    }

    .alliance-title {
        font-size: 2.2rem;
    }

    .synergy-overlay {
        padding: 40px;
        background: rgba(21, 31, 58, 0.8);
    }
}