@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;1,500&display=swap');


:root {
    --green: #0c443a;
    --lemon: #25D1B2;
    --degraded:linear-gradient(90deg, var(--lemon),var(--green));
}

*{
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    outline: none;
    border: none;
    text-transform: capitalize;
}

*::selection{
    background-color: var(--lemon);
    color: white;
}

html {
font-size: 62.4%;
overflow-x: hidden;
}

body {
    background: #f9f9f9;
}

section {
    min-height: 100vh;
    padding: 0 9%;
    padding-top: 7.5rem;
    padding-bottom: 2rem;
    /* padding-left: 2.5rem; */
}

.btn {
    display: inline-block;
    margin-top: 1rem;
    padding: .8rem 3rem;
    border-radius: 5rem;
    background: var(--degraded);
    font-size: 1.8rem;
    color: white;
    cursor: pointer;
    box-shadow: 0 .5rem 1rem rgba(0, 0, 0,.1);
    transition: all .3s linear;
}

.btn:hover {
    transform: scale(1.1);
}

.heading {
    text-align: center;
    background: var(--green);
    color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    font-size: 3.5rem;
    text-transform: uppercase;
    padding: 1rem;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: white;
    box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .1);
    padding: 2rem 9%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 1000;
}

header .logo {
    font-size: 2rem;
    color: var(--green);
}

header .logo span {
    color: var(--lemon);
}

header .navbar a {
    font-size: 1.8rem;
    margin-left: 2rem;
    color: var(--green);
}

header .navbar a:hover {
    color: var(--lemon);
}

header input{
    display: none;
}

header label {
    font-size: 3rem;
    color: var(--green);
    cursor: pointer;
    visibility: hidden;
    opacity: 0;
}

.start {
    display: flex;
    align-items: center;
    justify-content: center;
    background: url(img/inicio_fondo.png) no-repeat;
    background-size: cover;
    background-position: center;
}

.start .image img {
    width: 40vw;
    animation: float 3s linear infinite;
}

@keyframes float {
    0%, 100%{
        transform: translateY(0rem);
    }
    50% {
        transform: translateY(-3.5rem);
    }
}

.start .content h3 {
    font-size: 5.5rem;
    color: #333;
    text-transform: uppercase;
}

.start .content h3 span {
    color: var(--lemon);
    text-transform: uppercase;
}

.start .content p {
    font-size: 1.7rem;
    color: #666;
    padding: 1rem 0;
}

.details .box-container {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.details .box-container .box {
    flex: 1 1 30rem;
    background: white;
    border-radius: 0.5rem;
    border: .1rem solid  rgba(0, 0, 0, .2);
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, .1);
    margin: 1.5rem;
    padding: 3rem 2rem;
    border-radius: .5rem;
    text-align: center;
    transition: .2s linear;
}

.details .box-container .box img {
    height: 15rem;
}

.details .box-container .box h3 {
    font-size: 2rem;
    color: #333;
    padding-top: 1rem;
}

.details .box-container .box p {
    font-size: 1.3rem;
    color: #666;
    padding: 1rem 0;
}

.about{
    background: url(img/fondo_2.png) no-repeat;
    background-size: cover;
    background-position: center;
    padding-bottom: 3rem;
}

.about .column {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.about .column .image {
    flex: 1 1 40rem;
}

.about .column .image img {
    width: 100%;
}

.about .column .content {
    flex: 1 1 40rem;
}

.about .column .content h3 {
    font-size: 3rem;
    color: #333;
}

.about .column .content p {
    font-size: 1.5rem;
    color: #666;
    padding: 1rem 0;
}

.about .column .content .bottons a:last-child {
    margin-left: 2rem;
}

.suscribe {
    text-align: center;
    padding: 5rem 1rem;
    background: url(img/fondo_sub.png) no-repeat;
    background-size: cover;
    background-position: center;
}

.suscribe h3 {
    text-transform: uppercase;
    color: white;
    font-size: 3rem;
}

.suscribe p {
    color: whitesmoke;
    font-size: 1.6rem;
    margin: 2rem auto;
    width: 70rem;
}

.suscribe form {
    display: flex;
    max-width: 70rem;
    border: .2rem solid whitesmoke;
    padding: .5rem;
    border-radius: 5rem;
    margin: 2rem auto;
    height: 5.5rem;
}

.suscribe form input[type="email"] {
    padding: 0 2rem;
    font-size: 1.7rem;
    background: none;
    width: 100%;
    color: white;
    text-transform: none;
    background: none;
}

.suscribe form input[type="email"]::placeholder {
    color: whitesmoke;
    text-transform: capitalize;
}

.suscribe form input[type="submit"]{
    background-color:white ;
    width: 20rem;
    font-size: 1.7rem;
    border-radius: 5rem;
    cursor: pointer;
}

.suscribe form input[type="submit"]:hover {
    color: var(--lemon);
}

.opinions .box-container {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.opinions .box-container .box {
    background: white;
    margin: 1rem;
    padding: 1rem;
    text-align: center;
    position: relative;
    border: .1rem solid rgba(0, 0, 0,.2);
    box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .1);
    flex: 1 1 40rem;
    border-radius: .5rem;
}

.opinions .box-container .box .fa-atom{
    position: absolute;
    top: 1rem;
    right: 2rem;
    font-size: 8rem;
    color: var(--lemon);
    opacity: .3;
}

.opinions .box-container .box .user img{
    border-radius: 50%;
    object-fit: cover;
    height: 8rem;
    margin-top: 2rem;
}

.opinions .box-container .box .user h3{
    color: var(--green);
    font-size: 2rem;
}

.opinions .box-container .box .user .starts i{
    color: var(--green);
    font-size: 1.5rem;
    padding: 1rem 0;
}

.opinions .box-container .box .comentaries p {
    color: #666;
    font-size: 1.5rem;    
    padding: 1rem;
}

.prices .box-container {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.prices .box-container .box {
    flex: 1 1 28rem;
    margin: 1rem;
    padding: 1rem;
    background: white;
    border: .1rem solid rgba(0, 0, 0, .2);
    box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .1);
    border-radius: .5rem;
    text-align: center;
    padding-bottom: 3rem;
}

.prices .box-container .box:nth-child(2),
.prices .box-container .box:hover{
    border: .2rem solid var(--lemon);
}

.prices .box-container .box .titles{
    color:var(--green);
    font-size: 2.5rem;
    padding-top: 1rem;
}


.prices .box-container .box .types{
    font-size: 4rem;
    color: var(--lemon);
    padding: 1rem 0; 
}

.prices .box-container .box .types span{
    font-size: 2rem;
}

.prices .box-container .box ul {
    padding: 1rem 0;
    list-style: none;
}

.prices .box-container .box ul li {
    font-size: 1.7rem;
    color: #333;
    padding: .5rem 0;
}

.prices .box-container .box ul li .fa-check{
    color: lightgreen;
}

.prices .box-container .box ul li .fa-xmark{
    color: red;
}


.contacts {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    padding-bottom: 4rem;
}

.contacts .image {
    flex: 1 1 40rem;
}

.contacts .image img {
    width: 100%;
    padding: 2rem;
}

.contacts form {
    flex: 1 1 40rem;
    padding: 2rem 3rem;
    border: .1rem solid rgba(0, 0, 0, .2);
    box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .1);
    border-radius: .5rem;
    background: white;
}

