/*# Reset */

* {
	box-sizing: border-box
}

b {
	font-weight: 800
}

em {
	font-style: normal;
	text-decoration: underline
}

a {
	color: inherit
}

html {
	scroll-behavior: smooth
}

:root {
	font-size: 1.1rem;
}

body {
	margin: 0;
	min-height: 100vh;
	font-family: Roboto, Arial, sans-serif;
	font-weight: 400;
}


/*# Utilidades */

.container {
	padding-left: 2rem;
	padding-right: 2rem;
}
.fullscreen {
	min-height: 100vh;
}
.centering {
	display: flex;
	justify-content: center;
	align-items: center;
}
.stack {
	display: flex;
	flex-direction: column;
	gap: var(--gap);
}

.button {
	padding: 0.5em 1em;
	cursor: pointer;
	border: 0;
	font-size: inherit;
}
.bg-yellow {
	background-color: #ffb300;
}
.rounded {
	border-radius: 4px;
}

.letter-spacing-compact {
	letter-spacing: -0.05em;
}

.no-underline {
	text-decoration: none;
}

/*## Interacción */

.hover-highlight {
	transition: 0.2s;
}
.hover-highlight:hover {
	filter: brightness(1.2);
}

/*# Estilos localizados por página/componente */

#home section {position: relative; border-bottom: 1px solid #d1d1d1;}
.home__section-dot-link {
	display: block;
	background-color: #ffb300;
	width: 100px;
	height: 100px;
	border-radius: 50%;
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translate(-50%, 50%);
}
#home header {
	border-bottom: 1px solid #e6e6e6;
}

/*## Componente: Header */

.header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 0 2rem;
	position: fixed;
	z-index: 10;
	width: 100%;
	top: 0;
	background-color: white; 
}
.header__right-side {
	padding: 0;
	margin: 0;
	list-style: none;
	display: flex;
	justify-content: end;
	align-items: center;
	gap: 1rem;
}
@media screen and (max-width: 600px) {
	.header__right-side {
		flex-direction: column;
		align-items: end;
	}
}
@media screen and (max-width: 460px) {
	.header__contacto {
		display: none;
	}
}

/*## Componente: Contact form */

.contact-form input[type=text] {
	border: 0;
	outline: 1px solid black;
	font-family: inherit;
	font-size: inherit;
	padding: 0.25em;
}
.contact-form textarea {
	border: 0;
	outline: 1px solid black;
	resize: none;
	height: 5em;
	font-family: inherit;
	font-size: inherit;
	padding: 0.25em;
}

/*## Componente: Botón de Whatsapp */

.boton-whatsapp {
	position: fixed;
	right: 0;
	bottom: 0;
	width: 4rem;
	height: 4rem;
	margin: 2rem;
	background-image: url('/whatsapp-logo.svg');
	background-size: cover;
}

/*# Estilos tipográficos */

.text-hero-title {font-size: 4rem; font-weight: 500;}
@media screen and (max-width: 560px) { .text-hero-title {font-size: 3rem;} }
@media screen and (max-width: 360px) { .text-hero-title {font-size: 2rem;} }

.text-hero-subtitle {font-size: 1.5rem; font-weight: 400; letter-spacing: -0.01em; line-height: 1.5em;}
@media screen and (max-width: 560px) { .text-hero-subtitle {font-size: 1.2rem;} }
@media screen and (max-width: 360px) { .text-hero-subtitle {font-size: 1rem;} }