
/* CONTENEDOR GENERAL */
.cotizador-wrapper{
    display:flex;
    align-items:center;
    justify-content:center;

    min-height:100vh; 
    padding:120px 80px 40px;
}

/* CAJA PRINCIPAL */
.cotizador-box{
    width:100%;
    max-width:1300px;

    display:flex;
    gap:40px;

    align-items:stretch; 
}

/* ================= PANEL FORM ================= */
.panel-form{
    width:40%;
    min-height:500px;

    backdrop-filter:blur(20px);
    background:rgba(255,255,255,0.15);

    border-radius:20px;
    padding:30px;

    display:flex;
    flex-direction:column;
    justify-content:flex-start;
}

/* INPUTS */
.panel-form input,
.panel-form select{
    width:100%;
    padding:15px;
    margin-bottom:15px;
    border:none;
    border-radius:15px;
    font-size:15px;
}

/* BOTONES */
.panel-form button{
    width:100%;
    padding:12px;
    margin-top:10px;
    border:none;
    border-radius:25px;
    cursor:pointer;
    font-weight:bold;
    transition:0.3s;
}

/* BOTÓN VERDE */
.btn-cotizar{
    background:#2ecc71;
    color:white;
}

.btn-cotizar:hover{
    transform:scale(1.05);
}

/* BOTÓN PDF */
.btn-pdf{
    background:rgba(255,255,255,0.3);
    color:white;
}

.btn-pdf:hover{
    background:rgba(255,255,255,0.5);
}

/* RESULTADO */
#resultado{
    margin-top:15px;
    padding:15px;

    width:100%;
    text-align:center;

    background:rgba(0,0,0,0.5);
    border-radius:15px;

    font-size:14px;
    line-height:1.5;
}

/* ================= MAPA ================= */
.panel-mapa{
    width:60%;

    backdrop-filter:blur(20px);
    background:rgba(255,255,255,0.15);

    border-radius:20px;
    padding:15px;

    display:flex;
}

/*  MAPA SIN ESPACIOS */
#map{
    width:100%;
    height:100%;
    min-height:500px;
    border-radius:20px;
}

/* ================= HEADER LINKS FIX ================= */

/* BOTONES DERECHA */
.nav-right a{
    color:white; 
    text-decoration:none;
    font-weight:bold;
    transition:0.3s;
}

.nav-right a:hover{
    transform:scale(1.1);
}

/* ================= TEXTO REGISTRO ================= */
.registro{
    margin-top:10px;
    font-size:13px;
    text-align:center;
}

.registro a{
    color:#2ecc71;
    font-weight:bold;
    text-decoration:none;
}

