# Hero Section CSS Reference

This document contains all CSS rules related to the hero section in `web_site/public/siteStyle/atirao-home.css`.

The hero section markup is located in `web_site/resources/views/components/home/hero-section.blade.php` and uses these classes:
- `.atirao-hero`
- `.atirao-hero__canvas`
- `.atirao-hero__grid`
- `.atirao-hero__glow`
- `.atirao-hero__ghost`
- `.atirao-hero__content`
- `.atirao-hero__badge`
- `.atirao-hero__badge-text`
- `.atirao-hero__title`
- `.atirao-hero__description`
- `.atirao-hero__actions`
- `.atirao-hero__trust`
- `.atirao-hero__avatars`
- `.atirao-hero__stars`
- `.atirao-hero__stats`
- `.atirao-hero__stat`

## Hero Section Base Styles

```css
.atirao-home .atirao-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 112px 0 0;
    color: var(--atirao-white);
    background: var(--atirao-dark);
}

.atirao-home .atirao-hero__canvas,
.atirao-home .atirao-hero__grid,
.atirao-home .atirao-hero__glow,
.atirao-home .atirao-hero__ghost {
    position: absolute;
    pointer-events: none;
}

.atirao-home .atirao-hero__canvas,
.atirao-home .atirao-hero__grid {
    inset: 0;
    width: 100%;
    height: 100%;
}

.atirao-home .atirao-hero__grid,
.atirao-home .atirao-value-proposition__grid,
.atirao-home .atirao-contact__grid-bg {
    background-image:
        linear-gradient(rgba(105, 193, 189, 0.3) 1px, transparent 1px),
        linear-gradient(90deg, rgba(105, 193, 189, 0.3) 1px, transparent 1px);
    background-size: 60px 60px;
    opacity: 0.04;
}

.atirao-home .atirao-hero__glow {
    border-radius: 999px;
    filter: blur(120px);
}

.atirao-home .atirao-hero__glow--teal {
    top: 25%;
    left: 18%;
    width: 500px;
    height: 500px;
    background: rgba(105, 193, 189, 0.08);
}

.atirao-home .atirao-hero__glow--red {
    right: 18%;
    bottom: 18%;
    width: 400px;
    height: 400px;
    background: rgba(229, 57, 53, 0.08);
}

.atirao-home .atirao-hero__ghost {
    top: 50%;
    left: 50%;
    color: rgba(255, 255, 255, 0.025);
    font-size: clamp(6rem, 22vw, 22rem);
    font-weight: 900;
    letter-spacing: 0;
    line-height: 0.8;
    transform: translate(-50%, -50%);
    white-space: nowrap;
}

.atirao-home .atirao-hero__content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    text-align: center;
}

.atirao-home .atirao-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 9px 16px;
    border: 1px solid rgba(105, 193, 189, 0.28);
    border-radius: 999px;
    background: rgba(105, 193, 189, 0.1);
    color: var(--atirao-teal);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.atirao-home .atirao-hero__badge > span:first-child {
    flex: 0 0 auto;
    width: 6px;
    height: 6px;
    border-radius: 999px;
    background: var(--atirao-teal);
    animation: atirao-pulse-dot 2s ease-in-out infinite;
}

.atirao-home .atirao-hero__badge-text {
    min-width: 0;
}

.atirao-home .atirao-hero__title {
    max-width: 980px;
    margin: 28px auto 0;
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 900;
    letter-spacing: 0;
    line-height: 0.92;
}

.atirao-home .atirao-hero__title span {
    display: block;
}

.atirao-home .atirao-hero__title span:nth-child(2) {
    color: rgba(255, 255, 255, 0.35);
    font-weight: 300;
}

.atirao-home .atirao-hero__title em {
    color: transparent;
    font-style: italic;
    background: linear-gradient(135deg, #d9fffd 0%, #69c1bd 45%, #9fe0dc 100%);
    -webkit-background-clip: text;
    background-clip: text;
}

.atirao-home .atirao-hero__description {
    max-width: 700px;
    margin: 28px auto 0;
    color: rgba(255, 255, 255, 0.6);
     font-family: var(--atirao-section-copy-font) !important;
    font-size: var(--atirao-section-copy-size) !important;
    font-weight: var(--atirao-section-copy-weight) !important;
    line-height: var(--atirao-section-copy-leading) !important;
}

.atirao-home .atirao-hero__actions {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 36px;
}

.atirao-home .atirao-hero__trust {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 34px;
    margin-bottom: 64px;
}

.atirao-home .atirao-hero__avatars {
    display: flex;
}

.atirao-home .atirao-hero__avatars span {
    display: grid;
    place-items: center;
    width: 32px;
    height: 32px;
    margin-left: -8px;
    border: 2px solid var(--atirao-dark);
    border-radius: 999px;
    background: rgba(105, 193, 189, 0.2);
    color: var(--atirao-teal);
    font-size: 9px;
    font-weight: 900;
}

.atirao-home .atirao-hero__avatars span:first-child {
    margin-left: 0;
}

.atirao-home .atirao-hero__stars {
    display: flex;
    gap: 2px;
    color: var(--atirao-teal);
}

.atirao-home .atirao-hero__trust p {
    margin: 4px 0 0;
    color: rgba(255, 255, 255, 0.5);
    font-size: 12px;
    font-weight: 700;
}

.atirao-home .atirao-hero__stats {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    width: min(100%, 920px);
    overflow: hidden;
    border: 1px solid #f3f4f6;
    border-radius: var(--atirao-radius-lg);
    background: var(--atirao-white);
    box-shadow: 0 8px 48px rgba(0, 0, 0, 0.15);
}

.atirao-home .atirao-hero__stats::after {
    content: "";
    grid-column: 1 / -1;
    height: 2px;
    background: linear-gradient(90deg, var(--atirao-teal), var(--atirao-red), var(--atirao-teal));
}

.atirao-home .atirao-hero__stat {
    display: grid;
    gap: 6px;
    padding: 18px 14px;
    color: var(--atirao-dark);
    border-right: 1px solid #f3f4f6;
}

.atirao-home .atirao-hero__stat:last-of-type {
    border-right: 0;
}

.atirao-home .atirao-hero__stat strong {
    font-size: clamp(1.4rem, 3vw, 2rem);
    font-weight: 900;
    letter-spacing: 0;
    line-height: 1;
}

.atirao-home .atirao-hero__stat strong span {
    color: inherit;
    font: inherit;
}

.atirao-home .atirao-hero__stat > span {
    color: var(--atirao-muted);
    font-size: 12px;
    font-weight: 700;
    line-height: 1.25;
}
```

