/* ======================================================
   VARIABLES
====================================================== */
:root {
    --accent: #38bdf8;
    --dark: #020617;
    --dark-soft: #020617;
    --text-light: #cbd5f5;
}

body {
    overflow-x: hidden;
}

/* ======================================================
   HEADER
====================================================== */
.gc-header {
    background: #ffffff;
    border-bottom: 1px solid #e5e7eb;
}

.header-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

/* LOGO */
.gc-logo img {
    height: 55px;
    width: auto;
}

/* ======================================================
   NAV MENU DESKTOP
====================================================== */
.gc-nav {
    display: flex;
}

.gc-menu {
    display: flex;
    align-items: center;
    gap: 28px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.menu-item a {
    color: #020617;
    text-decoration: none;
    font-weight: 500;
    position: relative;
}

.menu-item a:hover {
    color: var(--accent);
}

/* SUBMENU */
.menu-item.has-sub {
    position: relative;
}

.menu-item.has-sub .arrow {
    margin-left: 6px;
    font-size: 11px;
}

.submenu-wrapper {
    position: absolute;
    top: 100%;
    left: 0;
    background: #ffffff;
    border-radius: 12px;
    padding: 18px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, .12);
    display: none;
    min-width: 260px;
    z-index: 100;
}

.menu-item.has-sub:hover .submenu-wrapper {
    display: block;
}

.gc-submenu {
    list-style: none;
    margin: 0;
    padding: 0;
}

.gc-submenu li {
    margin-bottom: 8px;
}

.gc-submenu a {
    font-size: 14px;
    color: #020617;
    text-decoration: none;
}

.gc-submenu a:hover {
    color: var(--accent);
}

/* ======================================================
   ACTIONS (LANG + BURGER)
====================================================== */
.gc-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.gc-actions a {
    font-weight: 600;
    font-size: 13px;
    color: #020617;
    opacity: .5;
    text-decoration: none;
    padding: 6px 8px;
    border-radius: 6px;
}

.gc-actions a.active {
    opacity: 1;
    background: var(--accent);
    color: #020617;
}

/* ======================================================
   BURGER
====================================================== */
.gc-burger {
    display: none;
}

/* ======================================================
   MOBILE MENU
====================================================== */
@media (max-width: 1000px) {

    .gc-burger {
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 4px;
        width: 40px;
        height: 36px;
        background: var(--dark);
        border: none;
        border-radius: 8px;
        cursor: pointer;
    }

    .gc-burger span {
        width: 20px;
        height: 2px;
        background: #ffffff;
        margin: 0 auto;
    }

    .gc-nav {
        position: fixed;

        top: 0;
        left: 0;

        width: 100%;
        height: 100dvh;
        /* importante */

        background: var(--dark);

        transform: translateX(-100%);
        transition: transform .35s ease;

        z-index: 9999;

        padding: 24px;

        overflow-y: auto;
    }

    .gc-nav.open {
        transform: translateX(0);
    }

    .menu-close {
        background: none;
        border: none;
        color: #ffffff;
        font-size: 16px;
        margin-bottom: 20px;
        cursor: pointer;
    }

    .gc-menu {
        flex-direction: column;
        align-items: flex-start;
        gap: 18px;
    }

    .menu-item a {
        color: #ffffff;
        font-size: 16px;
    }

    .submenu-wrapper {
        position: static;
        box-shadow: none;
        background: transparent;
        padding: 8px 0 0 14px;
    }

    .gc-submenu a {
        color: #cbd5f5;
        font-size: 14px;
    }
}

/* ======================================================
   FOOTER
====================================================== */
.gc-footer {
    background: var(--dark);
    color: var(--text-light);
    margin-top: 80px;
}

/* FOOTER TOP */
.footer-top {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 48px;
    padding: 80px 24px 60px;
}

.footer-col h4 {
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 16px;
}

