* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.4;
}

.c-p {
    color: #00598B;
}

.c-b {
    color: #ffffff;
}
body,
a,
button,
input,
.btn,
.sf-link,
.sf-btn-primary,
.sf-btn-primary-movile {
    font-family: 'Poppins', sans-serif !important;
}

button:focus,
.btn:focus,
input:focus,
.form-control:focus {
    box-shadow: none !important;
    border-color: transparent;
    outline: none !important;
}
.dp-country{
    width: 46% !important;
}
.b-p {
    background-color: #00598B;
}

.b-s {
    background-color: #0084DD;
}

.c-s {
    color: #0084DD;
}

.register-modal__location-btn {
    width: 100%;
    padding: 10px;
    margin-bottom: 12px;
    background: transparent;
    border: 1px dashed #aaa;
    border-radius: 6px;
    color: #555;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.2s;
}

.register-modal__location-btn:hover {
    border-color: #007bff;
    color: #007bff;
}

/*===================
    HEADER
====================*/
.sf-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 24px;
    background: #fff;
    border-bottom: 1px solid #e5e7eb;
}

.sf-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    font-size: 20px;
    color: #1e3a8a;
}

.sf-logo img{
    width: 200px;
}

.sf-header-right {
    display: flex;
    align-items: center;
    gap: 16px;
}

.sf-link {
    font-size: 14px;
    font-weight: 500;
    color: #1f2937;
    text-decoration: none;
    white-space: nowrap;
}

.sf-link:hover {
    text-decoration: underline;
}

.sf-btn-primary {
    background: #007ddc;
    color: #fff;
    border: none;
    font-family: 'Poppins';
    border-radius: 5px;
    padding: 12px 20px;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    white-space: nowrap;
}
.sf-btn-primary-movile {
    display: none;
}
.sf-link-movile{
    display: none;
}
.header-menu-trigger {
    display: flex;
    align-items: center;
    gap: 10px;
    border: 1px solid #afafaf;
    border-radius: 999px;
    padding: 11px 15px;
    background: #fff;
    transition: background-color 0.15s ease;
}

.header-menu-trigger:hover {
    background-color: #f9fafb;
}

.header-menu-trigger .sf-icon-bars {
    width: 18px;
    height: 14px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.header-menu-trigger .sf-icon-bars span {
    display: block;
    height: 3px;
    width: 88%;
    background-color: #374151;
    border-radius: 15px;
}

.header-menu-trigger .sf-avatar {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #777777;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-menu-trigger .sf-avatar svg {
    width: 20px;
    height: 20px;
    fill: #ffffff;
}
.sf-avatar img{
    width: 30px;
}
.sf-avatar-lg img {
    width: 36px;
    border-radius: 50%;
}
/* ===== Overlay + Drawer ===== */
.sf-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(0 0 0 / 11%);
    z-index: 1050;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.sf-menu-overlay.is-open {
    opacity: 1;
    visibility: visible;
}

.sf-menu-drawer {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    width: 85%;
    max-width: 415px;
    background: #fff;
    box-sizing: border-box;
    padding: 16px 20px 32px;
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform 0.3s ease;
}

.sf-menu-overlay.is-open .sf-menu-drawer {
    transform: translateX(0);
}

.sf-menu-close {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 12px;
}

.sf-menu-close button {
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    line-height: 0;
}

.sf-menu-close svg {
    width: 22px;
    height: 22px;
    fill: #1f2937;
}

/* Login row */
.sf-menu-login-content{
    padding: 10px 0;
}
.padding-top-login{
    border-top: 1px solid #e5e7eb;
}

.sf-menu-login {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #232323;
    text-decoration: none;
    padding: 8px 4px 8px;
}

.sf-menu-login .sf-avatar-lg {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #777777;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.sf-menu-login .sf-avatar-lg svg {
    width: 25px;
    height: 25px;
    fill: #ffffff;
}

.sf-menu-login span {
    font-size: 1.125rem;
    font-weight: 600;
}

.sf-menu-quicklink {
    display: block;
    font-size: 16px;
    color: #0776b4;
    font-weight: 500;
    text-decoration: none;
    padding: 12px 4px;
    border-bottom: 1px solid #e5e7eb;
}

.sf-menu-quicklink:last-of-type {
    margin-bottom: 8px;
}

.sf-menu-title {
    font-size: 20px;
    font-weight: 700;
    padding: 12px 4px 8px;
}

.sf-menu-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 4px;
    border-bottom: 1px solid #e5e7eb;
    text-decoration: none;
    color: #1f2937;
    font-size: 16px;
    cursor: pointer;
}
.sf-menu-login:hover{
    background-color: #e6f2ff;
}
.sf-menu-quicklink:hover{
    background-color: #e6f2ff;
}
.sf-menu-item:hover {
    background-color: #e6f2ff;
}

