body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    font-family: 'Poppins', sans-serif;
    width: 100%;
}

.illustrative {
    position: relative;
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;

    background-image: url("/assets/images/contato-imagem.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    background-attachment: fixed;

    overflow: hidden;

    .illustrative-title {
        position: relative;
        z-index: 2;
        color: var(--primary-text-color);
        font-size: 80px;
        font-weight: 600;

        width: 100%;
        max-width: 1200px;

        margin: 0 auto;
        padding-left: 10vw;

        text-align: left;
    }
}

.illustrative-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 1;
}

.container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;

    .container-header {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;

        padding-top: 16px;
        padding-bottom: 16px;

        width: 100%;
        background: var(--secondary-color);

        span {
            font-size: 48px;
            font-weight: 600;
            color: var(--primary-text-color);
            text-align: center;
        }
    }

    .container-body {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        box-sizing: border-box;

        width: 100%;

        padding-left: 16px;
        padding-right: 16px;
        padding-bottom: 32px;

        .container-title {
            padding-top: 32px;

            span {
                font-size: 36px;
                font-weight: 600;
                color: var(--overlay-text-color);
            }
        }

        .container-container {
            display: flex;
            justify-content: center;
            align-items: center;
            flex-direction: row;
    
            padding-top: 16px;
            padding-bottom: 16px;

            gap: 40px;
    
            .card {
                display: flex;
                justify-content: center;
                align-items: center;
                flex-direction: column;
    
                border-radius: 8px;

                box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);

                width: 300px;
                height: 400px;
                overflow: hidden; 
    
                .card-header {
                    display: flex;
                    justify-content: center;
                    align-items: center;

                    width: 100%;

                    .card-icon {
                        font-size: 100px;
                        color: #9369e0;
                    }
                }
    
                .card-body {
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    flex-direction: column;

                    padding: 16px;

                    color: var(--overlay-text-color);

                    .card-title {
                        width: 100%;
                        font-size: 26px;
                        font-weight: 500;
                        text-align: center;
                    }

                    .card-description {
                        text-align: center;
                    }

                    .button-card {
                        padding: 14px 32px;
                        font-size: 16px;
                        font-weight: 100;
                        border: none;
                        border-radius: 8px;
                        cursor: pointer;
                        background: #9369e0;
                        color: #fff;
                        transition: transform 0.3s ease;
                    }

                    .button-card:hover {
                        transform: scale(1.05);
                    }
                }
            }
        }
    }
}

.map-container {
    padding-bottom: 32px;
    width: 100%;
    max-width: 1200px;
    height: 550px;
    overflow: hidden;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

@media (max-width: 768px) {
    .container-container {
        flex-direction: column !important;
    }
}