/* 🎨 HERO ESTILO LÁPIZ - SANTIAGO SOTO ARTE */
/* Diseño juvenil moderno - Grid blanco con efectos de grafito plateado */

/* === 📝 RESET Y BASE === */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;

    /* Fondo base blanco limpio con grid sutil */
    background: #fafafa;

    /* Grid cuadriculado estilo cuaderno técnico + textura de grafito */
    background-image:
        /* Textura granulada de grafito (nueva) */
        radial-gradient(circle at 15% 20%, rgba(200, 200, 200, 0.08) 0%, transparent 1%),
        radial-gradient(circle at 35% 45%, rgba(190, 190, 190, 0.06) 0%, transparent 1%),
        radial-gradient(circle at 65% 25%, rgba(185, 185, 185, 0.07) 0%, transparent 1%),
        radial-gradient(circle at 85% 60%, rgba(195, 195, 195, 0.08) 0%, transparent 1%),
        radial-gradient(circle at 25% 75%, rgba(188, 188, 188, 0.06) 0%, transparent 1%),
        radial-gradient(circle at 75% 80%, rgba(192, 192, 192, 0.07) 0%, transparent 1%),
        /* Líneas de grid horizontal */
        repeating-linear-gradient(
            0deg,
            transparent 0px,
            transparent 39px,
            rgba(200, 200, 210, 0.18) 39px,
            rgba(200, 200, 210, 0.18) 40px
        ),
        /* Líneas de grid vertical */
        repeating-linear-gradient(
            90deg,
            transparent 0px,
            transparent 39px,
            rgba(200, 200, 210, 0.18) 39px,
            rgba(200, 200, 210, 0.18) 40px
        ),
        /* Textura de papel */
        radial-gradient(circle at 20% 30%, rgba(245, 245, 245, 0.6) 0%, transparent 3%),
        radial-gradient(circle at 80% 70%, rgba(240, 240, 240, 0.4) 0%, transparent 2%);

    background-size: 8px 8px, 12px 12px, 10px 10px, 9px 9px, 11px 11px, 7px 7px, 40px 40px, 40px 40px, 25px 25px, 20px 20px;
    background-position: 0 0, 4px 4px, 8px 8px, 12px 12px, 16px 16px, 20px 20px, 0 0, 0 0, 0 0, 0 0;

    color: #2c2c2c; /* Grafito oscuro */
}

/* === ✨ EFECTOS DE GRAFITO PLATEADO BRILLANTE INTENSIFICADOS === */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        /* Trazos de grafito con shimmer plateado - más intensos */
        radial-gradient(ellipse 150px 3px at 15% 25%, rgba(192, 192, 192, 0.35), transparent),
        radial-gradient(ellipse 120px 4px at 70% 60%, rgba(184, 184, 184, 0.3), rgba(200, 200, 200, 0.15) 50%, transparent),
        radial-gradient(ellipse 170px 3px at 85% 15%, rgba(176, 176, 176, 0.28), transparent),
        radial-gradient(ellipse 130px 4px at 25% 85%, rgba(188, 188, 188, 0.32), transparent),
        /* Trazos adicionales para más textura */
        radial-gradient(ellipse 100px 2px at 40% 40%, rgba(180, 180, 180, 0.25), transparent),
        radial-gradient(ellipse 90px 2px at 60% 30%, rgba(190, 190, 190, 0.22), transparent),
        /* Brillo plateado más visible */
        radial-gradient(circle at 30% 70%, rgba(220, 220, 220, 0.12), transparent 50%),
        radial-gradient(circle at 70% 30%, rgba(210, 210, 210, 0.1), transparent 50%);

    background-size: 300px 200px, 250px 180px, 350px 220px, 280px 190px, 200px 150px, 180px 140px, 400px 400px, 450px 450px;
    animation: graphiteShimmer 18s ease-in-out infinite;
    pointer-events: none;
    opacity: 0.85;
    will-change: opacity;
}

