/* GLOBALS */

:root {
    /* Nubank purple (use only in the hero section) */
    --nubank-purple: #820AD1;
    --nubank-purple-light: #A93FF3;
    --nubank-purple-dark: #5A0499;

    /* Webmania enterprise palette */
    --wm-green-deep: #0E5945;
    --wm-green-dark: #00695A;
    --wm-green-primary: #2CC295;
    --wm-green-light: #6EF7A7;
    --wm-green-bright: #00DF82;

    /* Neutrals */
    --slate-900: #0f172a;
    --slate-700: #334155;
    --slate-600: #475569;
    --slate-500: #64748b;
    --slate-400: #94a3b8;
    --slate-200: #e2e8f0;
    --slate-100: #f1f5f9;
    --slate-50: #f8fafc;

    /* Compatibility tokens */
    --background: var(--wm-green-deep);
    --purple: var(--wm-green-primary);
    --purple-light: var(--wm-green-light);
    --purple-dark: var(--wm-green-deep);
    --grey: var(--slate-600);
    --grey-light: var(--slate-50);
    --white: #ffffff;

    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.06);
    --shadow-md: 0 10px 30px rgba(15, 23, 42, 0.10);
    --shadow-lg: 0 20px 60px rgba(15, 23, 42, 0.12);
}

body.page-template-page-nubank {
    overflow-x: hidden;
    max-width: 100vw;
}

.nubank__content {
    overflow-x: hidden;
    max-width: 100vw;
    font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    background: var(--white);
}

.wrapper-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.nubank__content p,
.nubank__content span,
.nubank__content h2,
.nubank__content h3 {
    font-family: "Inter", "Inter", sans-serif;
    color: var(--grey);
}

.nubank__content h3 {
    font-size: 2.734rem;
    line-height: 3.8rem;
}

.nubank__content h2,
.simplify__text h3 {
    font-size: 4.272rem;
    line-height: 5.2rem;
}

@media (max-width: 900px) {
    .nubank__content h2,
    .simplify__text h3 {
        font-size: 3.4rem;
        line-height: 4.2rem;
    }
}

@media (max-width: 500px) {
    .nubank__content h2,
    .simplify__text h3 {
        font-size: 3rem;
        line-height: 4rem;
    }
}

.button {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background-color: var(--purple);
    padding: 1.5rem 3rem;
    border-radius: 3rem;
    text-transform: uppercase;
    font-weight: 500;
    color: var(--white);
    font-size: 1.38rem;
    transition: all 0.3s ease;
}

.button svg {
    width: 2rem;
    height: 2rem;
}

.button:hover {
    background-color: var(--purple-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(44, 194, 149, 0.18);
}

.button--primary {
    background-color: var(--purple);
}

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

.button--secondary svg {
    stroke: var(--purple);
}

.button--secondary:hover {
    background-color: var(--purple);
    color: var(--white);
}

.button--secondary:hover svg {
    stroke: var(--white);
}

.nubank__content p {
    font-size: 1.6rem;
    color: var(--grey);
}

@media (max-width: 500px) {
    .nubank__content p {
        
    }
}

.header--text,
.nubank__content h3 {
    margin-bottom: 3rem;
}

.header--text span {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 1.4rem;
    line-height: 104.3%;
    letter-spacing: 0.385em;
    text-transform: uppercase;
}

.text--purple {
    color: var(--purple) !important;
}

.text--strong {
    font-weight: 700;
}

.image--radius {
    max-width: 19.4rem;
    border-radius: 50%;
} 

@media (max-width: 560px) {
    .image--radius {
        max-width: 15rem;
    }
}

@media (max-width: 425px) {
    .image--radius {
        max-width: 12rem;
    }
}

.about__content,
.declaration,
.explanation,
.goals,
.simplify,
.webmania-declaration {
    display: flex;
    gap: 6.5rem;
    align-items: center;
    justify-content: center;
}

.banner-text__content p:first-of-type,
.explanation__text p:first-of-type,
.goals__text p:first-of-type,
.simplify__text p:first-of-type,
.simplify__text p:last-of-type {
    margin-bottom: 3rem;
}

/* ==================== */
/* HERO SECTION */
/* ==================== */

.hero {
    --purple: var(--nubank-purple);
    --purple-light: var(--nubank-purple-light);
    --purple-dark: var(--nubank-purple-dark);
    padding: 12rem 0 3rem;
    background: linear-gradient(160deg, var(--purple) 0%, var(--purple-dark) 100%);
    position: relative;
    min-height: auto;
    overflow: visible;
    display: flex;
    align-items: center;
}

.hero__bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    pointer-events: none;
}

