@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
/* Reseteo de estilo básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Estilos generales */
body {
    font-family: 'Montserrat';
    line-height: 1.6;
    color: #051334ca;
    background-color: #031e42ef;
    font-size: 16px;
}


.container {
    color: #000000;
    width: 90%;
    max-width: 2000px;
    margin: 0 auto;
    overflow: hidden;
    padding: var(--padding-container);
    display: grid;
    gap: 20px;
}

html{
    scroll-behavior: smooth;
}

section[id]{
    scroll-margin-top: 190px;
}

/* Header */
/* Header */
.nav {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px;
    transition: all 0.5s ease;
    position: fixed;
    z-index: 1000; /* <-- Agregado para que el menú esté por encima */
}

.nav.active {
    position: fixed;
    background: #031e4200;
    padding: 15px;
    z-index: 1000; /* <-- También aquí por si cambia de clase */
}
.nav.active a{
    color: #ffffff;
}
.nav__title {
    font-weight: 300;
}

.nav__link {
    margin-left: auto;
    padding: 0;
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: max-content;
    gap: 2em;
}

.nav__items {
    list-style: none;
}

.nav__links {
    color: #000000;
    text-decoration: none;
}

.nav__menu {
    margin-left: auto;
    cursor: pointer;
    display: none;
}

.nav__img {
    display: block;
    width: 30px;
}

header .logo img{
    height: 80px;
    width: auto;
}

.nav__close {
    display: var(--show, none);
}

.nav__link--menu li a{
    color: #FFF;
    text-decoration: none;
    transition: all 0.5s ease;
}
.nav__link--menu li a:hover{
    padding: 5px 10px;
    background:#6C96A9;
    color: #ffffff;
    border-radius: 15px;
}
/* Sección Hero */


/* Footer */
.footer{
    background-color: #0d0e2e;
}

.footer__title{
    font-weight: 300;
    font-size: 2rem;
    margin-bottom: 30px;
}

.footer__title, .footer__newsletter{
    color: #fff;
}


.footer__container{
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #fff;
    padding-bottom: 60px;
    color: white;
}

.nav--footer{
    padding-bottom: 20px;
    display: grid;
    gap: 1em;
    grid-auto-flow: row;
    height: 100%;
}

.footer__copy{
    --padding-container: 30px 0;
    text-align: center;
    color: #fff;
}

.footer__copyright{
    font-weight: 300;
}

.footer__icons{
    margin-bottom: 10px;
}

.footer__img{
    width: 30px;
}




.barra{
    font-size: 20px; /* Cambia este valor según necesites */
    font-weight: bold; /* Opcional, para hacerlo más prominente */
    text-align: center; /* Opcional, para centrar el texto */
    color: #f3f8f8; /* Cambia el color según tu diseño */
}
.conta{
    font-size: 30px; /* Cambia este valor según necesites */
    font-weight: bold; /* Opcional, para hacerlo más prominente */
    text-align: center; /* Opcional, para centrar el texto */
    color: #eff1f1; /* Cambia el color según tu diseño */
}
.conta1{
    font-size: 30px; /* Cambia este valor según necesites */
    font-weight: bold; /* Opcional, para hacerlo más prominente */
    text-align: center; /* Opcional, para centrar el texto */
    color: #eff1f1; /* Cambia el color según tu diseño */
}
.proyectos-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.forma {
    background: #ffffff;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

@media (max-width:800px){
    .nav__menu{
        display: block;
    }

    .nav__link--menu{
        position: fixed;
        background-color: hsla(0, 0%, 0%, 0.813);
        top: 0;
        left: 0;
        height: 100%;
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: space-evenly;
        align-items: center;
        z-index: 100;
        opacity: 0;
        pointer-events: none;
        transition: .7s opacity;
    }

    .nav__link--show{
        --show: block;
        opacity:1 ;
        pointer-events: unset;
    }

    .nav__close{
        position: absolute;
        top: 30px;
        right: 30px;
        width: 30px;
        cursor: pointer;
    }
    .hero_title{
        font-size: 2.5rem;
    }
    .hero h2 {
        font-size: 30px;
        margin-bottom: 2rem;
        text-align: center;
    }
}
@media (max-width:600px){
    .nav__menu{
        display: block;
    }

    .nav__link--menu{
        position: fixed;
        background-color: hsla(0, 0%, 0%, 0.813);
        top: 0;
        left: 0;
        height: 100%;
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: space-evenly;
        align-items: center;
        z-index: 100;
        opacity: 0;
        pointer-events: none;
        transition: .7s opacity;
    }

    .nav__link--show{
        --show: block;
        opacity:1 ;
        pointer-events: unset;
    }

    .nav__close{
        position: absolute;
        top: 30px;
        right: 30px;
        width: 30px;
        cursor: pointer;
    }
    .hero h2{
        font-size: 30px;
    }
}


.contenedor {
	width: 90%;
	max-width: 1200px;
	margin: auto;
	padding: 70px 0;

	/* Flexbox */
	/* display: flex;
	gap: 20px; */

	/* Grid */
	display: grid;
}
.titulo {
	font-size: 24px;
	padding: 20px 0;
}

.contenedor-conciertos {
	/* Flexbox */
	/* width: 70%;

	display: flex;
	flex-wrap: wrap;
	gap: 20px; */

	/* Grid */
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}

.card {
	border-radius: 20px;
	min-height: 400px;
	font-weight: bold;
	padding: 20px;
	position: relative;
	overflow: hidden;
	background-size: cover;
	background-position: center center;

	/* Flexbox */
	/* width: calc(33.33% - 20px); */
}

.card:hover{
	transform: scale(1.2);
	transition-duration: 1s;
	z-index: 2;
}

a .card .textos {
	height: 100%;
	color: #ffffff;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	text-shadow: 
	-2px -2px 0 rgb(0, 0, 0),
	-2px 2px 0 rgb(0, 0, 0),
	2px 2px 0 rgb(0, 0, 0),
	2px -2px 0 rgb(0, 0, 0) ;

}
.link{
	text-decoration: none;
}

.boton{
    background-color: #2091F9;
    justify-self:left;
    padding: 13px 30px;
    border-radius: 32px;
	margin-bottom: 20px;
}
.boton a{
	text-decoration: none;
	color: #fff;
}
.boton:hover{
	background: black;
}

@media screen and (max-width: 900px) {
	body {
		background: #031e42ef;
		color: #fff;
		min-height: 100vh;
		flex-direction: column;
	}
	.contenedor-conciertos {
		display: grid;
		grid-template-columns: repeat(1, 1fr);
		gap: 20px;
	}
	.boton{
		background-color: #2091F9;
		justify-self:center;
		padding: 13px 30px;
		border-radius: 32px;
		margin-bottom: 20px;
	}
	.boton a{
		text-decoration: none;
		color: #fff;
	}
	.boton:hover{
		background: black;
	}
	.card:hover{
		transform: none;
		z-index: auto;
	}
}

@media screen and (max-width: 700px) {
	
}

@media screen and (max-width: 600px) {

}
