:root {
    --hero-accent: #ff0055;
    --hero-accent-hover: #ff2b72;
    --hero-text: #ffffff;
    --hero-text-muted: #cccccc;
}

body {
    font-family: "Arial", "Helvetica Neue", sans-serif;
    background-color: #050307;
    color: var(--hero-text);
}

.hero-section {
    position: relative;
    min-height: 100vh;
    background: url('../media/landing-page/d-bg-section-1.png') no-repeat center center;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 1rem;
    overflow: hidden;
    border-bottom: 2px solid var(--hero-accent);
    isolation: isolate;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.88), rgba(0, 0, 0, 0.42));
    z-index: 1;
    pointer-events: none;
}

.hero-container {
    position: relative;
    z-index: 3;
    max-width: 1200px;
    width: 100%;
    text-align: center;
    color: var(--hero-text);
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 10rem;
}

.hero-logo {
    width: 180px;
    margin: 0 auto 40px auto;
}

.hero-section h1 {
    max-width: 980px;
    font-size: 52px;
    font-weight: 700;
    line-height: 1.2;
    margin: 0 auto 25px auto;
}

.hero-section h1 span {
    color: var(--hero-accent);
}

.hero-section p {
    font-size: 18px;
    line-height: 1.35;
    max-width: 760px;
    margin: 0 auto 35px auto;
    color: var(--hero-text-muted);
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--hero-accent);
    padding: 16px 28px;
    border-radius: 40px;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.btn-primary:hover {
    background: var(--hero-accent-hover);
}

.btn-secondary {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    align-self: auto;
}

.hero-icon-bottom {
    position: absolute;
    bottom: clamp(-600px, -30vw, -230px);
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    pointer-events: none;
}

.hero-icon-bottom img {
    width: min(750px, 100vw);
    opacity: 1;
}

@media (max-width: 768px) {
    .hero-container {
        text-align: center;
        margin-bottom: 0;
    }

    .hero-section h1 {
        font-size: 32px;
    }

    .hero-section p {
        font-size: 16px;
        margin: 0 auto 30px auto;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-logo {
        margin: 0 auto 30px auto;
    }

    .hero-icon-bottom {
        bottom: -210px;
    }

    .hero-icon-bottom img {
        width: 350px;
    }
}

.benefits-section {
    position: relative;
    background-color: #040308;
    background-image: radial-gradient(circle, rgba(255, 0, 85, 0.35) 1.7px, transparent 1.8px);
    background-size: 28px 28px;
    padding: 88px 20px 110px;
}

.benefits-container {
    max-width: 1280px;
    margin: 0 auto;
}

.benefits-section h2 {
    font-size: clamp(34px, 4.2vw, 58px);
    font-weight: 700;
    line-height: 1.1;
    text-align: center;
    margin: 0 0 54px;
    color: #fff;
}

.benefits-section h2 span {
    color: var(--hero-accent);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.benefit-card {
    position: relative;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(0, 0, 0, 0.8);
    min-height: 196px;
    padding: 12px;
}

.benefit-card::before {
    content: "";
    position: absolute;
    inset: 12px;
    border-radius: 9px;
    border: 1px solid rgba(255, 0, 85, 0.82);
    pointer-events: none;
}

.benefit-card-inner {
    position: relative;
    z-index: 1;
    padding: 30px 26px;
}

.benefit-heading {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
}

.benefit-icon {
    width: 30px;
    height: 30px;
    flex: 0 0 30px;
}

.benefit-card h3 {
    color: #fff;
    font-size: clamp(28px, 1.5vw, 34px);
    font-weight: 700;
    line-height: 1.1;
}

.benefit-card p {
    color: #ddd;
    font-size: clamp(20px, 1vw, 24px);
    line-height: 1.32;
    max-width: 21ch;
}

.benefit-card-wide {
    grid-column: 1 / -1;
    max-width: 760px;
    width: 100%;
    justify-self: center;
    min-height: 170px;
}

.benefit-card-wide .benefit-card-inner {
    padding-top: 26px;
}

.benefit-card-wide p {
    max-width: 36ch;
}

@media (max-width: 1200px) {
    .benefit-card h3 {
        font-size: 24px;
    }

    .benefit-card p {
        font-size: 18px;
    }
}

@media (max-width: 992px) {
    .benefits-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .benefit-card-wide {
        grid-column: 1 / -1;
        max-width: 680px;
        width: 100%;
        justify-self: center;
    }
}

@media (max-width: 768px) {
    .benefits-section {
        padding: 64px 12px 84px;
    }

    .benefits-section h2 {
        font-size: clamp(42px, 9.5vw, 56px);
        margin-bottom: 32px;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .benefit-card {
        min-height: auto;
        padding: 10px;
    }

    .benefit-card::before {
        inset: 10px;
    }

    .benefit-card-inner {
        padding: 24px 20px 28px;
    }

    .benefit-card h3 {
        font-size: 23px;
        line-height: 1.18;
    }

    .benefit-card p {
        font-size: 16px;
        line-height: 1.3;
        max-width: none;
    }

    .benefit-card-wide {
        grid-column: auto;
        max-width: none;
        min-height: auto;
    }
}

.chat-section {
    background: #040207;
    padding: 80px 20px 120px;
}

.chat-card {
    position: relative;
    max-width: 1280px;
    min-height: 640px;
    margin: 0 auto;
    border: 1px solid rgba(255, 0, 85, 0.65);
    border-radius: 30px;
    overflow: hidden;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 560px);
    isolation: isolate;
}

.chat-card-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    pointer-events: none;
}

.chat-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(8, 2, 6, 0.22) 0%, rgba(8, 2, 6, 0.02) 55%, rgba(8, 2, 6, 0.3) 100%);
    z-index: 1;
}