/* === ✏️ SOMBREADO CRUZADO ARTÍSTICO (CROSS-HATCHING) === */
.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 1;
    opacity: 0.2;

    /* Técnica de cross-hatching con líneas diagonales */
    background-image:
        /* Hatching diagonal 45° */
        repeating-linear-gradient(
            45deg,
            transparent 0px,
            transparent 18px,
            rgba(140, 140, 150, 0.12) 18px,
            rgba(140, 140, 150, 0.12) 19px,
            transparent 19px,
            transparent 25px
        ),
        /* Hatching diagonal -45° (cruzado) */
        repeating-linear-gradient(
            -45deg,
            transparent 0px,
            transparent 22px,
            rgba(130, 130, 140, 0.1) 22px,
            rgba(130, 130, 140, 0.1) 23px,
            transparent 23px,
            transparent 30px
        ),
        /* Hatching diagonal 30° (tono medio) */
        repeating-linear-gradient(
            30deg,
            transparent 0px,
            transparent 35px,
            rgba(150, 150, 160, 0.08) 35px,
            rgba(150, 150, 160, 0.08) 36px,
            transparent 36px,
            transparent 45px
        );

    background-size: 100% 100%;
    mix-blend-mode: multiply;
}

@keyframes graphiteShimmer {
    0%, 100% {
        opacity: 0.65;
    }
    25% {
        opacity: 0.85;
    }
    50% {
        opacity: 0.5;
    }
    75% {
        opacity: 0.75;
    }
}

/* === 🎭 CONTENIDO HERO === */
.hero-content {
    flex: 1;
    padding: 0 3rem;
    z-index: 3;
    position: relative;
}

/* Título con efecto de grafito moderno */
.hero h1 {
    font-size: clamp(2.8rem, 8vw, 5.5rem);
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #1a1a1a;

    /* Efecto sombra de grafito plateado con brillo */
    text-shadow:
        1px 1px 0px rgba(192, 192, 192, 0.3),
        2px 2px 4px rgba(180, 180, 190, 0.2),
        3px 3px 8px rgba(200, 200, 210, 0.15),
        4px 4px 12px rgba(210, 210, 220, 0.1);

    animation: fadeInSketch 2s ease-out;
    position: relative;
    letter-spacing: -0.02em;
}

/* Línea de subrayado estilo grafito brillante */
.hero h1::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 0;
    width: 0%;
    height: 3px;
    background: linear-gradient(90deg,
        transparent,
        rgba(180, 180, 190, 0.4) 5%,
        rgba(192, 192, 192, 0.7) 25%,
        rgba(200, 200, 200, 0.8) 50%,
        rgba(192, 192, 192, 0.7) 75%,
        rgba(180, 180, 190, 0.4) 95%,
        transparent
    );
    border-radius: 2px;
    animation: graphiteUnderline 2.5s ease-out 0.8s both;

    /* Efecto shimmer plateado */
    box-shadow:
        0 1px 2px rgba(220, 220, 220, 0.4),
        0 -1px 1px rgba(170, 170, 180, 0.3);
}

@keyframes graphiteUnderline {
    0% {
        width: 0%;
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        width: 65%;
        opacity: 0.85;
    }
}

.hero-subtitle {
    font-size: clamp(1.1rem, 4vw, 1.6rem);
    font-weight: 400;
    margin-bottom: 1.8rem;
    color: #4a4a4a;
    font-style: italic;
    animation: fadeInUp 1.8s ease 0.4s both;
    line-height: 1.4;
}

/* Destacado de edad más juvenil */
.age-highlight {
    display: inline-block;
    background: rgba(220, 230, 240, 0.4);
    padding: 0.2rem 0.8rem;
    border-radius: 20px;
    border: 1px solid rgba(180, 190, 200, 0.5);
    font-weight: 600;
    color: #2a2a2a;
    font-size: 1em;

    /* Sombra suave interior */
    box-shadow: inset 0 1px 2px rgba(200, 210, 220, 0.3);
}

.hero-poetry {
    font-size: clamp(1rem, 3.5vw, 1.3rem);
    line-height: 1.8;
    color: #555555;
    font-style: italic;
    margin-bottom: 2.5rem;
    max-width: 90%;
    position: relative;
    padding-left: 1.5rem;

    /* Efecto de texto dibujado a mano */
    text-shadow: 0.5px 0.5px 1px rgba(180, 180, 190, 0.2);
}

.hero-poetry::before {
    content: '"';
    position: absolute;
    left: 0;
    top: -0.3rem;
    font-size: 3.5rem;
    color: rgba(160, 160, 170, 0.4);
    font-family: 'Playfair Display', serif;
    line-height: 1;

    /* Efecto de lápiz en la comilla */
    text-shadow: 2px 2px 4px rgba(140, 140, 150, 0.2);
}

