    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    body {
        background-color: #1a1a1a;
        color: #fff;
        font-family: 'Arial', sans-serif;
    }

    .ambientes--section {
        padding: 80px 20px;
        min-height: 0vh;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .ambientes--container {
        max-width: 1200px;
        margin: 0 auto;
        width: 100%;
    }

    .ambientes--header {
        text-align: center;
        margin-bottom: 60px;
    }

    .ambientes--title {
        font-size: 2.5rem;
        color: #f4c430;
        font-weight: 700;
        margin-bottom: 15px;
        letter-spacing: 1px;
    }

    .ambientes--subtitle {
        font-size: 1.2rem;
        color: #b0b0b0;
        max-width: 600px;
        margin: 0 auto;
        font-weight: 300;
    }

    /* DESKTOP: Card embaixo dos dois ambientes */
    .ambientes--grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 50px;
        align-items: start;
    }

    .compartilhada--card {
        grid-column: 1 / -1; /* Ocupa todas as colunas - fica embaixo */
        background: rgba(244, 196, 48, 0.1);
        border: 2px solid #f4c430;
        border-radius: 12px;
        padding: 30px 40px;
        text-align: center;
        margin-top: 20px;
        box-shadow: 0 8px 25px rgba(244, 196, 48, 0.15);
    }

    .ambiente--item {
        background: #2a2a2a;
        border-radius: 8px;
        overflow: hidden;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
        transition: all 0.3s ease;
        border: 1px solid #333;
        display: flex;
        flex-direction: column;
    }

    .ambiente--item:hover {
        transform: translateY(-5px);
        box-shadow: 0 12px 35px rgba(244, 196, 48, 0.1);
    }

    .ambiente--image-container {
        position: relative;
        width: 100%;
        height: 300px;
        overflow: hidden;
    }

    .ambiente--image {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

    .ambiente--content {
        padding: 25px;
        flex: 1;
        display: flex;
        flex-direction: column;
    }

    .ambiente--title-wrapper {
        text-align: center;
        margin-bottom: 20px;
        padding-bottom: 15px;
        border-bottom: 2px solid #f4c430;
    }

    .ambiente--name {
        color: #f4c430;
        font-size: 1.8rem;
        font-weight: 600;
        letter-spacing: 0.5px;
        margin: 0;
    }

    .ambiente--description {
        flex: 1;
    }

    .ambiente--features {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .ambiente--features li {
        padding: 8px 0;
        color: #e0e0e0;
        font-size: 1rem;
        line-height: 1.5;
        border-bottom: 1px solid #3a3a3a;
        position: relative;
        padding-left: 20px;
    }

    .ambiente--features li:last-child {
        border-bottom: none;
    }

    .ambiente--features li:before {
        content: "•";
        color: #f4c430;
        position: absolute;
        left: 0;
        font-size: 1.2rem;
    }

    .compartilhada--title {
        color: #f4c430;
        font-size: 1.6rem;
        font-weight: 700;
        margin-bottom: 15px;
        letter-spacing: 0.5px;
    }

    .compartilhada--text {
        color: #e0e0e0;
        font-size: 1.1rem;
        line-height: 1.6;
        margin: 0;
        max-width: 800px;
        margin: 0 auto;
    }

    .compartilhada--text strong {
        color: #f4c430;
        font-weight: 600;
    }

    /* MOBILE: Card entre os dois ambientes */
    @media (max-width: 768px) {
        .ambientes--section {
            padding: 60px 15px;
        }

        .ambientes--title {
            font-size: 2rem;
        }

        .ambientes--subtitle {
            font-size: 1.1rem;
        }

        .ambientes--grid {
            grid-template-columns: 1fr;
            gap: 30px;
            max-width: 600px;
            margin: 0 auto;
        }

        /* MOBILE: Remove o grid-column para o card ficar no fluxo normal */
        .compartilhada--card {
            grid-column: 1;
            margin-top: 0;
            order: 0; /* Reset da ordem */
        }

        /* MOBILE: Define a ordem específica para mobile */
        .ambiente-1 {
            order: 1; /* Primeiro ambiente */
        }

        .compartilhada--card {
            order: 2; /* Card no meio */
        }

        .ambiente-2 {
            order: 3; /* Segundo ambiente */
        }

        .ambiente--content {
            padding: 20px;
        }

        .ambiente--name {
            font-size: 1.6rem;
        }

        .compartilhada--card {
            padding: 25px 20px;
        }

        .compartilhada--title {
            font-size: 1.4rem;
        }

        .compartilhada--text {
            font-size: 1rem;
        }
    }

    @media (max-width: 480px) {
        .ambientes--title {
            font-size: 1.8rem;
        }

        .ambiente--content {
            padding: 15px;
        }

        .ambiente--name {
            font-size: 1.4rem;
        }
        
        .ambiente--image-container {
            height: 250px;
        }

        .ambiente--features li {
            font-size: 0.95rem;
            padding: 6px 0 6px 18px;
        }

        .compartilhada--card {
            padding: 20px 15px;
        }

        .compartilhada--title {
            font-size: 1.3rem;
        }

        .compartilhada--text {
            font-size: 0.95rem;
        }
    }