.text-white {
    color: white;
}

.newsletter-home-section {
    font-family: 'Referente Regular', sans-serif;
    background-color: #002533;
    color: white;
}

.region-por .newsletter-home-section {
    background-color: #003304;
}

.newsletter-home-section h2 {
    font-size: 48px;
    line-height: 1.1;
    font-weight: 500;
}

.newsletter-home-section .newsletter-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px 40px;
}

@media (max-width: 768px) {
    .newsletter-home-section .newsletter-grid {
        grid-template-columns: 1fr;
    }
}

.newsletter-item-container {
    display: flex;
    align-items: flex-start;
    cursor: pointer;
    position: relative;
    padding-left: 35px;
    user-select: none;
}

.newsletter-item-container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.newsletter-item-container .checkmark-newsletter {
    position: absolute;
    top: 4px;
    left: 0;
    height: 20px;
    width: 20px;
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    transition: all 0.2s;
}

.newsletter-item-container:hover input~.checkmark-newsletter {
    border-color: #fff;
}

.newsletter-item-container input:checked~.checkmark-newsletter {
    background-color: #00719e;
    border-color: #00719e;
}

.region-por .newsletter-item-container input:checked~.checkmark-newsletter {
    background-color: #2e8e00;
    border-color: #2e8e00;
}

.newsletter-item-container .checkmark-newsletter:after {
    content: "";
    position: absolute;
    display: none;
}

.newsletter-item-container input:checked~.checkmark-newsletter:after {
    display: block;
}

.newsletter-item-container .checkmark-newsletter:after {
    left: 6px;
    top: 2px;
    width: 6px;
    height: 11px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.newsletter-info h4 {
    margin-bottom: 4px;
    font-size: 18px;
}

.newsletter-info p {
    font-size: 14px;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.7);
}

.form-control-line {
    background: transparent !important;
    border: none !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.5) !important;
    border-radius: 0 !important;
    color: white !important;
    padding: 10px 0 !important;
    width: 100%;
}

.form-control-line:focus {
    border-bottom-color: #00719e !important;
    outline: none !important;
}

.region-por .form-control-line:focus {
    border-bottom-color: #2e8e00 !important;
}

.form-control-line::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.btn-primary-refer {
    background-color: #00719e;
    color: white;
    border: none;
    padding: 12px 24px;
    font-weight: 500;
    transition: all 0.2s;
    cursor: pointer;
}

.region-por .btn-primary-refer {
    background-color: #2e8e00;
}

.btn-primary-refer:hover {
    background-color: #005a7e;
}

.region-por .btn-primary-refer:hover {
    background-color: #286909;
}

.newsletter-subscription-box {
    padding-left: 40px;
}

@media (max-width: 991px) {
    .newsletter-subscription-box {
        padding-left: 0;
        border-left: none;
        margin-top: 40px;
        padding-top: 40px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }
}