@font-face {
	font-family: 'Microgramma-Bold';
	src: url('/fonts/Microgramma-D-Bold-Exte.ttf') format('truetype');
}
@font-face {
	font-family: 'Microgramma-Medium';
	src: url('/fonts/Microgramma-D-MediExte.ttf') format('truetype');
}
@font-face {
	font-family: 'Montserrat-ExtraBold';
	src: url('/fonts/Montserrat-ExtraBold.ttf') format('truetype');
}
@font-face {
	font-family: 'Montserrat-Regular';
	src: url('/fonts/Montserrat-Regular.ttf') format('truetype');
}

body {
	font-family: 'Montserrat-Regular', sans-serif;
}
h1 {
	font-family: 'Microgramma-Bold', sans-serif;
}
h3, h2 {
	font-family: 'Microgramma-Medium', sans-serif;
}

h4 {
	font-family: 'Microgramma-Medium', sans-serif;
}

h5 {
	font-family: 'Montserrat-Regular', sans-serif;
	font-size: 30px;
	letter-spacing: 3px;
}

.nav-menu a {
	font-family: 'Montserrat-Regular', sans-serif;
}




* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    min-height: 100vh;
}

/* Estilos para el nav */
.navbar {
    position: relative;
    background-image: url('/images/1.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 80px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 50px;
}

.logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.logo img {
    height: 50px;
    width: auto;
}

.nav-menu {
    display: flex;
    list-style: none;
    position: relative;
    z-index: 1;
}

.nav-menu li {
    margin: 0 15px;
}

.nav-menu a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: #ffd700;
}

.hamburger {
    display: none;
    cursor: pointer;
    color: white;
    font-size: 30px;
    z-index: 2;
}

/* Estilos para la sección dividida */
.split-section {
    display: flex;
    min-height: 400px;
	margin-top: 50px;
}

.left-side {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.left-side img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.right-side {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px;
}

.content-wrapper {
    max-width: 700px;
    text-align: center;
    letter-spacing: 37px;
}

.content-wrapper h2 {
    margin-bottom: 0;
    font-size: 120px;
    color: #000000;
}

.content-wrapper h3 {
    margin-bottom: 0;
    font-size: 70px;
    color: #646363;
}

.content-wrapper h4 {
    margin-bottom: 0;
    font-size: 50px;
    color: #646363;
}

.content-wrapper p {
    margin-bottom: 30px;
    line-height: 1.6;
    color: #666;
}

.btn-secondary {
    display: inline-block;
    padding: 10px 20px;
    background-color: #333;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.btn-secondary:hover {
    background-color: #555;
}

/* Estilos para la sección de imagen centrada */
.centered-image-section {
    padding: 60px 20px;
    text-align: center;
    background-color: #fff;
}

.centered-image-section img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

/* Estilos para la nueva sección con texto y luego imagen */
.text-image-section {
    padding: 60px 20px;
    text-align: center;
    background-color: #f5f5f5;
}

.text-container {
    max-width: 1000px;
    margin: 0 auto 40px auto;
}

.text-container h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #333;
}

.text-container p {
    font-size: 18px;
    line-height: 1.6;
    color: #555;
}

.image-container {
    max-width: 900px;
    margin: 0 auto;
}

.image-container img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}


/* Estilos para el separador */
.separator img {
	width: 100%;
	margin-block-end: 50px;
}

/* Estilos para secciones divididas */
.two-column-section {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 20px;
}
.column {
	flex: 1;
	min-width: 300px;
	text-align: center;
}
.column img {
	width: 100%;
	max-width: 400px;
	height: auto;
	margin-block-end: 20px;
	margin-block-start: 20px;
}

.column p {
	background: rgb(255,255,255);
	background: linear-gradient(90deg, rgba(255,255,255,1) 0%, rgba(208,208,208,1) 50%, rgba(255,255,255,1) 100%);
	margin-bottom: 10px;
}

/* Estilos para secciones de imagenes divididas */
.two-column-img-section {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 20px;
}
.column-img {
	flex: 1;
	min-width: 300px;
	text-align: center;
}
.column-img img {
	width: 100%;
	max-width: 600px;
	height: auto;
	margin-block-end: 20px;
	margin-block-start: 20px;
}

/* Estilos para el contenido principal */
.main-content {
	max-width: 1100px;
    padding: 50px;
    text-align: center;
	margin: 0 auto;
}

.main-content p {
	font-family: 'Montserrat-Regular', sans-serif;
	font-size: 20px;
	letter-spacing: 3px;
}

h1 {
    margin-bottom: 20px;
}

p {
    margin-bottom: 40px;
    line-height: 1.5;
}

.cta-button {
    display: inline-block;
    padding: 12px 24px;
    background-color: #4CAF50;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    text-decoration: none;
    transition: background-color 0.3s;
}

.cta-button:hover {
    background-color: #45a049;
}

/* Estilos para la sección de imagen centrada 2 */
.centered-image-section-2 {
    padding: 60px 20px;
    text-align: center;
    background-color: #fff;
}

.centered-image-section-2 img {
    max-width: 60%;
    height: auto;
    border-radius: 8px;
}

/* Estilos para footer */
.text-image-section-footer {
    padding: 60px 20px;
    text-align: center;
    background-color: #f5f5f5;
}

.text-container-footer {
    max-width: 800px;
    margin: 0 auto 40px auto;
}

.text-container-footer h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #333;
}

.text-container-footer p {
	margin-bottom: 0;
    font-size: 18px;
    line-height: 1.6;
    color: #555;
}

.image-container-footer {
    max-width: 200px;
    margin: 0 auto;
}

.image-container-footer img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}



/* Media queries para diseño responsive */
@media screen and (max-width: 768px) {
    .navbar {
        padding: 0 20px;
        position: fixed;
        width: 100%;
        margin-top: -50px;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        flex-direction: column;
        background-color: rgba(0, 0, 0, 0.9);
        width: 100%;
        height: 100vh;
        text-align: center;
        transition: right 0.5s;
        padding-top: 80px;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-menu li {
        margin: 20px 0;
    }

    .hamburger {
        display: block;
    }
    
    /* Cambio a disposición vertical para la sección dividida en móviles */
    .split-section {
        flex-direction: column;
    }
    
    .left-side, .right-side {
        width: 100%;
    }
    
    .left-side img {
        height: auto;
    }
    
    .right-side {
        padding: 30px 20px;
    }

	.content-wrapper {
		letter-spacing: 20px;
	}

	.content-wrapper h4 {
		font-size: 10px;
	}

	.content-wrapper h2 {
		font-size: 45px;
	}

	.content-wrapper h3 {
		font-size: 19px;
	}
    
    /* Ajustes para la sección de imagen centrada en móviles */
    .centered-image-section {
        padding: 40px 15px;
    }

	.two-column-section {
		flex-direction: column;
		align-items: center;
	}

    /* Ajustes para la sección de imagen centrada en móviles */
    .centered-image-section-2 {
        padding: 40px 15px;
    }

	.centered-image-section-2 img {
        max-width: 80%;
    }

	/* Texto en mòviles */
	.main-content p {
		font-size: 13px;
	}

	h5 {
		font-size: 15px;
	}
}