/* ===========================
   MENDOZINI COTIZADOR
=========================== */

*{
    box-sizing:border-box;
}

.mz-wrapper{
    max-width:1200px;
    margin:40px auto;
    padding:20px;
}

.mz-header{
    text-align:center;
    margin-bottom:30px;
}

.mz-header h1{
    margin:0;
    font-size:34px;
    color:#b22222;
}

.mz-header p{
    margin-top:10px;
    color:#666;
    font-size:16px;
}

.mz-layout{
    display:grid;
    grid-template-columns:2fr 1fr;
    gap:30px;
}

.mz-card{
    background:#fff;
    border-radius:12px;
    padding:25px;
    margin-bottom:25px;
    box-shadow:0 8px 20px rgba(0,0,0,.08);
}

.mz-card h2{
    margin-top:0;
    margin-bottom:20px;
    color:#222;
    font-size:22px;
}

.mz-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:20px;
}

.mz-full{
    grid-column:1 / -1;
}

.mz-campo{
    display:flex;
    flex-direction:column;
}

.mz-campo label{
    margin-bottom:8px;
    font-weight:600;
    color:#444;
}

.mz-campo input,
.mz-campo select,
.mz-campo textarea{

    width:100%;
    padding:12px;
    border:1px solid #d9d9d9;
    border-radius:8px;
    font-size:15px;
    transition:.3s;
    background:#fff;

}

.mz-campo input:focus,
.mz-campo select:focus,
.mz-campo textarea:focus{

    outline:none;
    border-color:#d62828;
    box-shadow:0 0 0 3px rgba(214,40,40,.15);

}

#mz_recomendacion{

    background:#fff8e8;
    border-left:5px solid #f4a100;
    padding:18px;
    border-radius:8px;
    color:#444;
    line-height:1.6;

}

.mz-sticky{

    position:sticky;
    top:30px;

}

.mz-resumen-item{

    display:flex;
    justify-content:space-between;
    align-items:center;
    margin:14px 0;

}

.mz-resumen-item span{

    color:#666;

}

.mz-resumen-item strong{

    color:#111;

}

.mz-total{

    font-size:20px;
    font-weight:bold;
    color:#b22222;

}

.mz-reserva{

    font-size:18px;
    color:#198754;

}

.mz-boton{

    width:100%;
    margin-top:25px;
    padding:16px;
    border:none;
    border-radius:10px;
    background:#d62828;
    color:#fff;
    font-size:18px;
    cursor:pointer;
    transition:.3s;

}

.mz-boton:hover{

    background:#b71c1c;

}

.mz-nota{

    margin-top:20px;
    font-size:13px;
    color:#777;
    text-align:center;
    line-height:1.6;

}

hr{

    border:none;
    border-top:1px solid #ececec;
    margin:20px 0;

}

@media(max-width:900px){

.mz-layout{

grid-template-columns:1fr;

}

.mz-grid{

grid-template-columns:1fr;

}

.mz-sticky{

    position:relative;
    top:0;
    margin-top:20px;

}

.mz-resumen-item{

    display:block;
    margin:18px 0;
    padding-bottom:14px;
    border-bottom:1px solid #ececec;

}

.mz-resumen-item span{

    display:block;
    font-size:14px;
    color:#777;
    margin-bottom:6px;

}

.mz-resumen-item strong{

    display:block;
    font-size:28px;
    font-weight:700;
    color:#111;

}

}
/*==================================================
CONFIRMACIÓN DE COTIZACIÓN
==================================================*/

.mz-confirmacion{

    max-width:850px;
    margin:50px auto;
    background:#ffffff;
    border-radius:18px;
    overflow:hidden;
    box-shadow:0 15px 40px rgba(0,0,0,.10);

}

.mz-confirmacion-header{

    background:linear-gradient(135deg,#b71c1c,#d32f2f);

    color:#fff;

    padding:45px;

    text-align:center;

}

.mz-confirmacion-header h2{

    margin:0;

    font-size:34px;

}

.mz-confirmacion-header p{

    margin-top:15px;

    font-size:18px;

    opacity:.95;

}

.mz-resumen{

    padding:40px;

}

.mz-resumen h3{

    text-align:center;

    margin-bottom:25px;

    color:#b71c1c;

    font-size:28px;

}

.mz-tabla-confirmacion{

    width:100%;

    border-collapse:collapse;

    margin-bottom:35px;

}

.mz-tabla-confirmacion tr:nth-child(even){

    background:#fafafa;

}

.mz-tabla-confirmacion td{

    padding:16px;

    border-bottom:1px solid #ececec;

    font-size:16px;

}

.mz-tabla-confirmacion td:first-child{

    width:45%;

    font-weight:bold;

}

.mz-totales{

    display:flex;

    justify-content:space-between;

    gap:25px;

    margin-top:35px;

    margin-bottom:35px;

}

.mz-totales div{

    flex:1;

    text-align:center;

    padding:30px;

    border-radius:14px;

}

.mz-totales div:first-child{

    background:#e8f5e9;

}

.mz-totales div:last-child{

    background:#fff8e1;

}

.mz-totales span{

    display:block;

    font-size:17px;

    color:#666;

    margin-bottom:12px;

}

.mz-totales strong{

    display:block;

    font-size:34px;

    color:#2e7d32;

}

.mz-totales div:last-child strong{

    color:#c62828;

}

.mz-botones{

    display:flex;

    justify-content:center;

    flex-wrap:wrap;

    gap:20px;

    margin-top:25px;

}

.mz-btn-whatsapp{

    background:#25D366;

    color:white;

    padding:18px 32px;

    border-radius:10px;

    text-decoration:none;

    font-size:18px;

    font-weight:bold;

    transition:.25s;

}

.mz-btn-whatsapp:hover{

    transform:translateY(-2px);

    box-shadow:0 8px 18px rgba(37,211,102,.30);

}

.mz-btn-pago{

    background:#1565c0;

    color:white;

    border:none;

    padding:18px 32px;

    border-radius:10px;

    font-size:18px;

    font-weight:bold;

    opacity:.55;

    cursor:not-allowed;

}

.mz-aviso{

    margin-top:40px;

    background:#fff3cd;

    border-left:6px solid #ff9800;

    padding:22px;

    border-radius:8px;

    font-size:16px;

    line-height:1.7;

}

.mz-aviso strong{

    display:block;

    margin-bottom:8px;

    color:#c62828;

}

/*==================================================
RESPONSIVE
==================================================*/

@media(max-width:768px){

    .mz-confirmacion{

        margin:20px;

    }

    .mz-confirmacion-header{

        padding:30px 20px;

    }

    .mz-confirmacion-header h2{

        font-size:28px;

    }

  .mz-resumen{

    padding:20px;

}
.mz-tabla-confirmacion,
.mz-tabla-confirmacion tbody,
.mz-tabla-confirmacion tr{

    display:block;
    width:100%;

}

.mz-tabla-confirmacion td{

    display:block;
    width:100%;
    border:none;
    padding:5px 0;

}

.mz-tabla-confirmacion tr{

    margin-bottom:18px;
    padding-bottom:15px;
    border-bottom:1px solid #ececec;

}

.mz-tabla-confirmacion td:first-child{

    font-size:14px;
    color:#777;
    font-weight:600;

}

.mz-tabla-confirmacion td:last-child{

    font-size:20px;
    font-weight:bold;
    color:#111;

}

    .mz-totales{

        flex-direction:column;

    }

    .mz-botones{

        flex-direction:column;

    }

    .mz-btn-whatsapp,

    .mz-btn-pago{

        width:100%;

        text-align:center;

        box-sizing:border-box;

    }

}