
/* ==========================================================
   TYPOGRAPHY — MATCH SERVIÇOS
   Only typography sizing/family is synchronized; TV content
   and page structure remain unchanged.
   ========================================================== */

.infrastructure-page,
.infrastructure-page button,
.infrastructure-page a {
    font-family: inherit;
}

/* ==========================================================
   TV HOTELEIRA
   REFERENCE LAYOUT
   ========================================================== */


/* ==========================================================
   PAGE
   ========================================================== */

.infrastructure-page {

    --hotel-blue: #347ff0;
    --hotel-purple: #9c5cf5;

    --hotel-dark: #1b263b;
    --hotel-text: #3f4b5d;
    --hotel-muted: #8993a3;

    --hotel-border: #e9edf3;

    width: 100%;

    min-height: 100vh;

    background: #ffffff;

    overflow: hidden;

}



/* ==========================================================
   GENERAL CONTAINER
   ========================================================== */

.infrastructure-content {

    width: min(
        1080px,
        calc(100% - 56px)
    );

    margin-left: auto;
    margin-right: auto;

}



/* ==========================================================
   ==========================================================
   FIRST SECTION
   ==========================================================
   ========================================================== */

.infrastructure-hero {

    position: relative;

    width: 100%;

    height: 430px;

    padding: 0;

    margin: 60px 0 0;

    background: #ffffff;

}



/* ==========================================================
   HERO INNER BOX
   ========================================================== */

.infrastructure-hero-box {

    position: relative;

    width: min(
        1080px,
        calc(100% - 56px)
    );

    height: 430px;

    margin-left: auto;
    margin-right: auto;

}



/* ==========================================================
   GRADIENT BLOCK
   ==========================================================

   This is the large blue/purple rectangle.

   It intentionally begins BELOW the image and is shifted
   toward the right, exactly like the reference.
   ========================================================== */

.infrastructure-hero-gradient {

    position: absolute;

    z-index: 1;

    right: 0;

    top: 76px;

    width: 88%;

    height: 282px;

    background: #0a3776;

}



/* ==========================================================
   HERO IMAGE
   ========================================================== */

.infrastructure-hero-media {

    position: absolute;

    z-index: 5;

    left: 0;

    top: 0;

    width: 430px;

    height: 250px;

    overflow: hidden;

    background: #e9edf2;

    box-shadow:

        0 12px 27px
        rgba(22, 39, 65, 0.17);

}




/* ==========================================================
   HERO IMAGE — IMAGE ONLY
   Hide the video/play control so no paused-video icon appears.
   ========================================================== */

.infrastructure-hero-media .hero-play {
    display: none !important;
}

/* ==========================================================
   HERO IMAGE ITSELF
   ========================================================== */

.infrastructure-hero-media img {

    display: block;

    width: 100%;

    height: 100%;

    object-fit: cover;

}



/* ==========================================================
   PLAY BUTTON
   ========================================================== */

.hero-play {

    position: absolute;

    left: 50%;

    top: 50%;

    width: 46px;

    height: 46px;

    padding: 0;

    margin: 0;

    display: flex;

    align-items: center;

    justify-content: center;

    transform:
        translate(
            -50%,
            -50%
        );

    border:

        1.5px solid
        rgba(255,255,255,.95);

    border-radius: 50%;

    background:
        rgba(25, 39, 63, .08);

    cursor: pointer;

    transition:

        transform .2s ease,

        background .2s ease;

}



/* ==========================================================
   PLAY BUTTON HOVER
   ========================================================== */

.hero-play:hover {

    transform:
        translate(
            -50%,
            -50%
        )
        scale(1.08);

    background:
        rgba(25, 39, 63, .20);

}



/* ==========================================================
   PLAY TRIANGLE
   ========================================================== */

.hero-play span {

    display: block;

    width: 0;

    height: 0;

    margin-left: 3px;

    border-top:

        7px solid
        transparent;

    border-bottom:

        7px solid
        transparent;

    border-left:

        11px solid
        #ffffff;

}



/* ==========================================================
   HERO TEXT
   ========================================================== */

.infrastructure-hero-copy {

    position: absolute;

    z-index: 4;

    left: 35%;

    bottom: 34px;

    width: 56%;

    color: #ffffff;

}



/* ==========================================================
   EYEBROW
   ========================================================== */

