/*  ver de 00ff00
    azu de 002244
    GRIS DE 002337*/

.id-contact {
    padding: 90px 15px;
    background: #ffffff;
}

.id-contact .container {
    max-width: 1170px;
    margin: 0 auto;
}

.id-contact__box {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    overflow: hidden;
    background: #ffffff;
    border-radius: 18px;
    box-shadow: 0 25px 65px rgba(0, 0, 0, 0.38);
}

.id-contact__content {
    padding: 65px 60px;
}

.id-contact__eyebrow {
    display: block;
    margin-bottom: 12px;
    color: #666666;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.id-contact__content h2 {
    margin: 0 0 18px;
    color: #002244;
    font-size: 44px;
    font-weight: 800;
    line-height: 1.15;
}

.id-contact__content > p {
    max-width: 580px;
    margin: 0 0 35px;
    color: #666666;
    font-size: 16px;
    line-height: 1.8;
}

.id-contact__items {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.id-contact__item {
    display: flex;
    align-items: center;
    gap: 17px;
    padding: 16px 18px;
    color: #222222;
    text-decoration: none;
    border: 1px solid #ececec;
    border-radius: 10px;
    transition: 0.25s ease;
}

a.id-contact__item:hover {
    color: #222222;
    border-color: #00ff00;
    transform: translateX(4px);
}

.id-contact__icon {
    display: flex;
    flex: 0 0 48px;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    color: #00ff00;
    background: #002244;
    border-radius: 9px;
}

.id-contact__item small {
    display: block;
    margin-bottom: 2px;
    color: #999999;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.id-contact__item strong {
    color: #002244;
    font-size: 15px;
    line-height: 1.5;
}

.id-contact__whatsapp {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 55px 42px;
    color: #ffffff;
    text-align: center;
    background:
        linear-gradient(rgba(0, 34, 68, 0.93), rgba(0, 34, 68, 0.97)),
        url("assets/images/backgrounds/contact-bg.jpg") center / cover no-repeat;
}

.id-contact__whatsapp-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 86px;
    height: 86px;
    margin-bottom: 22px;
    color: #ffffff;
    font-size: 45px;
    background: #25d366;
    border-radius: 50%;
    box-shadow: 0 12px 28px rgba(37, 211, 102, 0.3);
}

.id-contact__whatsapp-label {
    margin-bottom: 8px;
    color: #00ff00;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.8px;
    text-transform: uppercase;
}

.id-contact__whatsapp h3 {
    margin: 0 0 15px;
    color: #ffffff;
    font-size: 31px;
    font-weight: 800;
}

.id-contact__whatsapp p {
    max-width: 330px;
    margin: 0 0 25px;
    color: #cfcfcf;
    font-size: 15px;
    line-height: 1.7;
}

.id-contact__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 14px 25px;
    color: #ffffff;
    font-weight: 800;
    text-decoration: none;
    background: #25d366;
    border-radius: 7px;
    transition: 0.25s ease;
}

.id-contact__button:hover {
    color: #ffffff;
    background: #1ebe5b;
    transform: translateY(-3px);
}

.id-contact__number {
    margin-top: 16px;
    color: #ffffff;
    font-size: 15px;
}

@media (max-width: 900px) {
    .id-contact__box {
        grid-template-columns: 1fr;
    }

    .id-contact__content {
        padding: 48px 35px;
    }

    .id-contact__content h2 {
        font-size: 36px;
    }
}

@media (max-width: 520px) {
    .id-contact {
        padding: 50px 12px;
    }

    .id-contact__box {
        border-radius: 12px;
    }

    .id-contact__content,
    .id-contact__whatsapp {
        padding: 40px 22px;
    }

    .id-contact__content h2 {
        font-size: 30px;
    }

    .id-contact__item {
        align-items: flex-start;
        padding: 14px;
    }

    .id-contact__item strong {
        font-size: 14px;
        overflow-wrap: anywhere;
    }
}