/* PALETA CORPORATIVA */
:root {
    --bg-dark: #0a0f1c;
    --bg-panel: #132033;
    --blue: #2196f3;
    --blue-deep: #0d47a1;
    --cyan: #00e5ff;
    --text-light: #e3e9f3;
}

/* GLOBAL */
body {
    margin: 0;
    font-family: 'Segoe UI', sans-serif;
    background: var(--bg-dark);
    color: var(--text-light);
}

/* GRID TECH */
body::before {
    content: "";
    position: fixed;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(33,150,243,0.05) 1px, transparent 1px),
        linear-gradient(0deg, rgba(33,150,243,0.05) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
    z-index: -1;
}

/* HEADER */
.header {
    text-align: center;
    padding: 40px 20px;
    background: linear-gradient(90deg, var(--blue-deep), var(--blue));
    border-bottom: 3px solid var(--cyan);
}

.logo-area {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
}

.logo {
    height: 70px;
}

.header h1 {
    font-size: 3rem;
    margin: 0;
}

.slogan {
    margin-top: 10px;
    font-size: 1.2rem;
    opacity: 0.9;
}

/* HERO */
.hero {
    background-image: url("assets/bg-tech.jpg");
    background-size: cover;
    background-position: center;
    padding: 120px 20px;
    text-align: center;
}

.hero-content {
    background: rgba(0,0,0,0.45);
    padding: 30px;
    border-radius: 10px;
    display: inline-block;
}

.btn {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 25px;
    background: var(--blue-deep);
    color: white;
    text-decoration: none;
    border-radius: 6px;
    transition: 0.2s;
}

.btn:hover {
    background: var(--blue);
    box-shadow: 0 0 10px var(--cyan);
}

/* SERVEIS */
.serveis {
    padding: 60px 20px;
    text-align: center;
}

.cards {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.card {
    background: var(--bg-panel);
    padding: 25px;
    width: 280px;
    border-radius: 10px;
    border: 1px solid rgba(0,229,255,0.15);
    box-shadow: 0 0 12px rgba(0,229,255,0.08);
}

/* CONTACTE */
.contacte {
    padding: 60px 20px;
    background: var(--bg-panel);
    text-align: center;
    border-top: 2px solid var(--cyan);
}

.contact-info p {
    margin: 8px 0;
}

/* FOOTER */
.footer {
    text-align: center;
    padding: 20px;
    background: #08101a;
    border-top: 2px solid var(--blue-deep);
}
.contador {
    margin-top: 20px;
    padding: 10px 20px;
    display: inline-block;
    background: rgba(0,229,255,0.12);
    border: 1px solid rgba(0,229,255,0.25);
    border-radius: 8px;
    font-size: 1rem;
    color: #e3e9f3;
    box-shadow: 0 0 10px rgba(0,229,255,0.15);
}
