/* Start custom CSS for html, class: .elementor-element-d7ebf48 *//* CÓDIGO CSS */
.hero-impacto-section{
    background-color: #0099e5;
    color: #ffffff;
    padding: 50px 6%;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    min-height: 550px;
}
.hero-impacto-container{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
    gap: 30px;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}
.hero-impacto-text{
    animation: fadeInUp 1.2s ease-out;
}
.hero-impacto-text h1{
    font-size: 52px;
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 20px;
    text-shadow: 0 2px 5px rgba(0,0,0,.2);
    color: #ffffff;
}
.hero-impacto-text p{
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 30px;
    max-width: 450px;
    color: #ffffff;
}
.hero-impacto-cta{
    background-color: #ffffff;
    color: #0099e5;
    text-decoration: none;
    padding: 16px 35px;
    font-size: 18px;
    font-weight: 700;
    border-radius: 50px;
    display: inline-block;
    transition: transform .3s ease,box-shadow .3s ease;
    box-shadow: 0 5px 20px rgba(0,0,0,.2);
}
.hero-impacto-cta:hover{
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(0,0,0,.3);
}
.hero-impacto-image-container{
    position: absolute;
    top: 0;
    right: -10%;
    width: 65%;
    height: 100%;
    z-index: 1;
    -webkit-mask-image: linear-gradient(to right,transparent 0,black 30%);
    mask-image: linear-gradient(to right,transparent 0,black 30%);
}
.hero-impacto-image-container img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.offer-seal{
    width: 180px;
    height: 180px;
    background: #25a73e;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #ffffff;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%) rotate(-15deg);
    z-index: 3;
    border: 5px solid white;
    box-shadow: 0 10px 30px rgba(0,0,0,.3);
    animation: popIn 1s ease-out .5s;
    animation-fill-mode: backwards;
}
.offer-seal .percent{
    font-size: 64px;
    font-weight: 700;
    line-height: 1;
}
.offer-seal .label{
    font-size: 20px;
    font-weight: 500;
    text-transform: uppercase;
}
.offer-seal .details{
    font-size: 11px;
    margin-top: 5px;
}
@keyframes fadeInUp{
    from{opacity:0;transform:translateY(40px)}
    to{opacity:1;transform:translateY(0)}
}
@keyframes popIn{
    from{opacity:0;transform:translate(-50%,-50%) rotate(-15deg) scale(.5)}
    to{opacity:1;transform:translate(-50%,-50%) rotate(-15deg) scale(1)}
}
@media (max-width:992px){
    .hero-impacto-section{min-height:auto}
    .hero-impacto-container{grid-template-columns:1fr;text-align:center}
    .hero-impacto-text p{margin-left:auto;margin-right:auto}
    .hero-impacto-image-container{display:none}
    .offer-seal{position:relative;transform:rotate(0);left:auto;top:auto;margin:30px auto 0;width:150px;height:150px}
    .offer-seal .percent{font-size:50px}
    .offer-seal .label{font-size:16px}
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-8b0664f *//* === CSS PARA LA NUEVA SECCIÓN DE EQUIPOS === */
.new-device-section {
    padding: 80px 6%;
    background-color: #f4f6f9; /* Fondo gris claro para diferenciar */
    overflow: hidden;
}

.new-device-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.new-device-text h2 {
    font-size: 42px;
    font-weight: 700;
    color: #333;
    line-height: 1.2;
    margin-bottom: 20px;
}

.new-device-text p {
    font-size: 18px;
    color: #555;
    line-height: 1.7;
}

.new-device-image {
    text-align: center;
    perspective: 1500px; /* Necesario para el efecto 3D */
}

.new-device-image img {
    max-width: 100%;
    border-radius: 15px;
    transition: transform 0.4s ease;
}

/* Efecto interactivo al pasar el cursor */
.new-device-image img:hover {
    transform: scale(1.05) rotateY(-10deg);
}

/* Adaptación a Móviles */
@media (max-width: 992px) {
    .new-device-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .new-device-image {
        margin-top: 40px;
    }
}/* End custom CSS */