:root {
    --grass-green: #7cb342;
    --leaf-dark: #558b2f;
    --sky-blue: #81d4fa;
    --sunset-orange: #ff9800;
    --flower-pink: #ec407a;
    --dirt-brown: rgb(139, 99, 68);
    --sunshine-yellow: #ffd54f;
    --bug-red: #e53935;
    --story-purple: #9b59b6;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Fredoka', sans-serif;
    background: linear-gradient(to bottom, var(--sky-blue) 0%, var(--grass-green) 100%);
    overflow-x: hidden;
    position: relative;
}

/* Animated background elements */
.garden-bg {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
    overflow: hidden;
}

.flower {
    position: absolute;
    width: 60px;
    height: 80px;
    animation: sway 4s ease-in-out infinite;
}

@keyframes sway {
    0%, 100% { transform: rotate(-5deg); }
    50% { transform: rotate(5deg); }
}

.flower1 { bottom: 0; left: 10%; animation-delay: 0s; }
.flower2 { bottom: 0; left: 30%; animation-delay: 0.5s; }
.flower3 { bottom: 0; left: 60%; animation-delay: 1s; }
.flower4 { bottom: 0; left: 85%; animation-delay: 1.5s; }

.bee {
    position: absolute;
    width: 80px;    /* Tamaño de la abeja */
    height: 80px;
    animation: fly 15s linear infinite;
}

@keyframes fly {
    0% { left: -50px; top: 45%; transform: scaleX(-1); }
    8% { left: 5%; top: 12%; transform: scaleX(-1); }
    15% { left: 15%; top: 38%; transform: scaleX(-1); }
    23% { left: 28%; top: 8%; transform: scaleX(-1); }
    31% { left: 42%; top: 32%; transform: scaleX(-1); }
    38% { left: 58%; top: 15%; transform: scaleX(-1); }
    46% { left: 75%; top: 40%; transform: scaleX(-1); }
    49.9% { left: 110%; top: 22%; transform: scaleX(-1); }
    50% { left: 110%; top: 22%; transform: scaleX(-1); }
    58% { left: 100%; top: 35%; transform: scaleX(1); }   /* VOLTEA */
    65% { left: 72%; top: 10%; transform: scaleX(1); }
    73% { left: 58%; top: 28%; transform: scaleX(1); }
    81% { left: 43%; top: 18%; transform: scaleX(1); }
    88% { left: 25%; top: 42%; transform: scaleX(1); }
    95% { left: 8%; top: 20%; transform: scaleX(1); }
    99.9% { left: -50px; top: 45%; transform: scaleX(1); }
    100% { left: -50px; top: 45%; transform: scaleX(-1); }  /* VOLTEA */
}

/* ============================================
   HORMIGA QUE RECOGE COMIDA
   ============================================ */

/* === COMIDA ESTÁTICA === */
.food-static {
    position: fixed;
    bottom: 18%;
    left: 55%;
    font-size: 40px;
    z-index: 50;
    pointer-events: none;
    animation: food-visibility 35s infinite;
}

@keyframes food-visibility {
    0%, 2% { opacity: 0; transform: scale(0); }
    3% { opacity: 1; transform: scale(1); }  /* Aparece */
    45% { opacity: 1; }
    45.1%, 100% { opacity: 0; }  /* Desaparece cuando hormiga llega */
}

/* === HORMIGA SOLA (va hacia comida con movimiento errático) === */
.ant-solo {
    position: fixed;
    bottom: 18%;
    width: 40px;
	height: auto;
    z-index: 51;
    pointer-events: none;
    animation: ant-solo-journey 35s infinite;
	animation-timing-function: linear;
}