.hero__circles {
    position: absolute;
    top: 0;
    right: -10%;
    width: 80%;
    height: 100%;
}

.hero__circle {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero__circle--1 {
    width: 600px;
    height: 600px;
    top: -100px;
    right: -100px;
    animation: pulse 8s ease-in-out infinite;
}

.hero__circle--2 {
    width: 400px;
    height: 400px;
    top: 50px;
    right: 50px;
    animation: pulse 6s ease-in-out infinite 1s;
}

.hero__circle--3 {
    width: 200px;
    height: 200px;
    top: 150px;
    right: 150px;
    animation: pulse 4s ease-in-out infinite 2s;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.3; }
    50% { transform: scale(1.05); opacity: 0.5; }
}

.hero__grid-lines {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
}

.hero__content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 2;
    width: 100%;
}

.hero__text {
    display: flex;
    flex-direction: column;
    gap: 4rem;
    justify-content: center;
    max-width: 50rem;
}

.hero__text p {
    color: var(--white);
    font-size: 1.6rem;
    line-height: 1.7;
}

.hero__text .header--text {
    margin-bottom: 0;
}

.hero__text span {
    display: block;
    margin-bottom: 3rem;
    color: rgba(255, 255, 255, 0.8);
}

.hero__logo img,
.hero__logo svg {
    max-width: 43.2rem;
    width: 200px;
    height: auto;
}

/* Hero CTA */
.hero__actions {
    display: flex;
    align-items: center;
    gap: 3.6rem;
    flex-wrap: wrap;
}

.hero__cta-btn {
    font-family: "bornasemibold", "Inter", sans-serif;
    font-size: 1.45rem;
    cursor: pointer;
    text-align: center;
    background: linear-gradient(135deg, #00ff95 0%, #00df82 100%);
    color: #021A1A;
    text-transform: uppercase;
    padding: 1.4rem 4rem 1.6rem;
    border-radius: 10rem;
    white-space: nowrap;
    max-width: max-content;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    min-width: 198px;
    letter-spacing: 0.03em;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 255, 149, 0.25);
}

.hero__cta-btn:hover,
.hero__cta-btn:focus-visible {
    background: linear-gradient(135deg, #ffffff 0%, #f0fff4 100%);
    color: #11312b;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 255, 149, 0.35);
    text-decoration: none;
}

.hero__cta-btn:focus-visible,
.hero__cta-link:focus-visible {
    outline: 2px solid rgba(255, 255, 255, 0.9);
    outline-offset: 4px;
}

.hero__cta-link {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    font-family: "Inter", sans-serif;
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--white);
}

.hero__cta-link svg {
    width: 2.4rem;
    height: 2.4rem;
}

.hero__cta-link:hover,
.hero__cta-link:focus-visible {
    color: var(--white);
    text-decoration: underline;
}

/* Hero Visual Cards */
.hero__visual {
    position: relative;
    width: 45%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ==================== */
/* SMARTPHONE ANIMATION */
/* ==================== */

.hero__phone {
    position: relative;
    width: 260px;
    height: 520px;
    background: linear-gradient(180deg, #1a1a2e 0%, #0f0f1a 100%);
    border-radius: 38px;
    padding: 10px;
    box-shadow: 
        0 50px 100px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(255, 255, 255, 0.1),
        inset 0 0 0 2px rgba(255, 255, 255, 0.05);
}

.hero__phone-notch {
    position: absolute;
    top: 16px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 24px;
    background: #000;
    border-radius: 16px;
    z-index: 10;
}

.hero__phone-screen {
    position: relative;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, #820AD1 0%, #5A0499 100%);
    border-radius: 26px;
    overflow: hidden;
}

.hero__phone-bar {
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 5px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 3px;
}

.hero__phone-content {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 50px 16px 24px;
    display: flex;
    flex-direction: column;
}

/* Form Screen */
.hero__phone-content--form {
    animation: formScreen 8s ease-in-out infinite;
}

@keyframes formScreen {
    0%, 60% { opacity: 1; transform: translateX(0); }
    65%, 95% { opacity: 0; transform: translateX(-100%); }
    100% { opacity: 1; transform: translateX(0); }
}

/* Success Screen */
.hero__phone-content--success {
    align-items: center;
    justify-content: center;
    text-align: center;
    opacity: 0;
    transform: translateX(100%);
    animation: successScreen 8s ease-in-out infinite;
}

@keyframes successScreen {
    0%, 60% { opacity: 0; transform: translateX(100%); }
    65%, 95% { opacity: 1; transform: translateX(0); }
    100% { opacity: 0; transform: translateX(100%); }
}

.hero__phone-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
}

.hero__phone-logo {
    width: 40px;
    height: auto;
}

.hero__phone-title {
    font-size: 15px;
    font-weight: 700;
    color: white !important;
    margin-bottom: 0 !important;
}

.hero__phone-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 1;
}

