/* Loader Styles */
.tm-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 1;
    transition: opacity 0.8s ease-out, visibility 0.8s ease-out;
}

.tm-loader__inner {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.tm-loader__logo {
    width: 30vw; /* Responsive width */
    max-width: 450px; /* Max width increased by ~50% (was likely ~300px) */
    min-width: 280px;
    height: auto;
    opacity: 1;
    transition: transform 0.5s ease;
}

.tm-loader__logo svg {
    width: 100%;
    height: auto;
    display: block;
}

/* Intro: animación por trazos (sin pulso); el JS dibuja el SVG desde cero */
.tm-loader__logo svg path,
.tm-loader__logo svg polygon {
    fill-opacity: 0;
    opacity: 0;
    stroke-linecap: round;
    stroke-linejoin: round;
}