@keyframes ant-solo-journey {
0%, 2% { left: -50px; bottom: 18%; opacity: 0; transform: scaleX(-1) rotate(0deg); }
    3% { left: -50px; opacity: 1; } /* Aparece */

    /* Carrera rápida 1 */
    7% { left: 10%; bottom: 20%; transform: scaleX(-1) rotate(-5deg); }
    7.01%, 14% { left: 10%; bottom: 20%; transform: scaleX(-1) rotate(0deg); } /* PARADA LARGA */

    /* Dash corto 2 */
    17% { left: 18%; bottom: 16%; transform: scaleX(-1) rotate(10deg); }
    17.01%, 19% { left: 18%; bottom: 16%; transform: scaleX(-1) rotate(0deg); } /* PARADA CORTA */

    /* Dash largo 3 */
    28% { left: 35%; bottom: 22%; transform: scaleX(-1) rotate(-8deg); }
    28.01%, 32% { left: 35%; bottom: 22%; transform: scaleX(-1) rotate(0deg); } /* PARADA MEDIA */

    /* Carrera final hasta la comida */
    45% { left: 55%; bottom: 18%; opacity: 1; transform: scaleX(-1) rotate(0deg); }
    
    45.1%, 100% { left: 55%; bottom: 18%; opacity: 0; }   
}

/* === HORMIGA CARGANDO COMIDA (vuelve con ella) === */
.ant-carrying {
    position: fixed;
    bottom: 18%;
    display: flex;
    flex-direction: row; /* Caramelo a la izquierda, hormiga a la derecha */
    align-items: center;
    z-index: 52;
    pointer-events: none;
    animation: ant-carrying-back 35s infinite linear;
}

.ant-icon {
    width: 40px; 
    height: auto;
    position: relative;
    z-index: 2; 
    margin-left: -8px; /* Solapamiento para que parezca que lo agarra */
}

.food-carried {
    font-size: 40px;
    line-height: 1;
    position: relative;
    z-index: 1; 
}


@keyframes ant-carrying-back {
    /* Invisible hasta que recoge comida */
    0%, 45% {
        left: 55%;
        opacity: 0;
        transform: scaleX(-1);
    }
    
    /* Aparece y empieza a correr inmediatamente */
    45.1% {
        left: 55%;
        opacity: 1;
        transform: scaleX(1); 
    }
    
    /* LLEGA AL FINAL MUCHO ANTES (en el 60% en lugar del 85%) */
    60% {
        left: -100px;
        opacity: 1;
        transform: scaleX(1);
    }
    
    /* Se mantiene fuera de pantalla el resto del ciclo */
    60.1%, 100% {
        left: -100px;
        opacity: 0;
    }
}

@keyframes ant-vibration {
    0%, 100% { transform: scale(1) rotate(0deg); }
    25% { transform: scale(1.02) rotate(1deg); }
    75% { transform: scale(0.98) rotate(-1deg); }
}

/* Solo vibran cuando van juntos en ant-carrying */
.ant-carrying .ant-icon,
.ant-carrying .food-carried {
    display: inline-block;
    animation: ant-vibration 0.15s infinite;
}


/* Navigation */
nav {
    background: rgba(139, 99, 68, 0.95);
    backdrop-filter: blur(10px);
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 5px solid var(--sunset-orange);
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 30px;
}

.nav-links {
    display: flex;
    gap: 30px;
    list-style: none;
    align-items: center;
    flex-wrap: wrap;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-weight: 700;
    font-size: 24px;
    position: relative;
    transition: all 0.3s;
    padding: 8px 15px;
    border-radius: 20px;
}

.nav-links a:hover {
    background: var(--sunset-orange);
    transform: scale(1.1) rotate(-2deg);
}

/* Hero Section */
.hero {
    max-width: 1400px;
    margin: 60px auto;
    padding: 60px 30px;
    text-align: center;
    position: relative;
}

.hero h1 {
    font-family: 'Sigmar One', cursive;
    font-size: 90px;
    color: var(--sunshine-yellow);
    text-shadow: 
        4px 4px 0 var(--bug-red),
        8px 8px 0 var(--dirt-brown),
        12px 12px 20px rgba(0,0,0,0.5);
    margin-bottom: 30px;
    animation: wiggle 3s ease-in-out infinite;
    line-height: 1.2;
}

