.padre-section{
padding:50px 0 70px;
background:#fff;
}

.padre-section h1{
text-align:center;
font-size:30px;
font-weight:500;
color:#061426;
margin-bottom:30px;
}

.padre-info{
text-align:center;
padding:20px;
}

.padre-logo{
margin-bottom:35px;
}

.padre-logo img{
max-width:260px;
width:100%;
height:auto;
}

.padre-info h2{
max-width:620px;
margin:0 auto 24px;
font-size:25px;
font-weight:800;
line-height:1.25;
color:#061426;
}

.padre-info p{
max-width:650px;
margin:auto;
font-size:14px;
line-height:1.7;
color:#061426;
}

.padre-form-card{
background:#e9e9e9;
border-radius:18px;
padding:30px 26px 24px;
max-width:470px;
margin:auto;
}

.padre-form-card h3{
font-size:19px;
font-weight:800;
color:#061426;
margin-bottom:4px;
}

.padre-form-card p{
font-size:17px;
font-weight:700;
color:#061426;
margin-bottom:24px;
}

.padre-form-card form{
display:flex;
flex-direction:column;
gap:18px;
}

.padre-form-card input,
.padre-form-card select{
width:100%;
height:38px;
border:1px solid #cbd1d7;
border-radius:4px;
background:#fff;
padding:8px 12px;
font-size:15px;
outline:none;
}

.padre-form-card input:focus,
.padre-form-card select:focus{
border-color:#111;
box-shadow:0 0 0 3px rgba(0,0,0,.08);
}

.campo-obligatorio{
font-size:13px;
color:#555;
margin-left:58px;
margin-bottom:-8px;
}

.captcha-falso{
width:300px;
max-width:100%;
height:74px;
background:#fff;
border:1px solid #d5d5d5;
border-radius:3px;
display:flex;
align-items:center;
justify-content:space-between;
padding:0 24px 0 12px;
box-shadow:0 1px 3px rgba(0,0,0,.12);
margin:0 auto 18px;
}

.captcha-falso input{
width:28px;
height:28px;
}

.captcha-icon{
font-size:30px;
color:#477bd3;
}

.padre-form-card button{
display:block;
width:220px;
height:56px;
margin:0 auto;
border:0;
border-radius:10px;
background:#b720eb;
color:#fff;
font-size:18px;
font-weight:700;
cursor:pointer;
transition:.3s;
box-shadow:0 8px 25px rgba(183,32,235,.35);
}

.padre-form-card button:hover{
background:#9f19cc;
transform:translateY(-2px);
box-shadow:0 12px 30px rgba(183,32,235,.45);
}

@media(max-width:991px){

.padre-section{
padding-top:40px;
}

.padre-section h1{
font-size:28px;
}

.padre-info h2{
font-size:23px;
}

}

@media(max-width:576px){

.padre-section h1{
font-size:24px;
}

.padre-logo img{
max-width:220px;
}

.padre-info h2{
font-size:20px;
}

.padre-form-card{
padding:24px 18px;
}

.campo-obligatorio{
margin-left:0;
}

}

.padre-productos-interes{
padding:50px 0 70px;
background:#fff;
}

.padre-productos-interes h2{
text-align:center;
font-size:23px;
font-weight:800;
color:#3e4650;
margin-bottom:30px;
}

.padre-productos-grid{
display:grid;
grid-template-columns:repeat(5,1fr);
gap:20px;
}

.padre-producto-card{
background:#fff;
border:1px solid #e1e1e1;
border-radius:7px;
overflow:hidden;
text-align:center;
transition:.25s;
}

.padre-producto-card:hover{
transform:translateY(-5px);
box-shadow:0 12px 28px rgba(0,0,0,.12);
}

.padre-producto-img{
height:150px;
display:flex;
align-items:center;
justify-content:center;
border-bottom:1px solid #eee;
background:#fff;
}

.padre-producto-img img{
width:100%;
height:100%;
object-fit:contain;
padding:10px;
}

.padre-producto-img i{
font-size:35px;
color:#bbb;
}

.padre-producto-info{
padding:12px 14px 20px;
}

.padre-producto-info h3{
font-size:14px;
font-weight:500;
line-height:1.25;
color:#4b4b4b;
min-height:36px;
margin-bottom:10px;
}

.padre-rating{
font-size:13px;
color:#555;
margin-bottom:2px;
}

.padre-rating span{
color:blue;
letter-spacing:1px;
}

.padre-envio{
font-size:14px;
color:#3c8a34;
margin-bottom:6px;
}

.padre-descuento{
font-size:14px;
color:#3c8a34;
margin-bottom:8px;
}

.padre-precio{
font-size:21px;
font-weight:500;
color:#111;
margin-bottom:8px;
}

.padre-cuotas{
display:inline-flex;
align-items:center;
gap:6px;
background:#e9f7f2;
color:#169b78;
font-size:9px;
font-weight:700;
padding:7px 9px;
border-radius:4px;
}

@media(max-width:1200px){
.padre-productos-grid{
grid-template-columns:repeat(4,1fr);
}
}

@media(max-width:991px){
.padre-productos-grid{
grid-template-columns:repeat(3,1fr);
}
}

@media(max-width:768px){
.padre-productos-grid{
grid-template-columns:repeat(2,1fr);
}
}

@media(max-width:480px){
.padre-productos-grid{
grid-template-columns:1fr;
}
}