.banner {
    position: relative;
    min-height: 100vh;
    height: 100vh;
    max-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: 80px;
}

.banner::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 0;
    background: url('../img/fundo3.jpg') center center / cover no-repeat;
    transform: scale(1.03);
    transition: transform 12s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.banner:hover::before {
    transform: scale(1);
}

.banner::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    max-width: 600px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary), var(--primary-light), var(--primary), transparent);
    border-radius: 2px;
    pointer-events: none;
    z-index: 5;
    opacity: 0.6;
}

.banner-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.banner-gradient {
    position: absolute;
    inset: 0;
    z-index: 1;
    /* background: linear-gradient(49deg, rgb(15 26 10) 0%, rgb(41 58 33 / 0%) 35%, #8a9a7a7a 65%, rgb(106 124 84 / 32%) 100%); */
}

.banner-pattern {
    position: absolute;
    inset: 0;
    z-index: 0;
    /* background-image:
        radial-gradient(circle at 20% 50%, rgba(161, 170, 139, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(161, 170, 139, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 50% 80%, rgba(161, 170, 139, 0.06) 0%, transparent 50%); */
    background-size: 100% 100%;
}

/* -------- NOVO: orbs de gradiente flutuantes -------- */
.banner-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    opacity: 0.28;
    pointer-events: none;
    z-index: 1;
    will-change: transform;
}

.banner-orb-1 {
    width: 460px;
    height: 460px;
    top: -12%;
    right: 2%;
    background: var(--primary-gradient);
    animation: orbFloat 20s ease-in-out infinite;
}

.banner-orb-2 {
    width: 320px;
    height: 320px;
    bottom: -8%;
    left: -4%;
    background: radial-gradient(circle, var(--primary-light), transparent 70%);
    animation: orbFloat 16s ease-in-out infinite reverse;
}

@keyframes orbFloat {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(40px, -35px) scale(1.12);
    }
}

.banner-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: radial-gradient(ellipse at 60% 50%,
            rgba(41, 58, 33, 0.2) 0%,
            rgba(15, 26, 10, 0.5) 100%);
}

.banner-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    align-items: center;
    width: 100%;
    height: 100%;
    padding: 0 0 3rem;
}

.banner-text {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    animation: fadeInUp 0.8s ease forwards;
}

.banner-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 0.4rem 1.2rem;
    border-radius: 50px;
    width: fit-content;
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.75);
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.banner-badge .badge-pulse {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--primary);
    box-shadow: 0 0 0 0 rgba(161, 170, 139, 0.6);
    animation: badgePulse 2.2s infinite;
}

@keyframes badgePulse {
    0% {
        box-shadow: 0 0 0 0 rgba(161, 170, 139, 0.55);
    }

    70% {
        box-shadow: 0 0 0 9px rgba(161, 170, 139, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(161, 170, 139, 0);
    }
}

.banner-badge i {
    color: var(--primary);
    font-size: 0.6rem;
}

.banner-title {
    font-family: var(--font-display);
    font-size: 3.8rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.06;
    letter-spacing: -0.02em;
}

.banner-title .highlight {
    position: relative;
    display: inline-block;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.banner-description {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 480px;
    line-height: 1.8;
}

.banner-buttons {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 0.25rem;
}

.btn-banner-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: var(--primary-gradient);
    color: #fff;
    padding: 0.8rem 2.2rem;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 50px;
    box-shadow: 0 4px 25px var(--primary-shadow);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: none;
    cursor: pointer;
    text-decoration: none;
}

.btn-banner-primary i {
    transition: transform 0.3s ease;
    font-size: 0.8rem;
}

.btn-banner-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 35px var(--primary-shadow);
}

.btn-banner-primary:hover i {
    transform: translateX(4px);
}

.btn-banner-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0.8rem 2.2rem;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
}

.btn-banner-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
    border-color: rgba(255, 255, 255, 0.2);
}

.banner-stats {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 0.8rem 5.8rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.04);
    width: fit-content;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    position: relative;
}

.banner-stats::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 16px;
    padding: 1px;
    background: linear-gradient(120deg, rgba(161, 170, 139, 0.25), transparent 40%, transparent 60%, rgba(161, 170, 139, 0.15));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-number {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.1;
}

.stat-label {
    font-size: 0.6rem;
    color: rgba(255, 255, 255, 0.4);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: 0.1rem;
}

.stat-divider {
    width: 1px;
    height: 28px;
    background: rgba(255, 255, 255, 0.06);
}

.banner-image-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.banner-image {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    animation: fadeInUp 0.8s ease 0.2s forwards;
    opacity: 0;
    padding: 0.5rem 0;
    width: 100%;
    max-width: 420px;
}