.infrastructure-hero-copy .eyebrow {

    display: block;

    margin-bottom: 9px;

    color:

        rgba(
            255,
            255,
            255,
            .78
        );

    font-size: 12px;

    line-height: 1;

    font-weight: 700;

    letter-spacing: .13em;

    text-transform: uppercase;

}



/* ==========================================================
   HERO TITLE
   ========================================================== */

.infrastructure-hero-copy h1 {

    margin:

        0 0 9px;

    padding: 0;

    color: #ffffff;

    font-size: 36px;

    line-height: 1.16;

    font-weight: 800;

    letter-spacing: -.02em;

}



/* ==========================================================
   HERO DESCRIPTION
   ========================================================== */

.infrastructure-hero-copy p {

    width: 100%;

    max-width: 570px;

    margin: 0;

    padding: 0;

    color:

        rgba(
            255,
            255,
            255,
            .82
        );

    font-size: 15px;

    line-height: 1.68;

    font-weight: 400;

}



/* ==========================================================
   ==========================================================
   RESOURCES
   ==========================================================
   ========================================================== */

.infrastructure-resources {

    width: 100%;

    padding:

        74px 0 70px;

    background: #ffffff;

}



/* ==========================================================
   SECTION INTRO
   ========================================================== */

.section-intro {

    margin-bottom: 48px;

    text-align: center;

}



/* ==========================================================
   SMALL KICKER
   ========================================================== */

.small-kicker {

    display: block;

    margin-bottom: 9px;

    color: #1659a8;

    font-size: 12px;

    line-height: 1.2;

    font-weight: 700;

    letter-spacing: .13em;

    text-transform: uppercase;

}



/* ==========================================================
   SECTION TITLE
   ========================================================== */

.section-intro h2 {

    margin: 0;

    padding: 0;

    color: var(--hotel-dark);

    font-size: 36px;

    line-height: 1.2;

    font-weight: 800;

    letter-spacing: -.025em;

}



/* ==========================================================
   RESOURCE GRID
   ========================================================== */

.resource-grid {

    display: grid;

    grid-template-columns:

        repeat(
            3,
            minmax(0, 1fr)
        );

    column-gap: 48px;

    row-gap: 30px;

}



/* ==========================================================
   RESOURCE ITEM
   ========================================================== */

.resource-item {

    position: relative;

    display: flex;

    align-items: flex-start;

    min-width: 0;

}



/* ==========================================================
   RESOURCE CONTENT
   ========================================================== */

.resource-content {
    min-width: 0;
    width: 100%;
}



/* ==========================================================
   RESOURCE TITLE
   ========================================================== */

.resource-content h3 {

    margin:

        0 0 7px;

    padding: 0;

    color: var(--hotel-dark);

    font-size: 30px;

    line-height: 1.35;

    font-weight: 800;

}



/* ==========================================================
   RESOURCE TEXT
   ========================================================== */

.resource-content p {

    margin:

        0 0 7px;

    padding: 0;

    color: var(--hotel-muted);

    font-size: 15px;

    line-height: 1.65;

}



/* ==========================================================
   ==========================================================
   CENTER MESSAGE
   ==========================================================
   ========================================================== */

.infrastructure-message {

    width: 100%;

    padding:

        55px 0 65px;

    background: #ffffff;

    text-align: center;

}



/* ==========================================================
   MESSAGE INNER
   ========================================================== */

.infrastructure-message-inner {

    width: min(
        620px,
        calc(100% - 48px)
    );

    margin-left: auto;
    margin-right: auto;

}



/* ==========================================================
   MESSAGE TITLE
   ========================================================== */

.infrastructure-message h2 {

    margin:

        0 0 13px;

    padding: 0;

    color: var(--hotel-dark);

    font-size: 36px;

    line-height: 1.2;

    font-weight: 800;

    letter-spacing: -.02em;

}



/* ==========================================================
   MESSAGE TEXT
   ========================================================== */

.infrastructure-message p {

    max-width: 590px;

    margin:

        0 auto 22px;

    padding: 0;

    color: var(--hotel-muted);

    font-size: 15px;

    line-height: 1.75;

}



/* ==========================================================
   CTA
   ========================================================== */

.hotel-cta {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    min-width: 116px;

    height: 31px;

    padding:

        0 18px;

    border-radius: 2px;

    background:

        linear-gradient(
            100deg,
            #416ff1,
            #58c9e8
        );

    color: #ffffff;

    font-size: 14px;

    line-height: 1;

    font-weight: 800;

    letter-spacing: .08em;

    text-decoration: none;

    text-transform: uppercase;

    box-shadow:

        0 6px 16px
        rgba(70,126,237,.16);

    transition:

        transform .2s ease,

        box-shadow .2s ease;

}