@keyframes wiggle {
    0%, 100% { transform: rotate(-1deg); }
    25% { transform: rotate(1deg); }
    75% { transform: rotate(-1deg); }
}

.hero p {
    font-size: 28px;
    color: white;
    background: rgba(117, 75, 41, 0.8);
    display: inline-block;
    padding: 20px 40px;
    border-radius: 50px;
    margin: 20px 0;
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

.hero-text-with-characters {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.hero-character {
    width: 50px;
    height: 50px;
    animation: bounce-character 2s ease-in-out infinite;
    filter: drop-shadow(3px 3px 5px rgba(0,0,0,0.3));
	vertical-align: middle;
}

.hero-bichin { animation-delay: 0s; }
.hero-bichon { animation-delay: 0.3s; }

.hero-bichin-name {
    color: #00838f;
    font-weight: 700;
}

.hero-bichon-name {
    color: var(--bug-red);
    font-weight: 700;
}

@keyframes bounce-character {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@media (max-width: 768px) {
    .hero-character {
        width: 40px;        /* Más pequeño en móvil */
        height: 40px;
    }
    
    .hero-text-with-characters {
        gap: 10px;
    }
}
/* Character Cards */

.red-text {
    color: var(--bug-red);
    font-weight: 600;
}
.characters {
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px 30px;
}

.section-title {
    font-family: 'Chewy', cursive;
    font-size: 60px;
    text-align: center;
    color: var(--dirt-brown);
    text-shadow: 3px 3px 0 var(--sunshine-yellow);
    margin-bottom: 50px;
    transform: rotate(-2deg);
}

.character-image-large {
    width: 200px;
    height: 200px;
    object-fit: contain;
    margin: 20px auto;
    display: block;
    animation: float-organic 4s ease-in-out infinite;
    filter: drop-shadow(5px 5px 10px rgba(0,0,0,0.2));
	transition: filter 0.3s;
}

/* Bichón más grande que Bichín */
.character-card-large:nth-child(2) .character-image-large {
    width: 280px;
    height: 280px;
}

/* Animación de flotación (sin rotar) */
@keyframes float-organic {
     0%, 100% { 
        transform: translateY(0) scale(1); 
    }
    50% { 
        transform: translateY(-15px) scale(1); 
    }
}

.character-card-large:hover .character-image-large {
    animation: float-organic-excited 0.25s ease-in-out infinite;
    filter: drop-shadow(8px 8px 15px rgba(0,0,0,0.4));
}	

@keyframes float-organic-excited {
    0%, 100% { 
        transform: translateY(0) scale(1); 
    }
    50% { 
        transform: translateY(-25px) scale(1);  /* ¡Salta más alto y crece! */
    }
}

.character-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    perspective: 1000px;
}

/* Tarjetas principales grandes */
.main-characters {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 50px;
    margin-bottom: 60px;
}

.character-card-large {
    background: rgba(255, 255, 255, 0.90);
    border-radius: 40px;
    padding: 50px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
    border: 6px solid var(--dirt-brown);
    transition: all 0.5s;
    text-align: center;
    transform-style: preserve-3d;
}

/* Bichín: Movimiento caótico 1 */
.character-card-large:nth-child(1) {
    animation: float-chaotic-1 19s ease-in-out infinite;
    animation-delay: 1.7s;
}

/* Bichón: Movimiento caótico 2 */
.character-card-large:nth-child(2) {
    animation: float-chaotic-2 20s ease-in-out infinite;
    animation-delay: 2s;
}

.character-card-large:hover {
    transform: translateY(-20px) rotate(0deg) scale(1.05);
    box-shadow: 0 30px 80px rgba(0,0,0,0.3);
}

.character-card-large h3 {
    font-family: 'Chewy', cursive;
    font-size: 42px;
    color: var(--dirt-brown);
    margin: 20px 0 10px;
}

.character-card-large .subtitle {
    font-size: 18px;
    color: var(--story-purple, #9b59b6);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.character-card-large > p {
    font-size: 20px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 30px;
}

.character-button {
    display: inline-block;
    background: var(--sunset-orange);
    color: white;
    padding: 18px 45px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 20px;
    box-shadow: 
        0 8px 0 #c0631d,
        0 12px 20px rgba(230, 126, 34, 0.4);
    transition: all 0.2s;
}

.character-button:hover {
    transform: translateY(-3px);
    box-shadow: 
        0 11px 0 #c0631d,
        0 15px 25px rgba(230, 126, 34, 0.5);
}

.character-button:active {
    transform: translateY(5px);
    box-shadow: 
        0 3px 0 #c0631d,
        0 5px 10px rgba(230, 126, 34, 0.3);
}

.secondary-title {
    font-family: 'Chewy', cursive;
    font-size: 36px;
    text-align: center;
    color: var(--dirt-brown);
    margin: 40px 0 30px;
}

/* Tarjetas pequeñas */
.character-card {
    background: rgba(255, 255, 255, 0.90);
    border-radius: 30px;
    padding: 30px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
    border: 5px solid var(--dirt-brown);
    transition: all 0.5s;
    transform-style: preserve-3d;
}

/* Tarjeta 1: Patrón caótico 1 */
.character-card:nth-child(1) { 
    animation: float-chaotic-3 21s ease-in-out infinite;
    animation-delay: 3s;
}

/* Tarjeta 2: Patrón caótico 2 */
.character-card:nth-child(2) { 
    animation: float-chaotic-4 23s ease-in-out infinite;
    animation-delay: 2.5s;
}

/* Tarjeta 3: Patrón caótico 3 */
.character-card:nth-child(3) { 
    animation: float-chaotic-5 27s ease-in-out infinite;
    animation-delay: 3.2s;
}

/* Tarjeta 4: Patrón caótico 4 */
.character-card:nth-child(4) { 
    animation: float-chaotic-6 22s ease-in-out infinite;
    animation-delay: 2.5s;
}

/* ============================================
   ANIMACIONES CAÓTICAS - TOTALMENTE ALEATORIAS
   ============================================ */

/* Caótica 1 - Para Bichín (grande) */
@keyframes float-chaotic-1 {
    0%, 100% { 
        transform: translate(0, 0) rotate(0deg); 
    }
    14% { 
        transform: translate(-8px, -14px) rotate(-1deg); 
    }
    28% { 
        transform: translate(6px, -22px) rotate(2deg); 
    }
    42% {
        transform: translate(-4px, -26px) rotate(-1deg);
    }
    57% { 
        transform: translate(10px, -22px) rotate(1deg); 
    }
    71% {
        transform: translate(-7px, -16px) rotate(-2deg);
    }
    85% {
        transform: translate(5px, -10px) rotate(1deg);
    }
}

/* Caótica 2 - Para Bichón (grande) */
@keyframes float-chaotic-2 {
    0%, 100% { 
        transform: translate(0, 0) rotate(0deg); 
    }
    16% { 
        transform: translate(9px, -16px) rotate(2deg); 
    }
    33% { 
        transform: translate(-5px, -24px) rotate(-1deg); 
    }
    50% {
        transform: translate(7px, -28px) rotate(3deg);
    }
    66% { 
        transform: translate(-10px, -20px) rotate(-2deg); 
    }
    83% {
        transform: translate(4px, -12px) rotate(1deg);
    }
}

/* Caótica 3 - Para tarjeta pequeña 1 */
@keyframes float-chaotic-3 {
    0%, 100% { 
        transform: translate(0, 0) rotate(0deg); 
    }
    15% { 
        transform: translate(-6px, -12px) rotate(-2deg); 
    }
    30% { 
        transform: translate(7px, -18px) rotate(1deg); 
    }
    45% {
        transform: translate(-3px, -22px) rotate(-1deg);
    }
    60% { 
        transform: translate(8px, -19px) rotate(2deg); 
    }
    75% {
        transform: translate(-5px, -14px) rotate(-2deg);
    }
    90% {
        transform: translate(4px, -8px) rotate(1deg);
    }
}

/* Caótica 4 - Para tarjeta pequeña 2 */
@keyframes float-chaotic-4 {
    0%, 100% { 
        transform: translate(0, 0) rotate(0deg); 
    }
    12% { 
        transform: translate(5px, -10px) rotate(2deg); 
    }
    25% { 
        transform: translate(-7px, -16px) rotate(-2deg); 
    }
    37% {
        transform: translate(6px, -21px) rotate(1deg);
    }
    50% { 
        transform: translate(-4px, -24px) rotate(-1deg); 
    }
    62% {
        transform: translate(8px, -20px) rotate(2deg);
    }
    75% {
        transform: translate(-6px, -15px) rotate(-2deg);
    }
    87% {
        transform: translate(3px, -9px) rotate(1deg);
    }
}

/* Caótica 5 - Para tarjeta pequeña 3 */
@keyframes float-chaotic-5 {
    0%, 100% { 
        transform: translate(0, 0) rotate(0deg); 
    }
    18% { 
        transform: translate(-7px, -13px) rotate(-2deg); 
    }
    35% { 
        transform: translate(5px, -19px) rotate(2deg); 
    }
    52% {
        transform: translate(-6px, -23px) rotate(-1deg);
    }
    68% { 
        transform: translate(9px, -18px) rotate(1deg); 
    }
    84% {
        transform: translate(-4px, -11px) rotate(-2deg);
    }
}

/* Caótica 6 - Para tarjeta pequeña 4 */
@keyframes float-chaotic-6 {
    0%, 100% { 
        transform: translate(0, 0) rotate(0deg); 
    }
    13% { 
        transform: translate(6px, -11px) rotate(2deg); 
    }
    26% { 
        transform: translate(-8px, -17px) rotate(-2deg); 
    }
    39% {
        transform: translate(4px, -22px) rotate(1deg);
    }
    52% { 
        transform: translate(-7px, -25px) rotate(-1deg); 
    }
    65% {
        transform: translate(9px, -21px) rotate(3deg);
    }
    78% {
        transform: translate(-5px, -13px) rotate(-2deg);
    }
    91% {
        transform: translate(3px, -7px) rotate(1deg);
    }
}

.character-card:hover {
    transform: translateY(-20px) rotate(0deg) scale(1.05);
    box-shadow: 0 25px 60px rgba(0,0,0,0.3);
}

.character-icon-img {
    width: 120px;
    height: 120px;
    object-fit: contain;
    display: block;
    margin: 20px auto;  /* ← Esto centra horizontalmente */
	animation: float-organic 4s ease-in-out infinite;
    filter: drop-shadow(5px 5px 10px rgba(0,0,0,0.2));
	transition: filter 0.3s;
}

.character-card:hover .character-icon-img {
    animation: float-organic-excited 0.25s ease-in-out infinite;
    filter: drop-shadow(8px 8px 15px rgba(0,0,0,0.4));
}

.character-card h3 {
    font-family: 'Chewy', cursive;
    font-size: 32px;
    color: var(--dirt-brown);
    margin: 15px 0;
    text-align: center;
}

.character-card p {
    font-size: 18px;
    color: #555;
    text-align: center;
    line-height: 1.6;
}

/* Books Section */
.books {
    background: rgba(255, 255, 255, 0.9);
    padding: 80px 30px;
    margin: 60px 0;
    border-top: 10px solid var(--sunset-orange);
    border-bottom: 10px solid var(--sunset-orange);
}

.book-showcase {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: center;
    flex-wrap: wrap;
}

.book-cover {
    flex: 1;
    min-width: 300px;
    max-width: 400px;  /* Limita el ancho máximo */
    height: auto;
    aspect-ratio: 9/14;  /* Proporción típica de libro */
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 
        0 20px 60px rgba(0,0,0,0.3),
        0 0 0 3px rgba(255,255,255,0.1);  /* Borde sutil */
    transform: perspective(1000px) rotateY(-10deg);
    transition: transform 0.5s, box-shadow 0.5s;
}

.book-cover:hover {
    transform: perspective(1000px) rotateY(0deg) scale(1.05);
	box-shadow: 
        0 30px 80px rgba(0,0,0,0.4),
        0 0 0 3px rgba(255,255,255,0.2);
}

.book-info {
    flex: 1;
    min-width: 300px;
}

.book-info h2 {
    font-family: 'Chewy', cursive;
    font-size: 48px;
    color: var(--dirt-brown);
    margin-bottom: 20px;
}

.book-info p {
    font-size: 22px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 30px;
}

.cta-button {
    display: inline-block;
    background: var(--sunset-orange);
    color: white;
    padding: 20px 50px;
    font-size: 24px;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(255, 152, 0, 0.4);
    transition: all 0.3s;
    border: 4px solid var(--dirt-brown);
}

.cta-button:hover {
    transform: scale(1.1) rotate(-2deg);
    box-shadow: 0 15px 40px rgba(255, 152, 0, 0.6);
}

/* Botones del libro */
.book-buttons {
    display: flex;
    flex-direction: row;
    gap: 20px;
    align-items: center;
    flex-wrap: wrap;
}

.amazon-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #3d3d3d;
    color: white;
    padding: 20px 50px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 24px;
    font-weight: 600;
    font-family: 'Fredoka', sans-serif;
    box-shadow: 0 10px 30px rgba(0,0,0,0.35);
    border: 4px solid #1a1a1a;
    transition: all 0.3s;
}

.amazon-button:hover {
    transform: scale(1.1) rotate(-2deg);
    box-shadow: 0 15px 40px rgba(0,0,0,0.45);
}

.amazon-logo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: #FF9900;
    border-radius: 50%;
    font-family: 'Arial Black', 'Arial', sans-serif;
    font-size: 30px;
    font-weight: 900;
    color: white;
    flex-shrink: 0;
    padding-bottom: 4px; /* Compensa el descenso óptico de la "a" */
}

@media (max-width: 768px) {
    .book-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    .book-buttons .cta-button,
    .amazon-button {
        text-align: center;
        justify-content: center;
    }
}

/* Footer */
footer {
    background: var(--dirt-brown);
    color: white;
    padding: 60px 30px 30px;
    margin-top: 80px;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
    font-family: 'Chewy', cursive;
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--sunshine-yellow);
}

.footer-section ul {
    list-style: none;
}

.footer-section a {
    color: white;
    text-decoration: none;
    display: block;
    margin: 8px 0;
    transition: all 0.3s;
}

.footer-section a:hover {
    color: var(--sunset-orange);
    transform: translateX(10px);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 2px solid rgba(255,255,255,0.2);
    font-size: 14px;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-character {
        display: none;
    }
    .main-characters {
        grid-template-columns: 1fr;
    }    
        .hero-character {
        display: none;
    }
    .character-card-large {
        width: 100%;
        box-sizing: border-box;
    }
    .characters {
        padding: 40px 15px;
    }

    .character-card-large h3 {
        font-size: 32px;
    }
    body {
        overflow-x: hidden;
    }
    .hero h1 { font-size: 50px; }
    .hero p { font-size: 20px; padding: 15px 30px; }
    .section-title { font-size: 40px; }
    .book-showcase { flex-direction: column; }

    /* Nav móvil */
    .nav-container {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        padding: 10px 20px;
    }

    .nav-links {
        gap: 12px;
        flex-wrap: wrap;
        width: 100%;
    }

    .nav-links a {
        font-size: 16px;
        padding: 6px 10px;
    }
}