.hero__phone-field {
    opacity: 0;
    transform: translateY(10px);
}

.hero__phone-field--1 {
    animation: fieldAppear 8s ease-out infinite;
    animation-delay: 0.5s;
}

.hero__phone-field--2 {
    animation: fieldAppear 8s ease-out infinite;
    animation-delay: 1.5s;
}

.hero__phone-field--3 {
    animation: fieldAppear 8s ease-out infinite;
    animation-delay: 2.5s;
}

@keyframes fieldAppear {
    0%, 5% { opacity: 0; transform: translateY(10px); }
    10%, 60% { opacity: 1; transform: translateY(0); }
    65%, 100% { opacity: 0; transform: translateY(0); }
}

.hero__phone-label {
    display: block;
    font-size: 10px;
    color: rgba(255, 255, 255, 0.6) !important;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 5px !important;
}

.hero__phone-input {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    padding: 10px 12px;
    min-height: 36px;
}

.hero__phone-input--textarea {
    min-height: 50px;
}

.hero__phone-typing {
    font-size: 12px;
    color: white !important;
    font-weight: 500;
    display: inline-block;
    overflow: hidden;
    white-space: nowrap;
    animation: typing 8s steps(30) infinite;
    border-right: 2px solid rgba(255, 255, 255, 0.7);
}

@keyframes typing {
    0%, 5% { width: 0; }
    15%, 60% { width: 100%; border-right-color: transparent; }
    65%, 100% { width: 100%; border-right-color: transparent; }
}

.hero__phone-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: linear-gradient(135deg, #00ff95 0%, #00df82 100%);
    color: #021A1A;
    border: none;
    border-radius: 10px;
    padding: 11px 16px;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    margin-top: auto;
    opacity: 0;
    transform: scale(0.95);
    animation: btnAppear 8s ease-out infinite;
    animation-delay: 3.5s;
}

.hero__phone-btn svg {
    width: 14px;
    height: 14px;
    stroke: #021A1A;
}

@keyframes btnAppear {
    0%, 5% { opacity: 0; transform: scale(0.95); }
    10%, 55% { opacity: 1; transform: scale(1); }
    57% { transform: scale(0.98); background: linear-gradient(135deg, #00cc78 0%, #00b368 100%); }
    60%, 100% { opacity: 0; transform: scale(1); }
}

/* Success Screen Styles */
.hero__phone-success-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #00ff95 0%, #00df82 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    animation: successPop 8s ease-out infinite;
    box-shadow: 0 10px 40px rgba(0, 255, 149, 0.3);
}

@keyframes successPop {
    0%, 64% { transform: scale(0); opacity: 0; }
    68% { transform: scale(1.1); opacity: 1; }
    72%, 95% { transform: scale(1); opacity: 1; }
    100% { transform: scale(0); opacity: 0; }
}

.hero__phone-success-icon svg {
    width: 30px;
    height: 30px;
    stroke: white;
    stroke-width: 3;
}

.hero__phone-success-title {
    font-size: 16px;
    font-weight: 700;
    color: white !important;
    line-height: 1.4;
    margin-bottom: 18px !important;
}

.hero__phone-success-details {
    width: 100%;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 12px;
}

.hero__phone-success-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.hero__phone-success-row:last-child {
    border-bottom: none;
}

.hero__phone-success-row span:first-child {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.6) !important;
}

.hero__phone-success-row span:last-child {
    font-size: 12px;
    font-weight: 600;
    color: white !important;
}