.chat-content {
    position: relative;
    z-index: 2;
    padding: 74px 70px 78px;
    color: #fff;
    max-width: 760px;
}

.chat-content h2 {
    font-size: clamp(38px, 4vw, 74px);
    line-height: 1.06;
    font-weight: 700;
    margin: 0 0 24px;
}

.chat-content h2 span {
    color: var(--hero-accent);
}

.chat-lead,
.chat-sublead {
    margin: 0;
    max-width: 22ch;
    line-height: 1.18;
}

.chat-lead {
    font-size: clamp(18px, 1.8vw, 48px);
    color: #f2f2f2;
    margin-bottom: 18px;
}

.chat-sublead {
    font-size: clamp(16px, 1.55vw, 40px);
    color: rgba(255, 255, 255, 0.72);
    margin-bottom: 28px;
}

.chat-benefits-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 12px;
    margin: 0 0 34px;
    padding: 0;
}

.chat-benefits-list li {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 999px;
    padding: 10px 20px;
    color: #fff;
    font-size: clamp(14px, 1.02vw, 24px);
    line-height: 1.15;
}

.chat-benefits-list li span {
    width: 24px;
    height: 24px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--hero-accent);
    color: #fff;
    font-weight: 700;
    font-size: 19px;
    flex: 0 0 24px;
}

.chat-cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 76px;
    min-width: 390px;
    padding: 16px 36px;
    border-radius: 999px;
    text-decoration: none;
    color: #fff;
    font-size: clamp(22px, 1.55vw, 36px);
    font-weight: 700;
    background: linear-gradient(90deg, #fe0043, #fd267d);
    transition: filter 0.25s ease;
}

.chat-cta-button:hover {
    filter: brightness(1.06);
}

.chat-visual {
    position: relative;
    z-index: 2;
}

.chat-visual-mark {
    position: absolute;
    left: 7%;
    right: -8%;
    top: 20px;
    bottom: -220px;
    background: url('../media/landing-page/icon-linkpriv.svg') no-repeat center center;
    background-size: contain;
    z-index: 1;
    pointer-events: none;
}

.chat-phone {
    position: absolute;
    right: 34px;
    bottom: -210px;
    width: min(520px, 96%);
    z-index: 2;
}

