@import url('https://fonts.googleapis.com/css2?family=Anton&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');
/*
font-family: 'Anton', sans-serif;
font-family: 'Poppins', sans-serif;
*/
/* Parametros ----------------------------------------------------------------------------------------------------------------------------------------------------------------------*/
html{
    scroll-behavior: smooth;
    scroll-padding-top: 4em;
}
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
/* Textos --------------------------------------------------------------------------------------------------------------------------------------------------------------------------*/
a{
    color: black;
    text-decoration: none;
}
li{
    list-style: none;
}
.titulo{
    font-size: 4em;
    font-weight: 800;
}
.subtitulo{
    font-size: 2em;
    font-weight: 600;
    line-height: 1.2;
}
.texto{
    font-size: 1.2em;
    font-weight: 400;
}
/* General -------------------------------------------------------------------------------------------------------------------------------------------------------------------------*/
body{
    font-family: 'Poppins', sans-serif;
    background-color: black;
}
main{
    margin-top: 4em;
}
/* Presentacion --------------------------------------------------------------------------------------------------------------------------------------------------------------------*/
.hero{
    position: relative;
    width: 100%;
    height: calc(100vh - 4em);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2vh;
}
    .hero img{
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: left;
        filter: brightness(.5);
    }
    .hero h1, .hero h2{
        z-index: 5;
        width: 75%;
    }
        .hero h1{
            font-size: 4em;
            font-weight: 700;
            color: orange;
        }
        .hero h2{
            font-size: 2em;
            font-weight: 500;
            color: #fafafa;
        }
/* Texto de introduccion -----------------------------------------------------------------------------------------------------------------------------------------------------------*/
.intro-texto{
    background-color: orange;
    padding: 4em 2em;
    display: flex;
    flex-direction: column;
    align-items: center;
}
    .intro-texto h3, .intro-texto h4{
        max-width: 720px;
    }
/* Textos en medio de la pagina ----------------------------------------------------------------------------------------------------------------------------------------------------*/
.land-text{
            background-color: black;
            color: white;
            padding: 6em 2em;
            display: flex;
            flex-direction: column;
            align-items: center;
}
    .land-text h2, .land-text h4{
        color: orange;
        max-width: 720px;
    }
    .land-text h4{
        color: white;
    }
/* Imagen con texto a la derecha ---------------------------------------------------------------------------------------------------------------------------------------------------*/
.right-text{
    position: relative;
    color: #fafafa;
    background-color: black;
    width: 100%;
    display: flex;
    height: calc(100vh - 4em);
    object-position: center;
}
    .right-text img{
        width: 50%;
        height: 100%;
        object-fit: cover;
    }
    .right-text h2, .right-text h3, .right-text h4{
        position: absolute;
        left: 50%;
        max-width: 720px;
    }
    .right-text h2{
        color: orange;
        bottom: 50%;
        padding: 2.4em;
    }
    .right-text h4{
        top: 50%;
        padding-inline: 4em;
    }
/* Posicionamiento del sitio web ---------------------------------------------------------------------------------------------------------------------------------------------------*/
.seo-on-page{
    position: relative;
    width: 100%;
    height: calc(100vh - 4em);
    display: flex;
    flex-direction: column;
    align-items: end;
}
    .seo-on-page img{
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: left;
        filter: saturate(1.1);
    }
    .seo-on-page div{
        z-index: 10;
        width: 100%;
        height: 100%;
        display: flex;
        flex-direction: column;
        align-items: end;
        justify-content: center;
    }
    .seo-on-page div h2, .seo-on-page div h4{
        max-width: 720px;
        color: #fafafa;
        padding: 2em;
        background-color: #00000088;
    }
    .seo-on-page div h2{
        padding: 1.2em;
    }
/* Precios y ofertas -----------------------------------------------------------------------------------------------------------------------------------------------------------------------*/
.precios{
    color: #888e;
    padding: 2em;
}
    .precios table{
        border-collapse: collapse;
        width: 100%;
    }
    .precios th, .precios td{
        border: 1px solid orange;
        padding: 8px;
        width: 14.28%;
        text-align: center;
    }

.precios th{
    background-color: orange;
    color: black;
}

.precios .green{
    color: green;
}

.precios .red{
    color: red;
}

    .precios .left-align{
        text-align: left; /* Aligning the content to the left */
    }
/* Contacto --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------*/
.contacto{
    width: 100%;
    height: 20em;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
    .contacto p{
        color: #fafafa;
    }
    .contacto a{
        background-image: linear-gradient(-60deg, #ff5858 0%, #f09819 100%);
        padding: .5em 1em;
        border-radius: .5em;
        font-size: 1.2em;
    }
/* Tamano de la pantalla -------------------------------------------------------------------------------------------------------------------------------------------------------------------*/
@media (max-width: 1200px){
    .hero h1{
        font-size: 3em;
    }
    .hero h2{
        font-size: 1.2em;
        font-weight: 300;
    }
    .right-text img{
        width: 100%;
        filter: brightness(.5);
    }
    .right-text h2{
        left: 0;
        padding: 1em 2.4em;
        background-color: #00000088;
    }
    .right-text h4{
        left: 0;
        left: unset;
        background-color: #00000088;
        padding-bottom: 2em;
    }
    .seo-on-page div{
        padding: 2em;
    }
}
@media (max-width: 600px){
    .texto{
        font-size: 1em;
    }
    .hero{
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    .hero h1{
        font-size: 2em;
    }
    .hero h2{
        font-size: 1em;
    }
    .right-text h2{
        left: 0;
        padding: 1em 1.5em;
        font-size: 1.6em;
    }
    .right-text h4{
        padding-inline: 2.5em;
    }
}