.sf-menu-item svg {
    width: 16px;
    height: 16px;
    fill: #2196F3;
    flex-shrink: 0;
}

/*==============
    FOOTER
================*/

.footer {
    width: 100%;
    background: #000;
    color: #fff;
    padding: 70px 7% 30px;
}

.footer-container {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 60px;
}

.footer-about img {
    width: 230px;
    margin-bottom: 25px;
}

.footer-about p {
    color: #f1f1f1;
    line-height: 1.9;
    font-size: 18px;
    max-width: 370px;
    font-weight: 500;
    text-align: justify;
}

.footer-links h3,
.footer-contact h3 {
    font-size: 20px;
    margin-bottom: 30px;
    position: relative;
    color: white;
    font-weight: 500;
    line-height: 1.4;
}

.footer-links h3::after,
.footer-contact h3::after {
    content: "";
    width: 130px;
    height: 2px;
    background: #8f8f8f;
    position: absolute;
    left: 0;
    bottom: -12px;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links ul li {
    border-bottom: 1px solid #3a3a3a;
    padding: 15px 0;
}

.footer-links ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 17px;
    font-weight: 500;
    transition: 0.3s ease;
}

.footer-links ul li a:hover {
    color: #bdbdbd;
    padding-left: 5px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    border-bottom: 1px solid #3a3a3a;
    padding: 18px 0;
}

.contact-item span {
    font-size: 20px;
}

.contact-item p {
    font-size: 17px;
    margin: 0;
    font-weight: 500;
    color: white;
}

.contact-item img {
    width: 29px;
}