.hero__phone-status {
    background: linear-gradient(135deg, #00ff95 0%, #00df82 100%);
    color: #021A1A !important;
    padding: 3px 10px;
    border-radius: 16px;
    font-size: 10px !important;
}


@media (max-width: 1024px) {
    .hero {
        min-height: auto;
        padding: 10rem 0 6rem;
    }

    .hero__content {
        flex-direction: column;
        text-align: center;
    }

    .hero__text {
        width: 100%;
        max-width: 60rem;
        padding: 0 2rem;
    }

    .hero__visual {
        width: 100%;
        height: auto;
        max-height: none;
        min-height: auto;
        margin-top: 4rem;
    }

    .hero__phone {
        width: 240px;
        height: 480px;
        max-height: none;
        min-height: auto;
    }

    .hero__actions {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .hero__phone {
        width: 220px;
        height: 440px;
        border-radius: 32px;
    }

    .hero__phone-screen {
        border-radius: 24px;
    }

    .hero__phone-content {
        padding: 45px 14px 22px;
    }

    .hero__phone-title {
        font-size: 14px;
    }

    .hero__phone-label {
        font-size: 9px;
    }

    .hero__phone-typing {
        font-size: 11px;
    }

    .hero__phone-btn {
        font-size: 11px;
        padding: 10px 14px;
    }

    .hero__phone-success-title {
        font-size: 14px;
    }

    .hero__phone-success-icon {
        width: 50px;
        height: 50px;
    }

    .hero__phone-success-icon svg {
        width: 26px;
        height: 26px;
    }
}

@media (max-width: 500px) {
    .hero {
        padding: 9rem 0 5rem;
    }

    .hero__actions {
        flex-direction: column;
        gap: 1.6rem;
        align-items: stretch;
    }

    .hero__cta-btn {
        width: 100%;
        max-width: 100%;
        min-width: auto;
    }

    .hero__cta-link {
        justify-content: center;
    }

    .hero__text {
        padding: 0 1rem;
    }
    
    .hero__logo svg {
        width: 150px;
        height: auto;
    }

    .hero__phone {
        width: 200px;
        height: 400px;
        border-radius: 28px;
    }

    .hero__phone-screen {
        border-radius: 20px;
    }

    .hero__phone-notch {
        width: 70px;
        height: 20px;
        top: 14px;
    }

    .hero__phone-content {
        padding: 40px 12px 20px;
    }

    .hero__phone-form {
        gap: 10px;
    }

    .hero__phone-input {
        padding: 8px 10px;
        min-height: 32px;
    }

    .hero__phone-success-details {
        padding: 10px;
    }

    .hero__phone-success-row {
        padding: 6px 0;
    }

    /* Hide hero circles on mobile to prevent overflow */
    .hero__circles {
        display: none;
    }
}

/* ==================== */
/* ABOUT SECTION */
/* ==================== */

.about {
    padding: 10rem 0;
}

.about__content {
    gap: 4rem;
}

.about__visual {
    width: 50%;
    height: 450px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about__visual-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    background: var(--grey-light);
    border: 1px solid var(--slate-200);
    border-radius: 30px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.about__visual-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 25%, rgba(148, 163, 184, 0.22) 0%, transparent 55%),
        radial-gradient(circle at 80% 70%, rgba(100, 116, 139, 0.14) 0%, transparent 60%);
    opacity: 0.9;
}

.about__connection-lines {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0.35;
}

.about__connection-lines svg {
    width: 100%;
    height: 100%;
}

.about__line {
    stroke-dasharray: 500;
    stroke-dashoffset: 500;
    animation: drawLine 3s ease forwards;
}

.about__line--2 {
    animation-delay: 0.3s;
}

.about__line--3 {
    animation-delay: 0.6s;
}

@keyframes drawLine {
    to { stroke-dashoffset: 0; }
}

.about__logos {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 2rem;
}

.about__logo-item {
    width: 100px;
    height: 100px;
    background: var(--white);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--slate-200);
    box-shadow: var(--shadow-lg);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.about__logo-item:hover {
    transform: scale(1.05);
    border-color: rgba(130, 9, 209, 0.35);
    box-shadow: 0 24px 70px rgba(15, 23, 42, 0.14);
}

.about__logo-item--nubank {
    background: #8209d1;
    border-color: rgba(130, 9, 209, 0.22);
    color: var(--white);
}

.about__logo-item--nubank svg {
    width: 60px;
    height: auto;
}

.about__logo-item--webmania {
    background: white;
    padding: 0;
}

.about__logo-item--webmania img {
    width: 70px;
    height: auto;
}

.about__logo-item--webmania span {
    font-size: 3rem;
    font-weight: 800;
    color: white;
}

.about__logo-plus {
    font-size: 3rem;
    font-weight: 300;
    color: var(--slate-400);
}

.about__particles {
    display: none;
}

.about__text {
    width: 45%;
}

.about__text .header--text h2 {
    color: var(--slate-900);
}

.about--texts p {
    margin-bottom: 2.5rem;
}

@media (max-width: 768px) {
    .about {
        padding: 6rem 0;
    }

    .about__content {
        flex-direction: column-reverse;
        gap: 2rem;
    }

    .about__visual {
        width: 100%;
        height: 350px;
    }

    .about__text {
        width: 100%;
        text-align: center;
    }

    .about__logo-item {
        width: 80px;
        height: 80px;
    }

    .about__logo-item--nubank svg {
        width: 50px;
    }

    .about__logo-item--webmania span {
        font-size: 2.5rem;
    }

    .about__logo-item--webmania img {
        width: 55px;
    }
}

/* ==================== */
/* BENEFITS SECTION */
/* ==================== */

.declaration {
    padding: 2rem 0 8rem;
    flex-direction: column;
    gap: 4rem;
}

.declaration__header {
    text-align: center;
    width: 100%;
}

.declaration__header .header--text {
    margin-bottom: 0;
}

.declaration__header .header--text h2 {
    color: var(--slate-900);
}

.declaration__flow {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 4rem 0;
}

.declaration__benefits {
    width: 100%;
}

.declaration__text {
    width: 45%;
}

.declaration__visual {
    width: 50%;
}

/* Benefits List with Icons */
.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.benefit-item {
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 1.6rem;
    padding: 2.6rem 2.4rem;
    background: var(--white);
    border-radius: 18px;
    border: 1px solid var(--slate-200);
    box-shadow: var(--shadow-sm);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.benefit-item:hover {
    transform: translateY(-4px);
    border-color: rgba(44, 194, 149, 0.35);
    box-shadow: var(--shadow-md);
}

.benefit-item__icon {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    background: rgba(44, 194, 149, 0.12);
    border: 1px solid rgba(44, 194, 149, 0.22);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--wm-green-deep);
}

.benefit-item__icon svg {
    width: 28px;
    height: 28px;
    stroke: currentColor;
}

.benefit-item__content h4 {
    color: var(--slate-900);
    margin-bottom: 0.8rem;
    font-size: 1.75rem;
    line-height: 1.3;
}

.benefit-item__content p {
    margin-bottom: 0;
    font-size: 1.45rem;
    line-height: 1.6;
    color: var(--slate-600);
}

.benefits-carousel {
    width: 100%;
    padding: 0 0 2rem;
}

.benefits-carousel .swiper-wrapper {
    align-items: stretch;
}

.benefits-carousel .swiper-slide {
    height: auto;
}

.benefits-carousel__controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.2rem;
    margin-top: 2.2rem;
}

