.banner {
    position: relative;
    min-height: 100vh;
    height: 100vh;
    max-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--gray-900);
    padding-top: 80px;
}

.banner::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 75%;
    max-width: 700px;
    height: 2.5px;
    background: linear-gradient(to right, transparent 0%, var(--primary) 10%, var(--primary) 90%, transparent 100%);
    border-radius: var(--radius-full);
    pointer-events: none;
    z-index: 5;
}

.banner-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.banner-gradient {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(135deg,
            rgba(15, 26, 10, 0.95) 0%,
            rgba(161, 170, 139, 0.8) 45%,
            rgba(106, 124, 84, 0.6) 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%;
}

.banner-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: radial-gradient(ellipse at 60% 50%, transparent 0%, rgba(0, 0, 0, 0.15) 100%);
}

.banner-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    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);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 0.4rem 1.2rem;
    border-radius: var(--radius-full);
    width: fit-content;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.banner-badge i {
    color: var(--primary);
    font-size: 0.65rem;
}

.banner-title {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1.08;
    letter-spacing: -0.02em;
}

.banner-title .highlight {
    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 {
    background: var(--primary-gradient);
    color: var(--white);
    padding: 0.8rem 2rem;
    font-size: 0.95rem;
    border-radius: var(--radius-md);
    box-shadow: 0 4px 20px var(--primary-shadow);
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.btn-banner-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px var(--primary-shadow);
}

.btn-banner-secondary {
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.12);
    padding: 0.8rem 2rem;
    font-size: 0.95rem;
    border-radius: var(--radius-md);
    transition: all var(--transition-base);
}

.btn-banner-secondary:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-3px);
}

.banner-stats {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.06);
    width: fit-content;
}

.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: var(--white);
    line-height: 1.1;
}

.stat-label {
    font-size: 0.65rem;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-top: 0.1rem;
}

.stat-divider {
    width: 1px;
    height: 30px;
    background: rgba(255, 255, 255, 0.08);
}

.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;
}

.image-container {
    width: 100%;
    height: 100%;
    border-radius: 35% 65% 70% 30% / 30% 35% 65% 70%;
    overflow: hidden;
    background: rgba(161, 170, 139, 0.1);
    border: 3px solid rgba(161, 170, 139, 0.2);
    box-shadow:
        0 30px 80px rgba(161, 170, 139, 0.12),
        0 0 0 1px rgba(161, 170, 139, 0.05) inset;
    position: relative;
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.image-container:hover {
    border-color: rgba(161, 170, 139, 0.4);
    transform: scale(1.02);
    box-shadow:
        0 40px 100px rgba(161, 170, 139, 0.2),
        0 0 0 1px rgba(161, 170, 139, 0.1) inset;
}

.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.06);
}

.image-container::after {
    content: '';
    position: absolute;
    inset: -40px;
    background: radial-gradient(circle at 50% 50%, rgba(161, 170, 139, 0.06), transparent 70%);
    z-index: -1;
    border-radius: 50%;
    filter: blur(50px);
}

.frame-ring {
    position: absolute;
    inset: -12px;
    border-radius: 40% 60% 65% 35% / 35% 40% 60% 65%;
    border: 1.5px solid rgba(161, 170, 139, 0.08);
    pointer-events: none;
    animation: ringPulse 4s ease-in-out infinite;
}

@keyframes ringPulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.3;
    }

    50% {
        transform: scale(1.04);
        opacity: 0.6;
    }
}

.photo-credits {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 1rem;
    gap: 0.15rem;
}

.psychologist-name {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 0.5px;
    margin: 0;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
}

.psychologist-crp {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 400;
    background: rgba(255, 255, 255, 0.04);
    padding: 0.2rem 1rem;
    border-radius: var(--radius-full);
    border: 1px solid rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.psychologist-crp i {
    color: var(--primary);
    font-size: 0.75rem;
}

.floating-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.06);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 500;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    z-index: 5;
    white-space: nowrap;
    border-radius: var(--radius-full);
}

.floating-card .card-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    flex-shrink: 0;
}

.floating-card:hover {
    transform: scale(1.05) translateY(-3px);
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.12);
}

.floating-card.card-1 {
    top: 8%;
    right: -8%;
    border-radius: 50px 50px 50px 8px;
}

.floating-card.card-2 {
    bottom: 22%;
    left: -8%;
    border-radius: 50px 50px 8px 50px;
}

.floating-card.card-3 {
    top: 50%;
    right: -10%;
    transform: translateY(-50%);
    border-radius: 8px 50px 50px 50px;
}