@media (max-width: 1200px) {
    .chat-card {
        grid-template-columns: minmax(0, 1fr) minmax(0, 500px);
    }

    .chat-content {
        padding: 58px 46px 64px;
    }

    .chat-phone {
        right: 18px;
        bottom: -185px;
        width: min(460px, 94%);
    }
}

@media (max-width: 992px) {
    .chat-card {
        min-height: unset;
        grid-template-columns: 1fr;
    }

    .chat-content {
        max-width: none;
        padding: 52px 34px 38px;
    }

    .chat-content h2 {
        max-width: 14ch;
    }

    .chat-lead,
    .chat-sublead {
        max-width: 26ch;
    }

    .chat-benefits-list {
        display: grid;
        grid-template-columns: 1fr;
        gap: 12px;
        margin-bottom: 30px;
    }

    .chat-benefits-list li {
        width: fit-content;
        max-width: 100%;
    }

    .chat-visual {
        min-height: 470px;
    }

    .chat-visual-mark {
        left: -16%;
        right: -16%;
        top: 34px;
        bottom: -140px;
    }

    .chat-phone {
        left: 50%;
        right: auto;
        transform: translateX(-50%);
        width: min(460px, 93%);
        bottom: -126px;
    }
}

@media (max-width: 768px) {
    .chat-section {
        padding: 32px 0 82px;
    }

    .chat-card {
        border-radius: 0;
        border-left: 1px solid rgba(255, 0, 85, 0.65);
        border-right: 1px solid rgba(255, 0, 85, 0.65);
    }

    .chat-content {
        padding: 54px 26px 26px;
    }

    .chat-content h2 {
        font-size: clamp(42px, 13.3vw, 74px);
        margin-bottom: 22px;
    }

    .chat-lead {
        font-size: clamp(18px, 8vw, 55px);
    }

    .chat-sublead {
        font-size: clamp(16px, 7.1vw, 50px);
        margin-bottom: 24px;
    }

    .chat-benefits-list li {
        font-size: clamp(14px, 5.25vw, 36px);
        padding: 11px 18px;
    }

    .chat-cta-button {
        min-width: 0;
        width: 100%;
        max-width: 520px;
        min-height: 70px;
        font-size: clamp(22px, 7.2vw, 48px);
    }

    .chat-visual {
        min-height: 510px;
    }

    .chat-visual-mark {
        left: -30%;
        right: -30%;
        top: 6px;
        bottom: -100px;
    }

    .chat-phone {
        width: min(430px, 95%);
        bottom: -160px;
    }
}

/* =========================================
   Section 4 - LivePriv
========================================= */

.livepriv-section {
    --livepriv-accent: #ff005c;
    position: relative;
    background: #000;
    padding: 114px 20px 110px;
    overflow: hidden;
    isolation: isolate;
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.9s ease, transform 0.9s ease;
}

.livepriv-section.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.livepriv-section::before,
.livepriv-section::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: clamp(220px, 28vw, 420px);
    z-index: 0;
    pointer-events: none;
}

.livepriv-section::before {
    left: -110px;
}

.livepriv-section::after {
    right: -110px;
}

/* LivePriv background decorations */
.livepriv-deco {
    position: absolute;
    z-index: 1;
    pointer-events: none;
    opacity: 0.18;
    filter: blur(0.4px);
}

.livepriv-deco-left {
    width: clamp(180px, 17vw, 300px);
    left: -60px;
    top: 210px;
    transform: rotate(-8deg);
}

.livepriv-deco-right {
    width: clamp(180px, 17vw, 300px);
    right: -52px;
    top: 238px;
    transform: rotate(7deg);
}

/* LivePriv content */
.livepriv-container {
    position: relative;
    z-index: 3;
    max-width: 1280px;
    margin: 0 auto;
    text-align: center;
}

.livepriv-logo {
    width: clamp(170px, 16.5vw, 310px);
    margin: 0 auto 28px;
    display: block;
}

