@import url('https://fonts.googleapis.com/css2?family=Charis+SIL:ital@1&display=swap');

@font-face {
    font-family: 'CarnasRI';
    src: url('fonts/Medium-Italic.otf');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'CarnasEBI';
    src: url('fonts/Extra-Bold-Italic.otf');
    font-weight: bold;
    font-style: bold;
}

* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

:root {
    --semi-bold: 600;
    --azul: #4b78b9;
    --celeste: #87bee6;
    --rojo: #b90b24;
    --purpura: #aa00aa;
    --amarillo: #ffffaa;
    --verde1: #96c323;
    --verde2: #009641;
    --blanco: white;
    --gris-claro: #979797;
}

html{
    scroll-behavior: smooth;
}

body {
    width: 100%;
    max-width: 100%;
    max-height: 100%;
    font-family: "CarnasRI", sans-serif;
}

a {
    text-decoration: none;
}

a:link,
:visited,
:active {
    color: var(--blanco);
}

a:hover {
    color: var(--gris-claro);
    transition: .5s color;
}

h1,
h2,
h3,
span{
    font-family: 'CarnasEBI', serif;
    text-transform: uppercase;
}

h2 {
    font-size: 1.5rem;
    padding: 2rem 0;
}

h3 {
    font-size: 1.25rem;
    padding: .5rem 0;
}

p {
    font-family: 'CarnasRI', serif;
    color: var(--blanco);
    text-align: center;
    line-height: 2rem;
}

button {
    padding: .5rem;
    background-color: var(--rojo);
    color: var(--blanco);
    text-decoration: none;
    border: none;
    text-transform: uppercase;
    font-family: "Mart", sans-serif;
    font-weight: var(--semi-bold);
    border-radius: 7px 0 7px 0;
    cursor: pointer;
}

/* HEADER */

