body{
	background-color:white;
	color:white;
	font-family: "Caveat Brush", static;
}
header{
	background-color:white;
	color: #791519;
	height: 100px;
	font-size: 4em;
	font-family: "Caveat Brush", static;
}
header img{
	width: 100%;
}
nav{
	background-color:cornsilk;
	font-family: "Caveat Brush", static;
}

nav ul li{
	display: inline;
	margin-right: 50px;
	font-size: 2em;
}	
nav ul li a{
	color: #FFAE00;
	text-decoration: none;
	list-style-type: none;
}

section{
	background-color: none;
	font-family: 'Times New Roman', Times, serif, static;
	color:black;
	font-size: 1.2em;
	height: 100px;
	width: 1400px;
	margin: 30px;
	padding: 5px;
	text-decoration: none;
	list-style-type: none;
	float: left;
}
footer{
	font-family: "Caveat Brush", static;
	color:darkgrey;
	font-size: 1em;
	width: 100%;
	float: left;
}

.seccion-zigzag {
    max-width: 1000px;
    margin: 80px auto;
    padding: 0 20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.fila {
    display: flex;
    align-items: center;
    gap: 50px;
    margin-bottom: 100px;
    flex-wrap: wrap; /* Para que en celular se vea uno arriba de otro */
}

.fila .imagen, .fila .contenido {
    flex: 1;
    min-width: 300px;
}

.fila .imagen img {
    width: 100%;
    border-radius: 20px;
    filter: grayscale(20%); /* Un toque elegante */
    transition: 0.3s;
}

.fila .imagen img:hover {
    filter: grayscale(0%);
    transform: scale(1.02);
}

.fila .contenido span {
    color: #ff5733; /* Un color que resalte */
    font-weight: bold;
    font-size: 14px;
    letter-spacing: 2px;
}

.fila .contenido h2 {
    font-size: 32px;
    margin: 10px 0;
    color: #222;
}

.fila .contenido p {
    color: #555;
    line-height: 1.8;
}