.benefits-carousel__nav {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    border: 1px solid var(--slate-200);
    background: var(--white);
    color: var(--slate-600);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.benefits-carousel__nav:hover {
    border-color: rgba(44, 194, 149, 0.35);
    color: var(--wm-green-dark);
    box-shadow: var(--shadow-sm);
}

.benefits-carousel__nav:focus-visible {
    outline: 2px solid rgba(44, 194, 149, 0.60);
    outline-offset: 3px;
}

.benefits-carousel__nav svg {
    width: 22px;
    height: 22px;
    stroke: currentColor;
}

.benefits-carousel__pagination {
    width: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
}

.benefits-carousel__pagination .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background: var(--slate-200);
    opacity: 1;
    transition: transform 0.2s ease, background-color 0.2s ease;
}

.benefits-carousel__pagination .swiper-pagination-bullet-active {
    background: var(--wm-green-primary);
    transform: scale(1.15);
}

.benefits-carousel:not(.swiper-initialized) .swiper-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.benefits-carousel:not(.swiper-initialized) .swiper-slide {
    width: auto;
}

/* API Visualization */
.api-visualization {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    border-radius: 24px;
    padding: 3rem;
    position: relative;
    overflow: hidden;
}

.api-visualization::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--purple), var(--purple-light), var(--purple));
}

.api-code-block {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 3rem;
}

