/* ====================================
   VARIABLES GLOBALES & TEMA PREMIUM
==================================== */
:root {
    /* Paleta de Colores: Magenta, Negro y Azul */
    --bg-color: #050505;
    /* Casi negro profundo */
    --bg-secondary-color: #0a0a0c;
    /* Ligeramente más claro para separar secciones */
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);

    --primary-color: #ff007f;
    /* Magenta vibrante */
    --primary-color-alt: #e60073;
    /* Tono magenta alternativo */
    --secondary-color: #0066ff;
    /* Azul eléctrico intenso */

    --text-color: #e2e8f0;
    --text-color-light: #94a3b8;
    --white: #ffffff;

    /* Tipografía */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;

    --h1-font-size: 3rem;
    --h2-font-size: 2.25rem;
    --h3-font-size: 1.5rem;
    --normal-font-size: 1rem;
    --small-font-size: 0.875rem;

    /* Margenes */
    --mb-0-5: 0.5rem;
    --mb-1: 1rem;
    --mb-1-5: 1.5rem;
    --mb-2: 2rem;
    --mb-3: 3rem;

    /* Z-Index */
    --z-tooltip: 10;
    --z-fixed: 100;
}

body.light-theme {
    --bg-color: #f8fafc;
    --bg-secondary-color: #ffffff;
    --glass-bg: rgba(0, 0, 0, 0.04);
    --glass-border: rgba(0, 0, 0, 0.1);
    --text-color: #1e293b;
    --text-color-light: #475569;
    --white: #0f172a;
}

@media screen and (min-width: 968px) {
    :root {
        --h1-font-size: 4.5rem;
        --h2-font-size: 3rem;
        --h3-font-size: 1.75rem;
        --normal-font-size: 1.125rem;
    }
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: var(--normal-font-size);
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    color: var(--white);
    font-weight: 700;
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ====================================
   UTILIDADES & COMPONENTES
==================================== */
.container {
    max-width: 1200px;
    margin-left: var(--mb-1-5);
    margin-right: var(--mb-1-5);
}

.grid {
    display: grid;
    gap: 1.5rem;
}

.section {
    padding: 6rem 0 4rem;
}

.section-title-wrap {
    text-align: center;
    margin-bottom: var(--mb-3);
}

.section-title {
    font-size: var(--h2-font-size);
    margin-bottom: var(--mb-0-5);
    line-height: 1.2;
}

.section-title span {
    color: var(--primary-color);
}

.section-subtitle {
    display: block;
    font-size: var(--small-font-size);
    font-weight: 600;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: var(--mb-1);
}

/* Glassmorphism Panel */
.glass-panel {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 1.5rem;
    padding: 2rem;
    transition: transform 0.3s ease, background 0.3s ease, border-color 0.3s ease;
}

.glass-panel:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.15);
}

/* Buttons */
.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 3rem;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    font-family: var(--font-heading);
}

.button-primary {
    background: var(--primary-color);
    color: #ffffff;
    border: none;
    box-shadow: 0 4px 15px rgba(255, 0, 127, 0.2);
}

.button-primary:hover {
    box-shadow: 0 6px 20px rgba(255, 0, 127, 0.4);
    transform: translateY(-2px);
    background: var(--primary-color-alt);
}

.button-secondary {
    background: transparent;
    color: var(--text-color);
    border: 1px solid var(--glass-border);
}

.button-secondary:hover {
    background: var(--glass-bg);
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.w-full {
    width: 100%;
}

.text-gradient {
    color: var(--primary-color);
}

/* ====================================
   NAVBAR & HEADER
==================================== */
.header {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: var(--z-fixed);
    background-color: transparent;
    transition: background-color 0.3s ease, backdrop-filter 0.3s ease;
}

.scroll-header {
    background-color: rgba(13, 15, 20, 0.85);
    /* rgba value of --bg-color */
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--glass-border);
}

.navbar {
    height: 4.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.5rem;
    letter-spacing: -1px;
}

.logo-text {
    color: var(--white);
}

.logo-accent {
    color: var(--primary-color);
}

.nav-toggle,
.nav-close {
    font-size: 1.8rem;
    color: var(--white);
    cursor: pointer;
}

.nav-btns {
    display: flex;
    align-items: center;
    column-gap: 1rem;
}

