@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Courier+Prime:ital,wght@0,400;0,700;1,400;1,700&display=swap');
/* CSS Document */

/* Hidders */

#shop {
	display: none;
}

#nav6 {
	display: none;
}

#nav7 {
	display: none;
}
/* Hidders */

/* liquid */
#smokey-fluid-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 2000;
    pointer-events: none;
}
/* liquid */

:root {
	--pink: #ff66ad;
	--midgray: #4d4d4d;
	--lightgray: #bfbfbf;
	--bg-color: #0a000a;
	--font: "Courier Prime", monospace;
}

html, body {
	height: 100%;
	margin: 0;
	background-color: var(--bg-color);
	-webkit-font-smoothing: antialiased;
}

body {
	display: flex;
	flex-direction: column;
}

main {
	flex: 1;
	display: flex;
	align-items: center;
	justify-content: center;
}

.content-bloque {
	max-width: 1500px;
}

p {
	font-family: var(--font);
	text-align: left;
	font-size: 14pt;
	color: white;
	line-height: 1.4;
	font-weight: 400;
}

strong {
	font-weight: 700;
}

h1 {
	font-family: var(--font);
	font-size: 25pt;
	color: white;
	font-weight: 400;
	text-decoration: underline;
}

h2 {
	font-family: var(--font);
	font-size: 16pt;
	color: var(--bg-color);
	background-color: white;
	display: inline-block;
	font-weight: 400;
	text-transform: uppercase;
	margin-top: 35px;
    margin-bottom: 0;
}

a {
	font-family: var(--font);
	text-decoration: underline;
	color: white;
	font-weight: 400;
}

a:hover {
	font-weight: 700;
}

/* Botones */

button.proyectos{
    height: 40px;
    border: 2px solid white;
    width: 140px;
    background-color: transparent;
    color: white;
    font-size: 12pt;
    font-family: var(--font);
    cursor: pointer;
    margin-top: 30px;
}

button.proyectos:hover {
	background: white;
	color: var(--bg-color);
}

button.btn-shop {
	padding: 12px;
    background: var(--bg-color);
    color: white;
    border: 2px solid white;
    cursor: pointer;
    font-family: var(--font);
	margin: 15px auto;
	font-size: 14pt;
	display: block;
}

button.btn-shop:hover {
    background: white;
    color: var(--bg-color);
}

/* Botones */

/* Formulario contacto */

#formulario {
	width: 48%;
	padding: 3%;
}

#data-contacto {
	padding: 20px 50px;
    border-left: 2px solid white;
}

#data-contacto img {
	width: 20px;
}

.contact-form {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 15px;
	font-size: 14pt;
}

.contact-form label {
	font-family: var(--font);
	color: white;
    font-weight: 400;
	margin-top: 20px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 10px;
    border: 0px;
    font-size: 16px;
	font-family: var(--font);
}

.contact-form button {
    padding: 12px;
    background: var(--bg-color);
    color: white;
    border: 2px solid white;
    cursor: pointer;
	font-family: var(--font);
	width: 120px;
	font-size: 14pt;
}

.contact-form button:hover {
    background: white;
	color: var(--bg-color);
}

/* Formulario contacto */

#info-contacto {
	width: 48%;
	padding: 3%;
}

#contact-page {
	display: flex;
	gap: 3%;
}

header {
	display: flex;
	gap: 5px;
	width: 100%;
	table-layout: fixed;
	margin: 20px 0;
}

header a {
	font-family: var(--font);
	text-decoration: none;
	color: var(--lightgray);
	font-weight: 400;	
}

header a:hover {
	text-decoration: underline;
	color: white;
	font-weight: 400;
}

header > div {
    display: table-cell;
}

ul {
	padding-inline-start: 0;
}

#title {
	width: 60%;
	padding: 5px;
	text-align: center;
}

#title > img {
	width: 30%;
	margin: 20px 35% 0 35%;
}

#lang {
	width: 20%;
	text-align: left;
	vertical-align: top;
	padding: 5px;
}

#lang a {
	font-weight: 400;
	color: var(--midgray);
	text-decoration: none;
}

#lang a.act-l {
	font-weight: 700;
	text-decoration: none;
	color: white;
}

#shop {
	width: 20%;
	text-align: right;
	vertical-align: top;
	padding: 5px;
}

#shop p {
	text-align: right;
}

#menu {
    display: flex;
    justify-content: center;
    gap: 3px;
    padding: 15px 0;
    margin: 0 auto;
    font-size: 12pt;
}

#menu li {
    list-style: none;
}

#menu li a {
    display: block;
    text-decoration: none;
    color: white;
    font-weight: 400;
	padding: 0 15px;
}

#menu li a:hover {
	color: var(--bg-color);
	background-color: var(--pink);
}

#menu li a.active {
	color: var(--bg-color);
	background-color: white;
}

#menu-container {
	display: none;
}

#menu-container ul {
	list-style: none;
}

#menu-container a {
	text-decoration: none;
	color: white;
}

#menu-container a.active {
	background-color: var(--pink);
	color: var(--bg-color);
	padding: 0 15px;
}

#menu-wrapper {
    overflow: hidden;
    max-width: 100%;
    cursor: pointer;
}

#menu-wrapper #hamburger-menu {
    position: relative;
    width: 25px;
    height: 20px;
    margin: 25px auto;
}

