/* ==========================================================
   HIRD Soluções Tecnológicas
   Landing Page
   ========================================================== */

:root {

    --bg: #0b0b0b;
    --bg2: #151515;

    --primary: #ff7a00;
    --primary-light: #ff9834;

    --text: #ffffff;
    --text2: #bfbfbf;

    --card: rgba(255,255,255,.05);

    --border: rgba(255,255,255,.08);

}

/* ========================================================== */

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

html{
    scroll-behavior:smooth;
}

body{

    background:linear-gradient(180deg,#090909,#111,#181818);

    color:var(--text);

    font-family:
        "Segoe UI",
        Roboto,
        Arial,
        sans-serif;

    overflow-x:hidden;

}

/* ========================================================== */
/* BACKGROUND                                                  */
/* ========================================================== */

.background{

    position:fixed;

    inset:0;

    background-image:

    radial-gradient(circle at top,#ff7a0025 0%,transparent 35%),

    radial-gradient(circle at bottom,#ff7a0015 0%,transparent 30%);

    z-index:-1;

}

/* ========================================================== */

.container{

    width:min(1200px,92%);

    margin:auto;

    min-height:100vh;

    display:flex;

    flex-direction:column;

    justify-content:center;

    align-items:center;

    padding:60px 20px;

}

/* ========================================================== */
/* LOGO                                                        */
/* ========================================================== */

.logo-area{

    margin-bottom:40px;

}

.logo{

    width:260px;

    max-width:100%;

    filter:

    drop-shadow(0 0 10px rgba(255,122,0,.30))

    drop-shadow(0 0 40px rgba(255,122,0,.20));

}

@keyframes logo{

    0%{

        transform:scale(1);

    }

    50%{

        transform:scale(1.03);

    }

    100%{

        transform:scale(1);

    }

}

/* ========================================================== */

.badge{

    border:1px solid rgba(255,122,0,.45);

    background:rgba(255,122,0,.08);

    color:var(--primary);

    padding:12px 24px;

    border-radius:40px;

    font-size:14px;

    letter-spacing:2px;

    font-weight:700;

    margin-bottom:35px;

}

/* ========================================================== */

.hero{

    text-align:center;

    max-width:900px;

}

.hero h1{

    font-size:clamp(40px,5vw,68px);

    line-height:1.15;

    margin-bottom:25px;

    font-weight:800;

}

.hero span{

    color:var(--primary);

}

.hero p{

    font-size:20px;

    color:var(--text2);

    line-height:1.8;

}

/* ========================================================== */

.services{

    margin-top:70px;

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(160px,1fr));

    gap:20px;

    width:100%;

}

/* ========================================================== */

.service{

    background:var(--card);

    border:1px solid var(--border);

    border-radius:18px;

    padding:30px;

    backdrop-filter:blur(8px);

    transition:.35s;

    text-align:center;

}

.service:hover{

    transform:translateY(-8px);

    border-color:rgba(255,122,0,.35);

    box-shadow:

    0 0 30px rgba(255,122,0,.12);

}

.service span{

    font-size:42px;

    display:block;

    margin-bottom:18px;

}

.service h3{

    font-size:18px;

    font-weight:600;

}

/* ========================================================== */

.status{

    margin-top:70px;

    width:100%;

    max-width:900px;

    background:rgba(255,255,255,.04);

    border:1px solid rgba(255,255,255,.08);

    border-left:5px solid #22c55e;

    border-radius:18px;

    padding:30px;

    display:flex;

    align-items:center;

    gap:25px;

}

.status-icon{

    color:#22c55e;

    font-size:38px;

    animation:pulse 2s infinite;

}

@keyframes pulse{

    0%{

        opacity:.3;

    }

    50%{

        opacity:1;

    }

    100%{

        opacity:.3;

    }

}

.status h2{

    margin-bottom:10px;

    font-size:24px;

}

.status p{

    color:var(--text2);

    line-height:1.7;

}

/* ========================================================== */

footer{

    margin-top:80px;

    text-align:center;

    width:100%;

}

.footer-top{

    display:flex;

    justify-content:center;

    flex-wrap:wrap;

    gap:15px;

    color:#999;

    margin-bottom:25px;

}

.footer-top span{

    padding:8px 16px;

    border-radius:30px;

    border:1px solid rgba(255,255,255,.08);

    background:rgba(255,255,255,.03);

}

.footer-bottom{

    color:#666;

    font-size:14px;

}

/* ========================================================== */

@media(max-width:900px){

.hero h1{

    font-size:46px;

}

.hero p{

    font-size:18px;

}

.status{

    flex-direction:column;

    text-align:center;

}

}

/* ========================================================== */

@media(max-width:600px){

.logo{

    width:180px;

}

.hero h1{

    font-size:34px;

}

.hero p{

    font-size:16px;

}

.badge{

    font-size:12px;

}

.service{

    padding:20px;

}

.status{

    padding:20px;

}

.footer-top{

    gap:10px;

}

}

/* Canvas de partículas */
#particles {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    pointer-events: none;
}