.api-code-header {
    background: rgba(0, 0, 0, 0.4);
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.api-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.api-dot--red { background: #ff5f56; }
.api-dot--yellow { background: #ffbd2e; }
.api-dot--green { background: #27ca40; }

.api-code-title {
    margin-left: auto;
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.5);
    font-family: 'SF Mono', 'Monaco', monospace;
}

.api-code-content {
    padding: 2rem;
    font-family: 'SF Mono', 'Monaco', monospace;
    font-size: 1.4rem;
    line-height: 1.8;
}

.api-code-line {
    color: white;
}

.api-code-line--indent {
    padding-left: 2rem;
}

.api-code-bracket { color: #f8f8f2; }
.api-code-key { color: #a6e22e; }
.api-code-string { color: #e6db74; }
.api-code-number { color: #ae81ff; }

/* API Flow */
.api-flow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
}

.api-flow--centered {
    gap: 2rem;
}

.api-flow-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.api-flow-icon {
    width: 80px;
    height: 80px;
    background: var(--slate-50);
    border: 1px solid var(--slate-200);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.api-flow-icon--nubank {
    background: #8209d1;
    border-color: rgba(130, 9, 209, 0.22);
}

.api-flow-icon--nubank svg {
    width: 50px;
    height: auto;
}

.api-flow-item--active .api-flow-icon {
    background: var(--white);
    border-color: rgba(44, 194, 149, 0.35);
    box-shadow: 0 10px 30px rgba(44, 194, 149, 0.12);
}

.api-flow-item--active .api-flow-icon img {
    width: 55px;
    height: auto;
}

.api-flow-icon svg {
    width: 35px;
    height: 35px;
    stroke: var(--wm-green-deep);
}

.api-flow-item span {
    font-size: 1.4rem;
    color: var(--grey);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
}

.api-flow-arrow {
    display: block;
    width: 42px;
}

.api-flow-arrow svg {
    width: 100%;
    stroke: var(--slate-400);
}

/* Benefits List Grid (6 cards) */
/* Benefits List Grid (6 cards) */
.benefits-list--grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.benefits-list--grid .benefit-item {
    flex-direction: column;
    text-align: center;
    background: white;
    border: 1px solid rgba(130, 10, 209, 0.1);
    padding: 3rem 2rem;
}

.benefits-list--grid .benefit-item__icon {
    margin: 0 auto 1.5rem;
}

.benefits-list--grid .benefit-item__content h4 {
    margin-bottom: 1rem;
}

/* CTA Section */
.declaration__cta {
    display: flex;
    justify-content: center;
    padding-top: 4rem;
}

.button--large {
    padding: 2rem 5rem;
    font-size: 1.8rem;
    font-weight: 600;
    letter-spacing: 0.05em;
}


@media (max-width: 1024px) {
    .benefits-carousel:not(.swiper-initialized) .swiper-wrapper {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .benefits-carousel:not(.swiper-initialized) .swiper-wrapper {
        grid-template-columns: 1fr;
    }
}

/* Benefits Grid */
.banner-text {
    padding: 0 0 8rem;
}

.banner-text__content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    width: 100%;
}

.benefit-card {
    text-align: center;
    padding: 4rem 3rem;
    background: var(--grey-light);
    border-radius: 24px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.benefit-card:hover {
    transform: translateY(-10px);
    border-color: var(--purple-light);
    box-shadow: 0 20px 60px rgba(130, 10, 209, 0.15);
}

.benefit-card__icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--purple) 0%, var(--purple-light) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
}

.benefit-card__icon svg {
    width: 40px;
    height: 40px;
    stroke: white;
}

.benefit-card h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.benefit-card p {
    font-size: 1.5rem;
    line-height: 1.6;
}

@media (max-width: 1024px) {
    .declaration {
        flex-direction: column;
        gap: 4rem;
    }

    .declaration__text,
    .declaration__visual {
        width: 100%;
    }

    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .declaration {
        padding: 6rem 0;
    }

    .declaration__text {
        text-align: center;
    }

    .benefit-item {
        flex-direction: column;
        text-align: center;
    }

    .benefit-item__icon {
        margin: 0 auto;
    }

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

    .api-visualization {
        padding: 2rem;
    }

    .api-flow {
        flex-wrap: wrap;
    }

    .api-flow-arrow {
        display: block;
        transform: rotate(90deg);
        width: 30px;
    }

    .api-code-content {
        font-size: 1.2rem;
    }
}

/* ==================== */
/* PROCESS STEPS SECTION */
/* ==================== */

.simplify {
    padding: 8rem 0;
    background: linear-gradient(180deg, white 0%, var(--grey-light) 100%);
}

.simplify__content {
    width: 100%;
    text-align: center;
}

.simplify__content h3 {
    margin-bottom: 2rem;
}

.simplify__content .subtitle {
    max-width: 800px;
    margin: 0 auto 5rem;
    font-size: 1.8rem;
}

.process-steps {
    display: flex;
    flex-direction: row;
    gap: 2rem;
    margin: 0;
    align-items: stretch;
}

.step {
    background: white;
    padding: 3rem;
    border-radius: 24px;
    flex: 1;
    text-align: left;
    position: relative;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(130, 10, 209, 0.1);
    padding: 3rem 2rem;
    display: flex;
    gap: 2rem;
}

.step__number {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--purple) 0%, var(--purple-light) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.4rem;
    font-weight: 800;
    color: white;
}

.step__content {
    flex: 1;
}

.step__content h4 {
    color: var(--purple);
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
}

.step__content p {
    margin-bottom: 2rem;
    font-size: 1.5rem;
}

.step__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.step__tag {
    background: rgba(130, 10, 209, 0.1);
    color: var(--purple);
    padding: 0.6rem 1.2rem;
    border-radius: 20px;
    font-size: 1.2rem;
    font-weight: 500;
}

.step__connector {
    display: none;
}

/* Step Checklist */
.step__checklist {
    list-style: none;
    padding: 0;
    margin: 0;
}

.step__checklist li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.2rem;
    font-size: 1.5rem;
    color: var(--grey);
}

.step__check {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, #00cc6a 0%, #00ff88 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step__check svg {
    width: 14px;
    height: 14px;
    stroke: white;
}

/* CTA Container */
.cta-container {
    text-align: center;
    max-width: 800px;
    margin: 5rem auto 0;
}

.cta-container__success {
    background: linear-gradient(135deg, rgba(0, 204, 106, 0.1) 0%, rgba(0, 255, 136, 0.05) 100%);
    border: 1px solid rgba(0, 204, 106, 0.3);
    border-radius: 20px;
    padding: 3rem;
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 3rem;
}

.success-animation {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #00cc6a 0%, #00ff88 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: successPulse 2s ease-in-out infinite;
}

@keyframes successPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(0, 204, 106, 0.4); }
    50% { box-shadow: 0 0 0 15px rgba(0, 204, 106, 0); }
}

.success-animation svg {
    width: 30px;
    height: 30px;
    stroke: white;
}

.cta-container__success p {
    text-align: left;
    margin-bottom: 0;
    
}

/* ==================== */
/* FINAL CTA SECTION */
/* ==================== */

.final-cta {
    position: relative;
    padding: 8rem 0;
    background: var(--grey-light);
    overflow: hidden;
}

.final-cta__bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.final-cta__pattern {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 20% 20%, rgba(148, 163, 184, 0.18) 0%, transparent 50%),
        radial-gradient(circle at 80% 60%, rgba(100, 116, 139, 0.12) 0%, transparent 55%);
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.cta-content__quote {
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(44, 194, 149, 0.18);
    border-radius: 24px;
    padding: 3rem;
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    margin-bottom: 4rem;
    text-align: left;
}

.cta-content__quote-icon {
    width: 40px;
    height: 40px;
    color: var(--purple);
    flex-shrink: 0;
}

.cta-content__quote p {
    margin-bottom: 0;
    font-size: 1.6rem;
    line-height: 1.7;
    color: var(--slate-900);
}

.cta-content__stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
    margin-bottom: 4rem;
}

.cta-stat {
    text-align: center;
    min-width: 110px;
}

.cta-stat__number {
    display: block;
    font-size: 3rem;
    font-weight: 800;
    color: var(--purple);
    margin-bottom: 0.6rem;
}

.cta-stat__label {
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--grey);
}