.livepriv-container h2 {
    max-width: 19ch;
    margin: 0 auto 22px;
    color: #fff;
    font-size: clamp(36px, 4.2vw, 74px);
    font-weight: 700;
    line-height: 1.08;
}

.livepriv-container h2 span {
    color: var(--livepriv-accent);
}

.livepriv-container p {
    max-width: 56ch;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.82);
    font-size: clamp(17px, 1.35vw, 24px);
    line-height: 1.38;
}

.livepriv-mockup-wrap {
    margin-top: 34px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    position: relative;
}

.livepriv-mockup {
    width: min(1080px, 96vw);
    display: block;
    margin: 0 auto;
    filter: drop-shadow(0 24px 52px rgba(255, 0, 92, 0.24));
}

/* LivePriv ribbons */
.livepriv-ribbon {
    position: absolute;
    left: 55%;
    width: 140%;
    max-width: none;
    display: flex;
    overflow: hidden;
    white-space: nowrap;
    z-index: 4;
    pointer-events: none;
}

.livepriv-ribbon-primary {
    bottom: 120px;
    transform: translateX(-50%) rotate(-5deg);
    background: var(--livepriv-accent);
    border-top: 1px solid rgba(255, 255, 255, 0.24);
    border-bottom: 1px solid rgba(255, 255, 255, 0.24);
    box-shadow: 0 0 32px rgba(255, 0, 92, 0.42);
}

.livepriv-ribbon-secondary {
    bottom: 68px;
    transform: translateX(-50%) rotate(5deg);
    background: rgba(0, 0, 0, 0.92);
    border-top: 1px solid rgba(255, 0, 92, 0.78);
    border-bottom: 1px solid rgba(255, 0, 92, 0.78);
    box-shadow: 0 0 22px rgba(255, 0, 92, 0.24);
}

.livepriv-track {
    min-width: max-content;
    display: flex;
    align-items: center;
    gap: 30px;
    padding: 20px 18px;
}

.livepriv-ribbon-primary .livepriv-track {
    animation: moveRight 24s linear infinite;
}

.livepriv-ribbon-secondary .livepriv-track {
    animation: moveLeft 26s linear infinite;
}

.livepriv-item {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    font-size: clamp(11px, 0.84vw, 14px);
    line-height: 1;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.livepriv-item::before {
    content: "";
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: var(--livepriv-accent);
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.35);
}

/* LivePriv keyframes */
@keyframes moveRight {
    from {
        transform: translateX(-100%);
    }

    to {
        transform: translateX(0);
    }
}

@keyframes moveLeft {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-100%);
    }
}

/* LivePriv responsive */
@media (max-width: 1200px) {
    .livepriv-ribbon-primary {
        bottom: 104px;
    }

    .livepriv-ribbon-secondary {
        bottom: 54px;
    }
}

@media (max-width: 992px) {
    .livepriv-section {
        padding: 88px 14px 88px;
    }

    .livepriv-deco {
        opacity: 0.12;
    }

    .livepriv-deco-left {
        left: -74px;
        top: 318px;
    }

    .livepriv-deco-right {
        right: -68px;
        top: 336px;
    }

    .livepriv-mockup-wrap {
        margin-top: 28px;
    }

    .livepriv-mockup {
        width: min(920px, 118vw);
    }

    .livepriv-ribbon {
        width: 160%;
    }

    .livepriv-ribbon-primary {
        bottom: 90px;
        transform: translateX(-50%) rotate(-6deg);
    }

    .livepriv-ribbon-secondary {
        bottom: 40px;
        transform: translateX(-50%) rotate(6deg);
    }

    .livepriv-track {
        gap: 22px;
        padding: 12px 14px;
    }

    .livepriv-item {
        font-size: 11px;
    }
}