.footer-bottom {
    border-top: 1px solid #3a3a3a;
    margin-top: 80px;
    padding-top: 25px;

    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.footer-bottom p {
    color: #bdbdbd;
    font-size: 16px;
}

.socials {
    display: flex;
    gap: 25px;
}

.socials a {
    color: #bdbdbd;
    font-size: 34px;
    transition: 0.3s ease;
}

.socials a:hover {
    color: #fff;
    transform: translateY(-3px);
}

/*===========================
    MODAL - CONTACTANOS
============================*/
.contactanos-section {
    width: 100%;
    min-height: 100vh;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    padding: 40px 20px;
}

.contactanos-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contactanos-dark {
    position: absolute;
    inset: 0;
    background: rgb(0 0 0 / 70%);

    z-index: 1;
}

.contactanos-modal {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 580px;
    background: #f4f4f4;
    border-radius: 38px;
    padding: 35px 40px;
    box-sizing: border-box;
}

.contactanos-modal h2 {
    font-size: 35px;
    font-weight: 600;
    text-align: center;

    margin-bottom: 12px;
}

.contactanos-text {
    font-size: 18px;
    line-height: 1.35;
    text-align: center;
    max-width: 420px;
    margin: 0 auto 20px;
}

.contactanos-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contactanos-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.contactanos-group label {
    font-size: 17px;
    font-weight: 500;
}

.contactanos-group input,
.contactanos-group textarea {
    width: 100%;
    border: none;
    outline: none;
    background: #e8e8e8;
    border-radius: 14px;
    padding: 16px 18px;
    font-size: 17px;
    box-sizing: border-box;
}

.contactanos-group textarea {
    min-height: 100px;
    resize: none;
}

.iti {
    width: 100%;
}

.contactanos-input-phone {
    height: 58px;
    padding-left: 90px !important;
}

.contactanos-button {
    width: fit-content;
    margin: 10px auto 0;
    border: none;
    background: #0d86df;
    color: white;
    padding: 10px 30px;
    border-radius: 18px;
    font-size: 22px;
    font-weight: 700;
    cursor: pointer;
}

ul {
    margin: 0 0;
}

/*=========================
    MODAL - LOGIN
==========================*/
.login-modal-overlay {
    width: 100%;
    min-height: 100vh;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    padding: 40px 20px;
}

.login-modal {
    width: 100%;
    max-width: 500px;
    background: #fff;
    border-radius: 32px;
    padding: 30px 30px;
    z-index: 2;
    box-sizing: border-box;
}

.login-modal__title {
    text-align: center;
    color: #0076d6;
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 20px;
}

.login-modal__form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.login-modal__input {
    width: 100% !important;
    height: 50px !important;
    border: none !important;
    outline: none;
    background: #efefef !important;
    font-family: 'Poppins';
    border-radius: 14px !important;
    padding: 0 25px;
    font-size: 18px;
}

.login-modal__options {
    display: flex;
    justify-content: space-between;
    align-items: center;

    margin-top: 5px;
}

.login-modal__remember {
    display: flex;
    align-items: center;
    gap: 8px;

    font-size: 16px;
}

.login-modal__forgot {
    color: #000;
    text-decoration: none;

    font-size: 16px;
}

.o-separe {
    font-size: 15px;
}


.login-modal__button {
    width: 100%;
    height: 60px;

    border: none;
    cursor: pointer;

    background: #007ddc;
    color: white;

    border-radius: 14px;

    font-size: 22px;
    font-weight: 600;

    margin-top: 20px;
}

.login-modal__divider {
    text-align: center;

    margin: 20px 0;

    font-size: 22px;
}

.login-modal__social {
    display: flex;
    justify-content: center;
    gap: 20px;

    margin-bottom: 30px;
}

.login-modal__social-btn {
    width: 70px;
    height: 75px;

    background: #f0f0f0;

    border-radius: 12px;

    display: flex;
    align-items: center;
    justify-content: center;
}

.login-modal__social-btn img {
    width: 53px;
}

.login-modal__register {
    text-align: center;

    font-size: 18px;
}

.login-modal__register a {
    color: #0076d6;
    font-weight: 600;
    text-decoration: none;
}

/*===========================
    MODAL - REGISTRO
============================*/

.register-modal-overlay {
    width: 100%;
    min-height: 100vh;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    padding: 40px 20px;
}


.register-modal {
    width: 100%;
    max-width: 600px;
    background: #fff;
    z-index: 2;
    border-radius: 40px;
    padding: 35px 55px 45px;
    box-sizing: border-box;
}

.register-modal__title {
    text-align: center;
    color: #0B7AE5;
    font-size: 45px;
    font-weight: 700;
    margin-bottom: 30px;
}

.register-modal__subtitle {
    text-align: center;
    font-size: 20px;
    margin-bottom: 35px;
}

.register-modal__subtitle a {
    color: #0B7AE5;
    text-decoration: none;
}

.iti {
    width: 100%;
}

.iti input {
    width: 100%;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 12px 16px 12px 52px;
    font-size: 0.95rem;
    outline: none;
}

.iti__flag-container {
    z-index: 10;
}

.register-modal__form {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.register-modal__input {
    width: 100% !important;
    height: 60px !important;
    border: none !important;
    outline: none;
    background: #ECECEC !important;
    border-radius: 16px !important;
    padding: 0 25px !important;
    font-size: 17px !important;
    font-weight: 500;
    font-family: 'Poppins';
}

.register-modal__password {
    position: relative;
}

.register-modal__toggle-password {
    position: absolute;

    right: 20px;
    top: 50%;

    transform: translateY(-50%);

    border: none;
    background: transparent;

    cursor: pointer;

    color: #bfbfbf;
    font-size: 22px;
}

.register-modal__checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 15px;
    color: #4b4b4b;
    cursor: pointer;
}

.register-modal__checkbox input {
    margin-top: 3px;
}

.register-modal__button {
    width: 100%;
    height: 60px;
    border: none;
    background: #0B7AE5;
    color: #fff;
    border-radius: 14px;
    font-size: 25px;
    font-weight: 600;
    cursor: pointer;
    margin-top: 10px;
}

.register-modal__terms {
    max-width: 450px;
    margin: 35px auto 0;
    text-align: center;
    font-size: 15px;
    line-height: 1.4;
    color: #555;
}

@media (max-width: 992px) {
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: #fff;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        padding: 75px 30px;
        gap: 20px;
        transition: .4s ease;
        z-index: 999;
    }

    .nav-menu.active {
        right: 0;
    }

    .dashboard-links {
        gap: 20px;
    }

    .dashboard-links a {
        font-size: 15px;
    }

    .footer-container {
        grid-template-columns: 1fr 1fr;
    }

}