.hotel-cta:hover {

    transform:
        translateY(-2px);

    box-shadow:

        0 10px 22px
        rgba(70,126,237,.22);

}



/* ==========================================================
   ==========================================================
   VIDEO SECTION
   ==========================================================
   ========================================================== */

.infrastructure-message {
    width: 100%;
    padding: 70px 0 80px;
    background: #ffffff;
}

.infrastructure-video-content {
    width: min(1080px, calc(100% - 56px));
    margin-left: auto;
    margin-right: auto;
}

.infrastructure-video-wrapper {
    position: relative;
    width: 100%;
    height: 420px;
    overflow: hidden;
    background: #111827;
    border-radius: 2px;
    box-shadow: 0 12px 30px rgba(30,48,75,.10);
}

.infrastructure-video {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    background: #111827;
}

.infrastructure-video-placeholder {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    color: rgba(255,255,255,.72);
    font-size: 15px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.infrastructure-video-text {
    width: 54%;
    margin-left: auto;
    margin-top: 34px;
    text-align: left;
}

.infrastructure-video-text .small-kicker {
    margin-bottom: 9px;
    color: #1659a8;
}

.infrastructure-video-text h2 {
    margin: 0 0 13px;
    padding: 0;
    color: var(--hotel-dark);
    font-size: 36px;
    line-height: 1.2;
    font-weight: 800;
    letter-spacing: -.02em;
}

.infrastructure-video-text p {
    max-width: 590px;
    margin: 0;
    padding: 0;
    color: var(--hotel-muted);
    font-size: 15px;
    line-height: 1.75;
}

/* ==========================================================
   ==========================================================
   DYNAMIC FEATURE SLIDER
   ==========================================================
   ========================================================== */

.infrastructure-features {

    width: 100%;

    padding:
        28px 0 90px;

    background: #ffffff;

}


/* ==========================================================
   SLIDER
   ========================================================== */

.feature-slider {

    position: relative;

    width: 100%;

    height: 430px;

    overflow: hidden;

}


/* ==========================================================
   SLIDE
   ========================================================== */

.feature-card {

    position: absolute;

    z-index: 1;

    top: 0;
    right: 0;
    bottom: 0;
    left: 0;

    width: 100%;
    height: 100%;

    overflow: visible;

    background: transparent;

    border: 0;

    box-shadow: none;

    opacity: 0;

    transform:
        translateX(115%);

    transition:
        transform .75s cubic-bezier(.22,.61,.36,1),
        opacity .75s ease;

    pointer-events: none;

}


.feature-card.is-active {

    z-index: 3;

    opacity: 1;

    transform:
        translateX(0);

    pointer-events: auto;

}


.feature-card.is-previous {

    z-index: 2;

    opacity: 1;

    transform:
        translateX(-115%);

    pointer-events: none;

}


/* ==========================================================
   IMAGE — RIGHT SIDE
   ========================================================== */

.feature-image {

    position: absolute;

    z-index: 1;

    top: 0;
    right: 0;

    width: 68%;

    height: 100%;

    overflow: hidden;

    background: #edf0f5;

}


.feature-image img {

    display: block;

    width: 100%;

    height: 100%;

    object-fit: cover;

    transition:
        transform 1s ease;

}


.feature-card.is-active
.feature-image img {

    transform:
        scale(1);

}


/* ==========================================================
   WHITE TEXT PANEL
   Starts inside the image and overlaps it.
   ========================================================== */

.feature-body {

    position: absolute;

    z-index: 4;

    left: 0;

    top: 50%;

    width: 51%;

    min-height: 235px;

    box-sizing: border-box;

    padding:
        46px 52px 46px 0;

    transform:
        translateY(-50%);

    background: rgba(255, 255, 255, .90);

}


.feature-body::after {

    content: "";

    position: absolute;

    top: 0;
    right: -70px;
    bottom: 0;

    width: 70px;

    background: rgba(255, 255, 255, .90);

    clip-path:
        polygon(
            0 0,
            100% 0,
            100% 100%,
            0 100%
        );

}


.feature-body p {

    position: relative;

    z-index: 2;

    max-width: 470px;

    margin: 0;

    padding: 0;

    color: var(--hotel-muted);

    font-size: 20px;

    line-height: 1.9;

    font-weight: 400;

}


/* ==========================================================
   ==========================================================
   SCROLL ANIMATIONS
   ==========================================================
   ========================================================== */

.resource-item,
.infrastructure-message-inner {

    opacity: 0;

    transform:
        translateY(22px);

    transition:

        opacity .65s ease,

        transform .65s ease;

}


.resource-item.is-visible,
.infrastructure-message-inner.is-visible {

    opacity: 1;

    transform:
        translateY(0);

}


/* ==========================================================
   ANIMATION DELAYS
   ========================================================== */

.resource-item:nth-child(2) {

    transition-delay: .08s;

}


.resource-item:nth-child(3) {

    transition-delay: .16s;

}


/* ==========================================================
   ==========================================================
   TABLET
   ==========================================================
   ========================================================== */

@media (max-width: 900px) {

    .feature-slider {

        height: 390px;

    }


    .feature-image {

        width: 72%;

    }


    .feature-body {

        width: 53%;

        min-height: 215px;

        padding:
            38px 42px 38px 0;

    }


    .feature-body::after {

        right: -55px;

        width: 55px;

    }


    .feature-body p {

        font-size: 19px;

        line-height: 1.8;

    }

}


/* ==========================================================
   TABLET / SMALL
   ========================================================== */

@media (max-width: 700px) {

    .infrastructure-features {

        padding:
            18px 0 70px;

    }


    .feature-slider {

        height: 520px;

    }


    .feature-image {

        top: 0;
        right: 0;

        width: 88%;

        height: 325px;

    }


    .feature-body {

        top: auto;

        right: auto;
        bottom: 0;

        left: 0;

        width: 76%;

        min-height: 235px;

        padding:
            34px 30px 34px 0;

        transform: none;

    }


    .feature-body::after {

        right: -38px;

        width: 38px;

    }


    .feature-body p {

        font-size: 18px;

        line-height: 1.8;

    }
}


/* ==========================================================
   MOBILE
   ========================================================== */

@media (max-width: 500px) {

    .infrastructure-features {

        padding:
            12px 0 60px;

    }


    .feature-slider {

        height: 500px;

    }


    .feature-image {

        width: 92%;

        height: 295px;

    }


    .feature-body {

        width: 84%;

        min-height: 225px;

        padding:
            30px 22px 30px 0;

    }


    .feature-body::after {

        right: -28px;

        width: 28px;

    }


    .feature-body p {

        font-size: 17px;

        line-height: 1.75;

    }
}


/* ==========================================================
   VERY SMALL MOBILE
   ========================================================== */

@media (max-width: 360px) {

    .feature-slider {

        height: 475px;

    }


    .feature-image {

        width: 94%;

        height: 275px;

    }


    .feature-body {

        width: 87%;

        min-height: 215px;

        padding:
            27px 20px 27px 0;

    }


    .feature-body p {

        font-size: 16px;

    }

}


   ==========================================================
   ========================================================== */

.resource-item,
.infrastructure-message-inner,
.feature-card {

    opacity: 0;

    transform:
        translateY(22px);

    transition:

        opacity .65s ease,

        transform .65s ease;

}



.resource-item.is-visible,
.infrastructure-message-inner.is-visible,
.feature-card.is-visible {

    opacity: 1;

    transform:
        translateY(0);

}



/* ==========================================================
   ANIMATION DELAYS
   ========================================================== */

.resource-item:nth-child(2),
.feature-card:nth-child(2) {

    transition-delay: .08s;

}



.resource-item:nth-child(3),
.feature-card:nth-child(3) {

    transition-delay: .16s;

}



/* ==========================================================
   ==========================================================
   TABLET
   ==========================================================
   ========================================================== */

@media (max-width: 900px) {


    /* ---------------------------------------------
       HERO
    --------------------------------------------- */

    .infrastructure-hero {

        height: 440px;

    }


    .infrastructure-hero-box {

        width:

            calc(100% - 40px);

        height: 440px;

    }


    .infrastructure-hero-gradient {

        width: 88%;

        height: 300px;

        top: 82px;

    }


    .infrastructure-hero-media {

        width: 390px;

        height: 228px;

    }


    .infrastructure-hero-copy {

        left: 28%;

        bottom: 35px;

        width: 58%;

    }


    .infrastructure-hero-copy h1 {

        font-size: 32px;

    }


    /* ---------------------------------------------
       CONTENT
    --------------------------------------------- */

    .infrastructure-content {

        width:

            calc(100% - 40px);

    }


    .resource-grid {

        column-gap: 28px;

    }


}



/* ==========================================================
   ==========================================================
   TABLET / SMALL
   ==========================================================
   ========================================================== */

@media (max-width: 700px) {


    .infrastructure-hero {

        height: 500px;

    }


    .infrastructure-hero-box {

        width:

            calc(100% - 32px);

        height: 500px;

    }


    .infrastructure-hero-gradient {

        top: 105px;

        width: 91%;

        height: 340px;

    }


    .infrastructure-hero-media {

        left: 0;

        top: 0;

        width: 67%;

        height: auto;

        aspect-ratio: 16 / 10;

    }


    .infrastructure-hero-copy {

        left: 12%;

        bottom: 35px;

        width: 76%;

    }


    .infrastructure-hero-copy h1 {

        font-size: 36px;

    }


    .infrastructure-hero-copy p {

        font-size: 15px;

    }


    /* ---------------------------------------------
       RESOURCES
    --------------------------------------------- */

    .resource-grid {

        grid-template-columns: 1fr;

        gap: 28px;

    }


    .resource-item {

        width: min(
            500px,
            100%
        );

        margin-left: auto;

        margin-right: auto;

    }


    /* ---------------------------------------------
       CARDS
    --------------------------------------------- */

    .feature-grid {

        grid-template-columns: 1fr;

        gap: 25px;

    }


    .feature-card {

        width: min(
            520px,
            100%
        );

        margin-left: auto;

        margin-right: auto;

    }

}



/* ==========================================================
   ==========================================================
   MOBILE
   ==========================================================
   ========================================================== */

@media (max-width: 500px) {


    /* ---------------------------------------------
       HERO
    --------------------------------------------- */

    .infrastructure-hero {

        height: 475px;

    }


    .infrastructure-hero-box {

        width:

            calc(100% - 24px);

        height: 475px;

    }


    .infrastructure-hero-gradient {

        top: 108px;

        right: 0;

        width: 92%;

        height: 325px;

    }


    .infrastructure-hero-media {

        left: 0;

        top: 14px;

        width: 73%;

        height: auto;

        aspect-ratio: 16 / 10;

    }


    .infrastructure-hero-copy {

        left: 13%;

        bottom: 30px;

        width: 73%;

    }


    .infrastructure-hero-copy .eyebrow {

        margin-bottom: 8px;

        font-size: 12px;

    }


    .infrastructure-hero-copy h1 {

        margin-bottom: 8px;

        font-size: 30px;

    }


    .infrastructure-hero-copy p {

        font-size: 15px;

        line-height: 1.65;

    }


    .hero-play {

        width: 40px;

        height: 40px;

    }


    .hero-play span {

        border-top-width: 6px;

        border-bottom-width: 6px;

        border-left-width: 9px;

    }



    /* ---------------------------------------------
       GENERAL CONTENT
    --------------------------------------------- */

    .infrastructure-content {

        width:

            calc(100% - 30px);

    }



    /* ---------------------------------------------
       RESOURCES
    --------------------------------------------- */

    .infrastructure-resources {

        padding:

            60px 0 48px;

    }


    .section-intro {

        margin-bottom: 38px;

    }


    .section-intro h2 {

        font-size: 36px;

    }




    /* ---------------------------------------------
       FEATURES
    --------------------------------------------- */

    .infrastructure-features {

        padding:

            8px 0 60px;

    }


    .feature-image {

        height: 190px;

    }

}



/* ==========================================================
   ==========================================================
   VERY SMALL MOBILE
   ==========================================================
   ========================================================== */

@media (max-width: 360px) {


    .infrastructure-hero {

        height: 455px;

    }


    .infrastructure-hero-box {

        height: 455px;

    }


    .infrastructure-hero-gradient {

        top: 103px;

        height: 315px;

    }


    .infrastructure-hero-media {

        top: 12px;

        width: 76%;

    }


    .infrastructure-hero-copy {

        bottom: 28px;

        left: 12%;

        width: 76%;

    }


    .infrastructure-hero-copy h1 {

        font-size: 18px;

    }


    .infrastructure-hero-copy p {

        font-size: 12px;

    }

}

/* ==========================================================
   VIDEO SECTION — RESPONSIVE
   ========================================================== */

@media (max-width: 900px) {
    .infrastructure-video-content { width: calc(100% - 40px); }
    .infrastructure-video-wrapper { height: 360px; }
    .infrastructure-video-text { width: 62%; margin-top: 30px; }
}

@media (max-width: 700px) {
    .infrastructure-message { padding: 55px 0 65px; }
    .infrastructure-video-content { width: calc(100% - 32px); }
    .infrastructure-video-wrapper { height: 300px; }
    .infrastructure-video-text { width: 100%; margin-top: 28px; }
    .infrastructure-video-text h2 { font-size: 32px; }
}

@media (max-width: 500px) {
    .infrastructure-message { padding: 48px 0 52px; }
    .infrastructure-video-content { width: calc(100% - 30px); }
    .infrastructure-video-wrapper { height: 220px; }
    .infrastructure-video-text { width: 100%; margin-top: 24px; }
    .infrastructure-video-text h2 { font-size: 30px; }
    .infrastructure-video-text p { font-size: 15px; line-height: 1.75; }
}

/* ==========================================================
   INFRAESTRUTURA E REDES — CONTENT SIZING
   ========================================================== */

.infrastructure-page {
    width: 100%;
    overflow: hidden;
}

.infrastructure-hero {
    margin-top: 60px;
}

.infrastructure-resources .resource-grid {
    align-items: stretch;
}

.infrastructure-resources .resource-item {
    /*
       Give the three text areas the same vertical space.
       The content itself stays unchanged.
    */
    min-height: 180px;
    height: 180px;
    box-sizing: border-box;
}

.infrastructure-resources .resource-content {
    width: 100%;
}

.infrastructure-resources .resource-content p {
    margin: 0;
    min-height: 180px;
    box-sizing: border-box;
}

.infrastructure-video-text h2 {
    font-size: 36px;
}

.infrastructure-features .feature-body h3 {
    margin: 0 0 13px;
    color: var(--hotel-dark);
    font-size: 20px;
    line-height: 1.25;
    font-weight: 800;
}

.infrastructure-features .feature-body p {
    margin: 0;
    color: var(--hotel-muted);
    font-size: 15px;
    line-height: 1.75;
}

@media (max-width: 700px) {
    .infrastructure-hero {
        margin-top: 40px;
    }
}

@media (max-width: 500px) {
    .infrastructure-hero {
        margin-top: 30px;
    }
}


/* ==========================================================
   BALANCED RESOURCE TEXT — MOBILE
   ========================================================== */

@media (max-width: 700px) {

    .infrastructure-resources .resource-item {
        height: auto;
        min-height: 0;
    }

    .infrastructure-resources .resource-content p {
        min-height: 0;
    }

}

/* ==========================================================
   INFRAESTRUTURA E REDES — BALANCED CONTENT
   ========================================================== */

.infrastructure-page {
    width: 100%;
    overflow: hidden;
}

.infrastructure-resources .resource-grid {
    align-items: stretch;
}

.infrastructure-resources .resource-item {
    min-height: 180px;
    height: 180px;
    box-sizing: border-box;
}

.infrastructure-resources .resource-content {
    width: 100%;
}

.infrastructure-resources .resource-content p {
    margin: 0;
    min-height: 180px;
    box-sizing: border-box;
}

.infrastructure-features .feature-body h3 {
    margin: 0 0 13px;
    color: var(--hotel-dark);
    font-size: 20px;
    line-height: 1.25;
    font-weight: 800;
}

.infrastructure-features .feature-body p {
    margin: 0;
    color: var(--hotel-muted);
    font-size: 15px;
    line-height: 1.75;
}

@media (max-width: 700px) {

    .infrastructure-resources .resource-item {
        height: auto;
        min-height: 0;
    }

    .infrastructure-resources .resource-content p {
        min-height: 0;
    }

}

@media (max-width: 500px) {

    .infrastructure-hero {
        margin-top: 30px;
    }

}


/* ==========================================================
   TEXT VISIBILITY FIX
   Keep the infrastructure text visible even if JavaScript
   loads late or is unavailable.
   ========================================================== */

.infrastructure-resources .resource-item {
    opacity: 1 !important;
    transform: none !important;
    visibility: visible !important;
}

.infrastructure-resources .resource-content,
.infrastructure-resources .resource-content p {
    opacity: 1 !important;
    visibility: visible !important;
}

.infrastructure-video-text {
    opacity: 1 !important;
    transform: none !important;
    visibility: visible !important;
}
