@import url('https://googleapis.com');

/* Estilos Generales y Reset */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    /* Cuerpo del texto en Roboto (Sans-Serif) para una lectura fluida en móviles */
    font-family: 'Roboto', -apple-system, BlinkMacSystemFont, sans-serif;
    color: #333333;
    background-color: #ffffff;
    line-height: 1.5;
}

/* Contenedor Principal Adaptable (Mobile First) */
.container {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    padding: 0 20px 40px 20px;
    /* Alineación a la izquierda */
    text-align: left;
    
    /* Cortes de palabra automáticos (Guionado) */
    -webkit-hyphens: auto;
    -ms-hyphens: auto;
    hyphens: auto;
}

/* Encabezado */
header {
    text-align: center;
    padding: 40px 0 20px 0;
}

header h1 {
    /* Título principal con Roboto Serif */
    font-family: 'Roboto Serif', Georgia, serif;
    font-size: 2rem;
    font-weight: 700;
    color: #111111;
    margin-bottom: 5px;
}

header p {
    font-family: 'Roboto Serif', Georgia, serif;
    font-size: 17px;
    color: #888888;
}

/* Imagen Principal Adaptable */
.hero-image-container {
    width: 100%;
    margin-bottom: 40px;
    overflow: hidden;
}

.hero-image-container img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    margin-top: 80px;
}

/* Secciones de Contenido */
.section {
    margin-bottom: 40px;
}

.section-tag {
    font-family: 'Roboto Serif', Georgia, serif;
    font-size: 13px;
    color: #888888;
    letter-spacing: 1px;
    margin-bottom: 16px;
    text-transform: uppercase;
    font-weight: 600;
}

.section h2 {
    /* Títulos de sección con Roboto Serif */
    font-family: 'Roboto Serif', Georgia, serif;
    font-size: 24px;
    color: #111111;
    line-height: 1.4;
    margin-bottom: 20px;
    font-weight: 600;
}

.section p {
    font-family: 'Roboto Serif', Georgia, serif;
    font-size: 18px;
    color: #444444;
    margin-bottom: 15px;
    text-align: justify;
}

.section p:last-child {
    margin-bottom: 0;
}