@media(max-width:768px) {
    .top-header {
        padding: 0 20px;
    }

    .items {
        display: none;
    }

    .logo img {
        width: 180px;
    }

    .bottom-header {
        padding: 0 20px;
        justify-content: right;
    }

    .dashboard-links {
        display: none;
    }

    .footer {
        padding: 60px 6% 30px;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .footer-about img {
        width: 200px;
    }

    .footer-about p {
        font-size: 16px;
        max-width: 100%;
    }

    .footer-links h3,
    .footer-contact h3 {
        font-size: 18px;
    }

    .footer-links ul li a,
    .contact-item p {
        font-size: 16px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .socials a {
        font-size: 30px;
    }
    .sf-btn-primary{
        display: none;
    }
    .sf-link{
        display: none;
    }
    .sf-btn-primary-movile {
        display: flex;
        background: #0776b4;
        color: #fff;
        border: none;
        font-family: 'Poppins';
        border-radius: 8px;
        padding: 12px 20px;
        font-size: 15px;
        font-weight: 500;
        cursor: pointer;
        margin-top: 20px;
        white-space: nowrap;
    }
    .sf-link-movile {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 14px 4px;
        border-bottom: 1px solid #e5e7eb;
        text-decoration: none;
        color: #1f2937;
        font-size: 16px;
        cursor: pointer;
    }
}


@media (max-width: 576px) {

    .login-modal {
        width: calc(100% - 30px);
        padding: 35px 20px;
    }

    .login-modal__title {
        font-size: 34px;
    }

    .login-modal__options {
        flex-direction: column;
        gap: 12px;
    }

    .login-modal__button {
        font-size: 18px;
    }

    .register-modal {
        padding: 35px 35px 45px;
    }

    .register-modal__title {
        font-size: 40px;
    }

    .register-modal__input {
        height: 48px;
        font-size: 17px;
    }

    .register-modal__button {
        height: 50px;
        font-size: 20px;
    }
}

@media(max-width:480px) {
    .register-modal__title {
        font-size: 35px;
    }

    .register-modal__subtitle {
        font-size: 15px;
    }
}

@media(max-width: 376px) {
    .login-modal-overlay {
        padding: 40px 5px;
    }

    .contactanos-modal {
        padding: 30px 20px;
    }

    .contactanos-modal h2 {
        font-size: 30px;
    }

    .contactanos-text {
        font-size: 15px;
    }
}

@media(max-width: 320px) {
    .register-modal {
        padding: 25px 20px 45px;
    }

    .login-modal__title {
        font-size: 30px;
    }
}
