@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}
body{
    background-color: #f4f4f4;
    color: #333;
}
header{
    background: linear-gradient(90deg, #9436BB 0%, #475CBF 100%);
    color: white;
    padding: 40px 20px;
    text-align: center;
}
header img{
    max-width: 200px;
}
header h1{
    font-size: 2.5rem;
    margin-bottom: 10px;
}
header p{
    font-size: 1.2rem;
    margin-bottom: 10px;
}
.container{
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}
.escassez{
    background-color: #fff3cd;
    border-left: 6px solid #9436BB;
    padding: 20px;
    border-radius: 10px;
    margin-top: 30px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
.escassez h2{
    color: #d35400;
    margin-bottom: 10px;
}
.escassez p{
    font-size: 1.1rem;
    line-height: 1.6;
}
.highlight{
    color: #e67e22;
    font-weight: bold;
}
.benefits{
    background: #ffffff;
    padding: 30px;
    margin-top: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}
.benefits h2{
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: #475cbf;
    text-align: center;
}
.benefits p{
    margin-bottom: 15px;
    line-height: 1.6;
    font-size: 1.05rem;
}
.features{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 40px;
}
.feature-box{
    background: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}
.feature-box .conjunto{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.feature-box .conjunto i {
      font-size: 2.5rem;
      color: #9436BB;
      margin-bottom: 10px;
    }
.feature-box .conjunto h3{
    margin-bottom: 10px;
    color: #475cbf;
}
.feature-box p{
    text-align: center;
}
.images-section{
    text-align: center;
    margin: 40px 0;
}
.images-section img{
    width: 100%;
    max-width: 700px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}
.modelos{
    width: 200px;
    margin: auto;
    padding: 10px;
    color: #CECECE;
    display: flex;
    border-radius: 5px;
    align-items: center;
    background-color: #000;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: background 0.3s;
}
.modelos:hover{
    background-color:#475cbf;
}
.cta{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-top: 60px;
}
.cta img{
    width: 200px;
    margin-bottom: 20px;
}
.cta p{
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: #475cbf;
    font-weight: 600;
}
.cta a{
    background: linear-gradient(90deg, #9436BB 0%, #475CBF 100%);
    color: white;
    padding: 15px 30px;
    border-radius: 30px;
    font-size: 1.2rem;
    font-weight: bold;
    text-decoration: none;
    transition: background 0.3s;
}
.cta a:hover{
    background: #475cbf;
}
footer{
    background-color: #282A36;
    color: white;
    text-align: center;
    padding: 20px;
    margin-top: 60px;
}
footer p a{
    color: #aaa;
}
footer p a:hover{
    color: #CECECE;
}

@media(max-width: 505px){
    header h1{
        font-size: 2rem;
        line-height: 38px;
    }
}
@media(max-width: 412px){
    header h1{
        font-size: 1.7rem;
    }
}
@media(max-width: 356px){
    header h1{
        font-size: 1.7rem;
        line-height: 30px;
    }
}