@media (max-width: 768px) {
    .livepriv-section {
        padding: 78px 10px 74px;
    }

    .livepriv-logo {
        margin-bottom: 22px;
    }

    .livepriv-container h2 {
        font-size: clamp(32px, 10.8vw, 54px);
        max-width: 14ch;
        margin-bottom: 16px;
    }

    .livepriv-container p {
        font-size: clamp(15px, 4.2vw, 20px);
        max-width: 34ch;
    }

    .livepriv-mockup {
        width: min(760px, 124vw);
    }

    .livepriv-ribbon {
        left: 90%;
        width: 220vw;
        max-width: none;
        transform-origin: center center;
    }

    .livepriv-ribbon-primary {
        bottom: 60px;
        transform: translateX(-50%) rotate(-5deg);
    }

    .livepriv-ribbon-secondary {
        bottom: 18px;
        transform: translateX(-50%) rotate(5deg);
    }

    .livepriv-track {
        gap: 16px;
        padding: 11px 12px;
    }

    .livepriv-item {
        font-size: clamp(10px, 2.9vw, 12px);
    }

    .livepriv-item::before {
        width: 8px;
        height: 8px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .livepriv-track {
        animation: none !important;
    }

    .livepriv-section {
        transition: none;
        opacity: 1;
        transform: none;
    }
}

/* =========================================
   Section 5 - Funcionalidades Exclusivas
========================================= */

.funcionalidades-section {
    position: relative;
    padding: 108px 20px 118px;
    overflow: hidden;
    background:
        radial-gradient(circle at 16% 88%, rgba(255, 0, 92, 0.24), rgba(255, 0, 92, 0) 44%),
        radial-gradient(circle at 83% 8%, rgba(255, 0, 92, 0.12), rgba(255, 0, 92, 0) 40%),
        #040207;
    opacity: 0;
    transform: translateY(42px);
    transition: opacity 0.85s ease, transform 0.85s ease;
}

.funcionalidades-section.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.funcionalidades-section::before {
    content: "";
    position: absolute;
    left: -190px;
    bottom: -220px;
    width: 560px;
    height: 560px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 0, 92, 0.3), rgba(255, 0, 92, 0));
    pointer-events: none;
    z-index: 0;
}

.funcionalidades-container {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.funcionalidades-container h2 {
    margin: 0 0 16px;
    font-size: clamp(34px, 4.2vw, 66px);
    font-weight: 700;
    line-height: 1.06;
}

.func-title-white {
    color: #fff;
}

.func-title-pink {
    color: #ff005c;
}

.funcionalidades-container > p {
    margin: 0 auto 44px;
    max-width: 58ch;
    color: rgba(255, 255, 255, 0.78);
    font-size: clamp(17px, 1.28vw, 22px);
    line-height: 1.35;
}

.funcionalidades-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 24px;
}

