
@layer components {
    /* ===== scroll behavior ===== */
    html {
        scroll-behavior: smooth;
    }

    /* ===== main body fonts ===== */
    body {
        font-family: 'Inter', sans-serif;
    }

    h1, h2, h3, h4 {
        font-family: 'Playfair Display', serif;
    }

    /* Optional utility class for Playfair outside headings */
    .playfair {
        font-family: 'Playfair Display', serif;
    }

    /* ===== header block ===== */
    .header {
        background-color: #0a0f2c;
        padding: 30px 60px;
        min-height: 200px;
        display: flex;
        flex-direction: row;
        align-items: center;
        z-index: 1;
    }



    /* ===== barra azul extra ===== */
    .header-extension {
        width: 100%;
        height: 80px;
        background-color: #0a0f2c;
    }


/* ===== logo block ===== */
    .logo-block {
        margin-left: -20px;
        margin-top: 10px; 
    }

    .legal-logo {
        font-size: 2rem;
        font-weight: 500;
        font-family: 'Rajdhani', sans-serif;
        color: #ffffff;
        letter-spacing: 1.5px;
        text-shadow: 0 0 3px #00ffcc, 0 0 2px #00ffee;
        transition: text-shadow 0.3s ease-in-out;
        margin: 10px;
    }

    .legal-logo:hover {
        text-shadow: 0 0 10px #00ffee, 0 0 16px #00ffee;
        cursor: default;
    }

    .code-dot {
        font-size: 5rem;
        color: #00ffcc;
        line-height: 1;
        margin-top: -50px;
        margin-left: 190px;
        font-weight: 100;

    }

    .slogan {
        font-size: 1.2rem;
        color: #d4d4d4;
        margin-left: 220px;
        margin-top: -20px;
        margin-bottom: 20px; /* 👈 ¡el aire extra! */
        text-shadow: 0 0 5px #00ffcc55;
        white-space: nowrap;
        font-family: 'Rajdhani', sans-serif;
    }
}

    /* ===== slogan glow (bonus class) ===== */
    .slogan-glow {
        text-shadow: 0 0 2px #00ffcc80;
    }

/* ===== dropdown menu hover ===== */
.group:hover .group-hover\:flex {
    display: flex !important;
}

.group-hover\:flex {
    display: none;
    position: absolute;
    z-index: 50;
}

.group:hover .keep-hover {
    pointer-events: auto;
}

/* ===== floating buttons (WhatsApp, Teams, etc.) ===== */
.floating-buttons {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 50;
}

.floating-buttons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 9999px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease-in-out;
}

.floating-buttons a:hover {
    transform: scale(1.1);
}

/* ===== Cookie Banner*/

#cookie-banner {
    display: none;
  }
  