.logo_header {
    width: 240; /* Ajusta según el tamaño del logo en el PDF */
}
.logo-blanco {
    filter: invert(100%) brightness(200%) contrast(200%);
    /* O alguna otra combinación de filtros */
}
.imagen-responsive {
    width: 75%;
    height: auto; /* Mantener la proporción */
}
.aspect-ratio-2-1 {
    aspect-ratio: 2 / 1; /* Ancho es el doble de alto */
}
.flip-bg-x {
    transform: scaleX(-1);
}
.flip-bg-x-reverse {
    transform: scaleX(-1); /* La misma transformación para revertirla */
}

.navbar-item {    
    padding: 0px 15px;
}

/* Clases para el Formulario */
.section-formulario {
    background: linear-gradient(135deg, #1e3a5f 0%, #2d5a4a 50%, #47b173 100%);
    min-height: 100vh;
    padding: 0;
}

.form-container {
    background: #03323A;
    border-radius: 20px;
    padding: 40px;
    margin: 50px auto;
    max-width: 800px;
    backdrop-filter: blur(10px);
}

.form-inline .form-group {
    width: 48%;n
    margin-bottom: 20px;
}

.form-inline {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.round-input {
    border-radius: 25px !important;
    border: 2px solid #47b173 !important;
    background: #03323A !important;
    color: #47b173 !important;
    padding: 12px 20px !important;
    width: 100% !important;
}

.round-input::placeholder {
    color: #47b173 !important;
}

.round-input:focus {
    border-color: #47b173 !important;
    box-shadow: 0 0 10px #03323A !important;
    background: #03323A !important;
}

.btn-plusvalia {
    background: #47b173 !important;
    border: none !important;
    border-radius: 25px !important;
    padding: 12px 30px !important;
    color: white !important;
    font-weight: bold !important;
    text-transform: uppercase !important;
    position: relative !important;
}

.btn-plusvalia:after {
    content: '→';
    margin-left: 10px;
    font-size: 16px;
}

.btn-plusvalia:hover {
    background: #3d8049 !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(74, 155, 92, 0.4);
}

.form-group label {
    color: #47B172;
    font-weight: 500;
    margin-bottom: 8px;
    display: block;
}

.error_form {
    border: 1.5px solid #FF0000 !important;
    background-color: rgba(255,0,29,.25) !important;
}

.text-center h1 {
    color: white !important;
    margin-bottom: 30px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

/* Icono de casa */
.house-icon {
    position: absolute;
    bottom: 50px;
    left: 50px;
    width: 80px;
    height: 80px;
    opacity: 0.3;
}


/* Switches personalizados */
.switch-field-custom {
    display: flex;
    justify-content: center;
    gap: 0;
    margin: 20px 0;
}

.switch-field-custom input[type="radio"] {
    display: none;
}

.switch-label {
    background: rgba(255,255,255,0.1);
    color: white;
    padding: 12px 30px;
    border: 2px solid rgba(255,255,255,0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.switch-label:first-of-type {
    border-radius: 25px 0 0 25px;
}

.switch-label:last-of-type {
    border-radius: 0 25px 25px 0;
}

.switch-field-custom input[type="radio"]:checked + .switch-label {
    background: #4a9b5c;
    border-color: #4a9b5c;
    color: white;
}

.switch-label:hover {
    background: rgba(74, 155, 92, 0.3);
}

/* Logo TOCTOC */
.toctoc-logo {
    max-width: 150px;
    height: auto;
    filter: brightness(1.2);
}

/* Display de precios */
.price-display {
    display: inline-block;
    max-width: 300px;
    margin: 0 auto;
}

/* Textarea personalizado */
textarea.round-input {
    min-height: 100px;
    font-family: inherit;
}

/* Loading states */
#cargador_final {
    background: rgba(30, 58, 95, 0.9);
    padding: 50px;
    border-radius: 20px;
}

/* Mensajes finales */
.mensaje-final {
    background: rgba(30, 58, 95, 0.95);
    border-radius: 20px;
    padding: 40px;
    margin: 50px auto;
    max-width: 800px;
    color: white;
}

.mensaje-final h3, .mensaje-final h4 {
    color: white;
}

.mensaje-final .verde {
    color: #4a9b5c !important;
}

.bordered {
    border: 2px solid rgba(74, 155, 92, 0.3);
    border-radius: 15px;
    padding: 30px;
    margin: 20px 0;
    background: rgba(74, 155, 92, 0.1);
}
/* Estilos para el simulador */
.section-simulador {
    background: #03323A;
}

.simulador-card {
    background: #000B41;
    border-radius: 1.5rem;
    padding: 2rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.simulador-plusvalia {
    background: #000B41;
    border-radius: 1rem;
    padding: 1rem;
    color: white;
}

.camposalida {
    background: rgba(255,255,255,0.1);
    padding: 0.5rem;
    border-radius: 0.5rem;
}
