.hero{
    min-height:100vh;
    width:100%;
    display:flex;
    align-items:center;
    padding:110px 48px 70px;
    overflow:hidden;
}

.hero-content{
    width:100%;
    max-width:1320px;
    margin:0 auto;
    display:grid;
    grid-template-columns:1fr 1fr;
    align-items:center;
    gap:50px;
}

.hero-text{
    position:relative;
    z-index:5;
    max-width:620px;
    padding-left:35px;
}

.hero-greeting{
    margin-bottom:6px;
    font-size:18px;
    font-weight:400;
    color:var(--text-soft);
    opacity:0;
    animation:heroFadeUp .9s cubic-bezier(.22,1,.36,1) .1s forwards;
}

.hero h1{
    max-width:650px;
    font-size:clamp(52px,6vw,88px);
    line-height:.98;
    letter-spacing:-5px;
    font-weight:400;
    color:var(--text);
    opacity:0;
    animation:heroFadeUp 1s cubic-bezier(.22,1,.36,1) .2s forwards;
}

.hero h1 strong{
    display:block;
    color:var(--accent);
    font-weight:400;
}

.hero h2{
    margin-top:28px;
    font-size:21px;
    line-height:1.35;
    font-weight:700;
    color:var(--text);
    opacity:0;
    animation:heroFadeUp .9s cubic-bezier(.22,1,.36,1) .35s forwards;
}

.hero h2 span{
    color:var(--text-soft);
    font-weight:500;
}

.hero-description{
    max-width:470px;
    margin-top:20px;
    color:var(--text-soft);
    font-size:16px;
    line-height:1.7;
    opacity:0;
    animation:heroFadeUp .9s cubic-bezier(.22,1,.36,1) .48s forwards;
}

.hero-buttons{
    display:flex;
    align-items:center;
    gap:15px;
    margin-top:30px;
    opacity:0;
    animation:heroFadeUp .9s cubic-bezier(.22,1,.36,1) .6s forwards;
}

.primary-button,
.secondary-button{
    min-height:48px;
    padding:0 22px;
    border-radius:30px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:20px;
    font-size:13px;
    font-weight:600;
    transition:all .35s ease;
}

.primary-button{
    background:var(--accent);
    color:#fff;
}

.primary-button:hover{
    background:var(--accent-hover);
    transform:translateY(-2px);
    box-shadow:0 10px 25px rgba(220,104,72,.2);
}

.primary-button span{
    font-size:18px;
    transition:transform .35s ease;
}

.primary-button:hover span{
    transform:translateX(4px);
}

.secondary-button{
    border:1px solid var(--border);
    background:transparent;
    color:var(--text);
}

.secondary-button:hover{
    border-color:var(--accent);
    color:var(--accent);
    transform:translateY(-2px);
}


/* =========================
   HERO VISUAL
========================= */

.hero-visual{
    min-height:560px;
    position:relative;
    display:flex;
    align-items:center;
    justify-content:center;
    z-index:2;
}


/* =========================
   AURORA
========================= */

.image-background{
    position:absolute;
    width:560px;
    height:560px;
    border-radius:50%;
    background:var(--surface-soft);
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
    z-index:1;
    opacity:0;
    animation:heroAuroraIn 1.3s cubic-bezier(.22,1,.36,1) .35s forwards;
}

.image-background::before{
    content:"";
    position:absolute;
    width:620px;
    height:500px;
    right:-330px;
    top:30px;
    border-radius:50%;
    background:var(--accent);
    opacity:.5;
    filter:blur(100px);
}

.image-background::after{
    content:"";
    position:absolute;
    width:420px;
    height:420px;
    right:-230px;
    top:40px;
    border-radius:50%;
    background:#f29a7e;
    opacity:.32;
    filter:blur(110px);
}


/* =========================
   FOTO
========================= */

.profile-wrapper{
    width:440px;
    height:440px;
    border-radius:50%;
    overflow:hidden;
    position:relative;
    z-index:3;
    background:var(--surface-soft);
    box-shadow:0 15px 45px rgba(50,30,20,.08);
    opacity:0;
    transform:scale(.96);
    animation:heroImageIn 1.1s cubic-bezier(.22,1,.36,1) .5s forwards;
}

.profile-wrapper img{
    width:100%;
    height:100%;
    display:block;
    object-fit:cover;
    object-position:center;
}


/* =========================
   CARD FLUTUANTE
========================= */

.availability-card{
    width:245px;
    min-height:205px;
    padding:24px;
    position:absolute;
    right:-5px;
    bottom:35px;
    z-index:5;
    border:1px solid rgba(255,255,255,.5);
    border-radius:22px;
    background:rgba(255,247,241,.68);
    box-shadow:
        0 25px 55px rgba(70,40,25,.16),
        0 5px 15px rgba(70,40,25,.06);
    backdrop-filter:blur(20px);
    -webkit-backdrop-filter:blur(20px);
    opacity:0;
    transform:translateY(25px) scale(.97);
    animation:
        heroCardIn 1s cubic-bezier(.22,1,.36,1) .75s forwards,
        cardFloat 6s ease-in-out 1.75s infinite;
}

[data-theme="dark"] .availability-card{
    background:rgba(38,33,30,.72);
    border-color:rgba(255,255,255,.13);
    box-shadow:0 25px 55px rgba(0,0,0,.3);
}

.availability-title{
    display:flex;
    align-items:center;
    gap:8px;
    color:var(--accent);
    font-size:12px;
    font-weight:600;
}

.status-dot{
    width:7px;
    height:7px;
    flex-shrink:0;
    border-radius:50%;
    background:var(--accent);
    box-shadow:0 0 0 4px rgba(220,104,72,.12);
}

