body {
    background-color: white;
}

.orvex-titulo-container {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 80px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 63px 20px 20px;
    font-family: 'Segoe UI', sans-serif;
    flex-wrap: wrap;
    text-align: left;
}

.orvex-titulo-etiqueta {
    font-size: 12px;
    color: #003d62;
    font-weight: 500;
    text-transform: uppercase;
    margin-top: 8px;
    white-space: nowrap;
    flex-shrink: 0;
}

.orvex-titulo-textos {
    max-width: 700px;
}

.orvex-titulo-principal {
    font-size: 37px;
    font-weight: 600;
    color: #002b5c;
    margin: 0 0 10px;
    line-height: 1.2;
}

.orvex-titulo-logotipo {
    color: #003d62;
    font-weight: 700;
}

.orvex-titulo-descripcion {
    font-size: 14px;
    color: #555;
    margin: 0;
    line-height: 1.4;
}

.orvex-titulo-aviso {
    color: #003d62;
    font-weight: 500;
    margin-left: 4px;
}

@media (max-width: 768px) {
    .orvex-titulo-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 20px;
    }

    .orvex-titulo-textos {
        max-width: 100%;
    }

    .orvex-titulo-etiqueta {
        margin-top: 0;
    }
}

.orvex-formulario-wrapper {
    max-width: 610px;
    margin: 0 auto;
    padding: 10px 16px 0px;
    font-family: 'Segoe UI', sans-serif;
}

.orvex-formulario {
    width: 100%;
}

.orvex-form-row {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
}

.orvex-form-group {
    display: flex;
    flex-direction: column;
}

.orvex-form-group.full {
    flex: 1 1 100%;
}

.orvex-form-group.half {
    flex: 1 1 calc(50% - 10px);
}

.orvex-form-group label {
    font-size: 15px;
    font-weight: 600;
    color: #002b5c;
    margin-bottom: 6px;
}

.orvex-form-group select,
.orvex-form-group input {
    padding-right: 30px;
    padding: 8px 10px;
    font-size: 14px;
    border: 1px solid #003d62;
    border-radius: 6px;
    background-color: #fff;
}

.orvex-form-group.third {
    flex: 1 1 calc(33.333% - 13.33px);
}

@media (max-width: 768px) {
    .orvex-form-group.third {
        flex: 1 1 100%;
    }
}

.orvex-form-boton {
    text-align: center;
    padding: 30px;
}

.orvex-btn-icon {
    display: inline-block;
    background: #fff;
    color: #002b5c;
    font-size: 13px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    text-align: center;
    line-height: 22px;
    font-weight: bold;
}

.orvex-img-left,
.orvex-img-right {
    position: absolute;
    width: 64px;
    height: auto;
    z-index: 1;
}

.orvex-img-left {
    left: calc(45% - 399px);
    top: 928px;
    width: 6%;
}

.orvex-img-right {
    top: 1431px;
    right: calc(45% - 410px);
    bottom: 100px;
    width: 6%;
}

@media (max-width: 768px) {
    .orvex-img-left,
    .orvex-img-right {
        display: none;
    }
}

.form-control, form select {
    height: auto;
}

input.is-invalid,
select.is-invalid {
    border-color: red;
}

select:focus,
select:focus-visible,
input:focus,
input:focus-visible {
    outline: none;
    box-shadow: none;
    border-color: #003d62;
}

.mb-16 {
    margin-top: 19px;
}

.orvex-form-group.empresa {
    flex: 2;
    min-width: 250px;
}

.orvex-form-group.ruc {
    flex: 1;
    min-width: 150px;
}

@media (max-width: 768px) {
    .orvex-form-group.empresa,
    .orvex-form-group.ruc {
        flex: 1 1 100%;
    }
}

.orvex-form-group.full textarea {
    width: 100%;
    height: 150px;
    padding: 12px;
    border: 1px solid #003d62;
    border-radius: 8px;
    resize: none;
    font-size: 15px;
    font-family: inherit;
    box-sizing: border-box;
}

.orvex-form-group.full textarea:focus {
    border-color: #003d62;
    outline: none;
}

.pbmit-main-header-area {
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.pbmit-main-header-area.scrolled {
    position: fixed;
    background-color: #003d62;
    box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}

@media (min-width: 1200px) {
    .pbmit-main-header-area.scrolled .site-navigation {
        background-color: transparent !important;
        border-radius: 0 !important;
        box-shadow: none !important;
    }
}


.custom-dropdown {
    position: relative;
    display: inline-block;
    font-family: Arial, sans-serif;
}

.custom-dropdown-toggle {
    color: white;
    cursor: pointer;
    padding: 8px 16px;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 9px;
}

.custom-dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    background: white;
    border-radius: 8px;
    padding: 12px 0px;
    list-style: none;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    z-index: 10;
    min-width: 200px;
    overflow: hidden;
    }


.custom-dropdown-menu li {
    color: #2f3a4b;
    font-weight: 500;
    cursor: pointer;
}

.custom-dropdown:hover .custom-dropdown-menu {
    display: block;
}

.custom-dropdown-menu::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 4px;
    width: 100%;
    background-color: #1c3e73;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.custom-option {
    position: relative;
    padding: 10px 20px 10px 20px;
    transition: padding-left 0.3s ease;
    cursor: pointer;
}

.custom-option::before {
    content: "–";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0;
    transition: opacity 0.3s ease;
    color: #1c3e73;
    font-weight: bold;
}

.custom-option:hover {
    padding-left: 35px;
}

.custom-option:hover::before {
    opacity: 1;
    left: 15px;
}


@media (max-width: 991px) {
    .custom-dropdown {
        position: relative;
        margin-left: auto;
        margin-right: auto;
        transform: translateX(-25%);
    }
}