.cta-stat__divider {
    width: 1px;
    height: 44px;
    background: var(--slate-200);
}

.info-section {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    background: var(--white);
    border-radius: 20px;
    padding: 2.5rem;
    border: 1px solid rgba(44, 194, 149, 0.18);
    max-width: 760px;
    margin: 0 auto;
    text-align: left;
}

.info-section__icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    background: rgba(44, 194, 149, 0.12);
    color: var(--wm-green-deep);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.info-section__icon svg {
    width: 22px;
    height: 22px;
    stroke: currentColor;
}

.info-section p {
    margin-bottom: 0;
    font-size: 1.5rem;
    line-height: 1.6;
}

.info-section a:hover,
.info-section a:focus-visible {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .cta-content__quote {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .cta-content__stats {
        gap: 1.6rem;
    }

    .cta-stat__divider {
        display: none;
    }

    .info-section {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
}


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

@media (max-width: 480px) {
    .hero__text h2 {
        font-size: 3rem;
    }

    .hero__text p {
        font-size: 1.5rem;
    }

    .hero__phone {
        width: 220px;
        height: 440px;
        border-radius: 28px;
    }

    .hero__phone-screen {
        border-radius: 20px;
    }

    .hero__phone-content {
        padding: 44px 12px 22px;
    }

    .hero__phone-logo {
        width: 40px;
    }

    .hero__phone-title {
        font-size: 14px;
    }

    .hero__phone-success-title {
        font-size: 16px;
    }

    .api-flow--centered {
        gap: 1.5rem;
        flex-direction: column;
    }

    .api-flow-icon {
        width: 60px;
        height: 60px;
    }

    .api-flow-icon svg,
    .api-flow-icon img {
        width: 30px;
        height: 30px;
    }

    .api-flow-arrow {
        display: block;
        transform: rotate(90deg);
        width: 30px;
        transform: rotate(90deg);
        width: 30px;
    }

    .benefits-list--grid {
        gap: 1.5rem;
    }

    .benefits-list--grid .benefit-item {
        padding: 2rem 1.5rem;
    }

    .button--large {
        padding: 1.5rem 3rem;
        font-size: 1.4rem;
    }

    .about__logo-item {
        width: 70px;
        height: 70px;
    }

    .about__logo-item--nubank svg {
        width: 35px;
    }

    .about__logo-item--webmania img {
        width: 50px;
    }

    .about__logo-plus {
        font-size: 2.5rem;
    }

    .declaration__header h2 {
        font-size: 3rem;
    }
}

/* ==================== */
/* RESPONSIVE FIXES */
/* ==================== */

/* Tablet (768px - 1024px) */
@media (max-width: 1024px) and (min-width: 769px) {
    .api-flow--centered {
        gap: 2rem;
    }

    .api-flow-arrow {
        display: block;
        transform: rotate(90deg);
        width: 30px;
        display: block;
        width: 40px;
    }

    .benefits-list--grid .benefit-item {
        padding: 2.5rem 1.5rem;
    }
}

/* Mobile (max-width: 768px) */
@media (max-width: 768px) {
    .declaration__flow {
        padding: 2rem 0;
    }

    .api-flow--centered {
        flex-direction: column;
        gap: 1rem;
    }

    .api-flow-arrow {
        display: block;
        transform: rotate(90deg);
        width: 30px;
        display: block;
        transform: rotate(90deg);
        width: 30px;
    }

    .api-flow-item span {
        font-size: 1.2rem;
    }

    .about__logos {
        gap: 1rem;
    }

    .about__logo-item {
        width: 60px;
        height: 60px;
    }

    .about__logo-item--webmania img {
        width: 45px;
    }

    .about__logo-plus {
        font-size: 2rem;
    }
}

/* Small Mobile (max-width: 480px) */
@media (max-width: 480px) {
    .declaration__header .header--text h2 {
        font-size: 2.8rem;
        line-height: 3.4rem;
    }

    .api-flow-icon {
        width: 55px;
        height: 55px;
    }

    .api-flow-icon svg {
        width: 28px;
        height: 28px;
    }

    .api-flow-icon--nubank svg {
        width: 40px;
    }

    .api-flow-item span {
        font-size: 1.1rem;
        letter-spacing: 0.05em;
    }

    .benefits-list--grid .benefit-item {
        padding: 1.5rem;
    }

    .benefits-list--grid .benefit-item__content h4 {
        font-size: 1.6rem;
    }

    .benefits-list--grid .benefit-item__content p {
        font-size: 1.3rem;
    }

    .button--large {
        padding: 1.5rem 3rem;
        font-size: 1.4rem;
    }

    .about__visual {
        height: 280px;
    }

    .about__logo-item {
        width: 50px;
        height: 50px;
    }

    .about__logo-item--nubank svg {
        width: 28px;
    }

    .about__logo-item--webmania img {
        width: 35px;
    }

    .about__logo-plus {
        font-size: 1.6rem;
    }

    .about__text .header--text h2 {
        font-size: 2.8rem;
        line-height: 3.4rem;
    }
}