.contacts .heading {
    text-align: left;
    padding: 0;
    padding-bottom: 2rem;
}

.contacts form .inputbox{
    position: relative;
}

.contacts form .inputbox input, .contacts form .inputbox textarea{
    width: 100%;
    background: none;
    color: #333;
    margin: 1.5rem 0;
    padding: .5rem 0;
    font-size: 1.7rem;
    border-bottom: .1rem solid rgba(0, 0, 0, .1);
    text-transform: none;
}

.contacts form .inputbox textarea {
    resize: no;
    height: 13rem;
}

.contacts form .inputbox label {
    position: absolute;
    top: 1.7rem;
    left: 0;
    font-size: 1.7rem;
    color: #666;
    transition: .2s linear;
}

.contacts form .inputbox input:focus ~ label, 
.contacts form .inputbox input:valid ~ label,
.contacts form .inputbox textarea:focus ~ label,
.contacts form .inputbox textarea:valid ~  label{
    top: -.5rem;
    font-size: 1.5rem;
    color: var(--lemon);
}

.footer {
    padding-top: 3rem;
    background: url(img/footer-fondo.png) no-repeat;
    background-size: cover;
    background-position: center;
}

.footer .box-container{
    display: flex;
    flex-wrap: wrap;
}

.footer .box-container .box {
    flex: 1 1 25rem;
    margin: 2rem;
}

.footer .box-container .box h3 {
    font-size: 2.5rem;
    padding: 1rem 0;
    color: #CBDE86;
    text-decoration: underline;
    text-underline-offset: 1rem;
}

.footer .box-container .box p {
    font-size: 1.5rem;
    padding: .5rem 0;
    color: whitesmoke;
}

.footer .box-container .box a {
    display: block;
    font-size: 1.5rem;
    padding: .5rem 0;
    color: #CBDE86;
}

.footer .box-container .box a:hover {
    text-decoration: underline;
}

.footer .box-container .box .info {
    display: flex;
    align-items: center;
}

.footer .box-container .box .info:nth-child(2){

}

.footer .box-container .box i {
    margin: .5rem 0;
    margin-right: 1rem;
    border-radius: 50%;
    background: whitesmoke;
    color: var(--green);
    font-size: 1.8rem;
    height: 4.5rem;
    width: 4.5rem;
    line-height: 4.5rem;
    text-align: center;
}

.footer .credits {
    font-size: 2rem;
    font-weight: normal;
    letter-spacing: .1rem;
    color: #CBDE86;
    border-top: .1rem solid white;
    padding: 2.5rem 1rem;
    text-align: center;
}

/* Media Queries */
@media (max-width: 1200px) {
    html{
        font-size: 55%;
    }
}

@media (max-width: 990px) {
    section {
        padding: 0 3%;
        padding-top: 7.5rem;
        padding-bottom: 2rem;
    }
}

@media (max-width: 798px) {
    header label {
        visibility: visible;
        opacity: 1;
    }

    header .navbar {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: white;
        padding: 1rem 2rem;
        border-top: .1rem solid rgba(0, 0, 0, .2) ;
        box-shadow: 0 .5rem 1rem rgba(0, 0, 0, );
        transform-origin:top;
        transform: scaleY(0);
        opacity: 0;
        transition: .2s linear;
    }

    header .navbar a{
        display: block;
        margin: 2rem 0;
        font-size: 2rem;
    }
    header input:checked ~ .navbar {
        transform: scaleY(1);
        opacity: 1;
    }
    header input:checked ~ label::before {
        content: '\f00d';
    }

    .start {
        flex-flow: column-reverse;
    }

    .start .image img {
        width: 100%;
    }

    .start .content h3 {
        font-size: 3.6rem;
    }

    .start .content p{
        font-size: 1.5rem;
    }

    .about {
        background-position: right;
    }

    .suscribe p {
        width: auto;
    }
}   

@media (max-width: 450px) {
    html {
        font-size: 49%;
    }

    .about .column .content .bottons a{
        width: 100%;
        text-align: center;
    }

    .about .column .content .bottons a:last-child {
        margin: 1rem 0;
        
    }
}