.change-theme,
.nav-social {
    font-size: 1.8rem;
    color: var(--white);
    cursor: pointer;
    transition: color 0.3s ease;
}

.change-theme:hover,
.nav-social:hover {
    color: var(--primary-color);
}

.nav-menu {
    position: fixed;
    top: -150vh;
    left: 0;
    width: 100%;
    background-color: var(--bg-color);
    padding: 4rem 0 3rem;
    transition: top 0.4s ease;
    border-bottom: 1px solid var(--glass-border);
}

.show-menu {
    top: 0;
}

.nav-list {
    display: flex;
    flex-direction: column;
    align-items: center;
    row-gap: 2rem;
}

.nav-link {
    color: var(--text-color);
    font-weight: 500;
    font-size: 1.125rem;
    transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
}

.nav-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
}

.btn-cotiza {
    background-color: rgba(255, 0, 127, 0.1);
    color: var(--primary-color);
    padding: 0.5rem 1.5rem;
    border-radius: 2rem;
    border: 1px solid rgba(255, 0, 127, 0.2);
    transition: all 0.3s ease;
}

.btn-cotiza:hover {
    background-color: var(--primary-color);
    color: var(--bg-color);
}

/* ====================================
   HERO
==================================== */
.hero {
    position: relative;
    padding-top: 8rem;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0.4;
    /* Opacidad para que el texto resalte */
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, transparent 0%, var(--bg-color) 90%);
}

.hero-container {
    position: relative;
    z-index: 1;
}

.hero-subtitle {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    border-radius: 2rem;
    font-size: var(--small-font-size);
    color: var(--primary-color);
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: var(--mb-1-5);
}

.hero-title {
    font-size: var(--h1-font-size);
    line-height: 1.1;
    margin-bottom: var(--mb-1-5);
}

.hero-description {
    color: var(--text-color-light);
    font-size: 1.125rem;
    max-width: 500px;
    margin-bottom: var(--mb-2);
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: var(--mb-3);
}

.hero-stats {
    display: flex;
    gap: 1.5rem;
    margin-top: 2rem;
}

.stat-card {
    padding: 1rem 1.5rem;
}

.stat-title {
    font-size: var(--h2-font-size);
    color: var(--primary-color);
    margin-bottom: 0.2rem;
}