.image-frame {
    position: relative;
    width: 100%;
    aspect-ratio: 1;
    max-width: 380px;
    transform-style: preserve-3d;
}

.image-glow {
    position: absolute;
    inset: -30px;
    background: radial-gradient(circle, rgba(161, 170, 139, 0.25), transparent 65%);
    filter: blur(30px);
    z-index: -1;
    animation: ringPulse 5s ease-in-out infinite;
}

.image-container {
    width: 100%;
    height: 100%;
    border-radius: 35% 65% 70% 30% / 30% 35% 65% 70%;
    overflow: hidden;
    background: rgba(161, 170, 139, 0.08);
    border: 2px solid rgba(161, 170, 139, 0.15);
    box-shadow: 0 30px 80px rgba(161, 170, 139, 0.1);
    position: relative;
    transition: border-color 0.6s ease, box-shadow 0.6s ease, transform 0.4s ease;
    animation: blobMorph 12s ease-in-out infinite;
}

@keyframes blobMorph {

    0%,
    100% {
        border-radius: 35% 65% 70% 30% / 30% 35% 65% 70%;
    }

    50% {
        border-radius: 60% 40% 35% 65% / 50% 55% 45% 50%;
    }
}

.image-container:hover {
    border-color: rgba(161, 170, 139, 0.3);
    transform: scale(1.02);
    box-shadow: 0 40px 100px rgba(161, 170, 139, 0.15);
}

.banner-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.image-container:hover .banner-photo {
    transform: scale(1.05);
}

.image-container::after {
    content: '';
    position: absolute;
    inset: -40px;
    background: radial-gradient(circle at 50% 50%, rgba(161, 170, 139, 0.04), transparent 70%);
    z-index: -1;
    border-radius: 50%;
    filter: blur(40px);
}

.frame-ring {
    position: absolute;
    inset: -12px;
    border-radius: 40% 60% 65% 35% / 35% 40% 60% 65%;
    border: 1px solid rgba(161, 170, 139, 0.1);
    pointer-events: none;
    animation: ringPulse 4s ease-in-out infinite;
}

@keyframes ringPulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.2;
    }

    50% {
        transform: scale(1.04);
        opacity: 0.5;
    }
}

.photo-credits {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 0.8rem;
    gap: 0.1rem;
}

.psychologist-name {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.5px;
    margin: 0;
}

.psychologist-crp {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 400;
    background: rgba(255, 255, 255, 0.03);
    padding: 0.15rem 0.8rem;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.03);
}

.psychologist-crp i {
    color: var(--primary);
    font-size: 0.7rem;
}

.floating-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.4rem 0.9rem 0.4rem 0.4rem;
    background: rgba(0, 0, 0, 0.39);
    border: 1px solid rgba(255, 255, 255, 0.06);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 500;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    z-index: 5;
    white-space: nowrap;
    border-radius: 50px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.card-icon {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.65rem;
    flex-shrink: 0;
}

.floating-card:hover {
    transform: scale(1.05) translateY(-2px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.12);
}

.floating-card.card-1 {
    top: 5%;
    right: -5%;
    border-radius: 50px 50px 50px 8px;
}

.floating-card.card-2 {
    bottom: 20%;
    left: -5%;
    border-radius: 50px 50px 8px 50px;
}

.floating-card.card-3 {
    top: 48%;
    right: -8%;
    transform: translateY(-50%);
    border-radius: 8px 50px 50px 50px;
}

.floating-card.card-4 {
    top: 5%;
    left: -5%;
    border-radius: 50px 8px 50px 50px;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.2rem;
    color: #fff;
    font-size: 0.6rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    cursor: pointer;
    transition: color 0.3s ease;
    animation: bounce 2.5s infinite;
}

.scroll-indicator i {
    font-size: 1.1rem;
    margin-top: -0.2rem;
}

.scroll-indicator:hover {
    color: rgba(255, 255, 255, 0.4);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {

    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    50% {
        transform: translateX(-50%) translateY(-6px);
    }
}

@media (max-width: 1024px) {
    .banner {
        height: auto;
        min-height: 100vh;
        max-height: none;
        padding-top: 100px;
    }

    .banner::after {
        width: 70%;
        max-width: 400px;
        height: 2px;
    }

    .banner-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
        padding: 0 0 3rem;
        height: auto;
    }

    .banner-text {
        align-items: center;
    }

    .banner-badge {
        align-self: center;
    }

    .banner-description {
        max-width: 100%;
        text-align: center;
    }

    .banner-buttons {
        justify-content: center;
    }

    .banner-stats {
        justify-content: center;
        width: 100%;
        max-width: 380px;
    }

    .banner-image-wrapper {
        order: -1;
        height: auto;
        padding: 1rem 0;
    }

    .banner-image {
        max-width: 300px;
    }

    .image-frame {
        max-width: 260px;
    }

    .floating-card,
    .frame-ring {
        display: none;
    }
}