.func-card {
    grid-column: span 2;
    position: relative;
    border-radius: 20px;
    border: 1px solid rgba(255, 0, 92, 0.68);
    background: linear-gradient(155deg, #0f0f0f 0%, #1a0010 100%);
    padding: 24px 24px 28px;
    overflow: hidden;
    box-shadow:
        0 0 0 1px rgba(255, 0, 92, 0.14),
        0 14px 32px rgba(0, 0, 0, 0.52),
        inset 0 0 24px rgba(255, 0, 92, 0.08);
    transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
    opacity: 0;
    transform: translateY(28px);
}

.funcionalidades-section.is-visible .func-card {
    opacity: 1;
    transform: translateY(0);
}

.funcionalidades-section.is-visible .func-card:nth-child(1) {
    transition-delay: 0.06s;
}

.funcionalidades-section.is-visible .func-card:nth-child(2) {
    transition-delay: 0.12s;
}

.funcionalidades-section.is-visible .func-card:nth-child(3) {
    transition-delay: 0.18s;
}

.funcionalidades-section.is-visible .func-card:nth-child(4) {
    transition-delay: 0.24s;
}

.funcionalidades-section.is-visible .func-card:nth-child(5) {
    transition-delay: 0.3s;
}

.func-card:hover {
    transform: scale(1.03);
    border-color: rgba(255, 0, 92, 0.95);
    box-shadow:
        0 0 0 1px rgba(255, 0, 92, 0.42),
        0 0 44px rgba(255, 0, 92, 0.28),
        0 20px 42px rgba(0, 0, 0, 0.58);
}

.func-card-center-left {
    grid-column: 2 / span 2;
}

.func-card-center-right {
    grid-column: 4 / span 2;
}

.func-card-bar {
    width: 76px;
    height: 4px;
    border-radius: 999px;
    margin: 0 auto 16px;
    display: block;
    background: linear-gradient(90deg, #ff005c, #ff2e86);
    box-shadow: 0 0 16px rgba(255, 0, 92, 0.65);
}

.func-card-media {
    position: relative;
    min-height: 184px;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.func-card-blur {
    position: absolute;
    inset: auto 50% 0 auto;
    transform: translate(50%, 10%);
    width: 82%;
    opacity: 0.2;
    pointer-events: none;
}

.func-card-image {
    position: relative;
    max-width: 88%;
    max-height: 176px;
    object-fit: contain;
    filter: drop-shadow(0 12px 24px rgba(0, 0, 0, 0.46));
}

.func-card h3 {
    margin: 0 0 10px;
    color: #fff;
    font-size: clamp(24px, 1.58vw, 28px);
    line-height: 1.12;
    font-weight: 700;
}

.func-card p {
    margin: 0;
    color: rgba(231, 231, 231, 0.92);
    font-size: clamp(16px, 1.02vw, 18px);
    line-height: 1.38;
}

@media (max-width: 1024px) {
    .funcionalidades-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .func-card,
    .func-card-center-left,
    .func-card-center-right {
        grid-column: span 1;
    }
}

@media (max-width: 768px) {
    .funcionalidades-section {
        padding: 88px 20px 94px;
    }

    .funcionalidades-container > p {
        margin-bottom: 28px;
        font-size: 16px;
    }

    .funcionalidades-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .func-card,
    .func-card-center-left,
    .func-card-center-right {
        grid-column: auto;
        padding: 22px 18px 24px;
    }

    .func-card-media {
        min-height: 168px;
    }
}

/* =========================================
   Section 6 - Prova Social
========================================= */

.social-proof-section {
    position: relative;
    padding: 114px 20px 118px;
    overflow: hidden;
    background:
        radial-gradient(circle at 50% -16%, rgba(255, 0, 92, 0.42), rgba(255, 0, 92, 0) 44%),
        radial-gradient(circle at 50% 4%, rgba(255, 0, 92, 0.12), rgba(255, 0, 92, 0) 56%),
        #030206;
    opacity: 0;
    transform: translateY(42px);
    transition: opacity 0.85s ease, transform 0.85s ease;
}

.social-proof-section.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.social-proof-container {
    position: relative;
    z-index: 1;
    max-width: 1260px;
    margin: 0 auto;
}

.social-proof-container h2 {
    margin: 0 auto 52px;
    max-width: 16ch;
    text-align: center;
    font-weight: 700;
    line-height: 1.06;
    font-size: clamp(36px, 4.4vw, 76px);
}

.social-title-white {
    color: #fff;
    display: block;
}

.social-title-pink {
    color: #ff005c;
    display: block;
}

.social-proof-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
    align-items: center;
}

.social-card {
    position: relative;
    border-radius: 25px;
    border: 1px solid rgba(255, 0, 92, 0.62);
    background: linear-gradient(165deg, #0f0f0f 0%, #1a0010 100%);
    padding: 34px 30px 30px;
    box-shadow:
        inset 0 0 24px rgba(255, 0, 92, 0.08),
        0 16px 36px rgba(0, 0, 0, 0.55),
        0 0 18px rgba(255, 0, 92, 0.12);
    transition: transform 0.4s ease, box-shadow 0.4s ease, filter 0.4s ease, opacity 0.4s ease;
    opacity: 0;
    transform: translateY(28px);
}

.social-proof-section.is-visible .social-card {
    opacity: 1;
    transform: translateY(0);
}

.social-proof-section.is-visible .social-card:nth-child(1) {
    transition-delay: 0.08s;
}

.social-proof-section.is-visible .social-card:nth-child(2) {
    transition-delay: 0.16s;
}

.social-proof-section.is-visible .social-card:nth-child(3) {
    transition-delay: 0.24s;
}

.social-card h3 {
    margin: 0 0 18px;
    text-align: center;
    color: #fff;
    font-size: clamp(30px, 2.3vw, 52px);
    line-height: 1.05;
    font-weight: 700;
}

.social-card p {
    margin: 0;
    text-align: center;
    color: rgba(232, 232, 232, 0.86);
    font-size: clamp(17px, 1.02vw, 23px);
    line-height: 1.33;
    min-height: 6.6em;
}

.social-card-author {
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.16);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
}

.social-avatar {
    width: 60px;
    height: 60px;
    border-radius: 999px;
    border: 2px solid #ff005c;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.02em;
    box-shadow: 0 0 16px rgba(255, 0, 92, 0.3);
}

.social-avatar-laura {
    background: linear-gradient(140deg, #8a5a2f, #d79f6c);
}

.social-avatar-mari {
    background: linear-gradient(140deg, #3b4b2f, #8ba46a);
}

.social-avatar-clara {
    background: linear-gradient(140deg, #4f455d, #8c7ea8);
}

.social-author-info strong {
    display: block;
    color: #fff;
    font-size: clamp(15px, 1vw, 20px);
    line-height: 1.1;
}

.social-author-info span {
    display: block;
    margin-top: 4px;
    color: rgba(255, 255, 255, 0.72);
    font-size: clamp(14px, 0.9vw, 17px);
    line-height: 1.1;
}

.social-card-side {
    opacity: 0.62;
    filter: blur(1.4px);
    transform: scale(0.94);
}

.social-card-featured {
    transform: scale(1.02);
    border-color: rgba(255, 0, 92, 0.85);
    box-shadow:
        inset 0 0 34px rgba(255, 0, 92, 0.11),
        0 18px 42px rgba(0, 0, 0, 0.62),
        0 0 22px rgba(255, 0, 92, 0.18);
}

.social-card-featured:hover {
    transform: scale(1.03);
    box-shadow:
        inset 0 0 42px rgba(255, 0, 92, 0.14),
        0 0 54px rgba(255, 0, 92, 0.26),
        0 24px 50px rgba(0, 0, 0, 0.65);
}

@media (max-width: 992px) {
    .social-proof-grid {
        gap: 16px;
    }

    .social-card {
        padding: 28px 20px 24px;
    }

    .social-card h3 {
        font-size: clamp(28px, 4vw, 42px);
    }
}

@media (max-width: 768px) {
    .social-proof-section {
        padding: 84px 20px 92px;
    }

    .social-proof-container h2 {
        font-size: clamp(44px, 12vw, 68px);
        margin-bottom: 28px;
    }

    .social-proof-grid {
        grid-template-columns: 1fr;
        gap: 14px;
        max-width: 560px;
        margin: 0 auto;
    }

    .social-card,
    .social-card-side,
    .social-card-featured {
        opacity: 1;
        filter: none;
        transform: none;
    }

    .social-card p {
        min-height: auto;
    }
}

/* =========================================
   Section 7 - CTA Final
========================================= */

.cta-final {
    position: relative;
    padding: 106px 20px 110px;
    overflow: hidden;
    background:
        radial-gradient(circle at 50% -14%, rgba(255, 0, 92, 0.34), rgba(255, 0, 92, 0) 42%),
        #030206;
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.85s ease, transform 0.85s ease;
}

.cta-final.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.cta-final-container {
    position: relative;
    z-index: 1;
    max-width: 1000px;
    margin: 0 auto;
}

.cta-final-card {
    position: relative;
    border-radius: 25px;
    border: 1px solid rgba(255, 0, 92, 0.68);
    background: linear-gradient(165deg, #060508 0%, #0f0309 100%);
    padding: 80px 64px;
    text-align: center;
    box-shadow:
        inset 0 0 28px rgba(255, 0, 92, 0.1),
        0 18px 42px rgba(0, 0, 0, 0.58),
        0 0 28px rgba(255, 0, 92, 0.14);
    overflow: hidden;
}

.cta-final-card::before {
    content: "";
    position: absolute;
    inset: 16px;
    border-radius: 19px;
    border: 1px solid rgba(255, 0, 92, 0.8);
    background-image: radial-gradient(circle, rgba(255, 0, 92, 0.38) 1.4px, transparent 1.5px);
    background-size: 28px 28px;
    opacity: 0.34;
    pointer-events: none;
}

.cta-final-card > * {
    position: relative;
    z-index: 1;
}

.cta-final-card h2 {
    margin: 0 auto 18px;
    max-width: 15ch;
    color: #fff;
    font-size: clamp(36px, 4.1vw, 74px);
    font-weight: 700;
    line-height: 1.08;
}

.cta-final-card h2 span {
    color: #ff005c;
}

.cta-final-card p {
    margin: 0 auto 34px;
    max-width: 52ch;
    color: rgba(235, 235, 235, 0.9);
    font-size: clamp(17px, 1.22vw, 22px);
    line-height: 1.36;
}

.cta-final-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 74px;
    padding: 18px 48px;
    border-radius: 50px;
    background: #ff005c;
    color: #fff;
    text-decoration: none;
    font-size: clamp(18px, 1.28vw, 24px);
    font-weight: 700;
    transition: transform 0.3s ease, box-shadow 0.3s ease, filter 0.3s ease;
}

.cta-final-button:hover {
    transform: scale(1.05);
    filter: brightness(1.05);
    box-shadow: 0 0 28px rgba(255, 0, 92, 0.48);
}

/* =========================================
   Section 8 - Footer
========================================= */

.footer {
    position: relative;
    background: #020104;
    border-top: 1px solid #ff005c;
    padding: 44px 20px 52px;
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.85s ease, transform 0.85s ease;
}

.footer.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.7fr 1fr 1fr;
    gap: 30px;
    align-items: start;
}

.footer-logo {
    width: clamp(132px, 10.3vw, 182px);
    margin-bottom: 16px;
}

.footer-column h3 {
    margin: 0 0 14px;
    color: #ff005c;
    font-size: clamp(20px, 1.25vw, 24px);
    font-weight: 600;
    line-height: 1.2;
}

.footer-column p {
    margin: 0;
    color: rgba(240, 240, 240, 0.9);
    font-size: clamp(14px, 0.9vw, 17px);
    line-height: 1.4;
    max-width: 42ch;
}

.footer-column a {
    display: block;
    color: #fff;
    text-decoration: none;
    font-size: clamp(14px, 0.95vw, 18px);
    line-height: 1.36;
    margin-bottom: 10px;
    transition: color 0.25s ease;
}

.footer-column a:hover {
    color: #ff005c;
}

@media (max-width: 992px) {
    .cta-final-card {
        padding: 58px 34px;
    }

    .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 28px;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }
}

@media (max-width: 768px) {
    .cta-final {
        padding: 86px 20px 92px;
    }

    .cta-final-card {
        padding: 40px 24px;
    }

    .cta-final-card h2 {
        font-size: clamp(38px, 10.8vw, 62px);
    }

    .cta-final-card p {
        font-size: 16px;
        margin-bottom: 28px;
    }

    .cta-final-button {
        width: 100%;
        max-width: 420px;
        min-height: 68px;
        padding: 16px 28px;
    }

    .footer {
        padding: 36px 20px 40px;
    }

    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 26px;
    }

    .footer-brand {
        order: 3;
    }

    .footer-institucional {
        order: 1;
    }

    .footer-contato {
        order: 2;
    }

    .footer-logo {
        margin: 0 auto 14px;
    }

    .footer-column p {
        margin: 0 auto;
    }
}

@media (prefers-reduced-motion: reduce) {
    .cta-final,
    .footer {
        transition: none;
        opacity: 1;
        transform: none;
    }
}
