    header{
    font-family: Arial,Helvetica, sans-serif;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 40px;
    background-color: #1c1c1c;
    border-bottom: 1px solid #2e2e2e
}
.logo {
    display: flex;
    align-items: center;
    font-size: 22px;
    font-weight: bold;
    background: #fff;
    color: #000;
    padding: 5px 10px;
    border-radius: 6px;
}
nav {
    flex: 1;
    display: flex;
    justify-content: center;
    gap: 24px;
}
nav a {
    color: #888;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s;
}
nav a:hover {
    color: #fff;
}
.buttons {
    display: flex;
    gap: 10px;
}
.login {
    background: transparent;
    border: 1px solid #2e5eff;
    color: #2e5eff;
    padding: 6px 14px;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.3s, color 0.3s;
}
.login:hover {
    background: #2e5eff;
    color: #fff;
}
.signup {
    background: #2e5eff;
    border: none;
    color: #fff;
    padding: 6px 14px;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.3s;
}
.signup:hover {
    background: #1c46d9;
}
.dropdown {
    display: none;
    position: absolute;
    right: 0;
    top: 45px;
    background: #1c1c1c;
    border: 1px solid #2e2e2e;
    border-radius: 6px;
    overflow: hidden;
    min-width: 160px;
    z-index: 10;
}
.dropdown a {
    display: block;
    padding: 10px 15px;
    color: #888;
    text-decoration: none;
    transition: background 0.3s, color 0.3s;
}
.dropdown a:hover {
    background: #2e5eff;
    color: #fff;
}
.dropdown.show {
    display: block;
}

body {
    margin: 0;
    height: 100vh;
    background-image: url("https://fireart.studio/wp-content/uploads/2021/02/frame-188-5.jpg");
    background-color: #000;
    font-family: Arial, sans-serif;
    text-align: justify;
    color: aliceblue;
}

.home {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 50px;
    background-color: #f5f5f5;
}
.home img {
    width: 400px;
    border-radius: 12px;
    margin-right: 40px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}
.home .descripcion {
    max-width: 500px;
}
.home .descripcion h1 {
    font-size: 2em;
    color: #2c3e50;
 }
.home .descripcion p {
    font-size: 1.1em;
    color: #555;
    line-height: 1.6;
}

.contenedor {
	position: relative;
 	display: inline-block;
    width: 500px;   
    height: 250px;
    cursor: pointer;
}
.contenedor img {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 12px;
}
.texto {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 24px;
    font-weight: bold;
    pointer-events: none; 
}
.mapa {
    position: relative;
    margin: 20px auto;
    max-width: 600px;
}
iframe {
 	width: 100%;
 	height: 400px;
  	border: 0;
  	border-radius: 12px;
	box-shadow: 0 0 10px rgba(0,0,0,0.3);
}

.imagenes{
    width: 40px;
    height: 40px;
    border-radius: 12px;
}

.social-bar {
    background-color: #000;
	display: flex;
	gap: 10px;
	padding: 10px;
	background-color: #1c1c1c;
    border-radius: 6px;
    justify-content: center;
    align-items: center;
}
.social-bar a { 
	display: inline-block;
	width: 40px;
	height: 40px;
    text-decoration: none;
}
.social-bar img {
	width: 100%;
	height: auto;
    vertical-align: middle;
}
.formato_imagen{
    width: 300px;
    height: 400px;
    border-radius: 12px;
    box-shadow: 0 0 10px rgba(0,0,0,0.3);
    margin-bottom: 10px;
}