body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #f0f7f6;
}

/* Navbar */
nav {
    background-color: #2a9d8f;
    color: white;
    padding: 15px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
    margin: 0;
}

nav a {
    text-decoration: none;
    color: white;
    font-weight: bold;
}

/* Secciones */
.seccion {
    padding: 60px 40px;
    background-color: #ffffff;
    margin: 30px;
    border-radius: 10px;
}

#software {
    background-color: #e6f4f1;
}

/* Layout */
.contenido {
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.texto {
    flex: 1;
}

/* Contenedor de imagen */
.imagen {
    flex: 1;
    height: 250px;
    border-radius: 10px;
    overflow: hidden; /* IMPORTANTE */
}

/* Imagen ocupa todo el espacio */
.imagen img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ajusta sin deformar */
    display: block;
}
.button {
	width: 200px;
	margin-top: 40px;
	margin-right: auto;
	margin-bottom: auto;
	margin-left: auto;
	padding-top: 20px;
	padding-right: 10px;
	padding-bottom: 20px;
	padding-left: 10px;
	text-align: center;
	vertical-align: middle;
	border-radius: 0px;
	text-transform: uppercase;
	font-weight: bold;
	letter-spacing: 2px;
	border: 3px solid #FFFFFF;
	color: #FFFFFF;
	transition: all 0.3s linear;
	
}
.button a {
    color: white; /* Cambia aquí el color */
    text-decoration: none; /* Opcional: quita el subrayado */
}
.button:hover {
	background-color: #2a9d8f;
	color: black;
	cursor: pointer;
}
/* Footer */
footer {
    text-align: center;
    padding: 20px;
    background-color: #264653;
    color: white;
}