/* Unete Familia Popup Styles */

#unete-familia-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    /* Semi-transparent black overlay */
    z-index: 9999;
    display: none;
    justify-content: center;
    align-items: center;
    opacity: 0;
}

#unete-familia-overlay.show {
    opacity: 1;
}

.unete-popup-wrapper {
    background-color: #C0A98E;
    /* Approximate beige color */
    width: 500px;
    height: 650px;
    max-width: 90%;
    /* border-radius: 8px; Removed rounded corners */
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.unete-popup-content {
    display: flex;
    flex-direction: column;
    height: 100%;
    width: 100%;
}

.unete-header {
    padding: 20px 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.unete-logo {
    height: 30px;
    /* Adjust as needed */
    width: auto;
}

.unete-close-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    background: transparent;
    border: 1px solid #000;
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    padding: 0;
}

.unete-close-btn:hover {
    background-color: rgba(0, 0, 0, 0.1);
}

.unete-body {
    padding: 20px 40px;
    text-align: center;
    font-family: 'Inter', sans-serif;
    color: #333;
}

.unete-title {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.unete-description {
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 25px;
}

/* Contact Form 7 Override Styles to Match Design */
.unete-form-container .wpcf7-form-control-wrap {
    display: block;
    margin-bottom: 10px;
}

.unete-form-container input[type="text"],
.unete-form-container input[type="email"],
.unete-form-container input[type="tel"] {
    width: 100%;
    padding: 12px;
    border: 1px solid #fff;
    background-color: #fff;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    margin-bottom: 10px;
}

.unete-form-container input::placeholder {
    color: #999;
}

.unete-form-container input[type="submit"] {
    width: 100%;
    background-color: #1a1a1a;
    /* Dark button */
    color: #fff;
    border: none;
    padding: 15px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    text-transform: uppercase;
    transition: background-color 0.3s;
    margin-top: 10px;
}

.unete-form-container input[type="submit"]:hover {
    background-color: #333;
}

.unete-form-container .wpcf7-list-item {
    margin: 0;
}

.unete-footer-images {
    display: flex;
    width: 100%;
    height: 200px;
    /* Specific height for images */
    margin-top: auto;
}

.unete-image-left {
    width: 65%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.unete-image-right {
    width: 35%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Responsive adjustments */
@media (max-width: 600px) {
    .unete-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .unete-logo {
        margin-bottom: 10px;
    }

    .unete-body {
        padding: 20px;
    }

    .unete-title {
        font-size: 24px;
    }

    .unete-footer-images {
        height: 150px;
    }
}