.floating-card.card-4 {
    top: 8%;
    left: -8%;
    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.3rem;
    color: rgba(255, 255, 255, 0.2);
    font-size: 0.65rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    cursor: pointer;
    transition: color 0.3s ease;
    animation: bounce 2.5s infinite;
}

.scroll-indicator .scroll-text {
    font-weight: 400;
}

.scroll-indicator i {
    font-size: 1.2rem;
    margin-top: -0.2rem;
}

.scroll-indicator:hover {
    color: rgba(255, 255, 255, 0.5);
}

@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: 85%;
        max-width: 450px;
        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: 400px;
    }

    .banner-image-wrapper {
        order: -1;
        height: auto;
        padding: 1rem 0;
    }

    .banner-image {
        max-width: 320px;
    }

    .image-frame {
        max-width: 280px;
    }

    .floating-card {
        display: none;
    }

    .frame-ring {
        display: none;
    }
}

@media (max-width: 768px) {
    .banner {
        padding-top: 80px;
        margin-bottom: 75px;
    }

    .banner::after {
        width: 85%;
        max-width: 450px;
        height: 2px;
    }

    .banner-content {
        padding: 0 0 4rem;
        gap: 1.5rem;
    }

    .banner-text {
        gap: 0.8rem;
        width: 100%;
    }

    .banner-title {
        font-size: 2.2rem;
    }

    .banner-description {
        font-size: 0.95rem;
    }

    .banner-description br {
        display: none;
    }

    .banner-buttons {
        flex-direction: column;
        width: 100%;
        gap: 0.5rem;
    }

    .banner-buttons .btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
        padding: 0.7rem 1.5rem;
        font-size: 0.85rem;
    }

    .banner-stats {
        gap: 1.5rem;
        padding: 0.8rem 1.2rem;
        width: 100%;
        max-width: 280px;
        /* 🔥 Mesmo tamanho dos botões */
        justify-content: center;
        margin: 0 auto;
    }

    .stat-number {
        font-size: 1.3rem;
    }

    .stat-label {
        font-size: 0.6rem;
    }

    .stat-divider {
        height: 25px;
    }

    .banner-image-wrapper {
        padding: 0.5rem 0;
    }

    .banner-image {
        max-width: 260px;
    }

    .image-frame {
        max-width: 220px;
    }

    .photo-credits {
        margin-top: 0.5rem;
        gap: 0.1rem;
    }

    .psychologist-name {
        font-size: 1.2rem;
    }

    .psychologist-crp {
        font-size: 0.75rem;
        padding: 0.15rem 0.8rem;
    }

    .scroll-indicator {
        font-size: 0.55rem;
        bottom: 1.5rem;
    }

    .scroll-indicator i {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .banner {
        padding-top: 70px;
        margin-bottom: 75px;
    }

    .banner::after {
        width: 90%;
        max-width: 300px;
        height: 1.5px;
    }

    .banner-content {
        padding: 0 0 3.5rem;
        gap: 1rem;
    }

    .banner-text {
        gap: 0.6rem;
        width: 100%;
    }

    .banner-title {
        font-size: 1.8rem;
    }

    .banner-description {
        font-size: 0.9rem;
    }

    .banner-buttons {
        gap: 0.4rem;
    }

    .banner-buttons .btn {
        max-width: 240px;
        padding: 0.6rem 1.2rem;
        font-size: 0.8rem;
    }

    .banner-buttons .btn i {
        font-size: 0.8rem;
    }

    .banner-stats {
        gap: 0.8rem;
        padding: 0.5rem 0.8rem;
        max-width: 240px;
        /* 🔥 Mesmo tamanho dos botões */
    }

    .stat-number {
        font-size: 1.1rem;
    }

    .stat-label {
        font-size: 0.5rem;
    }

    .stat-divider {
        height: 20px;
    }

    .banner-image-wrapper {
        padding: 0.3rem 0;
    }

    .banner-image {
        max-width: 200px;
    }

    .image-frame {
        max-width: 180px;
    }

    .photo-credits {
        margin-top: 0.3rem;
        gap: 0.05rem;
    }

    .psychologist-name {
        font-size: 1rem;
    }

    .psychologist-crp {
        font-size: 0.65rem;
        padding: 0.1rem 0.6rem;
        gap: 0.3rem;
    }

    .psychologist-crp i {
        font-size: 0.6rem;
    }

    .scroll-indicator {
        font-size: 0.5rem;
        bottom: 1rem;
    }

    .scroll-indicator i {
        font-size: 0.9rem;
    }
}