/* === 🎨 BOTONES ESTILO JUVENIL === */
.hero-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    animation: fadeInUp 1.8s ease 1.2s both;
}

.btn-primary {
    background: linear-gradient(135deg, #6c7b7f 0%, #515a5e 100%);
    color: white;
    border: none;
    padding: 1rem 2.8rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;

    /* Sombra suave estilo lápiz */
    box-shadow:
        0 8px 25px rgba(108, 123, 127, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow:
        0 12px 35px rgba(108, 123, 127, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.btn-secondary {
    background: transparent;
    color: #5a5a5a;
    border: 2px solid #8a8a8a;
    padding: 1rem 2.8rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.4s ease;
    position: relative;

    /* Efecto de boceto */
    box-shadow: 0 0 0 0 rgba(138, 138, 138, 0.1);
}

.btn-secondary:hover {
    background: rgba(230, 235, 240, 0.3);
    transform: translateY(-3px);
    color: #3a3a3a;
    border-color: #6a6a6a;
    box-shadow: 0 8px 25px rgba(138, 138, 138, 0.15);
}

/* === 📝 CUADERNO DE BOCETOS (REEMPLAZA EL CABALLETE) === */
.hero-visual {
    flex: 1;
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sketch-showcase {
    position: relative;
    width: 100%;
    height: 80%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* === 📖 CUADERNO DE DIBUJO === */
.sketch-notebook {
    position: relative;
    z-index: 2;
    transform: rotate(-2deg);
    animation: notebookSway 12s ease-in-out infinite;
}

@keyframes notebookSway {
    0%, 100% {
        transform: rotate(-2deg) translateY(0px);
    }
    33% {
        transform: rotate(-1deg) translateY(-8px);
    }
    66% {
        transform: rotate(-3deg) translateY(5px);
    }
}

.notebook-page {
    width: 320px;
    height: 420px;
    background:
        /* Papel blanco con bordes */
        linear-gradient(135deg, #fefefe 0%, #fcfcfc 100%);

    /* Líneas de cuaderno */
    background-image:
        linear-gradient(90deg, transparent 0%, transparent 40px, rgba(200, 220, 240, 0.4) 40px, rgba(200, 220, 240, 0.4) 41px, transparent 41px),
        repeating-linear-gradient(0deg, transparent 0px, transparent 24px, rgba(200, 220, 240, 0.3) 24px, rgba(200, 220, 240, 0.3) 25px);

    border: 1px solid rgba(200, 200, 210, 0.4);
    border-radius: 8px 12px 12px 8px;
    position: relative;
    overflow: hidden;

    /* Sombra suave de papel */
    box-shadow:
        0 15px 35px rgba(0, 0, 0, 0.1),
        inset 0 0 0 1px rgba(255, 255, 255, 0.8),
        -2px 0 5px rgba(0, 0, 0, 0.05);

    /* Perforaciones del cuaderno */
    background-position: 0 0, 0 0;
}

/* Perforaciones laterales */
.notebook-page::before {
    content: '';
    position: absolute;
    left: 35px;
    top: 40px;
    bottom: 40px;
    width: 1px;
    background:
        repeating-linear-gradient(0deg,
            transparent 0px,
            transparent 15px,
            rgba(200, 220, 240, 0.6) 15px,
            rgba(200, 220, 240, 0.6) 20px,
            transparent 20px,
            transparent 35px
        );
}

/* Área de dibujo */
.sketch-area {
    position: absolute;
    top: 40px;
    left: 50px;
    right: 30px;
    bottom: 40px;
    overflow: hidden;
}

/* Galería rotativa de bocetos */
.rotating-sketches {
    width: 100%;
    height: 100%;
    position: relative;
}

.sketch-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.8s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.sketch-slide.active {
    opacity: 1;
}

.sketch-drawing {
    font-size: 6rem;
    color: rgba(100, 100, 110, 0.7);
    margin-bottom: 1rem;
    filter: drop-shadow(2px 2px 4px rgba(120, 120, 130, 0.1));
    animation: sketchFloat 6s ease-in-out infinite;
}

@keyframes sketchFloat {
    0%, 100% {
        transform: translateY(0px) scale(1);
    }
    50% {
        transform: translateY(-8px) scale(1.02);
    }
}

.sketch-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: #4a4a4a;
    text-align: center;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.sketch-description {
    font-size: 1rem;
    color: #6a6a6a;
    text-align: center;
    font-style: italic;
    line-height: 1.4;
}

/* === ✏️ LÁPICES FLOTANTES === */
.floating-pencils {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.animated-pencil {
    position: absolute;
    width: 8px;
    height: 120px;
    background: linear-gradient(to bottom,
        #ffd700 0%,
        #ffed4a 20%,
        #d4af37 21%,
        #d4af37 80%,
        #8b4513 81%,
        #654321 100%
    );
    border-radius: 4px 4px 0 0;
    opacity: 0.4;
    animation: pencilDraw 15s ease-in-out infinite;
}

.animated-pencil::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 1px;
    width: 6px;
    height: 12px;
    background: #ff69b4;
    border-radius: 3px;
}

.animated-pencil::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 2px;
    width: 4px;
    height: 8px;
    background: #2c2c2c;
    clip-path: polygon(50% 100%, 0% 0%, 100% 0%);
}

.animated-pencil:nth-child(1) {
    top: 15%;
    left: 8%;
    animation-delay: 0s;
    transform: rotate(25deg);
}

.animated-pencil:nth-child(2) {
    top: 65%;
    left: 85%;
    animation-delay: 5s;
    transform: rotate(-15deg);
}

.animated-pencil:nth-child(3) {
    top: 45%;
    left: 5%;
    animation-delay: 10s;
    transform: rotate(45deg);
}

@keyframes pencilDraw {
    0%, 80%, 100% {
        opacity: 0;
        transform: translateY(30px) rotate(var(--rotation, 0deg));
    }
    10%, 70% {
        opacity: 0.6;
        transform: translateY(0px) rotate(var(--rotation, 0deg));
    }
}

/* === 📐 BORRADOR Y SACAPUNTAS === */
.sketch-tools {
    position: absolute;
    bottom: 5%;
    right: 8%;
    display: flex;
    gap: 1.5rem;
    opacity: 0.6;
    animation: toolsFloat 8s ease-in-out infinite;
}

@keyframes toolsFloat {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-12px) rotate(2deg);
    }
}

.sketch-tool {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;

    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.eraser {
    background: linear-gradient(135deg, #ffb6c1, #ffc0cb);
}

.sharpener {
    background: linear-gradient(135deg, #87ceeb, #add8e6);
}

.sketch-tool:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

/* === 📱 RESPONSIVE === */
@media (max-width: 768px) {
    .hero {
        flex-direction: column;
        text-align: center;
        padding: 2rem 0;
        min-height: auto; /* Permitir que el hero se adapte */
    }

    /* Reducir intensidad de animaciones en móvil para mejor performance */
    .hero::before {
        opacity: 0.4; /* Reducir efectos de grafito */
        animation-duration: 25s; /* Más lento = menos carga */
    }

    .hero::after {
        opacity: 0.3; /* Reducir cross-hatching */
    }

    /* Optimizar animaciones de lápices */
    .pencil {
        animation-duration: 20s !important; /* Más lento */
        will-change: auto; /* Remover will-change para ahorrar memoria */
    }

    /* Reducir cantidad de lápices visibles en móvil */
    .pencil:nth-child(n+6) {
        display: none; /* Ocultar lápices adicionales */
    }

    .hero-content {
        padding: 0 1.5rem;
        margin-bottom: 2rem;
        z-index: 2; /* Asegurar que esté sobre los efectos */
    }

    /* Mejorar tipografía para móvil */
    .hero h1 {
        font-size: clamp(2rem, 8vw, 3rem); /* Responsive fluido */
        line-height: 1.2;
        margin-bottom: 1rem;
    }

    .hero p {
        font-size: clamp(1rem, 4vw, 1.2rem);
        line-height: 1.6;
        max-width: 90%; /* Evitar líneas muy largas */
        margin: 0 auto 1.5rem;
    }

    .hero-buttons {
        justify-content: center;
        gap: 1rem;
    }

    /* CTAs más prominentes en móvil */
    .btn-primary, .btn-secondary {
        padding: 1rem 2.5rem;
        font-size: 1.05rem;
        font-weight: 600;
        min-height: 48px; /* Touch target mínimo */
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    }

    .btn-primary:active, .btn-secondary:active {
        transform: scale(0.97); /* Feedback táctil */
    }

    .hero-visual {
        height: 45vh;
        max-height: 400px;
    }

    .notebook-page {
        width: 280px;
        height: 360px;
    }

    .sketch-tools {
        bottom: 10%;
        right: 5%;
        transform: scale(0.8);
        opacity: 0.7; /* Menos prominente */
    }
}

@media (max-width: 480px) {
    /* Hero aún más compacto para móviles pequeños */
    .hero {
        padding: 1.5rem 0;
    }

    .hero-content {
        padding: 0 1rem;
    }

    /* Tipografía optimizada para pantallas pequeñas */
    .hero h1 {
        font-size: clamp(1.75rem, 7vw, 2.5rem);
        margin-bottom: 0.75rem;
    }

    .hero p {
        font-size: clamp(0.9rem, 3.5vw, 1.1rem);
        margin-bottom: 1.25rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
        gap: 0.75rem;
        width: 100%;
        padding: 0 0.5rem;
    }

    /* Botones adaptados a pantalla completa */
    .btn-primary, .btn-secondary {
        width: 100%;
        max-width: none;
        padding: 0.95rem 1.5rem;
        font-size: 1rem;
    }

    /* Reducir aún más los efectos visuales */
    .hero::before,
    .hero::after {
        opacity: 0.2;
    }

    /* Ocultar más lápices en pantallas muy pequeñas */
    .pencil:nth-child(n+4) {
        display: none;
    }

    .hero-visual {
        height: 35vh;
        max-height: 300px;
    }

    .notebook-page {
        width: 220px;
        height: 280px;
    }

    .sketch-drawing {
        font-size: 4rem;
    }

    .sketch-tools {
        transform: scale(0.65);
        opacity: 0.5;
    }
}

/* === 🌟 ANIMACIONES DE ENTRADA === */
@keyframes fadeInSketch {
    from {
        opacity: 0;
        transform: translateY(40px);
        filter: blur(2px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0px);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(25px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* === ♿ ACCESIBILIDAD === */
@media (prefers-reduced-motion: reduce) {
    .hero *,
    .hero::before {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* === 🎨 HOVER EFFECTS === */
.notebook-page:hover {
    transform: scale(1.02);
    transition: transform 0.3s ease;
}

.sketch-area:hover .sketch-drawing {
    animation-play-state: paused;
    transform: scale(1.05);
    transition: transform 0.3s ease;
}

/* === ✏️ CANVAS DE TRAZOS DE LÁPIZ REALISTAS === */
.pencil-strokes-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 5;
    opacity: 0.7;
}

/* === ✨ PARTÍCULAS DE GRAFITO FLOTANTES === */
.graphite-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 4;
    overflow: hidden;
}

.graphite-particle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: radial-gradient(circle,
        rgba(192, 192, 192, 0.8) 0%,
        rgba(180, 180, 190, 0.6) 50%,
        transparent 100%
    );
    border-radius: 50%;
    animation: floatGraphite var(--duration, 8s) linear infinite;
    opacity: var(--opacity, 0.6);
    box-shadow: 0 0 4px rgba(200, 200, 210, 0.4);
}

@keyframes floatGraphite {
    0% {
        transform: translateY(0) translateX(0) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: var(--opacity, 0.6);
    }
    90% {
        opacity: var(--opacity, 0.4);
    }
    100% {
        transform: translateY(-100vh) translateX(var(--drift, 20px)) rotate(360deg);
        opacity: 0;
    }
}

/* === 🎨 SVG BOCETO ANIMADO === */
.animated-sketch-svg {
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 80px;
    height: 80px;
    opacity: 0.5;
    filter: drop-shadow(0 2px 4px rgba(140, 140, 140, 0.2));
}

.sketch-path {
    animation: drawStroke 3s ease-in-out forwards;
}

.sketch-path:nth-child(1) {
    animation-delay: 0.2s;
}

.sketch-path:nth-child(2) {
    animation: fadeIn 0.5s ease-in forwards;
    animation-delay: 1.5s;
}

.sketch-path:nth-child(3) {
    animation-delay: 1s;
}

.sketch-path:nth-child(4) {
    animation-delay: 1.8s;
}

.sketch-path:nth-child(5) {
    animation-delay: 2.2s;
}

.texture-line {
    animation-delay: 2.5s;
    animation-duration: 1s;
}

@keyframes drawStroke {
    to {
        stroke-dashoffset: 0;
    }
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}