/* Reset básico para quitar márgenes extra */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

@font-face {
    font-family: 'UnitRoundedRegular';
    src: url('font/UnitRoundedWebW03Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'UnitRoundedBold';
    src: url('font/UnitRoundedWebW04Bold.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

body {
    font-family: 'UnitRoundedRegular', Arial, sans-serif;
    background-color: #fff;
    color: #1d1d1b;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}

header {
    padding: 24px 24px 0;
    max-width: 1400px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'UnitRoundedBold', Arial, sans-serif;
    margin-bottom: 48px;
}

header .navbar  {
   display: flex;
   gap: 24px;
}

header .navbar a {
    font-size: 18px;
    color: #1d1d1b;
    text-decoration: none;
    text-transform: uppercase;
}

header .navbar a.active {
    color: #d34724;
}

.sliderBg {
    width: 100%;
    background: #FFF;
    background: linear-gradient(180deg,#ffffff 50%, #e76d24 50%);
    flex-direction: column;
    align-items: center;
    display: flex;
}

.slider {
    padding: 0 24px;
    max-width: 1400px;
    width: 100%;
    position: relative;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.slider img{
    border-radius: 24px;
    width: 100%;
}

.slider div {
    padding: 36px;
    max-width: 500px;
    width: 100%;
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.slider span{
    font-size: 30px;
    text-align: right;
    color: #fff;
}

.slider span .importan {
    font-size: 30px;
    text-align: right;
    color: #d34724;
    font-family: 'UnitRoundedBold', Arial, sans-serif;
}

.slider .isotipo{
    border-radius: 0;
    width: auto;
}

.whoWeAre {
    background: #e76d24;
    width: 100%;
    flex-direction: column;
    align-items: center;
    display: flex;
}

.whoWeAre .info{
    padding: 100px 24px;
    max-width: 1400px;
    width: 100%;
    display: flex;
    gap: 24px;
}

.whoWeAre h2{
    color: #fff;
    font-size: 60px;
    width: 50%;
}

.whoWeAre .text{
    width: 50%;
}

.whoWeAre p{
    color: #fff;
    font-size: 22px;
}

.whoWeAre p:first-child{
    margin-bottom: 48px;
}

.listOfMachines {
    padding: 50px 24px;
    width: 100%;
    max-width: 1400px;
    flex-direction: column;
    align-items: center;
    display: flex;
    gap: 24px;
}

.listOfMachines .machines{
    width: 100%;
    background-color: #e2e5ea;
    border-radius: 24px;
    padding: 24px 48px;
    display: flex;
    gap: 24px;
    align-items: center;
}
.listOfMachines .machines .machineImg {
    width: 50%;
}

.listOfMachines .machines .info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.listOfMachines .machines .info .tag{
    background-color: #d34724;
    padding: 6px 12px;
    border-radius: 24px;
    color: #fff;
    font-size: 12px;
    width: fit-content;
}

.listOfMachines .machines .info h3{
    font-size: 36px;
    font-family: 'UnitRoundedBold', Arial, sans-serif;
    color: #d34724;
    text-transform: uppercase;
    display: flex;
    margin-bottom: 24px;
}

.listOfMachines .machines .info p {
    font-size: 18px;
    margin-bottom: 24px;
}

.listOfMachines .machines .info .coils {
    display: flex;
    gap: 6px;
}

.listOfMachines .machines .info .coils img {
    border-radius: 20px;
}

.theyTrustUs {
    padding: 50px 24px;
    width: 100%;
    max-width: 1400px;
    flex-direction: column;
    align-items: center;
    display: flex;
    gap: 24px;
}

.theyTrustUs h2{
    font-size: 36px;
    font-family: 'UnitRoundedBold', Arial, sans-serif;
    color: #d34724;
    text-transform: uppercase;
    display: flex;
    text-align: center;
}

.theyTrustUs span {
    font-size: 18px;
    text-align: center;
}

.theyTrustUs .companyList {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    justify-content: center;
}

.theyTrustUs .companyList img {
    width: 25%;
}

.contact {
    padding: 50px 24px;
    width: 100%;
    max-width: 1400px;
    flex-direction: column;
    align-items: center;
    display: flex;
    
}

.contact .box{
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 24px;
    background: #E66B24;
    background: linear-gradient(45deg,rgba(230, 107, 36, 1) 0%, rgba(190, 21, 34, 1) 100%);
    color: #fff;
    border-radius: 24px;
    min-height: 400px;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.contact .box h2 {
    font-size: 48px;
    font-family: 'UnitRoundedBold', Arial, sans-serif;
    text-align: center;
}

.contact .box span {
    font-size: 24px;
    max-width: 600px;
    text-align: center;
}

footer {
    padding: 0px 24px 50px;
    width: 100%;
    max-width: 1400px;
    flex-direction: column;
    align-items: center;
    display: flex;
}

footer img {
    height: 30px;
    margin-bottom: 24px;
}

footer p {
    font-size: 16px;
    text-align: center;
}

footer h4 {
    margin-top: 24px;
    font-size: 16px;
    font-family: 'UnitRoundedBold', Arial, sans-serif;
}

@media (max-width: 992px) {

    header {
    margin-bottom: 24px;
    flex-direction: column;
    gap: 12px;
    }

    header img {
        width: 250px;
    }

    header .navbar  {
    display: flex;
    gap: 24px;
    }

    header .navbar a {
        font-size: 16px;
    }

    header .navbar a.active {
        display: none;
    }

    .slider div {
        display: none;
    }

    .whoWeAre .info{
        padding: 50px 24px;
        flex-direction: column;
    }

    .whoWeAre h2{
        font-size: 32px;
        width: 100%;
    }

    .whoWeAre .text{
        width: 100%;
    }

    .whoWeAre p{
        font-size: 20px;
    }

    .whoWeAre p:first-child{
        margin-bottom: 24px;
    }

    .listOfMachines {
        padding: 24px;
    }

    .listOfMachines .machines{
        flex-direction: column;
        padding: 24px;
    }

    .listOfMachines .machines .info h3{
        font-size: 28px;
    }

    .listOfMachines .machines .info p {
        font-size: 16px;
    }

    .listOfMachines .machines .info .coils img {
        border-radius: 20px;
    }

    .theyTrustUs h2{
    font-size: 28px;
    }

    .theyTrustUs span {
        font-size: 16px;
    }
    .theyTrustUs .companyList img {
        width: 45%;
    }

    .contact {
    padding: 0px 24px 50px; 
    }

    .contact .box h2 {
        font-size: 34px;
    }

    .contact .box span {
        font-size: 20px;
    }
}