.footer-col p {
    font-size: 14px;
    line-height: 1.6;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col ul li {
    margin-bottom: 8px;
}

.footer-col ul a {
    font-size: 14px;
    color: var(--text-light);
    text-decoration: none;
}

.footer-col ul a:hover {
    color: var(--accent);
}

/* FOOTER ABOUT */
.footer-logo {
    height: 50px;
    margin-bottom: 20px;
}

/* FOOTER SERVICES TREE */
.footer-services-list {
    max-height: 260px;
    overflow-y: auto;
    padding-right: 8px;
}

.footer-cat {
    margin-bottom: 14px;
}

.footer-cat-link {
    font-weight: 600;
    color: #ffffff;
    font-size: 14px;
    text-decoration: none;
    display: block;
    margin-bottom: 6px;
}

.footer-subcats {
    list-style: none;
    padding-left: 14px;
    margin: 0;
}

.footer-subcats a {
    font-size: 13px;
    color: var(--text-light);
    opacity: .85;
}

.footer-subcats a:hover {
    color: var(--accent);
    opacity: 1;
}

/* SCROLLBAR */
.footer-services-list::-webkit-scrollbar {
    width: 4px;
}

.footer-services-list::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, .25);
    border-radius: 4px;
}

/* FOOTER BOTTOM */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .1);
    padding: 100px 0;
}

.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: #94a3b8;
}

.footer-follow a {
    color: var(--text-light);
    margin-left: 10px;
    text-decoration: none;
}

.footer-follow a:hover {
    color: var(--accent);
}

/* ======================================================
   FOOTER MOBILE
====================================================== */
@media (max-width: 900px) {

    .footer-top {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 60px 24px 40px;
    }

    .footer-bottom-inner {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
}

/* ======================================================
   FIXED CALL BANNER
====================================================== */
.fixed-call-banner {
    position: fixed;
    right: 16px;
    bottom: 16px;
    z-index: 2147483647;

    display: flex;
    align-items: center;
    gap: 10px;

    background: var(--accent);
    color: #020617;

    padding: 14px 20px;
    border-radius: 40px;

    font-weight: 600;
    font-size: 14px;
    text-decoration: none;

    box-shadow: 0 12px 30px rgba(0, 0, 0, .25);
}

/* ICON */
.call-icon {
    font-size: 18px;
}

/* HOVER */
.fixed-call-banner:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, .35);
}

/* ======================================================
   MOBILE OPTIMIZATION
====================================================== */
@media (max-width: 900px) {

    .fixed-call-banner {
        bottom: 16px;
        right: 16px;
        padding: 16px 22px;
        font-size: 15px;
        z-index: 2000000000;
    }

    .call-icon {
        font-size: 20px;
    }
}

.fixed-call-banner {
    position: fixed;
    isolation: isolate;
}

/* ======================================================
   COOKIE BANNER
====================================================== */
.cookie-banner {
    position: fixed;
    left: 20px;
    right: 20px;
    bottom: 20px;
    z-index: 2147483000;

    background: rgba(2, 6, 23, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 22px;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(12px);

    padding: 22px 24px;
    animation: cookieSlideUp .35s ease;
}

@keyframes cookieSlideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.cookie-banner[hidden] {
    display: none !important;
}

.cookie-banner-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 26px;
}

.cookie-banner-text {
    flex: 1;
}

.cookie-banner-text h4 {
    margin: 0 0 8px;
    color: #ffffff;
    font-size: 18px;
    font-weight: 700;
}

.cookie-banner-text p {
    margin: 0;
    color: #cbd5e1;
    font-size: 14px;
    line-height: 1.7;
}

.cookie-banner-text a {
    color: var(--accent);
    text-decoration: none;
    font-weight: 600;
}

.cookie-banner-text a:hover {
    text-decoration: underline;
}

.cookie-banner-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.cookie-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 46px;
    padding: 0 18px;
    border-radius: 999px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all .25s ease;
    white-space: nowrap;
}

.cookie-btn-accept {
    background: var(--accent);
    color: #020617;
}

.cookie-btn-accept:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(56, 189, 248, 0.25);
}

.cookie-btn-decline {
    background: transparent;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.18);
}

.cookie-btn-decline:hover {
    background: rgba(255, 255, 255, 0.06);
}

.cookie-btn-link {
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
}

.cookie-btn-link:hover {
    background: rgba(255, 255, 255, 0.14);
}

@media (max-width: 900px) {
    .cookie-banner {
        left: 12px;
        right: 12px;
        bottom: 12px;
        padding: 18px;
        border-radius: 18px;
    }

    .cookie-banner-inner {
        flex-direction: column;
        align-items: stretch;
    }

    .cookie-banner-text h4 {
        font-size: 16px;
    }

    .cookie-banner-text p {
        font-size: 13px;
        line-height: 1.6;
    }

    .cookie-banner-actions {
        width: 100%;
        gap: 10px;
    }

    .cookie-btn {
        width: 100%;
    }
}