@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500&display=swap');

:root {
    --verde: #0c443a;
    --limon: #25d1b2;
    --degradado: linear-gradient(90deg, var(--limon), var(--verde));
}

* {
    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: var(--limon);
    color: #ffffff;
}

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;
}

.btn {
    display: inline-block;
    margin-top: 1rem;
    padding: .8rem 3rem;
    border-radius: 5rem;
    background: var(--degradado);
    font-size: 1.8rem;
    color: #ffffff;
    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(--verde);
    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%;
    height: 62px;
    background-color: #ffffff;
    box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .1);
    padding: 2rem 8%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 1000;
}

header .logo {
    font-size: 2rem;
    color: var(--verde);
}

header .logo span {
    color: var(--limon);
}

header .toggle-menu {
    display: none;
}

header .navbar a {
    font-size: 1.8rem;
    margin-left: 2rem;
    color: var(--verde);
}

header .navbar a:hover {
    color: var(--limon);
}

header input {
    display: none;
}

header label {
    font-size: 3rem;
    color: var(--verde);
    cursor: pointer;
    visibility: hidden;
    opacity: 0;
}

.inicio {
    display: flex;
    align-items: center;
    justify-content: center;
    background: url(img/inicio_fondo.png) no-repeat;
    background-size: cover;
    background-position: center;
}

.inicio .image img {
    width: 40vw;
    animation: float 3s linear infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0rem);
    }

    50% {
        transform: translateY(-3.5rem);
    }
}

.inicio .content h3 {
    font-size: 5.5rem;
    color: #333333;
    text-transform: uppercase;
}

.inicio .content h3 span {
    color: var(--limon);
    text-transform: uppercase;
}

.inicio .content p {
    font-size: 1.7rem;
    color: #666666;
    padding: 1rem 0;
}

.detalles .caja-contenedor {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.container-slider {
    width: 900px;
    margin: auto;
    overflow: hidden;
    position: relative;
}

.slider {
    display: flex;
    width: 600%;
    margin-left: -100%;
}

.slider__section {
    width: 100%;
    display: flex;
    justify-content: center;
}

.slider__btn {
    position: absolute;
    width: 40px;
    height: 40px;
    background-color: #25d1b2b0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 30px;
    font-weight: bold;
    font-family: monospace;
    text-align: center;
    border-radius: 50%;
    cursor: pointer;
}

.slider__btn:hover {
    background-color: #25d1b2;
    width: 43px;
    height: 43px;
    font-size: 33px;
}

.slider__btn--right {
    right: 10px;
}

.slider__btn--left {
    left: 10px;
}

.detalles .caja-contenedor .caja {
    flex: 1 1 30rem;
    background: #ffffff;
    border-radius: .5rem;
    border: .1rem solid rgba(0, 0, 0, .2);
    box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .1);
    margin: 1.5rem;
    padding: 3rem 2rem;
    border-radius: .5rem;
    text-align: center;
    transition: .2s linear;
}

.detalles .caja-contenedor .caja img {
    height: 15rem;
}

.detalles .caja-contenedor .caja h3 {
    font-size: 2rem;
    color: #333333;
    padding-top: 1rem;
}

.detalles .caja-contenedor .caja p {
    font-size: 1.3rem;
    color: #666666;
    padding: 1rem 0;
}

.acerca_de {
    background: url(img/fondo_2.png) no-repeat;
    background-size: cover;
    background-position: center;
    padding-bottom: 3rem;
}