.stat-desc {
    font-size: 0.8rem;
    color: var(--text-color-light);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ====================================
   SOPORTES (SERVICES)
==================================== */
.soportes-container {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.soporte-card {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.soporte-card:hover {
    transform: translateY(-10px);
}

.soporte-img-wrap {
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
    margin-bottom: var(--mb-1-5);
    aspect-ratio: 4/3;
}

.soporte-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.soporte-card:hover .soporte-img {
    transform: scale(1.05);
}

.soporte-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    color: var(--primary-color);
    padding: 0.3rem 0.8rem;
    border-radius: 1rem;
    font-size: 0.75rem;
    font-weight: 700;
    border: 1px solid rgba(255, 0, 127, 0.3);
}

.soporte-title {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.soporte-description {
    color: var(--text-color-light);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.soporte-link {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    font-weight: 600;
    color: var(--primary-color);
    font-family: var(--font-heading);
}

.soporte-link i {
    font-size: 1.25rem;
    transition: transform 0.3s ease;
}

.soporte-link:hover i {
    transform: translateX(5px);
}

/* ====================================
   SERVICIOS / PROCESO
==================================== */
.servicios {
    background-color: var(--bg-secondary-color);
}

.layout-servicios {
    grid-template-columns: 1fr;
    gap: 3rem;
}

.servicios-content .section-title {
    margin-bottom: var(--mb-1-5);
}

.servicios-desc {
    color: var(--text-color-light);
    margin-bottom: var(--mb-2);
}

.servicios-features {
    display: grid;
    gap: 1.5rem;
}

.feature-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.feature-icon {
    font-size: 2rem;
    color: var(--primary-color);
    background: rgba(255, 0, 127, 0.1);
    padding: 1rem;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-title {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.feature-desc {
    color: var(--text-color-light);
    font-size: 0.95rem;
}

/* ====================================
   GALERÍA
==================================== */
.galeria-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.galeria-item {
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
}

.galeria-item::before {
    content: attr(data-ciudad);
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    color: var(--white);
    padding: 0.3rem 0.8rem;
    border-radius: 1rem;
    font-size: 0.75rem;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.2);
    z-index: 2;
    pointer-events: none;
    opacity: 1;
    transition: opacity 0.4s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.galeria-item::after {
    content: attr(data-formato);
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    color: var(--primary-color);
    padding: 0.3rem 0.8rem;
    border-radius: 1rem;
    font-size: 0.75rem;
    font-weight: 700;
    border: 1px solid rgba(255, 0, 127, 0.3);
    z-index: 2;
    pointer-events: none;
    opacity: 1;
    transition: opacity 0.4s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.galeria-item:hover::before,
.galeria-item:hover::after {
    opacity: 0;
}

.galeria-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.galeria-overlay {
    position: absolute;
    inset: 0;
    background: rgba(255, 0, 127, 0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 3;
}

.galeria-overlay i {
    font-size: 3rem;
    color: #ffffff;
    transform: translateY(20px);
    transition: transform 0.4s ease;
}

.galeria-item:hover .galeria-img {
    transform: scale(1.1);
}

.galeria-item:hover .galeria-overlay {
    opacity: 1;
}

.galeria-item:hover .galeria-overlay i {
    transform: translateY(0);
}

/* Modal Galería */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.modal.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    position: relative;
    max-width: 900px;
    width: 90%;
    background: var(--bg-secondary-color);
    border-radius: 1rem;
    overflow: hidden;
    transform: translateY(20px);
    transition: transform 0.3s ease;
    border: 1px solid var(--glass-border);
}

.modal.active .modal-content {
    transform: translateY(0);
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 2rem;
    color: #ffffff;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 10;
    transition: background 0.3s ease;
}

.modal-close:hover {
    background: var(--primary-color);
}

.modal-img {
    width: 100%;
    max-height: 70vh;
    object-fit: cover;
    display: block;
}

.modal-info {
    padding: 1.5rem;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    background: linear-gradient(135deg, rgba(20, 20, 20, 0.9) 0%, rgba(5, 5, 5, 0.9) 100%);
    border-top: 2px solid var(--primary-color);
}

.modal-info p {
    font-size: 0.95rem;
    color: var(--text-color-light);
}

.modal-info p strong {
    color: #ffffff;
    font-weight: 600;
    margin-right: 0.25rem;
}

.modal-info span {
    color: var(--primary-color);
}

/* ====================================
   TESTIMONIALES
==================================== */
.testimoniales {
    background-color: var(--bg-secondary-color);
}

.testimoniales-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonio-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.testimonio-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    opacity: 0.5;
}

.testimonio-text {
    font-size: 1.05rem;
    color: var(--text-color-light);
    font-style: italic;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.testimonio-autor {
    display: flex;
    align-items: center;
    gap: 1rem;
    border-top: 1px solid var(--glass-border);
    padding-top: 1.5rem;
}

.autor-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--primary-color);
}

.autor-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.autor-info h4 {
    font-size: 1rem;
    color: var(--white);
    margin-bottom: 0.2rem;
}

.autor-info span {
    font-size: 0.8rem;
    color: var(--primary-color);
}

/* ====================================
   CLIENTES (LOGOS)
==================================== */
.clientes {
    background-color: var(--bg-secondary-color);
}

.clientes-container {
    overflow: hidden;
    padding: 2rem 0;
    position: relative;
    width: 100%;
    /* Efecto difuminado en los bordes para un look premium */
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.clientes-track {
    display: flex;
    align-items: center;
    gap: 4rem;
    width: max-content;
    /* Para cambiar la velocidad, ajusta los segundos (ej: 20s es más rápido, 40s es más lento) */
    animation: scroll-marq 50s linear infinite;
}

.clientes-track:hover {
    animation-play-state: paused;
}

.cliente-logo {
    width: 150px;
    opacity: 0.5;
    filter: grayscale(100%) brightness(2);
    /* Estilo plano/monocromático para logos */
    transition: filter 0.3s ease, opacity 0.3s ease, transform 0.3s ease;
    flex-shrink: 0;
}

.cliente-logo img {
    margin: 0 auto;
}

.cliente-logo:hover {
    filter: grayscale(0) brightness(1);
    /* Vuelve al color original en hover */
    opacity: 1;
    transform: scale(1.1);
}

@keyframes scroll-marq {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-150px * 20 - 4rem * 20));
    }
}

/* ====================================
   CONTACTO
==================================== */
.contacto-bg {
    background: linear-gradient(135deg, rgba(20, 20, 20, 0.8) 0%, rgba(5, 5, 5, 0.8) 100%);
    border-top: 2px solid rgba(255, 0, 127, 0.2);
}

.contacto-info {
    margin-top: var(--mb-2);
}

.contacto-info li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: var(--text-color-light);
}

.contacto-info i {
    font-size: 1.25rem;
    color: var(--primary-color);
}

.contacto-form {
    display: grid;
    gap: 1rem;
}

.form-group {
    width: 100%;
}

.grid-2 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

.form-input {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    padding: 1rem;
    border-radius: 0.75rem;
    color: #ffffff;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: border-color 0.3s ease, background 0.3s ease;
}

.form-input:focus {
    outline: none;
    border-color: var(--primary-color);
    background: rgba(255, 255, 255, 0.08);
}

.text-gray {
    color: var(--text-color-light);
}

.text-white {
    color: #ffffff;
}

/* ====================================
   FOOTER
==================================== */
.footer {
    background-color: var(--bg-color);
    border-top: 1px solid var(--glass-border);
    padding: 4rem 0 2rem;
}

.footer-content {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    margin-bottom: 3rem;
}

.footer-logo {
    display: inline-block;
    margin-bottom: 1rem;
}

.footer-desc {
    color: var(--text-color-light);
    max-width: 300px;
}

.footer-title {
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-link {
    color: var(--text-color-light);
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: var(--primary-color);
}

.footer-socials {
    display: flex;
    gap: 1rem;
}

.footer-social {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    border-radius: 50%;
    color: var(--text-color);
    font-size: 1.25rem;
    transition: all 0.3s ease;
}

.footer-social:hover {
    background: var(--primary-color);
    color: var(--bg-color);
    border-color: var(--primary-color);
    transform: translateY(-3px);
}

.footer-copy {
    text-align: center;
    color: var(--text-color-light);
    font-size: var(--small-font-size);
    border-top: 1px solid var(--glass-border);
    padding-top: 2rem;
}

/* ====================================
   ANIMATION CLASSES
==================================== */
.fade-up-element {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.2, 0.8, 0.2, 1), transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.fade-up-element.in-view {
    opacity: 1;
    transform: translateY(0);
}

/* Delays */
.delay-1 {
    transition-delay: 0.1s;
}

.delay-2 {
    transition-delay: 0.2s;
}

.delay-3 {
    transition-delay: 0.3s;
}

/* ====================================
   MEDIA QUERIES
==================================== */
/* Para tablets */
@media screen and (min-width: 576px) {
    .grid-2 {
        grid-template-columns: 1fr 1fr;
    }
}

@media screen and (min-width: 768px) {
    .container {
        margin-left: auto;
        margin-right: auto;
    }

    .layout-servicios {
        grid-template-columns: 1fr 1fr;
        align-items: center;
    }

    .contacto-bg {
        grid-template-columns: 1fr 1.2fr;
        align-items: center;
        padding: 4rem;
    }

    .footer-content {
        grid-template-columns: 2fr 1fr 1fr;
    }
}

/* Para pantallas grandes / Desktop */
@media screen and (min-width: 968px) {

    .nav-toggle,
    .nav-close {
        display: none;
    }

    .nav-list {
        flex-direction: row;
        column-gap: 3rem;
    }

    .nav-menu {
        position: static;
        padding: 0;
        background: transparent;
        width: auto;
        border: none;
    }

    .btn-cotiza {
        background-color: transparent;
    }

    .hero-container {
        grid-template-columns: 1fr 1fr;
        align-items: center;
    }

    .hero-stats {
        flex-direction: column;
        align-items: flex-end;
        justify-content: center;
        margin-top: 0;
    }
}

/* ====================================
   LOADER
==================================== */
.loader-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: var(--bg-color);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.loader-container.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.loader-logo {
    height: 60px;
    animation: pulse 1.5s infinite ease-in-out alternate;
}

.loader-spinner {
    width: 40px;
    height: 40px;
    border: 3px solid rgba(255, 0, 127, 0.2);
    border-top-color: var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

@keyframes pulse {
    0% {
        transform: scale(0.9);
        opacity: 0.8;
    }

    100% {
        transform: scale(1.1);
        opacity: 1;
    }
}