.availability-card p{
    margin-top:18px;
    color:var(--text-soft);
    font-size:13px;
    line-height:1.65;
}

.card-link{
    margin-top:20px;
    padding-top:14px;
    border-top:1px solid var(--border);
    display:flex;
    align-items:center;
    justify-content:space-between;
    color:var(--text);
    font-size:12px;
    font-weight:500;
}

.card-arrow{
    width:30px;
    height:30px;
    border:1px solid var(--border);
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    transition:all .35s ease;
}

.card-link:hover{
    color:var(--accent);
}

.card-link:hover .card-arrow{
    border-color:var(--accent);
    transform:translateX(3px);
}


/* =========================
   ANIMAÇÕES
========================= */

@keyframes heroFadeUp{
    from{
        opacity:0;
        transform:translateY(18px);
    }

    to{
        opacity:1;
        transform:translateY(0);
    }
}

@keyframes heroAuroraIn{
    from{
        opacity:0;
        transform:translate(-45%,-50%) scale(.88);
    }

    to{
        opacity:1;
        transform:translate(-50%,-50%) scale(1);
    }
}

@keyframes heroImageIn{
    from{
        opacity:0;
        transform:scale(.94);
    }

    to{
        opacity:1;
        transform:scale(1);
    }
}

@keyframes heroCardIn{
    from{
        opacity:0;
        transform:translateY(25px) scale(.96);
    }

    to{
        opacity:1;
        transform:translateY(0) scale(1);
    }
}

@keyframes cardFloat{
    0%,
    100%{
        transform:translate3d(0,0,0);
    }

    50%{
        transform:translate3d(0,-6px,0);
    }
}


/* =========================
   TABLET
========================= */

@media(max-width:1100px){
    .hero{
        padding:110px 35px 70px;
    }

    .hero-content{
        gap:20px;
    }

    .hero-text{
        padding-left:20px;
    }

    .image-background{
        width:500px;
        height:500px;
    }

    .profile-wrapper{
        width:400px;
        height:400px;
    }

    .availability-card{
        right:-10px;
    }
}


/* =========================
   TABLET / MOBILE
========================= */

@media(max-width:900px){
    .hero{
        min-height:auto;
        padding:120px 35px 80px;
        overflow:hidden;
    }

    .hero-content{
        grid-template-columns:1fr;
        gap:55px;
    }

    .hero-text{
        max-width:700px;
        padding-left:20px;
    }

    .hero-visual{
        min-height:500px;
    }

    .availability-card{
        right:5%;
    }
}


/* =========================
   MOBILE
========================= */

@media(max-width:600px){
    .hero{
        min-height:100vh;
        padding:105px 20px 65px;
        align-items:flex-start;
    }

    .hero-content{
        gap:45px;
    }

    .hero-text{
        width:100%;
        max-width:none;
        padding-left:0;
    }

    .hero-greeting{
        font-size:16px;
        margin-bottom:8px;
    }

    .hero h1{
        max-width:100%;
        font-size:clamp(43px,13vw,58px);
        line-height:1;
        letter-spacing:-3px;
    }

    .hero h2{
        margin-top:22px;
        font-size:18px;
        line-height:1.4;
    }

    .hero-description{
        max-width:100%;
        margin-top:17px;
        font-size:14px;
        line-height:1.65;
    }

    .hero-buttons{
        width:100%;
        margin-top:26px;
        gap:10px;
    }

    .primary-button,
    .secondary-button{
        min-height:46px;
        padding:0 18px;
        gap:12px;
        font-size:12px;
    }

    .hero-visual{
        width:100%;
        min-height:380px;
        margin-top:0;
    }

    .image-background{
        width:320px;
        height:320px;
        left:50%;
    }

    .image-background::before{
        width:400px;
        height:350px;
        right:-230px;
        top:20px;
        filter:blur(80px);
        opacity:.45;
    }

    .image-background::after{
        width:300px;
        height:300px;
        right:-180px;
        top:30px;
        filter:blur(80px);
        opacity:.3;
    }

    .profile-wrapper{
        width:300px;
        height:300px;
    }

    .availability-card{
        width:200px;
        min-height:180px;
        right:0;
        bottom:-5px;
        padding:18px;
        border-radius:19px;
    }

    .availability-title{
        font-size:11px;
    }

    .availability-card p{
        margin-top:14px;
        font-size:11.5px;
        line-height:1.55;
    }

    .card-link{
        margin-top:15px;
        padding-top:12px;
        font-size:11px;
    }

    .card-arrow{
        width:27px;
        height:27px;
    }
}


/* =========================
   MOBILE PEQUENO
========================= */

@media(max-width:400px){
    .hero{
        padding:100px 18px 55px;
    }

    .hero h1{
        font-size:43px;
        letter-spacing:-2.5px;
    }

    .hero h2{
        font-size:17px;
    }

    .hero-description{
        font-size:13.5px;
    }

    .hero-buttons{
        flex-direction:column;
        align-items:stretch;
    }

    .primary-button,
    .secondary-button{
        width:100%;
    }

    .hero-visual{
        min-height:350px;
    }

    .image-background{
        width:280px;
        height:280px;
    }

    .profile-wrapper{
        width:265px;
        height:265px;
    }

    .availability-card{
        width:185px;
        min-height:170px;
        right:-2px;
        padding:16px;
    }
}


/* =========================
   REDUÇÃO DE MOVIMENTO
========================= */

@media(prefers-reduced-motion:reduce){
    .hero-greeting,
    .hero h1,
    .hero h2,
    .hero-description,
    .hero-buttons,
    .image-background,
    .profile-wrapper,
    .availability-card{
        animation:none;
        opacity:1;
        transform:none;
    }
}