<style>

        /* ======================================
            ESTILOS GENERALES
        ====================================== */
        body {
            margin: 0;
            padding: 0;
            font-family: 'Georgia', serif;
            background-color: #f4e4c1; /* PAPIRO */
            color: #333;
            line-height: 1.6;
        }

        a { 
            color: #4d6fae;  /* Azul pastel suave */
            text-decoration: none;
            font-weight: bold;
        }
        a:hover { color: #6b8be0; }

        h1, h2, h3 {
            font-weight: normal;
            letter-spacing: 1px;
        }

        img {
            max-width: 100%;
            height: auto;
            border-radius: 4px;
        }

        /* ======================================
            CONTENEDORES
        ====================================== */
        .container {
            width: 90%;
            max-width: 1200px;
            margin: auto;
            padding: 40px 0;
        }

        /* ======================================
            HEADER
        ====================================== */
        header {
            background: #e7d6ae; /* Papiro más oscuro */
            padding: 18px 0;
            text-align: center;
            border-bottom: 2px solid #c5b086;
            position: sticky;
            top: 0;
            z-index: 20;
        }

        nav a {
            margin: 0 15px;
            font-size: 18px;
            color: #4d6fae;
        }

        nav a:hover {
            color: #6b8be0;
        }

        /* ======================================
            PORTADA PRINCIPAL
        ====================================== */
        .hero {
            background-image: url('../../img/portada.png');
            background-size: cover;       /* La imagen cubre todo el ancho */
            background-position: center;  /* Centra la imagen */
            background-repeat: no-repeat; /* Evita que se repita */

            color: white;                 /* Color del texto encima */
            padding: 100px 20px;          /* Espaciado para que se vea bien */
            text-align: center;           /* Centrar el texto */
        }

        .hero h1 {
            font-size: 60px;
            text-shadow: 2px 2px 8px #000;
        }

        /* ======================================
            SECCIÓN: BOOK & POETRY
        ====================================== */
        .grid-books {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
        }

        .book-card {
            background: #fffdf6;
            padding: 20px;
            border: 1px solid #d9c7a4;
            border-radius: 6px;
            transition: .3s ease;
        }

        .book-card:hover {
            transform: translateY(-5px);
            border-color: #a8c5ff; /* azul pastel */
        }

        .book-title {
            margin-top: 10px;
            font-size: 20px;
            color: #4d6fae;
        }

        /* ======================================
            BIOGRAFÍA
        ====================================== */
        .bio {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            align-items: center;
        }

        @media (max-width: 800px) {
            .bio {
                grid-template-columns: 1fr;
                text-align: center;
            }
        }

        /* ======================================
            CONTACTO
        ====================================== */
        form input, form textarea {
            width: 100%;
            padding: 12px;
            background: #fffdf6;
            border: 1px solid #c5b086;
            color: #333;
            margin-bottom: 15px;
            border-radius: 5px;
        }

        form button {
            background: #a8c5ff; /* azul pastel */
            padding: 12px 25px;
            border: none;
            color: #000;
            border-radius: 5px;
            cursor: pointer;
            font-weight: bold;
        }

        form button:hover {
            background: #c3d7ff;
        }

        /* ======================================
            FOOTER
        ====================================== */
        footer {
            text-align: center;
            padding: 40px 10px;
            background: #e7d6ae;
            border-top: 2px solid #c5b086;
            margin-top: 60px;
            color: #3b3b3b;
            font-weight: bold;
        }

    </style>