/* =========================
 HERO PREMIUM
========================= */

.hero{

    position:relative;
    padding:120px 0;
    overflow:hidden;
    color:white;

    background:
    radial-gradient(circle at 15% 20%, rgba(59,130,246,0.35), transparent 40%),
    radial-gradient(circle at 85% 30%, rgba(147,197,253,0.35), transparent 45%),
    radial-gradient(circle at 60% 80%, rgba(37,99,235,0.35), transparent 40%),

    linear-gradient(
        140deg,
        #020617 0%,
        #0f172a 15%,
        #1e3a8a 40%,
        #2563eb 65%,
        #3b82f6 85%,
        #93c5fd 100%
    );

}

/* brillo suave */

.hero::after{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(
        180deg,
        rgba(255,255,255,0.06),
        rgba(255,255,255,0)
    );
}

/* =========================
 TITULO
========================= */

.hero-title{

    font-size:52px;
    font-weight:700;
    line-height:1.2;
    margin-bottom:20px;

}

.hero-title span{
    color:#93c5fd;
}

/* =========================
 SUBTITULO
========================= */

.hero-subtitle{

    font-size:18px;
    opacity:.9;
    margin-bottom:35px;

}

.hero-subtitle1{
    font-size:30px;
    font-weight:700;
    line-height:1.2;
    margin-bottom:20px;
}
.hero-subtitle1 span{
    color:#3b82f6;
    /*color:#27f2ff;3b82f6*/
}
/* =========================
 FORM GLASS
========================= */

.hero-form{

    background:rgba(255,255,255,0.12);
    backdrop-filter:blur(15px);

    padding:30px;
    border-radius:14px;

    border:1px solid rgba(255,255,255,0.2);

}

/* =========================
 INPUTS
========================= */

.hero-form .form-control{

    height:48px;
    border-radius:8px;

    border:none;

}

/* =========================
 BOTON
========================= */

.btn-primary{

    background:#2563eb;
    border:none;

    font-weight:600;

}

.btn-primary:hover{

    background:#1d4ed8;

}

/* =========================
 IMAGEN HERO
========================= */

.hero-image img{

    max-width:90%;

    filter:drop-shadow(
        0 25px 50px rgba(0,0,0,0.35)
    );

}

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

@media (max-width:992px){

.hero{
padding:80px 0;
}

.hero-title{
font-size:38px;
}

.hero-image{
margin-top:40px;
}

}

/* =========================
   BOTONES SOCIALES FLOTANTES
========================= */

.custom-social{

    position:fixed;
    right:25px;
    bottom:200px;

    list-style:none;
    padding:0;
    margin:0;

    z-index:9999;

}

.custom-social li{

    margin-bottom:12px;

}

.custom-social a{

    width:55px;
    height:55px;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:50%;

    color:white;
    font-size:22px;

    box-shadow:0 10px 20px rgba(0,0,0,0.25);

    transition:all .3s ease;

}

/* Facebook */

.custom-social li:nth-child(1) a{

    background:#1877f2;

}

/* WhatsApp */

.custom-social li:nth-child(2) a{

    background:#25d366;

}

/* Hover */

.custom-social a:hover{

    transform:translateY(-4px);
    box-shadow:0 15px 30px rgba(0,0,0,0.35);

}
.hero::after{
    pointer-events: none;
}
.hero-banner{

    width:70%;
    height:320px;

    display:flex;
    align-items:center;
    justify-content:center;

    perspective:1100px;
}

/* contenedor */

.carousel3d{

    width:190px;
    height:190px;

    position:relative;

    transform-style:preserve-3d;

    animation:rotar 28s infinite linear;

}

/* imagenes */

.carousel3d img{

    position:absolute;

    width:100%;
    height:100%;

    object-fit:cover;

    border-radius:12px;

    transition:all .6s ease;

    box-shadow:0 15px 35px rgba(0,0,0,.35);

}

/* posiciones */

.carousel3d img:nth-child(1){
transform:rotateY(0deg) translateZ(240px) scale(1.05);
}