header {
    background-image: url(img/cielo.png);
    background-position: center;
    background-size: cover;
    height: 800px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* NAVBAR */

.navbar {
    background: var(--azul);
    height: 5rem;
    width: 100%;
    position: fixed;
    z-index: 200;
}

li {
    list-style: none;
}

.container {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    height: 100%;
    margin: 0 auto;
}

.logo {
    width: 175px;
    padding: 1rem 0 .5rem 1rem;
}

label {
    padding: .5rem;
}

.menu-btn {
    background: var(--azul);
    width: 40px;
    height: 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
    cursor: pointer;
    border-radius: 5px;
}

.menu-toggle {
    display: none;
}

.menu-btn span {
    width: 30px;
    height: 3px;
    border-radius: 3px;
    background: var(--blanco);
}

.items {
    background: rgb(75, 121, 185, 0.8);
    display: none;
    text-align: center;
    width: 100%;
    margin: 5px auto;
    padding: 2rem;
}

.menu-toggle:checked+.items {
    display: block;
}

.item {
    padding: 1rem 0;
    text-align: left;
    border-bottom: 1px solid var(--blanco);
}

/* NAVBAR */

.header-contain {
    height: 100%;
    width: 80%;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: flex-start;
    align-content: center;
    align-items: center;
    gap: 50px;
}

.header-contain .hlogo {
    flex-basis: 300px;
    flex-grow: 1;
    width: 100%;
    height: 250px;
}


.header-contain .htexto {
    flex-basis: 400px;
    flex-grow: 1;
    color: var(--purpura);
    font-size: .9rem;
    line-height: 2rem;
    text-align: center;
}

.header-contain .htexto p{
    color: var(--amarillo);
    padding: .5rem;
    font-size: 1rem;
    line-height: 1.5rem;
    text-align: center;
}


/* HEADER */

/* QUE ES ASTROCITY */

.contenedor-general{
    padding: 4rem 0 0 0;
}

.texto-izq, .texto-der{
    height: auto;
    background-color: var(--celeste);
}

.img-que-es {
    width: 350px;
}

.texto-izq p{
    padding: 3rem 1.5rem 3rem 1.5rem;    
}

.texto-der p {
    padding: 3rem 1.5rem 3rem 1.5rem;
    order: 1;
}


.img-saludo {
    width: 250px;
    order: 2;
    padding: 0;
    margin: 0;
}

.img-astroband {
    justify-content: center;
    margin: 2rem;
    order: 2;
}

.astroband{
    background-color: #aa00aa;
}

.separador {
    position: relative;
    z-index: 100;
}

.separador img {
    position: absolute;
    top: 0rem;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    width: 90%;
    z-index: -50;
}
    .contenedor-general{
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .zetta p, .lumo p, .nova p, .electra p, .pixie p, .blip p, .silencio p{
        width: 350px;
        order: -3;
    }

.zetta{
    background: linear-gradient(#aa00aa  , #b624aa);
}

.electra{
    background: linear-gradient(#b624aa , #c249aa);
}

.lumo{
    background: linear-gradient(#c249aa , #ce6daa);
}

.pixie{
    background: linear-gradient(#ce6daa , #db92aa);
}

.nova{
    background: linear-gradient(#db92aa , #e7b6aa);
}

.blip{
    background: linear-gradient(#e7b6aa , #f3dbaa);
}

.silencio{
    background: linear-gradient(#f3dbaa , #ffffaa);
}

.img-zetta {
        width: 60%;
    }

.img-electra{
        width: 60%;
    }

.img-lumo{
        width: 60%;
    }

.img-pixie{
        width: 60%;
    }

.img-nova {
        width: 60%;
    }

.img-blip {
        width: 40%;
    }

.img-silencio {
        width: 50%;
        margin-bottom: 2rem;
    }


.cohete {
    display:flex;
    width: 50px;
    margin: rem; 
    margin: 0 auto;  
}

.mapa {
  height: 400px;
  width: 100%;
  padding: 0px;
  border-width: 0px;
  margin: 0px;
}

.info{
    background-color: var(--verde1);
}

.foot {
    background-color: var(--verde2);
    justify-content: center;
}

.estrellas-footer1 {
    width: 50%;
    order: -1;
    margin-top: 25px;
    transform: rotate(180deg);
}

.estrellas-footer2 {
    width: 50%;
    order: 2;
    margin-bottom: 25px;
}
/* NOSOTROS */

/* IMAGEN-FIXED

.img-fixed {
    background-image: url(img/fixed.jpg);
    background-size: cover;
    background-position: center center;
    background-attachment: scroll;
    background-repeat: no-repeat;
    height: 250px;
    overflow: auto;
}

IMAGEN-FIXED */


/* CONTACTO */

.contacto {
    background: var(--gris);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

}

form {
    margin: 0 0 6rem 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.form1,
.form2 {
    width: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

input,
textarea,
input {
    margin: 2px;
    width: 100%;
    width: 100%;
    height: 50px;
    border: none;
}

textarea {
    height: 100px;
}

input[type="submit"] {
    background-color: var(--azul);
    color: var(--blanco);
    font-family: "Mart", sans-serif;
    font-weight: var(--semi-bold);
    text-transform: uppercase;
    font-size: 1rem;
    border-radius: 0 0 15px 0;
    cursor: pointer;
    -webkit-appearance: none;
    -webkit-border-radius: 0 0 15px 0;
}

input[type=text],
input[type=email],
input[type=tel],
textarea[type=textarea] {
    padding-left: 10px;
    padding-bottom: 2px;
    font-family: 'Charis SIL', serif;
    font-weight: 500;
    font-size: .8rem;
}

textarea[type=textarea] {
    padding-top: 8px;
}

input[type=text] {
    border-radius: 15px 0 0 0;
}

/* CONTACTO */

/* FOOTER 

footer {
    background-image: url(img/fondo-header.jpg);
    background-position: center;
    background-size: cover;
    position: relative;
}

footer img {
    position: absolute;
    top: -75px;
    left: 0;
    right: 0;
    bottom: 0;
    margin: 0 auto;
    width: 300px;
}

footer .contenedor-footer {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-top: 4rem;
    text-align: center;
}

footer .contenedor-footer .direccion,
.redes,
.disclaimer {
    width: 75%;
    padding: 1rem 0 1rem 0;
}

footer .contenedor-footer .direccion {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

footer .contenedor-footer a {
    padding: .1rem 0;
}

footer .contenedor-footer .redes i {
    padding: .5rem;
    font-size: 1.25rem;
}

footer .creditos {
    margin-top: 2rem;
    background: var(--azul);
    font-size: .7rem;
}

 FOOTER */

/* TABLET*/

@media (min-width:480px) {

    .navbar {
        height: 6rem;
    }


    .container {
        height: 100%;
        width: 100%;
    }

    .logo {
        display: none;
    }

    .menu-btn {
        display: none;
    }
    
    .items {
        display: flex;
        flex-direction: row;
        justify-content: space-around;
        align-items: center;
        width: 90%;
    }

    .item {
        padding: 0;
        border-bottom: none;
        font-size: .7rem;
    }

    .header-contain {
        width: 100%;
        gap: 20px;
    }

    .header-contain .hlogo{
        height: 250px;
        margin: 25px;
    }

    .header-contain .htexto {
        padding: 1rem;
        display: flex;
        flex-direction: column;
        justify-content: center;
        font-size: 1.15rem;
        line-height: 2.5rem;
        width: 350px;
        height: 250px;
        text-align: center;
        margin: 25px;
    }

    .header-contain .htexto p {
        font-size: 1.2rem;
        line-height: 1.5rem;
        text-align: center;
    }

    .separador img {
        width: 70%;
        max-width: 450px;
    }

    .texto-izq, .texto-der{
        padding: 2rem 0 2rem 0;
        display: flex;
        flex-direction: row;
        justify-content: center;
    }

    .contenedor-general{
        display: flex;
        flex-direction: row;
        justify-content: space-around;
        align-items: center;
        width: 900px;
        margin: 2rem 0 2rem 0;
    }


    .texto-izq p {
        width: 65%;
        padding: 0 1.5rem 0 0;
        margin: 3rem 1.5rem 3rem 1.5rem;
        font-size: 1rem;
        line-height: 1.5rem;
        text-align: start;
    }

    .texto-der p {
        width: 65%;
        padding: 0 0 0 1.5rem;
        margin: 3rem 1.5rem 3rem 1.5rem;
        text-align: center;
        font-size: 1rem;
        line-height: 1.5rem;
        text-align: end;
        order: 3;
    }

    .img-que-es {
        width: 35%;
        padding: 0;
        margin: 0;
    }

    .img-saludo {
        width: 35%;
        padding: 0;
        margin: 0;
    }
    .img-astroband{
        width: 35%;
        padding: 0;
        margin: 0;
        order: 2;
    }

    .zetta p, .lumo p, .nova p, .silencio p{
        width: 40%;
        height: auto;
        padding: 0 0 1rem 1rem;
        border-left: 3px solid var(--blanco);
        border-bottom: 3px solid var(--blanco);

    }

    .electra p, .pixie p, .blip p{
        width: 40%;
        height: auto;
        padding: 0 1rem 1rem 0;
        border-right: 3px solid var(--blanco);
        border-bottom: 3px solid var(--blanco);
    }

    .img-zetta {
        width: 45%;
        order: 2;
    }

    .img-electra{
        width: 40%;
        order: -1;
    }

    .img-lumo{
        width: 40%;
        order: 2;
    }

    .img-pixie{
        width: 40%;
        order: -1;
    }

    .img-nova {
        width: 40%;
        order: 2;
    }

    .img-blip {
        width: 20%;
        order: -1;
    }

    .img-silencio {
        width: 35%;
        order: 2;
    }

    .info p {
        width: 50%;
    }

    .mapa {
        width: 40%;
        margin: 4rem 2rem 4rem 0;
        border-radius: 25px;
    }

    .foot .contenedor-general{
        margin: 5rem 0 5rem 0;
    }

    .estrellas-footer1 {
        width: 50%;
        order: -1;
        transform: rotate(180deg);
    }

    .foot p {
         align-items: center;
        order: 1;
        text-align: center;        
    }

    .estrellas-footer2 {
        width: 50%;
        order: 2;
    }

    .img-fixed {
        height: 350px;
        background-attachment: fixed;
    }

    form {
        margin: 0 0 8rem 0;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        width: 95%;
    }

    .form1,
    .form2 {
        margin: 2px;
        width: 300px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    textarea {
        height: 104px;
    }

    footer {
        padding-top: 7rem;
    }

    footer img {
        width: 400px;
    }

    footer .contenedor-footer {
        flex-direction: row;
        align-items: flex-start;
        padding: 0;
        width: 90%;
        margin: 0 auto;
    }

    footer .contenedor-footer .direccion,
    .redes,
    .disclaimer {
        align-items: flex-start;
    }

    footer .contenedor-footer .disclaimer p {
        text-align: right;
    }

    footer .contenedor-footer .disclaimer h3 {
        border-bottom: 1px solid var(--blanco);
        text-align: right;
    }

    footer .contenedor-footer .direccion h3 {
        border-bottom: 1px solid var(--blanco);
        text-align: left;
        width: 100%;
    }

    footer .contenedor-footer .direccion p {
        padding: .4rem 0;
    }

    footer .contenedor-footer .direccion a {
        padding: .4rem 0;
    }
}

@media (min-width: 850px){
    .header-contain .htexto {
        text-align: end;
        border-top: 3px solid var(--blanco);
        border-right: 3px solid var(--blanco);
        border-bottom: 3px solid var(--blanco);
        border-radius: 0px 25px 0 0;
    }
        .header-contain .htexto p {
        text-align: end;
    }

        .electra p, .pixie p, .zetta p, .lumo p, .nova p, .blip p, .silencio p{
        width: 30%;
}
}

/* DESKTOP */

@media (min-width:1024px) {

    header {
        height: 900px;
        background-size: cover;
    }

    .container {
        width: 95%;
    }

    .logo {
        display: block;
        width: 200px;
        padding: .5rem .5rem .5rem 1rem;
    }

    .items {
        justify-content: space-around;
        width: 75%;
        padding: 0;
    }

    .item {
        font-size: 1rem;
    }

    .header-contain {
        max-width: 1100px;
    }

    .header-contain .htexto {
        flex-basis: 500px;
        height: 350px;
        padding: 2rem;
    }

    .header-contain h1 {
        font-size: 3rem;
        line-height: 3rem;
        height: 400px;
    }

        .header-contain .htexto p {
        font-size: 1.5rem;
        line-height: 2rem;
    }

    .header-contain .hlogo {
        flex-basis: 325px;
        padding: 0;
    }

    .img-que-es {
        max-width: 400px;
    }

}