.acerca_de .columna {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.acerca_de .columna .image {
    flex: 1 1 40rem;
}

.acerca_de .columna .image img {
    width: 100%;
}

.acerca_de .columna .content {
    flex: 1 1 40rem;
}

.acerca_de .columna .content h3 {
    font-size: 3rem;
    color: #333333;
}

.acerca_de .columna .content p {
    font-size: 1.5rem;
    color: #666666;
    padding: 1rem 0;
}

.acerca_de .columna .content .bottons a:last-child {
    margin-left: 2rem;
}

.suscribete {
    text-align: center;
    padding: 5rem 1rem;
    background: url(img/fondo_sub.png) no-repeat;
    background-size: cover;
    background-position: center;
}

.suscribete h3 {
    color: #ffffff;
    font-size: 3rem;
    text-transform: uppercase;
}

.suscribete p {
    color: #f5f5f5;
    font-size: 1.6rem;
    margin: 2rem auto;
    width: 70rem;
}

.suscribete form {
    display: flex;
    max-width: 70rem;
    border: .2rem solid #f5f5f5;
    padding: .5rem;
    border-radius: 5rem;
    margin: 2rem auto;
    height: 5.5rem;
}

.suscribete form input[type="email"] {
    padding: 0 2rem;
    font-size: 1.7rem;
    background: none;
    width: 100%;
    color: #ffffff;
    text-transform: none;
    background: none;
}

.suscribete form input[type="email"]::placeholder {
    color: #f5f5f5;
    text-transform: capitalize;
}

.suscribete form input[type="submit"] {
    background: #ffffff;
    width: 20rem;
    font-size: 1.7rem;
    border-radius: 5rem;
    cursor: pointer;
}

.suscribete form input[type="submit"]:hover {
    color: var(--limon);
}

.suscribete label {
    color: #f5f5f5;
    font-size: 1.8rem;
}

.opiniones {
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin: 50px auto;
}

.opiniones .caja-contenedor {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.opiniones .caja-contenedor .caja__slider {
    display: flex;
    justify-content: center;
    background: #ffffff;
    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 30rem;
    border-radius: .5rem;
    height: 60vh;
}

.opiniones .caja-contenedor .caja__slider .user {
    position: relative;
    width: 70%;
}

.opiniones .caja-contenedor .caja__slider .fa-atom {
    position: absolute;
    top: 1rem;
    right: .5rem;
    font-size: 8rem;
    color: var(--limon);
    opacity: .3;
}

.opiniones .caja-contenedor .caja__slider .user img {
    border-radius: 50%;
    object-fit: cover;
    height: 8rem;
    width: 8rem;
    margin-top: 2rem;
}

.opiniones .caja-contenedor .caja__slider .user h3 {
    color: var(--verde);
    font-size: 2rem;
}

.opiniones .caja-contenedor .caja__slider .user .stars i {
    color: var(--verde);
    font-size: 1.5rem;
    padding: 1rem 0;
}

.opiniones .caja-contenedor .caja__slider .comentarios {
    color: #666666;
    font-size: 1.5rem;
    padding: 1rem;
}

.opiniones button {
    padding: 2rem 3rem;
    border: .1rem solid var(--verde);
    box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .1);
    border-radius: .5rem;
}

.precios .caja-contenedor {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.precios .caja-contenedor .caja {
    flex: 1 1 28rem;
    margin: 1rem;
    padding: 1rem;
    background: #ffffff;
    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;
}

.precios .caja-contenedor .caja:nth-child(2),
.precios .caja-contenedor .caja:hover {
    border: .2rem solid var(--limon);
}

.precios .caja-contenedor .caja .titulo {
    color: var(--verde);
    font-size: 2.5rem;
    padding-top: 1rem;
}

.precios .caja-contenedor .caja .tipos {
    font-size: 4rem;
    color: var(--limon);
    padding: 1rem 0;
}

.precios .caja-contenedor .caja .tipos span {
    font-size: 2rem;
}

.precios .caja-contenedor .caja ul {
    padding: 1rem 0;
    list-style: none;
}

.precios .caja-contenedor .caja ul li {
    font-size: 1.7rem;
    columns: #333333;
    padding: .5rem 0;
}

.precios .caja-contenedor .caja ul li .fa-check {
    color: #90ee90;

}

.precios .caja-contenedor .caja ul li .fa-times {
    color: #ff0000;
}

.contactos {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    padding-bottom: 4rem;
}

.contactos .image {
    flex: 1 1 40rem;
}

.contactos .image img {
    width: 100%;
    padding: 2rem;
}

.contactos 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: #ffffff;
}

.contactos .heading {
    text-align: left;
    padding: 0;
    padding-bottom: 2rem;
}

.contactos form .inputcaja {
    position: relative;
}

.contactos form .inputcaja input,
.contactos form .inputcaja textarea {
    width: 100%;
    background: none;
    color: #333333;
    margin: 1.5rem 0;
    padding: .5rem 0;
    font-size: 1.7rem;
    border-bottom: .1rem solid rgba(0, 0, 0, .1);
    text-transform: none;
}

.contactos form .inputcaja textarea {
    resize: none;
    height: 13rem;
}

.contactos form .inputcaja label {
    position: absolute;
    top: 1.7rem;
    left: 0;
    font-size: 1.7rem;
    color: #666666;
    transition: .2s linear;
}

.contactos form .inputcaja input:focus~label,
.contactos form .inputcaja input:valid~label,
.contactos form .inputcaja textarea:focus~label,
.contactos form .inputcaja textarea:valid~label {
    top: -.5rem;
    font-size: 1.5rem;
    color: var(--limon);
}

.footer {
    padding-top: 3rem;
    background: url(img/footer-fondo.png) no-repeat;
    background-size: cover;
    background-position: center;
}

.footer .caja-contenedor {
    display: flex;
    flex-wrap: wrap;
}

.footer .caja-contenedor .caja {
    flex: 1 1 25rem;
    margin: 2rem;
}

.footer .caja-contenedor .caja h3 {
    font-size: 2.5rem;
    padding: 1rem 0;
    color: #f5deb3;
    text-decoration: underline;
    text-underline-offset: 1rem;
}

.footer .caja-contenedor .caja p {
    font-size: 1.5rem;
    padding: .5rem 0;
    color: #f5f5f5;
}

.footer .caja-contenedor .caja a {
    display: block;
    font-size: 1.5rem;
    padding: .5rem 0;
    color: #f5deb3;
}

.footer .caja-contenedor .caja a:hover {
    text-decoration: underline;
}

.footer .caja-contenedor .caja .info {
    display: flex;
    align-items: center;
}

.footer .caja-contenedor .caja .info i {
    margin: .5rem 0;
    margin-right: 1rem;
    border-radius: 50%;
    background: #f5f5f5;
    color: var(--verde);
    font-size: 1.8rem;
    height: 4.5rem;
    width: 4.5rem;
    line-height: 4.5rem;
    text-align: center;
}

.footer .creditos {
    font-size: 2rem;
    font-weight: normal;
    letter-spacing: .1rem;
    color: #f5deb3;
    border-top: .1rem solid #f5deb3;
    padding: 2.5rem 1rem;
    text-align: center;
}

@media(min-width: 2500px) {
    html {
        font-size: 100%;
    }

    header {
        width: 100%;
        display: flex;
        justify-content: space-around;
    }

    main {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
    }

    .cont__body {
        width: 2000px;
        box-shadow: 0px 0px 5px 0px #000000;
    }

    section {
        min-height: 50vh;
        padding: 0 9%;
        padding-top: 7.5rem;
        padding-bottom: 2rem;
    }
}

@media(max-width:782px) {
    header {
        height: 62px;
    }

    header .content_menu {
        display: flex;
        justify-content: center;
        align-items: center;
        margin: 0;
        padding: 0;
    }

    header .content_menu .navbar {
        display: flex;
        flex-direction: row;
    }

    header .toggle-menu {
        display: block;
        width: 28px;
        cursor: pointer;
    }

    .toggle-menu img {
        max-width: 100%;
    }

    header .content_menu {
        display: flex;
        align-items: flex-start;
        position: fixed;
        top: 61px;
        left: 0;
        width: 100vw;
        height: calc(100vh - 62px);
        background-color: #cccccc40;
        border-top: .1rem solid rgba(0, 0, 0, .2);
        box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .1);
        transform: translateY(-100vh);
        transform-origin: top;
        transition: transform .3s;
    }

    header .content_menu .navbar {
        display: flex;
        flex-direction: column;
        align-items: center;
        background-color: #ffffff;
        width: 100vw;
    }

    header .show_menu {
        transform: translateY(0);
    }


    header .navbar a {
        margin: 2rem 0;
    }

    .inicio {
        flex-flow: column-reverse;
    }

    .inicio .image img {
        width: 100%;
    }

    .inicio .content h3 {
        font-size: 3.6rem;
    }

    .inicio .content p {
        font-size: 1.5rem;
    }

    .acerca_de {
        background-position: right;
    }

    .suscribete p {
        width: auto;
    }

    .opiniones {
        min-height: 1vh;
    }

    .opiniones .caja-contenedor .container-slider .slider .slider__section .caja__slider {
        height: 50vh;
        overflow: hidden;
    }

    .opiniones .caja-contenedor .caja__slider .fa-atom {
        top: 2rem;
        font-size: 5rem;
    }
}

@media(max-width:400px) {
    html {
        font-size: 49%;
    }

    .acerca_de .columna .content .bottons a {
        width: 100%;
        text-align: center;
    }

    .acerca_de .columna .content .bottons a:last-child {
        margin: 1rem 0;
    }
}