#menu-wrapper #hamburger-menu span {
    opacity: 1;
    left: 0;
    display: block;
    width: 100%;
    height: 2px;
    border-radius: 10px;
    color: var(--bg-color);
    background-color: white;
    position: absolute;
    transform: rotate(0deg);
    transition: .4s ease-in-out;
}

#menu-wrapper #hamburger-menu span:nth-child(1) {
    top: 0;
}
#menu-wrapper #hamburger-menu span:nth-child(2) {
    top: 9px;
}
#menu-wrapper #hamburger-menu span:nth-child(3) {
    top: 18px;
}
#menu-wrapper #hamburger-menu.open span:nth-child(1) {
    transform: translateY(9px) rotate(135deg);
}
#menu-wrapper #hamburger-menu.open span:nth-child(2) {
    opacity: 0;
    transform: translateX(0px);
}
#menu-wrapper #hamburger-menu.open span:nth-child(3) {
    transform: translateY(-9px) rotate(-135deg);
}

#menu-container .menu-list .menu-submenu {
    padding-top: 20px;
    padding-bottom: 20px;
}

#menu-container .menu-list {
    padding-left: 0;
    display: block;
    position: absolute;
    width: 100%;
    max-width: none;
    z-index: 999;
    overflow-y: auto;
    overflow-x: hidden;
    left: -100%;
	background-color: var(--bg-color);
}

#menu-container .menu-list li.accordion-toggle, #menu-container .menu-list .menu-login {
    font-size: 16px;
    padding: 10px;
	text-align: center;
}

#menu-container .menu-list li:first-of-type {
    border-top: 0;
}

#lang-mobile {
	margin-bottom: 20px;;
}

#lang-mobile a {
	color: var(--midgray);
}

.accordion-toggle, .accordion-content {
    cursor: pointer;
    font-size: 16px;
    position: relative;
    letter-spacing: 1px;
}

.accordion-content {
    display: none;
}

#bio {
	display: flex;
	align-items: center;
}

#photo-bio {
	z-index: 10;
	width: 45%;
	padding: 20px;
}

#photo-bio img {
	width: 100%;
}

#info-bio {
	width: 65%;
	background: white;
	padding: 40px 80px;
	padding-left: 120px;
	position: relative;
	left: -100px;
}

#info-bio p {
	color: var(--bg-color);
}

#info-bio h1 {
	color: var(--bg-color);
	text-decoration: none;
	font-size: 35pt;
    margin-bottom: 10px;
}

#info-bio h2 {
	color: var(--lightgray);
	text-transform: none;
	margin-top: 0;
	margin-bottom: 30px;
    font-size: 20pt;
}

#info-bio a {
	color: var(--bg-color);
}

.rrss-bio > p {
	text-align: right;
}

.rrss-bio a {
	text-decoration: none;
}

#info-bio .icon-rrss {
	fill: var(--bg-color);
}

#info-bio .icon-rrss:hover {
	fill: var(--pink);
}

footer {
	text-align: center;
	padding: 20px 0;
}

#sitemap {
	width: 25%;
	text-align: center;
}

#sitemap > ul > li {
	margin: 15px;
}

#legal {
	width: 25%;
	text-align: center;
}

#legal > ul > li {
	margin: 15px;
}

#social {
	width: 50%;
	padding-right: 20px;
}

.copyright {
	margin-top: 100px;
}

.copyright > p {
	text-align: right;
	margin-right: 25px;
	font-size: 10pt;
	color: var(--lightgray);
}

.newsletter > p {
	position: relative;
	margin-bottom: 0;
}

.suscription > .email-sus{
	width: 97%;
    height: 40px;
    font-family: 'Courier Prime';
    font-size: 14pt;
    border: 0;
	padding: 5px 10px;
}

.suscription > .btn-sus{
    font-family: 'Courier Prime';
    font-size: 14pt;
	color: white;
    border: solid 2px white;
	padding: 10px;
	background: none;
	position: relative;
	float: right;
	margin-top: 10px;
	cursor: pointer;
}

.suscription > .btn-sus:hover{
	color: var(--bg-color);
    background: white;
}

.rrss-footer > p {
	text-align: right;
}

.rrss-footer a {
	text-decoration: none;
}

.icon-rrss {
	fill: white;
}

.icon-rrss:hover {
	fill: var(--pink);
}


@media (max-width: 1050px) {
	#title {
		width: 100%;
	}

	#title > img {
		width: 50%;
		margin: 20px 25% 0 25%;
	}

	#lang {
		display: none;
	}

	#shop {
		display: none;
	}
	
	#menu {
		display: none;
	}
	
	#menu-container {
		display: inline;
	}
	
	footer > div {
    	display: block;
		margin: 0 5%;
	}
	
	#sitemap {
		width: 90%;
	}
	
	#legal {
		width: 90%;
	}
	
	#social {
		width: 90%;
	}
	
	#contact-page {
		display: block;
	}
	
	#formulario {
		width: 90%;
		padding: 2%;
		margin: 2%;
	}
	
	#info-contacto {
		width: 90%;
		padding: 2%;
		margin: 2%;
	}
	
	#bio {
		display: flex;
		flex-direction: column;
		position: relative;
	}

	#photo-bio {
		z-index: 2;
		width: 45%;
		padding: 20px;
		position: relative;
		margin-bottom: -100px;
	}

	#info-bio {
		width: 90%;
		padding: 40px 80px;
		padding-top: 80px;
		left: 0;
	}
}