* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: sans-serif;
}

/* HEADER */

header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.2rem;
    /* background-color: #ff9800; */
	background-color: #795548;
}

header p {
	color: #cca293;
}

.logo {
    max-width: 5rem;
}

.nav-list {
    list-style-type: none;
    display: flex;
    gap: 1rem;
}

.nav-list li a {
    text-decoration: none;
    color: white;
}

.abrir-menu,
.cerrar-menu {
    display: none;
}

@media screen and (max-width: 550px) {
    .abrir-menu,
    .cerrar-menu {
        display: block;
        border: 0;
        font-size: 2rem;
        background-color: transparent;
        cursor: pointer;
    }

    .abrir-menu {
        color: white;
    }

    .cerrar-menu {
        color: white;
    }

    .nav {
        opacity: 0;
        visibility: hidden;
        display: flex;
        flex-direction: column;
        align-items: end;
        gap: 1rem;
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        background-color: #1c1c1c;
        padding: 1.2rem;
        box-shadow: 0 0 0 100vmax rgba(0, 0, 0, .5);
    }

    .nav.visible {
        opacity: 1;
        visibility: visible;
		z-index: 1;
    }
    
    .nav-list {
        flex-direction: column;
        align-items: end;
    }

    .nav-list li a {
        color: #ecececec;
		font-size: 2rem
    }
}

/* BODY */

body, #container {
	background-color: #1a1a1a;
}

.container {
    color: white;
    font-family: 'Roboto', sans-serif;
    text-align: center;
	display: none;
	min-height: 100vh;
}

h2 {
	color: #795548;
	margin-top: 30px;
	margin-bottom: 120px;
}

p {
	color: #795548;
}

/* FRASE */
        
#frase {
	margin: 0 auto;
    font-size: 24px;
    max-width: 70%;
	text-align: center;
}

a {
	text-decoration: none;
	color: skyblue;
}

@media screen and (max-width: 550px) {
	#frase {
		max-width: 90%;
    }
}

/* BOTONES COMPARTIR */

.botones-compartir {
	display: flex;
	justify-content: center;
	gap: 10px;
	margin: 0 auto;
	padding: 40px;
	padding-bottom: 70px;
}

.whatsapp-btn img {
    opacity: 0.5;
    width: 40px;
    height: 40px;
    border-radius: 50%; 
    border: 0.5px solid white; 
    padding: 8px; 
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2); 
    display: block; /* Hace que el ícono sea un bloque para centrarlo */
    margin: 0 auto; /* Centra el ícono dentro del enlace */
}

/* @media screen and (max-width: 550px) {

} */

/* BANNER */

#banner-grande {
    display: block;
}
#banner-chico {
    display: none;
}

@media screen and (max-width: 550px) {
  #banner-chico {
    display: block;
  }
  #banner-grande {
    display: none;
  }
}

/* INFO */

.container-info {
	display: flex;
	flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: left;
	max-width: 50%;
	margin: 0 auto;
}

.info-titulo {
	margin-bottom: 50px;
}

.container-info p {
	font-size: 18px;
	color: antiquewhite;
}

@media screen and (max-width: 550px) {
	.container-info {
		max-width: 90%;
	}
}

/* CONTACTO */

.container-contacto p {
	font-size: 20px;
	color: antiquewhite;
}

/* FOOTER */

footer {
    text-align: center;
    padding: 1.2rem;
	background-color: #795548;
}

footer p {
	color: #1a1a1a;
}