.story-hero-section {
    background-color: var(--color-bg-white, #ffffff);
    padding: 128px 24px 80px;
}

@media (min-width: 1024px) {
    .story-hero-section {
        padding: 160px 24px 112px;
    }
}

.story-hero-inner {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
}

.story-hero-label {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-text-secondary, #666666);
    margin-bottom: 24px;
}

.story-hero-title {
    font-family: 'Inter', sans-serif;
    font-size: clamp(2.25rem, 6vw, 4rem);
    font-weight: 800;
    color: var(--color-text-primary, #333333);
    letter-spacing: -0.035em;
    line-height: 1.05;
    margin-bottom: 24px;
}

.story-hero-br {
    display: none;
}

@media (min-width: 1024px) {
    .story-hero-br {
        display: block;
    }
}

.story-hero-description {
    font-family: 'Inter', sans-serif;
    font-size: clamp(16px, 2vw, 18px);
    color: var(--color-text-secondary, #666666);
    line-height: 1.8;
    max-width: 580px;
    margin: 0 auto;
}


.problem-section {
    background-color: var(--color-bg-white, #ffffff);
    border-top: 1px solid rgba(30, 30, 50, 0.1);
    padding: 80px 24px;
}

@media (min-width: 1024px) {
    .problem-section {
        padding: 112px 24px;
    }
}

.problem-inner {
    max-width: 860px;
    margin: 0 auto;
}

.problem-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

@media (min-width: 1024px) {
    .problem-grid {
        grid-template-columns: 1fr 1fr;
        gap: 80px;
        align-items: start;
    }
}

/* ─── Left ──────────────────────────────────────────────── */
.problem-label {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-text-secondary, #666666);
    margin-bottom: 16px;
}

.problem-title {
    font-family: 'Inter', sans-serif;
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 800;
    color: #1A1A2E;
    letter-spacing: -0.03em;
    line-height: 1.1;
    text-align: left;
}

/* ─── Right ─────────────────────────────────────────────── */
.problem-right {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.problem-body {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    color: var(--color-text-secondary, #666666);
    line-height: 1.8;
}

.problem-body strong {
    color: #1A1A2E;
    font-weight: 600;
}



.solution-section {
    background-color: #1A1A2E;
    padding: 80px 24px;
}

@media (min-width: 1024px) {
    .solution-section {
        padding: 112px 24px;
    }
}

.solution-inner {
    max-width: 860px;
    margin: 0 auto;
}

.solution-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

@media (min-width: 1024px) {
    .solution-grid {
        grid-template-columns: 1fr 1fr;
        gap: 80px;
        align-items: start;
    }
}

/* ─── Left ──────────────────────────────────────────────── */
.solution-label {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 16px;
}

.solution-title {
    font-family: 'Inter', sans-serif;
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 800;
    color: var(--color-text-white, #ffffff);
    letter-spacing: -0.03em;
    line-height: 1.1;
}

/* ─── Right ─────────────────────────────────────────────── */
.solution-right {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.solution-body {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.8;
}

.solution-body strong {
    color: var(--color-text-white, #ffffff);
    font-weight: 600;
}


.principles-section {
    background-color: var(--color-bg-white, #ffffff);
    border-top: 1px solid rgba(30, 30, 50, 0.1);
    padding: 80px 24px;
}

@media (min-width: 1024px) {
    .principles-section {
        padding: 112px 24px;
    }
}

.principles-inner {
    max-width: 860px;
    margin: 0 auto;
}

/* ─── Header ────────────────────────────────────────────── */
.principles-header {
    text-align: center;
    margin-bottom: 56px;
}

.principles-label {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-text-secondary, #666666);
    margin-bottom: 16px;
}

.principles-title {
    font-family: 'Inter', sans-serif;
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 800;
    color: #1A1A2E;
    letter-spacing: -0.03em;
    line-height: 1.1;
    margin-bottom: 16px;
}

.principles-description {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    color: var(--color-text-secondary, #666666);
    line-height: 1.8;
    max-width: 560px;
    margin: 0 auto;
}

/* ─── Grid ──────────────────────────────────────────────── */
.principles-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}

@media (min-width: 640px) {
    .principles-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
    }
}

/* ─── Card ──────────────────────────────────────────────── */
.principles-card {
    text-align: center;
}

.principles-num {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: #1A1A2E;
    color: var(--color-text-white, #ffffff);
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.principles-card-title {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: #1A1A2E;
    letter-spacing: -0.01em;
    margin-bottom: 10px;
}

.principles-card-body {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: var(--color-text-secondary, #666666);
    line-height: 1.7;
}



.mission-section {
    background-color: var(--color-bg-white, #ffffff);
    border-top: 1px solid rgba(30, 30, 50, 0.1);
    padding: 80px 24px;
}

@media (min-width: 1024px) {
    .mission-section {
        padding: 112px 24px;
    }
}

.mission-inner {
    max-width: 680px;
    margin: 0 auto;
    text-align: center;
}

.mission-label {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-text-secondary, #666666);
    margin-bottom: 16px;
}

.mission-title {
    font-family: 'Inter', sans-serif;
    font-size: clamp(1.85rem, 4.5vw, 3rem);
    font-weight: 800;
    color: #1A1A2E;
    letter-spacing: -0.03em;
    line-height: 1.1;
    margin-bottom: 24px;
}

.mission-description {
    font-family: 'Inter', sans-serif;
    font-size: 17px;
    color: var(--color-text-secondary, #666666);
    line-height: 1.8;
    max-width: 560px;
    margin: 0 auto 56px;
}

/* ─── Stats ─────────────────────────────────────────────── */
.mission-stats {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

@media (min-width: 640px) {
    .mission-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
    }
}

.mission-stat {
    text-align: center;
}

.mission-stat-val {
    font-family: 'Inter', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    color: #1A1A2E;
    letter-spacing: -0.04em;
    line-height: 1;
    margin-bottom: 8px;
}

.mission-stat-title {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #1A1A2E;
    margin-bottom: 4px;
}

.mission-stat-sub {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    color: var(--color-text-secondary, #666666);
    line-height: 1.5;
}


.journey-section {
    background-color: var(--color-bg-white, #ffffff);
    border-top: 1px solid rgba(30, 30, 50, 0.1);
    padding: 80px 24px;
}

@media (min-width: 1024px) {
    .journey-section {
        padding: 112px 24px;
    }
}

.journey-inner {
    max-width: 680px;
    margin: 0 auto;
}

/* ─── Header ────────────────────────────────────────────── */
.journey-header {
    text-align: center;
    margin-bottom: 64px;
}

.journey-label {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-text-secondary, #666666);
    margin-bottom: 16px;
}

.journey-title {
    font-family: 'Inter', sans-serif;
    font-size: clamp(1.85rem, 4.5vw, 3rem);
    font-weight: 800;
    color: #1A1A2E;
    letter-spacing: -0.03em;
    line-height: 1.1;
}

/* ─── Track ─────────────────────────────────────────────── */
.journey-track {
    display: flex;
    flex-direction: column;
}

/* ─── Item ──────────────────────────────────────────────── */
.journey-item {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 24px;
}

@media (min-width: 640px) {
    .journey-item {
        gap: 40px;
    }
}

/* ─── Left: year + line ─────────────────────────────────── */
.journey-left {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.journey-year {
    width: 80px;
    height: 32px;
    flex-shrink: 0;
    background-color: #1A1A2E;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: var(--color-text-white, #ffffff);
    position: relative;
    z-index: 1;
}

.journey-year--current {
    background-color: #1A1A2E;
    box-shadow: 0 0 0 3px rgba(26, 26, 46, 0.15);
}

.journey-line {
    flex: 1;
    width: 1px;
    background-color: rgba(30, 30, 50, 0.2);
    margin-top: 4px;
    min-height: 24px;
}

/* ─── Content ───────────────────────────────────────────── */
.journey-content {
    padding-bottom: 40px;
    padding-top: 4px;
}

.journey-item--last .journey-content {
    padding-bottom: 0;
}

.journey-item-title {
    font-family: 'Inter', sans-serif;
    font-size: 17px;
    font-weight: 600;
    color: #1A1A2E;
    letter-spacing: -0.01em;
    margin-bottom: 8px;
}

.journey-item-body {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    color: var(--color-text-secondary, #666666);
    line-height: 1.7;
}


.impact-section {
    background: linear-gradient(135deg, #1a1a2e 0%, #2a2259 100%);
    padding: 80px 24px;
    position: relative;
    overflow: hidden;
}

@media (min-width: 1024px) {
    .impact-section {
        padding: 112px 24px;
    }
}

.impact-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 50%, rgba(54, 44, 114, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(54, 44, 114, 0.15) 0%, transparent 50%);
    pointer-events: none;
}

.impact-container {
    max-width: 1024px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.impact-header {
    text-align: center;
    margin-bottom: 80px;
    animation: fadeInDown 0.8s ease-out;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

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

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

@keyframes countUp {
    from {
        opacity: 0;
        transform: scale(0.8);
    }

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

.impact-label {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: rgba(255, 255, 255, 0.5);
    display: block;
    margin-bottom: 16px;
    line-height: 1.4;
}

.impact-title {
    font-family: 'Inter', sans-serif;
    font-size: 32px;
    line-height: 1.1;
    font-weight: 800;
    letter-spacing: -0.8px;
    color: #ffffff;
    margin: 0;
}

@media (min-width: 1024px) {
    .impact-title {
        font-size: 48px;
        line-height: 1.08;
    }
}

.impact-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-bottom: 48px;
}

@media (min-width: 768px) {
    .impact-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 24px;
    }
}

.impact-card {
    text-align: center;
    padding: 24px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.02) 100%);
    border: 1px solid rgba(255, 255, 255, 0.12);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    animation: fadeInUp 0.8s ease-out forwards;
    opacity: 0;
    position: relative;
    overflow: hidden;
}

.impact-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.impact-card:nth-child(1) {
    animation-delay: 0.1s;
}

.impact-card:nth-child(2) {
    animation-delay: 0.2s;
}

.impact-card:nth-child(3) {
    animation-delay: 0.3s;
}

.impact-card:nth-child(4) {
    animation-delay: 0.4s;
}

@media (min-width: 768px) {
    .impact-card {
        padding: 32px 24px;
    }
}

.impact-card:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.05) 100%);
    border-color: rgba(255, 255, 255, 0.25);
    box-shadow: 0 12px 32px rgba(54, 44, 114, 0.3);
    transform: translateY(-8px);
}

.impact-card:hover::before {
    opacity: 1;
}

.impact-stat {
    font-family: 'Inter', sans-serif;
    font-size: 40px;
    line-height: 1;
    font-weight: 800;
    color: #ffffff;
    margin: 0 0 12px 0;
    letter-spacing: -1px;
    position: relative;
    z-index: 1;
}

@media (min-width: 768px) {
    .impact-stat {
        font-size: 44px;
    }
}

.impact-text {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
    font-weight: 400;
    position: relative;
    z-index: 1;
}

@media (min-width: 768px) {
    .impact-text {
        font-size: 14px;
    }
}

.impact-disclaimer {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.5);
    text-align: center;
    margin: 0;
    line-height: 1.6;
    font-weight: 400;
    letter-spacing: 0.03em;
    animation: fadeInUp 0.8s ease-out 0.5s both;
}

/* Responsivo para mobile */
@media (max-width: 768px) {
    .impact-section {
        padding: 60px 16px;
    }

    .impact-header {
        margin-bottom: 56px;
    }

    .impact-title {
        font-size: 26px;
        margin-top: 8px;
    }

    .impact-grid {
        gap: 16px;
    }

    .impact-card {
        padding: 20px;
    }

    .impact-stat {
        font-size: 32px;
        margin-bottom: 8px;
    }

    .impact-text {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .impact-section {
        padding: 48px 16px;
    }

    .impact-title {
        font-size: 22px;
    }

    .impact-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .impact-card {
        padding: 16px;
    }

    .impact-stat {
        font-size: 28px;
    }

    .impact-text {
        font-size: 11px;
    }

    .impact-disclaimer {
        font-size: 10px;
    }
}

.values-section {
    background-color: #ffffff;
    padding: 80px 24px;
    border-top: 1px solid #e5e5e5;
    position: relative;
}

@media (min-width: 1024px) {
    .values-section {
        padding: 112px 24px;
    }
}

.values-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 100% 0%, rgba(54, 44, 114, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 0% 100%, rgba(54, 44, 114, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.values-container {
    max-width: 1280px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.values-header {
    text-align: center;
    margin-bottom: 96px;
    animation: fadeInDown 0.8s ease-out;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

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

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

.values-label {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: #666666;
    display: block;
    margin-bottom: 16px;
    line-height: 1.4;
}

.values-title {
    font-family: 'Inter', sans-serif;
    font-size: 32px;
    line-height: 1.1;
    font-weight: 800;
    letter-spacing: -0.8px;
    color: #1a1a2e;
    margin: 0;
    margin-top: 16px;
}

@media (min-width: 1024px) {
    .values-title {
        font-size: 48px;
        line-height: 1.08;
    }
}

.values-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}

@media (min-width: 768px) {
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 36px;
    }
}

.values-card {
    padding: 0;
    animation: fadeInUp 0.8s ease-out forwards;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-bottom: 2px solid #e5e5e5;
    padding-bottom: 32px;
    position: relative;
}

.values-card::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #362C72 0%, #1a1a2e 100%);
    transition: width 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.values-card:nth-child(1) {
    animation-delay: 0.1s;
}

.values-card:nth-child(2) {
    animation-delay: 0.2s;
}

.values-card:nth-child(3) {
    animation-delay: 0.3s;
}

.values-card:nth-child(4) {
    animation-delay: 0.4s;
}

@media (min-width: 768px) {
    .values-card {
        padding-bottom: 0;
        border-bottom: none;
        border-left: 2px solid #e5e5e5;
        padding-left: 32px;
    }

    .values-card::after {
        bottom: auto;
        left: -2px;
        width: 2px;
        height: 0;
        background: linear-gradient(180deg, #362C72 0%, #1a1a2e 100%);
        transition: height 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    }
}

.values-card:hover::after {
    width: 100%;
}

@media (min-width: 768px) {
    .values-card:hover::after {
        width: auto;
        height: 100%;
    }
}

.values-card-title {
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0 0 12px 0;
    line-height: 1.3;
    letter-spacing: -0.3px;
}

@media (min-width: 768px) {
    .values-card-title {
        font-size: 22px;
    }
}

.values-card-text {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    line-height: 1.75;
    color: #666666;
    margin: 0;
    font-weight: 400;
}

@media (min-width: 768px) {
    .values-card-text {
        font-size: 15px;
    }
}

/* Responsivo para mobile */
@media (max-width: 768px) {
    .values-section {
        padding: 60px 16px;
    }

    .values-header {
        margin-bottom: 64px;
    }

    .values-title {
        font-size: 26px;
        margin-top: 8px;
    }

    .values-grid {
        gap: 24px;
    }

    .values-card {
        padding-bottom: 24px;
    }

    .values-card-title {
        font-size: 18px;
    }

    .values-card-text {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .values-section {
        padding: 48px 16px;
    }

    .values-title {
        font-size: 22px;
    }

    .values-grid {
        gap: 20px;
    }

    .values-card {
        padding-bottom: 20px;
    }

    .values-card-title {
        font-size: 17px;
    }

    .values-card-text {
        font-size: 13px;
    }
}


.compliance-section {
    background-color: #ffffff;
    padding: 80px 24px;
    position: relative;
}

@media (min-width: 1024px) {
    .compliance-section {
        padding: 112px 24px;
    }
}

.compliance-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 0% 0%, rgba(54, 44, 114, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 100% 100%, rgba(54, 44, 114, 0.02) 0%, transparent 50%);
    pointer-events: none;
}

.compliance-container {
    max-width: 1280px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.compliance-header {
    text-align: center;
    margin-bottom: 80px;
    animation: fadeInDown 0.8s ease-out;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

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

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

.compliance-label {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: #666666;
    display: block;
    margin-bottom: 16px;
    line-height: 1.4;
}

.compliance-title {
    font-family: 'Inter', sans-serif;
    font-size: 32px;
    line-height: 1.1;
    font-weight: 800;
    letter-spacing: -0.8px;
    color: #1a1a2e;
    margin: 0;
    margin-top: 16px;
}

@media (min-width: 1024px) {
    .compliance-title {
        font-size: 48px;
        line-height: 1.08;
    }
}

.compliance-description {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.8;
    color: #666666;
    margin: 20px auto 0;
    max-width: 768px;
    font-weight: 400;
    animation: fadeInUp 0.8s ease-out 0.1s both;
}

@media (min-width: 768px) {
    .compliance-description {
        font-size: 17px;
    }
}

.compliance-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 64px;
}

@media (min-width: 768px) {
    .compliance-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

.compliance-card {
    display: flex;
    gap: 16px;
    padding: 20px;
    background-color: #ffffff;
    border: 1px solid #e5e5e5;
    border-radius: 12px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    animation: fadeInUp 0.8s ease-out forwards;
    opacity: 0;
}

.compliance-card:nth-child(1) {
    animation-delay: 0.05s;
}

.compliance-card:nth-child(2) {
    animation-delay: 0.1s;
}

.compliance-card:nth-child(3) {
    animation-delay: 0.15s;
}

.compliance-card:nth-child(4) {
    animation-delay: 0.2s;
}

.compliance-card:nth-child(5) {
    animation-delay: 0.25s;
}

.compliance-card:nth-child(6) {
    animation-delay: 0.3s;
}

.compliance-card:nth-child(7) {
    animation-delay: 0.35s;
}

.compliance-card:nth-child(8) {
    animation-delay: 0.4s;
}

.compliance-card:nth-child(9) {
    animation-delay: 0.45s;
}

.compliance-card:nth-child(10) {
    animation-delay: 0.5s;
}

@media (min-width: 768px) {
    .compliance-card {
        padding: 24px;
        gap: 20px;
    }
}

.compliance-card:hover {
    border-color: #362C72;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fc 100%);
    box-shadow: 0 8px 24px rgba(54, 44, 114, 0.12);
    transform: translateY(-4px);
}

.compliance-badge {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    background-color: #1a1a2e;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Inter', sans-serif;
    font-size: 10px;
    font-weight: 800;
    color: #ffffff;
    text-align: center;
    line-height: 1.1;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

@media (min-width: 768px) {
    .compliance-badge {
        width: 64px;
        height: 64px;
        font-size: 11px;
    }
}

.compliance-card:hover .compliance-badge {
    background-color: #362C72;
    transform: scale(1.05);
}

.compliance-content {
    flex: 1;
}

.compliance-card-title {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0 0 6px 0;
    line-height: 1.3;
}

@media (min-width: 768px) {
    .compliance-card-title {
        font-size: 15px;
    }
}

.compliance-card-text {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    line-height: 1.6;
    color: #666666;
    margin: 0;
    font-weight: 400;
}

@media (min-width: 768px) {
    .compliance-card-text {
        font-size: 14px;
    }
}

.compliance-footer {
    text-align: center;
    padding-top: 48px;
    border-top: 1px solid #e5e5e5;
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

.compliance-footer-text {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    line-height: 1.8;
    color: #666666;
    margin: 0 auto;
    max-width: 900px;
    font-weight: 400;
}

@media (min-width: 768px) {
    .compliance-footer-text {
        font-size: 14px;
    }
}

.compliance-link {
    color: #1a1a2e;
    text-decoration: underline;
    font-weight: 500;
    transition: color 0.3s ease;
}

.compliance-link:hover {
    color: #362C72;
}

/* Responsivo para mobile */
@media (max-width: 768px) {
    .compliance-section {
        padding: 60px 16px;
    }

    .compliance-header {
        margin-bottom: 60px;
    }

    .compliance-title {
        font-size: 26px;
        margin-top: 8px;
    }

    .compliance-description {
        font-size: 15px;
    }

    .compliance-grid {
        gap: 12px;
    }

    .compliance-card {
        padding: 16px;
        gap: 12px;
    }

    .compliance-badge {
        width: 48px;
        height: 48px;
        font-size: 9px;
    }

    .compliance-card-title {
        font-size: 13px;
    }

    .compliance-card-text {
        font-size: 12px;
    }

    .compliance-footer {
        padding-top: 36px;
    }

    .compliance-footer-text {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .compliance-section {
        padding: 48px 16px;
    }

    .compliance-title {
        font-size: 22px;
    }

    .compliance-description {
        font-size: 14px;
    }

    .compliance-badge {
        width: 44px;
        height: 44px;
        font-size: 8px;
    }

    .compliance-card-title {
        font-size: 12px;
    }

    .compliance-card-text {
        font-size: 11px;
    }

    .compliance-footer-text {
        font-size: 11px;
    }
}


.founder-section {
    background: linear-gradient(135deg, #1a1a2e 0%, #2a2259 100%);
    padding: 80px 24px;
    position: relative;
    overflow: hidden;
}

@media (min-width: 1024px) {
    .founder-section {
        padding: 112px 24px;
    }
}

.founder-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 50%, rgba(54, 44, 114, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(54, 44, 114, 0.15) 0%, transparent 50%);
    pointer-events: none;
}

.founder-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.1) 50%, transparent 100%);
}

.founder-container {
    max-width: 1024px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.founder-wrapper {
    max-width: 768px;
    margin: 0 auto;
    animation: fadeInDown 0.8s ease-out;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

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

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

.founder-label {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: rgba(255, 255, 255, 0.5);
    display: block;
    margin-bottom: 40px;
    text-align: center;
    line-height: 1.4;
}

.founder-letter {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    backdrop-filter: blur(10px);
    border: 1.5px solid rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    padding: 40px;
    animation: fadeInUp 0.8s ease-out 0.1s both;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.founder-letter::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

@media (min-width: 768px) {
    .founder-letter {
        padding: 56px;
    }
}

.founder-letter:hover {
    border-color: rgba(255, 255, 255, 0.25);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.08) 100%);
    box-shadow: 0 20px 60px rgba(54, 44, 114, 0.3);
    transform: translateY(-8px);
}

.founder-letter:hover::before {
    opacity: 1;
}

.founder-quote {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
    font-style: italic;
    font-weight: 400;
    position: relative;
    z-index: 1;
}

.founder-quote:first-of-type {
    margin-bottom: 28px;
}

@media (min-width: 768px) {
    .founder-quote {
        font-size: 17px;
        line-height: 1.95;
    }
}

.founder-quote::before {
    content: '"';
    position: absolute;
    left: -12px;
    top: -8px;
    font-size: 48px;
    color: rgba(255, 255, 255, 0.1);
    line-height: 1;
    font-style: normal;
}

.founder-signature {
    margin-top: 40px;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    position: relative;
    z-index: 1;
}

.founder-name {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 6px 0;
    line-height: 1.3;
    letter-spacing: -0.3px;
}

@media (min-width: 768px) {
    .founder-name {
        font-size: 17px;
    }
}

.founder-title {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    margin: 0 0 12px 0;
    line-height: 1.4;
    font-weight: 500;
    letter-spacing: 0.03em;
}

.founder-link {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    display: inline-block;
    font-weight: 500;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    letter-spacing: 0.03em;
    margin-top: 12px;
}

.founder-link:hover {
    color: #ffffff;
    transform: translateX(4px);
}

/* Responsivo para mobile */
@media (max-width: 768px) {
    .founder-section {
        padding: 60px 16px;
    }

    .founder-label {
        margin-bottom: 32px;
    }

    .founder-letter {
        padding: 28px;
    }

    .founder-quote {
        font-size: 15px;
        line-height: 1.75;
    }

    .founder-quote:first-of-type {
        margin-bottom: 20px;
    }

    .founder-quote::before {
        font-size: 36px;
        left: -8px;
        top: -4px;
    }

    .founder-signature {
        margin-top: 28px;
        padding-top: 24px;
    }

    .founder-name {
        font-size: 15px;
    }

    .founder-title {
        font-size: 12px;
    }

    .founder-link {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .founder-section {
        padding: 48px 16px;
    }

    .founder-label {
        font-size: 11px;
        margin-bottom: 24px;
    }

    .founder-letter {
        padding: 20px;
    }

    .founder-quote {
        font-size: 14px;
        line-height: 1.65;
    }

    .founder-quote:first-of-type {
        margin-bottom: 16px;
    }

    .founder-quote::before {
        font-size: 28px;
        left: -4px;
    }

    .founder-signature {
        margin-top: 20px;
        padding-top: 16px;
    }

    .founder-name {
        font-size: 14px;
    }

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

    .founder-link {
        font-size: 11px;
        margin-top: 8px;
    }
}



.architects-section {
    background-color: #f9f9fb;
    padding: 80px 24px;
    border-top: 1px solid #e5e5e5;
    position: relative;
}

@media (min-width: 1024px) {
    .architects-section {
        padding: 112px 24px;
    }
}

.architects-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 100% 0%, rgba(54, 44, 114, 0.04) 0%, transparent 50%),
        radial-gradient(circle at 0% 100%, rgba(54, 44, 114, 0.02) 0%, transparent 50%);
    pointer-events: none;
}

.architects-container {
    max-width: 1280px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.architects-header {
    text-align: center;
    margin-bottom: 80px;
    animation: fadeInDown 0.8s ease-out;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

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

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

.architects-label {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: #666666;
    display: block;
    margin-bottom: 16px;
    line-height: 1.4;
}

.architects-title {
    font-family: 'Inter', sans-serif;
    font-size: 32px;
    line-height: 1.1;
    font-weight: 800;
    letter-spacing: -0.8px;
    color: #1a1a2e;
    margin: 0;
    margin-top: 16px;
}

@media (min-width: 1024px) {
    .architects-title {
        font-size: 48px;
        line-height: 1.08;
    }
}

.architects-description {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.8;
    color: #666666;
    margin: 20px auto 0;
    max-width: 768px;
    font-weight: 400;
    animation: fadeInUp 0.8s ease-out 0.1s both;
}

@media (min-width: 768px) {
    .architects-description {
        font-size: 17px;
    }
}

.architects-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 64px;
}

@media (min-width: 768px) {
    .architects-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 28px;
    }
}

.architect-card {
    background-color: #ffffff;
    border: 1.5px solid #e5e5e5;
    border-radius: 16px;
    padding: 32px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    animation: fadeInUp 0.8s ease-out forwards;
    opacity: 0;
}

.architect-card:nth-child(1) {
    animation-delay: 0.1s;
}

.architect-card:nth-child(2) {
    animation-delay: 0.2s;
}

.architect-card:nth-child(3) {
    animation-delay: 0.3s;
}

.architect-card:nth-child(4) {
    animation-delay: 0.4s;
}

@media (min-width: 1024px) {
    .architect-card {
        padding: 40px;
    }
}

.architect-card:hover {
    border-color: #362C72;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fc 100%);
    box-shadow: 0 12px 32px rgba(54, 44, 114, 0.12);
    transform: translateY(-8px);
}

.architect-header-card {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
}

.architect-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background-color: #1a1a2e;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.architect-card:hover .architect-icon {
    background-color: #362C72;
    transform: scale(1.08);
}

.architect-svg {
    width: 20px;
    height: 20px;
    color: #ffffff;
    stroke-width: 1.5;
}

.architect-card-title {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0;
    line-height: 1.3;
    flex: 1;
}

@media (min-width: 1024px) {
    .architect-card-title {
        font-size: 17px;
    }
}

.architect-card-text {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    line-height: 1.75;
    color: #666666;
    margin: 0;
    font-weight: 400;
}

@media (min-width: 1024px) {
    .architect-card-text {
        font-size: 15px;
    }
}

.architects-footer {
    text-align: center;
    animation: fadeInUp 0.8s ease-out 0.5s both;
}

.architects-footer-text {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    line-height: 1.75;
    color: #666666;
    margin: 0 auto;
    max-width: 768px;
    font-weight: 400;
}

@media (min-width: 768px) {
    .architects-footer-text {
        font-size: 15px;
    }
}

/* Responsivo para mobile */
@media (max-width: 768px) {
    .architects-section {
        padding: 60px 16px;
    }

    .architects-header {
        margin-bottom: 60px;
    }

    .architects-title {
        font-size: 26px;
        margin-top: 8px;
    }

    .architects-description {
        font-size: 15px;
    }

    .architects-grid {
        gap: 16px;
    }

    .architect-card {
        padding: 24px;
    }

    .architect-header-card {
        gap: 10px;
        margin-bottom: 12px;
    }

    .architect-icon {
        width: 36px;
        height: 36px;
    }

    .architect-svg {
        width: 18px;
        height: 18px;
    }

    .architect-card-title {
        font-size: 15px;
    }

    .architect-card-text {
        font-size: 13px;
    }

    .architects-footer {
        margin-top: 40px;
    }

    .architects-footer-text {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .architects-section {
        padding: 48px 16px;
    }

    .architects-title {
        font-size: 22px;
    }

    .architects-description {
        font-size: 14px;
    }

    .architect-card {
        padding: 20px;
    }

    .architect-icon {
        width: 32px;
        height: 32px;
    }

    .architect-svg {
        width: 16px;
        height: 16px;
    }

    .architect-card-title {
        font-size: 14px;
    }

    .architect-card-text {
        font-size: 12px;
    }

    .architects-footer-text {
        font-size: 12px;
    }
}


.team-cta-section {
    background-color: #ffffff;
    padding: 80px 24px;
    border-top: 1px solid #e5e5e5;
    position: relative;
}

@media (min-width: 1024px) {
    .team-cta-section {
        padding: 112px 24px;
    }
}

.team-cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 0%, rgba(54, 44, 114, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 50% 100%, rgba(54, 44, 114, 0.02) 0%, transparent 50%);
    pointer-events: none;
}

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

.team-cta-content {
    max-width: 768px;
    margin: 0 auto;
    text-align: center;
    animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

.team-cta-title {
    font-family: 'Inter', sans-serif;
    font-size: 32px;
    line-height: 1.1;
    font-weight: 800;
    letter-spacing: -0.8px;
    color: #1a1a2e;
    margin: 0;
}

@media (min-width: 1024px) {
    .team-cta-title {
        font-size: 40px;
        line-height: 1.08;
    }
}

.team-cta-description {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.8;
    color: #666666;
    margin: 20px auto 0;
    max-width: 640px;
    font-weight: 400;
    animation: fadeInUp 0.8s ease-out 0.1s both;
}

@media (min-width: 768px) {
    .team-cta-description {
        font-size: 17px;
    }
}

.team-cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    margin-top: 40px;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

@media (min-width: 640px) {
    .team-cta-buttons {
        gap: 16px;
    }
}

.team-cta-button {
    font-family: 'Inter', sans-serif;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 32px;
    font-size: 14px;
    font-weight: 700;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1.5px solid transparent;
    white-space: nowrap;
    cursor: pointer;
    letter-spacing: 0.4px;
}

@media (min-width: 640px) {
    .team-cta-button {
        padding: 14px 40px;
        font-size: 15px;
    }
}

.team-cta-button-primary {
    background-color: #1a1a2e;
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(26, 26, 46, 0.15);
}

.team-cta-button-primary:hover {
    background-color: #362C72;
    box-shadow: 0 8px 20px rgba(54, 44, 114, 0.25);
    transform: translateY(-2px);
}

.team-cta-button-primary:active {
    transform: translateY(0);
}

.team-cta-button-secondary {
    background-color: #ffffff;
    color: #1a1a2e;
    border-color: #1a1a2e;
}

.team-cta-button-secondary:hover {
    background-color: #1a1a2e;
    color: #ffffff;
    border-color: #1a1a2e;
    box-shadow: 0 8px 20px rgba(26, 26, 46, 0.2);
    transform: translateY(-2px);
}

.team-cta-button-secondary:active {
    transform: translateY(0);
}

/* Responsivo para mobile */
@media (max-width: 768px) {
    .team-cta-section {
        padding: 60px 16px;
    }

    .team-cta-title {
        font-size: 26px;
    }

    .team-cta-description {
        font-size: 15px;
        margin-top: 12px;
    }

    .team-cta-buttons {
        gap: 8px;
        margin-top: 32px;
    }

    .team-cta-button {
        padding: 11px 24px;
        font-size: 13px;
        flex: 1;
        min-width: calc(50% - 4px);
    }
}

@media (max-width: 480px) {
    .team-cta-section {
        padding: 48px 16px;
    }

    .team-cta-title {
        font-size: 22px;
    }

    .team-cta-description {
        font-size: 14px;
    }

    .team-cta-buttons {
        gap: 8px;
        margin-top: 28px;
    }

    .team-cta-button {
        padding: 10px 20px;
        font-size: 12px;
        flex-basis: 100%;
    }
}