.carousel3d img:nth-child(2){
transform:rotateY(72deg) translateZ(240px);
opacity:.9;
}

.carousel3d img:nth-child(3){
transform:rotateY(144deg) translateZ(240px);
opacity:.7;
filter:blur(1px);
}

.carousel3d img:nth-child(4){
transform:rotateY(216deg) translateZ(240px);
opacity:.7;
filter:blur(1px);
}

.carousel3d img:nth-child(5){
transform:rotateY(288deg) translateZ(240px);
opacity:.9;
}

/* animacion */

@keyframes rotar{

0%{
transform:rotateY(0deg);
}

100%{
transform:rotateY(360deg);
}

}

/* pausa al pasar el mouse */

.carousel3d:hover{
animation-play-state:paused;
}

/* efecto hover en imagen */

.carousel3d img:hover{

transform:scale(1.12);

box-shadow:0 25px 50px rgba(0,0,0,.45);

z-index:5;

}
.progress-container{
display:flex;
justify-content:space-between;
margin-bottom:25px;
}

.progress-step{
text-align:center;
flex:1;
position:relative;
color:#bbb;
}

.progress-step span{
display:inline-block;
width:35px;
height:35px;
line-height:35px;
border-radius:50%;
background:#ddd;
color:#fff;
font-weight:bold;
}

.progress-step.active span{
background:#3b82f6;
}

.progress-step p{
margin-top:5px;
font-size:13px;
}

.progress-step.active{
color:#3b82f6;
}

/* grid de 2 columnas */
.adeudos-grid{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px 20px;
}

/* item tipo fila */
.adeudo-item{
    display: flex;
    flex-direction: column;
}

/* label */
.adeudo-item label{
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 4px;
    color: #cbd5f5;
}

/* inputs */
.adeudo-item input,
.adeudo-item select{
    height: 42px;
    border-radius: 8px;
}

/* mobile */
@media(max-width:768px){
    .adeudos-grid{
        grid-template-columns: 1fr;
    }
}
.drym-img-wrapper{
    position: relative;
}

.drym-img-main img{
    width:100%;
    border-radius:18px;
}

.drym-img-bottom{
    display:flex;
    align-items:center;
    gap:20px;
    margin-top:20px;
}

.drym-img-small img{
    width:180px;
    border-radius:14px;
}

.drym-exp span{
    font-size:48px;
    font-weight:700;
    line-height:1;
}

.drym-exp p{
    margin:0;
    font-size:16px;
}
@media(max-width:768px){
    .drym-img-bottom{
        flex-direction:column;
        align-items:flex-start;
    }

    .drym-img-small img{
        width:140px;
    }

    .drym-exp span{
        font-size:36px;
    }
}
.drym-title{
    font-size:42px;
    font-weight:700;
    margin-bottom:25px;
}

.drym-title span{
    color:#2a7de1;
}

.drym-benefits{
    display:flex;
    flex-direction:column;
    gap:18px;
}

.drym-benefit{
    display:flex;
    align-items:center;
    gap:15px;
}

.drym-icon{
    width:48px;
    height:48px;
    border:1px solid #dcdcdc;
    border-radius:12px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:20px;
}

.drym-benefit p{
    margin:0;
    font-size:16px;
    color:#333;
}
.reviews-container{
    display:flex;
    gap:30px;
    align-items:center;
}

.reviews-score{
    min-width:200px;
}

.reviews-title{
    font-weight:bold;
    font-size:22px;
}

.reviews-stars{
    color:#f4b400;
    font-size:22px;
}

.reviews-google{
    font-size:28px;
    font-weight:bold;
}

.reviews-slider{
    display:flex;
    gap:20px;
    overflow:auto;
}

.review-card{
    background:#fff;
    border-radius:12px;
    padding:15px;
    min-width:300px;
    box-shadow:0 2px 10px rgba(0,0,0,.1);
}

.review-header{
    display:flex;
    align-items:center;
    gap:10px;
    margin-bottom:8px;
}

.review-avatar{
    width:40px;
    height:40px;
    border-radius:50%;
}

.review-stars{
    color:#f4b400;
}