/* Reset básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    background-color: #ffffff;
    color: #333;
    line-height: 1.6;
}

.container {
    display: flex;
    flex-direction: column;
    gap: 4rem;
    padding: 4rem 2rem;
    max-width: 900px;
    margin: auto;
}

.seccion {
    text-align: center;
    background-color: #f9f9f9;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.seccion img {
    width: 100%;
    max-width: 600px;
    border-radius: 12px;
    margin-bottom: 1.5rem;
}

.titulo {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #e67e22;
    /* acento cálido */
    letter-spacing: 1px;
}

.texto {
    font-size: 1.1rem;
    color: #555;
    max-width: 600px;
    margin: auto;
}

/* Animación suave al hacer scroll */
.seccion {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.seccion.visible {
    opacity: 1;
    transform: translateY(0);
}