/* Paleta baseada no estilo do Plaza */
:root {
    --plaza-green: #00994d;      /* cor de destaque */
    --plaza-dark: #222222;       /* textos principais */
    --plaza-muted: #666666;      /* textos secundários */
    --plaza-bg: #001b24;         /* fundo suave da seção */
}

/* Seção "Como chegar" / Experiência */
.new-section {
    position: relative;
    width: 100%;
    padding: 80px 7%;
    background-color: var(--plaza-bg);
    overflow: hidden; /* para os dividers */
    display: flex;
    justify-content: center;
}

/* Card central, estilo site de shopping */
.new-section .content-container {
    position: relative;
    z-index: 10;
    max-width: 1200px;
    width: 100%;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;

    background-color: #ffffff;
    border-radius: 24px;
    padding: 48px 40px;

    box-shadow: 0 18px 55px rgba(0, 0, 0, 0.10);
}

/* Texto à esquerda, alinhado e elegante */
.new-section .text-container {
    flex: 1.2;
    text-align: left;
}

.new-section .text-container h1 {
    font-size: 2.2rem;
    line-height: 1.3;
    font-weight: 600;
    color: var(--plaza-dark);
    margin-bottom: 16px;
}

.new-section .text-container p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--plaza-muted);
    margin-bottom: 28px;
}

/* Botão com cara de CTA de shopping */
.new-section .text-container .cta-button {
    display: inline-block;
    padding: 12px 32px;
    border-radius: 999px;
    border: none;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    text-decoration: none;

    background: linear-gradient(90deg, var(--plaza-green), #00b86a);
    color: #ffffff;

    box-shadow: 0 8px 20px rgba(0, 153, 77, 0.35);
    transition: all 0.25s ease;
}

.new-section .text-container .cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 26px rgba(0, 153, 77, 0.45);
}

/* Imagem à direita, grande e bem acabada */
.new-section .image-container {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.new-section .image-container img {
    width: 100%;
    max-width: 430px;
    border-radius: 22px;
    object-fit: cover;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.18);
}

/* Shape dividers em cima e embaixo (transição suave) */
.custom-shape-divider-bottom {
    position: absolute;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    z-index: 1;
}

.custom-shape-divider-bottom {
    bottom: 0;
    transform: rotate(180deg) translateY(-1px);
}

.custom-shape-divider-bottom svg {
    display: block;
    width: calc(100% + 1.3px);
    height: 70px;
}

/* A cor deve acompanhar a seção anterior/seguinte (geralmente branco) */
.custom-shape-divider-bottom .shape-fill {
    fill: #ffffff;
}

/* RESPONSIVO */
@media (max-width: 992px) {
    .new-section {
        padding: 60px 4%;
    }

    .new-section .content-container {
        flex-direction: column-reverse; /* texto vem antes, imagem depois */
        align-items: flex-start;
        padding: 32px 24px;
        gap: 24px;
    }

    .new-section .text-container {
        text-align: left;
        width: 100%;
    }

    .new-section .text-container h1 {
        font-size: 1.9rem;
    }

    .new-section .image-container {
        width: 100%;
        justify-content: center;
    }

    .new-section .image-container img {
        max-width: 100%;
    }
}

@media (max-width: 576px) {
    .new-section {
        padding: 40px 4%;
    }

    .new-section .content-container {
        padding: 24px 18px;
    }

    .new-section .text-container h1 {
        font-size: 1.6rem;
    }

    .new-section .text-container p {
        font-size: 0.95rem;
    }

    .new-section .text-container .cta-button {
        width: 100%;
        text-align: center;
    }
}