## Responsive Overrides

### Tablet / small desktop (max-width: 767px)

```css
@media (max-width: 767px) {
    .atirao-home .atirao-hero {
        min-height: 100svh;
        padding-top: 100px;
    }

    .atirao-home .atirao-header,
    .atirao-home .atirao-hero {
        width: 100%;
        max-width: 100vw;
    }

    .atirao-home .atirao-hero__content {
        max-width: 100%;
        overflow: hidden;
    }

    .atirao-home .atirao-hero__badge {
        flex-wrap: wrap;
        justify-content: center;
        width: 100%;
        max-width: 100%;
        white-space: normal;
        line-height: 1.4;
    }

    .atirao-home .atirao-hero__badge-text {
        flex: 1 1 220px;
        max-width: 100%;
        text-align: center;
        overflow-wrap: anywhere;
    }

    .atirao-home .atirao-hero__title {
        width: 100%;
        font-size: clamp(2.35rem, 11vw, 3.3rem);
        line-height: 1.02;
        overflow-wrap: anywhere;
    }

    .atirao-home .atirao-hero__title span:nth-child(2) {
        font-size: 0.74em;
    }

    .atirao-home .atirao-hero__description,
    .atirao-home .atirao-value-proposition__copy p,
    .atirao-home .atirao-contact__details > p {
        width: 100%;
        max-width: 100%;
        font-size: 15px;
    }

    .atirao-home .atirao-hero__actions,
    .atirao-home .atirao-contact__row {
        flex-direction: column;
        display: flex;
        width: 100%;
        max-width: 100%;
    }

    .atirao-home .atirao-hero__actions .atirao-button {
        width: 100%;
    }

    .atirao-home .atirao-hero__trust {
        margin-bottom: 42px;
    }

    .atirao-home .atirao-hero__stats,
    .atirao-home .atirao-value-proposition__cards,
    .atirao-home .atirao-expertises__grid,
    .atirao-home .atirao-references__stats,
    .atirao-home .atirao-references__logos,
    .atirao-home .atirao-references__results,
    .atirao-home .atirao-testimonials,
    .atirao-home .atirao-footer__nav {
        grid-template-columns: 1fr;
    }

    .atirao-home .atirao-hero__stat {
        border-right: 0;
        border-bottom: 1px solid #f3f4f6;
    }
}
```

### Mobile (max-width: 479px)

```css
@media (max-width: 479px) {
    .atirao-home .atirao-hero__title {
        font-size: clamp(2.1rem, 10vw, 2.8rem);
    }

    .atirao-home .atirao-hero__badge {
        padding: 8px 12px;
        font-size: 10px;
        letter-spacing: 0.16em;
    }

    .atirao-home .atirao-hero__badge,
    .atirao-home .atirao-section-label {
        letter-spacing: 0.12em;
    }

    .atirao-home .atirao-hero__trust {
        align-items: flex-start;
    }
}
```

## Notes

- The hero uses utility variables from the root `.atirao-home` scope, such as `--atirao-dark`, `--atirao-teal`, and `--atirao-radius-lg`.
- The hero section includes a large decorative ghost heading with low opacity (`.atirao-hero__ghost`), grid overlay, and colored glow spots.
- The responsive styles ensure the hero title and badge scale cleanly on tablet and mobile.