@media (max-width: 768px) {
    .banner {
        padding-top: 80px;
        margin-bottom: 60px;
        padding-left: 18px;
        padding-right: 18px;
    }

    .banner-content {
        width: 100%;
        max-width: 520px;
        margin: 0 auto;
        padding: 0 8px 3.5rem;
        gap: 1.8rem;
    }

    .banner-text {
        gap: 0.9rem;
        width: 100%;
    }

    .banner-title {
        font-size: 2.3rem;
        line-height: 1.08;
    }

    .banner-description {
        font-size: 0.95rem;
        line-height: 1.7;
        max-width: 430px;
        margin: 0 auto;
    }

    .banner-description br {
        display: none;
    }

    .banner-image-wrapper {
        width: 100%;
        padding: 0.8rem 0 0.2rem;
    }

    .banner-image {
        width: 100%;
        max-width: 340px;
        margin: 0 auto;
    }

    .image-frame {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }

    .image-container {
        border-width: 2px;
    }

    .banner-photo {
        width: 100%;
        height: 100%;
    }

    .photo-credits {
        margin-top: 0.7rem;
    }

    .psychologist-name {
        font-size: 1.15rem;
    }

    .psychologist-crp {
        font-size: 0.72rem;
    }

    .banner-stats {
        gap: 1.2rem;
        padding: 0.75rem 1.3rem;
        width: auto;
        max-width: 340px;
        margin: 0 auto;
        justify-content: center;
        border-radius: 14px;
    }

    .stat-number {
        font-size: 1.3rem;
    }

    .stat-label {
        font-size: 0.55rem;
    }

    .stat-divider {
        height: 22px;
    }

    .floating-card,
    .frame-ring {
        display: none;
    }

    .scroll-indicator {
        font-size: 0.5rem;
        bottom: 1.2rem;
    }

    .scroll-indicator i {
        font-size: 0.9rem;
    }

    .banner-orb {
        display: none;
    }
}

@media (max-width: 480px) {
    .banner {
        padding-top: 70px;
        padding-left: 16px;
        padding-right: 16px;
        margin-bottom: 50px;
    }

    .banner-content {
        max-width: 430px;
        padding: 0 6px 3rem;
        gap: 1.2rem;
    }

    .banner-image-wrapper {
        padding: 0.5rem 0;
    }

    .banner-image {
        max-width: 300px;
    }

    .image-frame {
        max-width: 270px;
    }

    .photo-credits {
        margin-top: 0.55rem;
    }

    .psychologist-name {
        font-size: 1.1rem;
    }

    .psychologist-crp {
        font-size: 0.68rem;
        padding: 0.12rem 0.65rem;
    }

    .banner-text {
        gap: 0.7rem;
    }

    .banner-title {
        font-size: 2rem;
        line-height: 1.08;
    }

    .banner-description {
        font-size: 0.9rem;
        line-height: 1.65;
        max-width: 370px;
    }

    .banner-stats {
        gap: 0.9rem;
        padding: 0.6rem 1rem;
        max-width: 290px;
        border-radius: 12px;
    }

    .stat-number {
        font-size: 1.15rem;
    }

    .stat-label {
        font-size: 0.5rem;
    }

    .stat-divider {
        height: 19px;
    }

    .scroll-indicator {
        font-size: 0.45rem;
        bottom: 0.8rem;
    }

    .scroll-indicator i {
        font-size: 0.8rem;
    }
}

@media (max-width: 360px) {
    .banner {
        padding-left: 14px;
        padding-right: 14px;
    }

    .banner-content {
        padding-left: 4px;
        padding-right: 4px;
        gap: 1rem;
    }

    .banner-image {
        max-width: 280px;
    }

    .image-frame {
        max-width: 250px;
    }

    .banner-title {
        font-size: 1.75rem;
    }

    .banner-description {
        font-size: 0.82rem;
        line-height: 1.6;
    }

    .banner-stats {
        max-width: 260px;
        gap: 0.65rem;
        padding: 0.5rem 0.8rem;
    }

    .stat-number {
        font-size: 1rem;
    }

    .stat-label {
        font-size: 0.45rem;
    }

    .stat-divider {
        height: 17px;
    }

    .psychologist-name {
        font-size: 0.95rem;
    }

    .psychologist-crp {
        font-size: 0.58rem;
    }
}