/* ========================================
   CONNECTYOU
======================================== */

.connectyou {
    position: relative;
    width: 100%;
    min-height: 100vh;

    display: flex;
    align-items: center;
    justify-content: center;

    overflow: hidden;

    background-image: url("../assets/images/connectyou-map.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* overlay escuro */

.connectyou-overlay {
    position: absolute;
    inset: 0;

    background:
        radial-gradient(
            circle at center,
            rgba(0, 0, 0, 0.15) 0%,
            rgba(0, 0, 0, 0.45) 100%
        );
}

.connectyou-content {
    position: relative;
    z-index: 2;

    text-align: center;

    max-width: 1200px;
    margin: 0 auto;
}

/* título gigante */

.connectyou h2 {
    color: #ffffff;

    font-size: clamp(3rem, 7vw, 6rem);
    line-height: 0.95;
    font-weight: 700;

    letter-spacing: 1px;

    margin-bottom: 40px;
}

.connectyou h2 span {
    display: block;
}

/* box do texto */

.connectyou-box {
    max-width: 960px;

    margin: 0 auto;

    padding: 30px 40px;

    background: rgba(8, 18, 40, 0.65);

    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);

}

.connectyou-box p {
    color: rgba(255, 255, 255, 0.9);

    font-size: 1rem;
    line-height: 1.8;
    font-weight: 400;
}

/* ========================================
   RESPONSIVO
======================================== */

@media (max-width: 768px) {

    .connectyou {
        min-height: 600px;
    }

    .connectyou h2 {
        line-height: 1;
        margin-bottom: 25px;
    }

    .connectyou-box {
        padding: 24px;
    }

    .connectyou-box p {
        font-size: 0.95rem;
        line-height: 1.7;
    }

}