@font-face {
    font-family: 'Garet';
    src: url('./assets/fonts/Garet-Book.woff2') format('woff2'),
         url('./assets/fonts/Garet-Book.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Garet';
    src: url('./assets/fonts/Garet-Heavy.woff2') format('woff2'),
         url('./assets/fonts/Garet-Heavy.woff') format('woff');
    font-weight: 850;
    font-style: normal;
    font-display: swap;
}

:root {
    --color-white: #ffffff;
    --color-black: #000000;
    --color-dark-text: #010202;
    --color-gray-text: #303030;
    --color-blue-hover: #24315E;
    --color-dot: #819470;
    --font-primary: 'Garet', 'Montserrat', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body, html {
    width: 100%;
    min-height: 100%;
    font-family: var(--font-primary);
    color: var(--color-white);
    overflow-x: hidden;
}

.video-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    background-color: #111;
}

.video-wrapper video,
.video-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
}

.video-wrapper.is-image-bg img {
    opacity: 1;
}

.container-full {
    width: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    padding: 40px 60px 0;
}

.main-header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 60px;
}

.logo img {
    max-height: 40px;
    display: block;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 40px;
}

.btn-schedule {
    display: flex;
    align-items: center;
    justify-content: center;
    width: auto;
    min-width: 313px;
    height: 54px;
    padding: 16px 32px;
    gap: 8px;
    background: transparent;
    color: var(--color-white);
    border: 1px solid var(--color-white);
    border-radius: 100px;
    font-family: var(--font-primary);
    font-weight: 850;
    font-size: 18px;
    line-height: 120%;
    letter-spacing: 0%;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-schedule:hover {
    background: rgba(255, 255, 255, 0.1);
}

.btn-menu {
    display: flex;
    align-items: center;
    gap: 12px;
    background: transparent;
    border: none;
    color: var(--color-white);
    cursor: pointer;
    font-family: var(--font-primary);
    font-weight: 300;
    font-size: 24px;
    line-height: 120%;
    letter-spacing: -0.01em;
}

body.menu-open {
    overflow: hidden;
}

.site-menu-overlay {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
    padding: 10px;
    background: rgba(1, 2, 2, 0.35);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
}

.site-menu-overlay.is-open {
    opacity: 1;
    pointer-events: auto;
}

.site-menu-panel {
    width: min(520px, calc(100vw - 20px));
    min-height: 0;
    max-height: calc(100vh - 20px);
    padding: 32px;
    border: 1px solid #404145;
    border-radius: 24px;
    background: #010202;
    display: flex;
    flex-direction: column;
    gap: 32px;
    overflow-y: auto;
    transform: translateY(-8px);
    transition: transform 0.25s ease;
}

.site-menu-overlay.is-open .site-menu-panel {
    transform: translateY(0);
}

.site-menu-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-menu-label {
    font-family: var(--font-primary);
    font-weight: 300;
    font-size: 24px;
    line-height: 120%;
    letter-spacing: -0.01em;
    color: #E8E8E8;
}

.site-menu-close {
    border: 0;
    background: transparent;
    color: #FFFFFF;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-primary);
    font-weight: 300;
    font-size: 18px;
    line-height: 120%;
    letter-spacing: 0;
}

.site-menu-close-icon {
    width: 48px;
    height: 48px;
    border-radius: 999px;
    border: 1px solid #404145;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    line-height: 1;
}

.site-menu-nav {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.site-menu-link {
    text-decoration: none;
    font-family: var(--font-primary);
    font-weight: 300;
    font-size: 48px;
    line-height: 120%;
    letter-spacing: -0.02em;
    color: #FFFFFF;
}

.site-menu-footer {
    margin-top: 0;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 18px;
}

.site-menu-contact {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.site-menu-contact-link {
    font-family: var(--font-primary);
    font-weight: 300;
    font-size: 24px;
    line-height: 120%;
    letter-spacing: -0.01em;
    color: #FFFFFF;
    text-decoration: underline;
}

.site-menu-social {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.site-menu-social-btn {
    width: 36px;
    height: 36px;
    border-radius: 999px;
    background: #FFFFFF;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.site-menu-social-btn img {
    width: 18px;
    height: 18px;
    display: block;
    filter: brightness(0) saturate(100%);
}

.hero-section {
    min-height: calc(100vh - 140px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    margin-bottom: 100px;
}

.hero-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
}

.hero-title {
    font-family: var(--font-primary);
    font-weight: 300;
    font-size: 160px;
    line-height: 94%;
    letter-spacing: -0.07em;
    text-align: left;
    margin-bottom: 40px;
    width: 100%;
    margin-left: 8%;
}

.highlight-dot {
    color: var(--color-dot);
}

.hero-desc-wrapper {
    display: flex;
    justify-content: flex-end;
    width: 100%;
}

.hero-description {
    width: 100%;
    max-width: 100%;
    font-family: var(--font-primary);
    font-weight: 300;
    font-size: 30px;
    line-height: 120%;
    letter-spacing: -0.01em;
    text-align: right;
    opacity: 0.9;
    white-space: nowrap;
}

.about-page {
    background: #010202;
}

.about-hero-section {
    width: 100%;
    min-height: calc(100vh - 140px);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 72px 0 56px;
}

.about-hero-title {
    font-family: var(--font-primary);
    font-weight: 300;
    font-size: 64px;
    line-height: 110%;
    letter-spacing: -0.05em;
    color: #ffffff;
    max-width: 1180px;
}

.about-hero-description {
    margin-left: auto;
    max-width: 930px;
    font-family: var(--font-primary);
    font-weight: 300;
    font-size: 30px;
    line-height: 120%;
    letter-spacing: -0.01em;
    text-align: right;
    color: #E8E8E8;
}

.cases-page {
    background: #010202;
}

.cases-hero-section {
    width: 100%;
    min-height: calc(100vh - 140px);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 78px 0 64px;
}

.cases-hero-title {
    font-family: var(--font-primary);
    font-weight: 300;
    font-size: 160px;
    line-height: 94%;
    letter-spacing: -0.07em;
    color: #FFFFFF;
}

.cases-hero-description {
    margin-left: auto;
    max-width: 980px;
    font-family: var(--font-primary);
    font-weight: 300;
    font-size: 30px;
    line-height: 120%;
    letter-spacing: -0.01em;
    text-align: right;
    color: #E8E8E8;
}

.cases-white-section {
    width: calc(100% + 120px);
    margin: 0 -60px;
    min-height: 100vh;
    background: #FFFFFF;
    position: relative;
    z-index: 2;
}

.blog-coming-section {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 56px 24px;
}

.blog-coming-title {
    font-family: var(--font-primary);
    font-weight: 300;
    font-size: clamp(48px, 8vw, 120px);
    line-height: 94%;
    letter-spacing: -0.04em;
    color: #303030;
    text-transform: uppercase;
    text-align: center;
}

.contato-page {
    background: #FFFFFF;
    color: #010202;
}

.contato-page .btn-menu {
    color: #010202;
}

.contato-page .logo img,
.contato-page .btn-menu img {
    filter: brightness(0) saturate(100%);
}

.contato-hero-section {
    width: 100%;
    min-height: auto;
    display: flex;
    align-items: flex-start;
    padding: 24px 0 300px;
}

.contato-hero-title {
    font-family: var(--font-primary);
    font-weight: 300;
    font-size: 160px;
    line-height: 94%;
    letter-spacing: -0.07em;
    color: #010202;
    max-width: 1120px;
}

.contato-form-section {
    width: 100%;
    padding: 0 0 80px;
}

.contato-form-grid {
    display: grid;
    grid-template-columns: 180px minmax(0, 1fr);
    gap: 52px;
    align-items: start;
}

.contato-form-sidebar {
    display: flex;
    flex-direction: column;
    gap: 42px;
    padding-top: 14px;
}

.contato-info-block {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contato-info-title {
    font-family: var(--font-primary);
    font-weight: 850;
    font-size: 20px;
    line-height: 110%;
    letter-spacing: -0.01em;
    color: #010202;
}

.contato-info-description {
    font-family: var(--font-primary);
    font-weight: 300;
    font-size: 14px;
    line-height: 165%;
    letter-spacing: -0.01em;
    color: #5C6563;
}

.contato-form-content {
    width: 100%;
    max-width: 990px;
    margin-left: auto;
}

.contato-form-intro {
    font-family: var(--font-primary);
    font-weight: 300;
    font-size: 64px;
    line-height: 110%;
    letter-spacing: -0.05em;
    text-align: right;
    color: #010202;
    margin-bottom: 26px;
}

.contato-form {
    width: 100%;
}

.contato-field {
    display: grid;
    grid-template-columns: 36px minmax(0, 1fr);
    gap: 14px;
    align-items: center;
    margin-bottom: 20px;
}

.contato-field-index {
    width: 36px;
    height: 23px;
    border: 1px solid #010202;
    border-radius: 11.5px;
    font-family: var(--font-primary);
    font-weight: 300;
    font-size: 10px;
    line-height: 180%;
    letter-spacing: -0.10em;
    color: #010202;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.contato-field input,
.contato-field textarea {
    width: 100%;
    border: 0;
    border-bottom: 1px solid #010202;
    background: transparent;
    color: #010202;
    font-family: var(--font-primary);
    font-weight: 300;
    font-size: 30px;
    line-height: 120%;
    letter-spacing: -0.01em;
    padding: 10px 0 8px;
    outline: none;
    resize: vertical;
}

.contato-field textarea {
    min-height: 56px;
}

.contato-field input::placeholder,
.contato-field textarea::placeholder {
    color: #010202;
    opacity: 1;
}

.contato-submit-button {
    width: 149px;
    height: 54px;
    padding: 16px 24px;
    border: 1px solid #010202;
    border-radius: 100px;
    background: transparent;
    color: #010202;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font-primary);
    font-weight: 850;
    font-size: 18px;
    line-height: 120%;
    letter-spacing: 0;
    cursor: pointer;
    margin-top: 10px;
}

.cvb-page {
    background: #010202;
}

.cvb-hero-section {
    width: 100%;
    min-height: 74vh;
    padding: 70px 0 34px;
}

.cvb-hero-grid {
    width: 100%;
    display: grid;
    grid-template-columns: minmax(280px, 1fr) minmax(0, 1.2fr);
    align-items: start;
    gap: 56px;
}

.cvb-case-link {
    font-family: var(--font-primary);
    font-weight: 300;
    font-size: 24px;
    line-height: 100%;
    letter-spacing: -0.05em;
    text-decoration: underline;
    color: #FFFFFF;
    display: inline-block;
    margin-bottom: 12px;
}

.cvb-case-title {
    font-family: var(--font-primary);
    font-weight: 300;
    font-size: 64px;
    line-height: 110%;
    letter-spacing: -0.05em;
    color: #FFFFFF;
}

.cvb-hero-right {
    display: flex;
    flex-direction: column;
    gap: 44px;
}

.cvb-case-description {
    font-family: var(--font-primary);
    font-weight: 300;
    font-size: 20px;
    line-height: 120%;
    letter-spacing: -0.01em;
    color: #FFFFFF;
    max-width: 740px;
}

.cvb-case-topics {
    font-family: var(--font-primary);
    font-weight: 300;
    font-size: 20px;
    line-height: 120%;
    letter-spacing: -0.01em;
    color: #5C6563;
}

.cvb-gallery-section {
    width: calc(100% + 120px);
    margin: 0 -60px;
    background: #FFFFFF;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    position: relative;
    z-index: 2;
}

.cvb-gallery-row {
    width: 100%;
    min-height: clamp(180px, 24vh, 280px);
}

.cvb-gallery-row-double {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.cvb-gallery-row-single .cvb-gallery-item {
    width: 100%;
    height: 100%;
}

.cvb-gallery-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 14px;
    background: #E1E1E1;
    border: 2px solid #DADADA;
    overflow: hidden;
}

.cvb-gallery-row-double .cvb-gallery-item:first-child {
    background: #E4E2DA;
}

.cvb-gallery-row-double .cvb-gallery-item:last-child {
    background: #FFFFFF;
}

.cvb-gallery-section .cvb-gallery-row-single:nth-of-type(2) .cvb-gallery-item {
    background: #DDDDDB;
}

.cvb-gallery-item img {
    width: 90%;
    height: 90%;
    object-fit: contain;
    display: block;
}

.cvb-other-projects-section {
    width: calc(100% + 120px);
    margin: 0 -60px;
    background: #FFFFFF;
    padding: 88px 20px 56px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.cvb-other-projects-title {
    font-family: var(--font-primary);
    font-weight: 300;
    font-size: 96px;
    line-height: 100%;
    letter-spacing: -0.02em;
    color: #010202;
    margin-bottom: 28px;
    width: calc((438.6667px * 3) + (96px * 2));
    max-width: 100%;
}

.cvb-other-projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 438.6667px);
    justify-content: center;
    gap: 96px;
    width: max-content;
    margin: 0 auto;
}

.cvb-other-project-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.cvb-other-project-card {
    width: 438.6667px;
    height: 419.0602px;
    background: #C4C4C4;
    opacity: 1;
}

.cvb-other-project-link {
    font-family: var(--font-primary);
    font-weight: 300;
    font-size: 16px;
    line-height: 110%;
    letter-spacing: -0.03em;
    color: #5C6563;
    text-decoration: none;
}

@media (max-width: 1600px) {
    .cvb-other-projects-section {
        align-items: stretch;
    }
    .cvb-other-projects-title {
        width: auto;
        margin-bottom: 24px;
    }
    .cvb-other-projects-grid {
        width: 100%;
        margin: 0;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 36px;
    }
    .cvb-other-project-card {
        width: 100%;
        height: auto;
        aspect-ratio: 438.6667 / 419.0602;
    }
}

.about-services-section {
    width: calc(100% + 120px);
    margin: 0 -60px;
    background: #FFFFFF;
    padding: 84px 60px 56px;
    color: #010202;
    position: relative;
}

.about-services-section::after {
    content: "";
    position: absolute;
    left: 60px;
    right: 60px;
    bottom: 0;
    border-bottom: 1px solid #B9B9B9;
}

.about-services-grid {
    width: 100%;
    display: grid;
    grid-template-columns: minmax(260px, 1fr) minmax(0, 1.2fr);
    gap: 48px;
    align-items: start;
}

.about-services-title {
    font-family: var(--font-primary);
    font-weight: 300;
    font-size: 96px;
    line-height: 100%;
    letter-spacing: -0.02em;
    color: #010202;
}

.about-services-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 34px;
    row-gap: 40px;
}

.about-service-block {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.about-service-heading,
.about-service-link {
    font-family: var(--font-primary);
    font-weight: 300;
    font-size: 16px;
    line-height: 110%;
    letter-spacing: -0.03em;
    text-transform: uppercase;
    color: #767676;
}

.about-service-items {
    font-family: var(--font-primary);
    font-weight: 300;
    font-size: 20px;
    line-height: 121%;
    letter-spacing: -0.05em;
    color: #010202;
}

.about-service-link-wrap {
    display: flex;
    align-items: flex-start;
    padding-top: 2px;
}

.about-service-link {
    text-decoration: none;
}

.about-metrics-section {
    width: calc(100% + 120px);
    margin: 0 -60px;
    background: #FFFFFF;
    padding: 62px 60px 68px;
    position: relative;
}

.about-metrics-section::after {
    content: "";
    position: absolute;
    left: 60px;
    right: 60px;
    bottom: 0;
    border-bottom: 1px solid #B9B9B9;
}

.about-metrics-grid {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.about-metric-card {
    min-height: 300px;
    padding: 28px 24px 22px 14px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.about-metric-card + .about-metric-card {
    border-left: 1px solid #9D9D9D;
}

.about-metric-value {
    font-family: var(--font-primary);
    font-weight: 300;
    font-size: 105px;
    line-height: 110%;
    letter-spacing: -0.05em;
    color: #000000;
}

.about-metric-description {
    max-width: 340px;
    font-family: var(--font-primary);
    font-weight: 300;
    font-size: 20px;
    line-height: 121%;
    letter-spacing: -0.05em;
    color: #010202;
}

.about-team-section {
    width: calc(100% + 120px);
    margin: 0 -60px;
    background: #FFFFFF;
    padding: 60px 60px 54px;
    position: relative;
}

.about-team-section::after {
    content: "";
    position: absolute;
    left: 60px;
    right: 60px;
    bottom: 0;
    border-bottom: 1px solid #B9B9B9;
}

.about-team-grid {
    width: 100%;
    display: grid;
    grid-template-columns: minmax(260px, 1fr) minmax(0, 1.25fr);
    gap: 54px;
    align-items: start;
}

.about-team-title {
    font-family: var(--font-primary);
    font-weight: 300;
    font-size: 96px;
    line-height: 100%;
    letter-spacing: -0.02em;
    color: #010202;
}

.about-team-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.about-team-founders {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.about-team-founder-card {
    display: flex;
    flex-direction: column;
}

.about-team-photo {
    width: 100%;
    max-width: 388px;
    height: auto;
    aspect-ratio: 4 / 5;
    position: relative;
    overflow: hidden;
    border-radius: 18px;
    border: 1px solid #D7D7D7;
    background: linear-gradient(165deg, #ECECEC 0%, #D4D4D4 100%);
    box-shadow: 0 20px 36px rgba(1, 2, 2, 0.14);
}

.about-team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
    transform: scale(1.025);
    filter: contrast(1.04) saturate(1.06);
    display: block;
    transition: transform 360ms ease, filter 360ms ease;
}

.about-team-founder-card:hover .about-team-photo img {
    transform: scale(1.07);
    filter: contrast(1.08) saturate(1.1);
}

.about-team-photo-image--patricia {
    object-position: center 18%;
}

.about-team-photo-image--raquel {
    object-position: center 24%;
}

.about-team-name,
.about-team-role {
    font-family: var(--font-primary);
    font-weight: 300;
    font-size: 20px;
    line-height: 121%;
    letter-spacing: -0.05em;
}

.about-team-name {
    color: #000000;
    margin-top: 8px;
}

.about-team-role {
    color: #5C6563;
}

.about-team-list {
    border-top: 1px solid #B9B9B9;
    padding-top: 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.about-team-column {
    display: flex;
    flex-direction: column;
    gap: 26px;
}

.about-team-member {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.fc-intro-section {
    width: calc(100% + 120px);
    margin: 0 -60px;
    padding: 52px 60px 60px;
    background: #ffffff;
    color: #010202;
    position: relative;
    z-index: 2;
}

.fc-hero-spacer {
    width: 100%;
    min-height: calc(100vh - 140px);
}

.fc-intro-title {
    font-family: var(--font-primary);
    font-weight: 300;
    font-size: 96px;
    line-height: 100%;
    letter-spacing: -0.02em;
    color: #010202;
    max-width: 1120px;
    margin-bottom: 40px;
}

.fc-intro-grid {
    display: grid;
    grid-template-columns: minmax(640px, 760px) 340px;
    align-items: start;
    justify-content: space-between;
    gap: 40px;
}

.fc-intro-left {
    font-family: var(--font-primary);
    font-weight: 300;
    font-size: 48px;
    line-height: 92%;
    letter-spacing: 0.01em;
    color: #010202;
    max-width: 760px;
}

.fc-intro-right {
    font-family: var(--font-primary);
    font-weight: 300;
    font-size: 30px;
    line-height: 120%;
    letter-spacing: -0.01em;
    color: #696A6E;
    max-width: 340px;
}

.fc-notebook-section {
    width: calc(100% + 120px);
    margin: 0 -60px;
    min-height: 820px;
    background-image: url('./assets/images/backgrounds/NotebookBackground.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    z-index: 2;
}

.fc-features-section {
    width: calc(100% + 120px);
    margin: 0 -60px;
    background: #020607;
    padding: 0 42px 56px;
    position: relative;
    z-index: 2;
}

.fc-feature-row {
    width: 100%;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(340px, 620px);
    align-items: start;
    gap: 40px;
    padding: 36px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.fc-feature-row:last-child {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.fc-feature-title {
    font-family: var(--font-primary);
    font-weight: 300;
    font-size: 48px;
    line-height: 92%;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    color: #FFFFFF;
}

.fc-feature-description {
    font-family: 'Uncut Sans', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 150%;
    letter-spacing: 0;
    color: #E8E8E8;
    max-width: 620px;
}

.fc-notebook-section-2 {
    width: calc(100% + 120px);
    margin: 0 -60px;
    min-height: 820px;
    background-image: url('./assets/images/backgrounds/NotebookBackground2.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    z-index: 2;
}

.fc-cta-section {
    width: calc(100% + 120px);
    margin: 0 -60px;
    min-height: 560px;
    padding: 72px 60px;
    background: linear-gradient(147.88deg, #64B66A -2.47%, #43B577 17.88%, #048B84 46.95%, #063C82 75.16%, #223172 87.49%);
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fc-cta-content {
    width: 100%;
    max-width: 980px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.fc-cta-eyebrow {
    font-family: var(--font-primary);
    font-weight: 300;
    font-size: 24px;
    line-height: 120%;
    letter-spacing: -0.01em;
    text-align: center;
    color: #E8E8E8;
    margin-bottom: 12px;
}

.fc-cta-title {
    font-family: var(--font-primary);
    font-weight: 850;
    font-size: 64px;
    line-height: 100%;
    letter-spacing: -0.02em;
    text-align: center;
    color: #FFFFFF;
    margin-bottom: 28px;
}

.fc-cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 44px;
    padding: 10px 18px;
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 999px;
    font-family: var(--font-primary);
    font-weight: 850;
    font-size: 18px;
    line-height: 120%;
    letter-spacing: 0;
    text-decoration: none;
    color: #FFFFFF;
}

.fc-cta-button img {
    width: 14px;
    height: 14px;
}

/* SEÇÃO CASES 
   z-index: 2 garante que ela fique SOBRE o vídeo fixo
   position: relative é necessário para o z-index funcionar
*/
.cases-section {
    width: 100%;
    background-color: #F5F5F0;
    margin: 0 -60px;
    padding: 80px 60px;
    width: calc(100% + 120px);
    /* Borda quadrada conforme pedido */
    border-radius: 0; 
    color: var(--color-dark-text);
    position: relative;
    z-index: 2;
}

.cases-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.cases-title {
    font-family: var(--font-primary);
    font-weight: 300;
    font-size: 96px;
    line-height: 100%;
    letter-spacing: -0.02em;
    color: var(--color-dark-text);
}

.cases-link {
    font-family: var(--font-primary);
    font-weight: 300;
    font-size: 24px;
    line-height: 120%;
    letter-spacing: -0.01em;
    color: var(--color-dark-text);
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 4px;
}

.cases-description-text {
    font-family: var(--font-primary);
    font-weight: 300;
    font-size: 30px;
    line-height: 120%;
    letter-spacing: -0.01em;
    color: var(--color-gray-text);
    margin-bottom: 80px;
    max-width: 1200px;
}

.cases-grid {
    display: flex;
    justify-content: space-between;
    gap: 40px;
}

/* Animação */
.case-card {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 24px;
    opacity: 0;
    /* Movimento aumentado para 100px para ficar mais perceptível */
    transform: translateY(100px);
    transition: all 1s ease-out;
}

.case-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.case-card.delay-100 {
    transition-delay: 0.2s;
}

.case-image-wrapper {
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: 20px;
    background-color: #ddd;
}

.case-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.case-card:hover .case-image-wrapper img {
    transform: scale(1.05);
}

.case-info {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.case-texts {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.case-name {
    font-family: var(--font-primary);
    font-weight: 300;
    font-size: 24px;
    line-height: 120%;
    letter-spacing: -0.01em;
    color: var(--color-dark-text);
    text-transform: uppercase;
}

.case-category {
    font-family: var(--font-primary);
    font-weight: 300;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: -0.01em;
    color: var(--color-gray-text);
    text-transform: uppercase;
}

/* Botão Redondo */
.case-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 55px;
    height: 55px;
    border: 1px solid var(--color-dark-text);
    /* Deixa o botão perfeitamente redondo */
    border-radius: 50%;
    transition: all 0.3s ease;
}

.case-btn img {
    width: 20px;
    height: auto;
    transition: all 0.3s ease;
}

.case-btn:hover {
    background-color: var(--color-blue-hover);
    border-color: var(--color-blue-hover);
}

.case-btn:hover img {
    filter: brightness(0) invert(1);
}

/* SEÇÃO SERVIÇOS */
.services-section {
    width: calc(100% + 120px);
    margin: 0 -60px;
    padding: 80px 60px 72px;
    color: var(--color-white);
    overflow: hidden;
    isolation: isolate;
    position: relative;
    z-index: 2;
}

.services-section.has-static-fallback {
    background-image: url('./assets/images/backgrounds/Background.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.services-bg-video,
.services-bg-overlay {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.services-bg-video {
    object-fit: cover;
    z-index: 0;
}

.services-bg-overlay {
    background: linear-gradient(
        180deg,
        rgba(7, 11, 18, 0.84) 0%,
        rgba(7, 11, 18, 0.72) 42%,
        rgba(7, 11, 18, 0.84) 100%
    );
    z-index: 1;
}

.services-section > *:not(.services-bg-video):not(.services-bg-overlay) {
    position: relative;
    z-index: 2;
}

.services-title {
    font-family: var(--font-primary);
    font-weight: 300;
    font-size: 96px;
    line-height: 100%;
    letter-spacing: -0.02em;
    color: #ffffff;
    margin-bottom: 24px;
}

.services-list {
    position: relative;
}

.services-list::before {
    content: "";
    position: absolute;
    top: 0;
    left: -60px;
    right: -60px;
    height: 1px;
    background: rgba(255, 255, 255, 0.22);
}

.service-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(260px, 390px);
    align-items: center;
    gap: 32px;
    padding: 18px 0;
    position: relative;
    isolation: isolate;
}

.service-row::before {
    content: "";
    position: absolute;
    left: -60px;
    right: -60px;
    top: 0;
    bottom: 0;
    background: transparent;
    transition: background-color 0.25s ease;
    z-index: -1;
}

.service-row::after {
    content: "";
    position: absolute;
    left: -60px;
    right: -60px;
    bottom: 0;
    height: 1px;
    background: rgba(255, 255, 255, 0.22);
}

.service-row:hover,
.service-row:focus-within {
    background-color: transparent;
}

.service-row:hover::before,
.service-row:focus-within::before {
    background-color: #24315E;
}

.service-main {
    display: flex;
    align-items: center;
    gap: 16px;
    min-width: 0;
}

.service-number {
    width: 36px;
    min-width: 36px;
    height: 23px;
    border: 1px solid #ffffff;
    border-radius: 11.5px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-primary);
    font-weight: 300;
    font-size: 10px;
    line-height: 180%;
    letter-spacing: -0.1em;
    color: #ffffff;
}

.service-name {
    font-family: var(--font-primary);
    font-weight: 300;
    font-size: 48px;
    line-height: 92%;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    color: #ffffff;
}

.service-description {
    font-family: var(--font-primary);
    font-weight: 300;
    font-size: 14px;
    line-height: 165%;
    letter-spacing: -0.01em;
    color: #ffffff;
    justify-self: end;
    max-width: 390px;
}

/* SEÇÃO FARMÁCIA CONECTADA */
.connected-case-section {
    width: calc(100% + 120px);
    margin: 0 -60px;
    min-height: 760px;
    padding: 64px 60px 48px;
    color: #ffffff;
    background-image: linear-gradient(
            180deg,
            rgba(7, 11, 18, 0.25) 0%,
            rgba(7, 11, 18, 0.38) 55%,
            rgba(7, 11, 18, 0.74) 100%
        ),
        url('./assets/images/backgrounds/IpadBackground.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    z-index: 2;
    display: flex;
    align-items: flex-end;
}

.connected-case-content {
    width: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 32px;
}

.connected-case-link {
    width: 100%;
    display: block;
    color: inherit;
    text-decoration: none;
    cursor: pointer;
}

.connected-case-texts {
    max-width: 760px;
}

.connected-case-title {
    font-family: var(--font-primary);
    font-weight: 300;
    font-size: 96px;
    line-height: 100%;
    letter-spacing: -0.02em;
    color: #ffffff;
    margin-bottom: 16px;
}

.connected-case-description {
    font-family: var(--font-primary);
    font-weight: 300;
    font-size: 24px;
    line-height: 120%;
    letter-spacing: -0.01em;
    color: #e8e8e8;
    max-width: 760px;
}

.connected-case-tags {
    width: 386px;
    display: grid;
    grid-template-columns: repeat(2, 187px);
    gap: 12px;
    justify-content: end;
}

.connected-tag {
    width: 187px;
    height: 55px;
    padding: 16px;
    border-radius: 100px;
    background: rgba(255, 255, 255, 0.14);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-family: var(--font-primary);
    font-weight: 300;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: -0.01em;
    color: #ffffff;
    backdrop-filter: blur(6px);
}

/* SEÇÃO DEPOIMENTO */
.testimonials-section {
    width: calc(100% + 120px);
    margin: 0 -60px;
    background: #ffffff;
    color: #303030;
    padding: 64px 60px 80px;
    position: relative;
    z-index: 2;
}

.testimonials-content {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
}

.testimonial-quote {
    max-width: 1120px;
    font-family: var(--font-primary);
    font-weight: 300;
    font-size: 30px;
    line-height: 120%;
    letter-spacing: -0.01em;
    color: #010202;
    margin-bottom: 52px;
}

.testimonial-meta-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 56px;
}

.testimonial-user {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-user img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-user-texts {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.testimonial-user-texts strong {
    font-family: var(--font-primary);
    font-weight: 850;
    font-size: 24px;
    line-height: 100%;
    letter-spacing: -0.01em;
    color: #010202;
}

.testimonial-user-texts span {
    font-family: var(--font-primary);
    font-weight: 300;
    font-size: 14px;
    line-height: 120%;
    color: #9c9c9c;
}

.testimonial-controls {
    display: flex;
    align-items: center;
    gap: 18px;
}

.testimonial-nav-btn {
    width: 44px;
    height: 44px;
    border-radius: 100px;
    border: 1px solid #7f7f7f;
    background: transparent;
    color: #222;
    font-size: 20px;
    line-height: 1;
    cursor: pointer;
    transition: opacity 0.2s ease;
}

.testimonial-nav-btn:hover {
    opacity: 0.85;
}

.testimonial-nav-btn.is-dark {
    background: #000;
    border-color: #000;
    color: #fff;
}

.testimonial-page {
    font-family: var(--font-primary);
    font-weight: 850;
    font-size: 16px;
    line-height: 100%;
    color: #010202;
}

.companies-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
}

.company-card {
    aspect-ratio: 1 / 1;
    background: #fff;
    border: 1px solid #d3d3d3;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.company-card img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 10px;
}

.company-card.placeholder {
    background: #cdcdcf;
    border-color: #cdcdcf;
}

/* SEÇÃO BLOG */
.blog-section {
    width: calc(100% + 120px);
    margin: 0 -60px;
    min-height: 560px;
    background: #ececee;
    padding: 56px 60px;
    position: relative;
    z-index: 2;
}

.blog-header {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 24px;
}

.blog-title {
    font-family: var(--font-primary);
    font-weight: 300;
    font-size: 96px;
    line-height: 100%;
    letter-spacing: -0.02em;
    color: #010202;
}

.blog-link {
    font-family: var(--font-primary);
    font-weight: 300;
    font-size: 24px;
    line-height: 120%;
    letter-spacing: -0.01em;
    color: #010202;
    text-decoration: none;
    border-bottom: 1px solid #010202;
    display: inline-block;
    white-space: nowrap;
}

.blog-grid {
    width: 100%;
    max-width: 1400px;
    margin: 42px auto 0;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 26px 14px;
}

.blog-card {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.blog-card-image {
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 10px;
    overflow: hidden;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.blog-card-info {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 10px;
}

.blog-card-title {
    font-family: var(--font-primary);
    font-weight: 300;
    font-size: 35px;
    line-height: 102%;
    letter-spacing: -0.01em;
    color: #303030;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.blog-card-category {
    font-family: var(--font-primary);
    font-weight: 300;
    font-size: 21px;
    line-height: 120%;
    letter-spacing: -0.01em;
    color: #787878;
}

.blog-card-btn {
    width: 44px;
    min-width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid #7f7f7f;
    color: #303030;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    line-height: 1;
}

/* FOOTER */
.site-footer {
    width: calc(100% + 120px);
    margin: 0 -60px;
    min-height: 610px;
    background: #000000;
    border: 1px solid #4f5655;
    padding: 42px 60px 40px;
    position: relative;
    z-index: 2;
}

.footer-content {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 36px;
}

.footer-left {
    max-width: 760px;
    min-height: 526px;
    display: flex;
    flex-direction: column;
}

.footer-title {
    font-family: var(--font-primary);
    font-weight: 300;
    font-size: 96px;
    line-height: 100%;
    letter-spacing: -0.04em;
    color: #ffffff;
    margin-bottom: 12px;
}

.footer-subtitle {
    max-width: 590px;
    font-family: var(--font-primary);
    font-weight: 300;
    font-size: 32px;
    line-height: 120%;
    letter-spacing: -0.01em;
    color: #ffffff;
    margin-bottom: 30px;
}

.footer-cta {
    width: 313px;
    height: 54px;
    padding: 16px 24px;
    gap: 8px;
    border-radius: 100px;
    border: 1px solid #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    font-family: var(--font-primary);
    font-weight: 850;
    font-size: 18px;
    line-height: 120%;
    letter-spacing: 0;
    color: #ffffff;
    text-decoration: none;
    margin-bottom: auto;
}

.footer-cta img {
    width: 16px;
    height: 16px;
}

.footer-social {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-social-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.footer-social-btn img {
    width: 22px;
    height: 22px;
}

.footer-right {
    width: 460px;
    min-height: 526px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.footer-right-top {
    display: flex;
    justify-content: space-between;
    gap: 26px;
}

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 34px;
}

.footer-nav a {
    font-family: var(--font-primary);
    font-weight: 300;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: -0.01em;
    color: #5c6563;
    text-decoration: none;
}

.footer-info-columns {
    display: flex;
    flex-direction: column;
    gap: 34px;
    text-align: right;
}

.footer-info-block h3 {
    font-family: var(--font-primary);
    font-weight: 850;
    font-size: 20px;
    line-height: 110%;
    letter-spacing: -0.01em;
    color: #ffffff;
    margin-bottom: 10px;
}

.footer-info-block p {
    font-family: var(--font-primary);
    font-weight: 300;
    font-size: 14px;
    line-height: 165%;
    letter-spacing: -0.01em;
    color: #5c6563;
}

.footer-language {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
}

.footer-language-label {
    font-family: var(--font-primary);
    font-weight: 300;
    font-size: 12px;
    line-height: 140%;
    letter-spacing: 0;
    color: #ffffff;
    text-align: right;
}

.footer-language-options {
    display: flex;
    gap: 14px;
}

.footer-language-options button {
    border: 0;
    background: transparent;
    cursor: pointer;
    font-family: var(--font-primary);
    font-weight: 300;
    font-size: 14px;
    line-height: 160%;
    letter-spacing: 0;
    color: #5c6563;
    text-transform: capitalize;
}

.footer-language-options button.is-active {
    font-weight: 850;
}

@media (max-width: 1200px) {
    .hero-title {
        font-size: 100px;
    }
    .hero-description {
        white-space: normal;
    }
    .about-hero-title {
        font-size: 52px;
    }
    .about-hero-description {
        font-size: 24px;
        max-width: 760px;
    }
    .cases-hero-title {
        font-size: 112px;
    }
    .cases-hero-description {
        font-size: 24px;
        max-width: 760px;
    }
    .contato-hero-title {
        font-size: 120px;
        max-width: 880px;
    }
    .contato-form-grid {
        grid-template-columns: 150px minmax(0, 1fr);
        gap: 30px;
    }
    .contato-info-title {
        font-size: 18px;
    }
    .contato-info-description {
        font-size: 13px;
    }
    .contato-form-intro {
        font-size: 52px;
    }
    .contato-field input,
    .contato-field textarea {
        font-size: 24px;
    }
    .cvb-case-title {
        font-size: 56px;
    }
    .cvb-case-description,
    .cvb-case-topics {
        font-size: 18px;
    }
    .cvb-hero-grid {
        gap: 38px;
    }
    .cvb-other-projects-section {
        padding: 64px 20px 48px;
        align-items: stretch;
    }
    .cvb-other-projects-title {
        width: auto;
        font-size: 78px;
        margin-bottom: 24px;
    }
    .cvb-other-projects-grid {
        width: 100%;
        margin: 0;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 28px;
    }
    .cvb-other-project-card {
        width: 100%;
        height: auto;
        aspect-ratio: 438.6667 / 419.0602;
    }
    .about-services-title {
        font-size: 78px;
    }
    .about-services-grid {
        grid-template-columns: minmax(220px, 0.9fr) minmax(0, 1.3fr);
        gap: 34px;
    }
    .about-service-items {
        font-size: 18px;
    }
    .about-metric-card {
        min-height: 260px;
        padding: 24px 18px 18px 12px;
    }
    .about-metric-value {
        font-size: 86px;
    }
    .about-metric-description {
        font-size: 18px;
    }
    .about-team-title {
        font-size: 78px;
    }
    .about-team-grid {
        grid-template-columns: minmax(220px, 0.9fr) minmax(0, 1.3fr);
        gap: 34px;
    }
    .about-team-photo {
        height: auto;
        max-width: 320px;
    }
    .about-team-name,
    .about-team-role {
        font-size: 18px;
    }
    .fc-intro-section {
        padding: 42px 60px 48px;
    }
    .fc-hero-spacer {
        min-height: calc(100vh - 140px);
    }
    .fc-intro-title {
        font-size: 72px;
        max-width: 900px;
        margin-bottom: 28px;
    }
    .fc-intro-left {
        font-size: 36px;
    }
    .fc-intro-right {
        font-size: 24px;
    }
    .fc-intro-grid {
        grid-template-columns: minmax(0, 1fr) 280px;
        gap: 32px;
    }
    .fc-notebook-section {
        min-height: 680px;
    }
    .fc-feature-row {
        grid-template-columns: minmax(0, 1fr) minmax(280px, 500px);
        gap: 30px;
        padding: 28px 0;
    }
    .fc-features-section {
        padding-bottom: 44px;
    }
    .fc-feature-title {
        font-size: 40px;
    }
    .fc-feature-description {
        font-size: 16px;
    }
    .fc-notebook-section-2 {
        min-height: 680px;
    }
    .fc-cta-section {
        min-height: 480px;
        padding: 56px 60px;
    }
    .fc-cta-eyebrow {
        font-size: 20px;
    }
    .fc-cta-title {
        font-size: 52px;
    }
    .cases-title {
        font-size: 72px;
    }
    .services-title {
        font-size: 72px;
    }
    .service-row {
        grid-template-columns: minmax(0, 1fr) minmax(240px, 330px);
    }
    .service-name {
        font-size: 34px;
    }
    .connected-case-section {
        min-height: 660px;
    }
    .connected-case-title {
        font-size: 72px;
    }
    .connected-case-description {
        font-size: 20px;
        max-width: 620px;
    }
    .connected-case-tags {
        width: 334px;
        grid-template-columns: repeat(2, 161px);
    }
    .connected-tag {
        width: 161px;
        font-size: 14px;
    }
    .testimonials-content {
        max-width: 1400px;
    }
    .testimonial-quote {
        font-size: 26px;
        max-width: 960px;
    }
    .blog-title {
        font-size: 72px;
    }
    .blog-link {
        font-size: 20px;
    }
    .blog-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 24px 14px;
    }
    .blog-card-title {
        font-size: 28px;
    }
    .blog-card-category {
        font-size: 18px;
    }
    .footer-title {
        font-size: 72px;
    }
    .footer-subtitle {
        font-size: 26px;
    }
    .footer-right {
        width: 420px;
    }
}

@media (max-width: 768px) {
    .container-full {
        padding: 20px 20px 0;
    }
    .main-header {
        margin-bottom: 40px;
    }
    .btn-schedule {
        display: none;
    }
    .btn-menu {
        font-size: 18px;
    }
    .site-menu-overlay {
        padding: 8px;
    }
    .site-menu-panel {
        width: calc(100vw - 16px);
        min-height: auto;
        padding: 24px 18px;
        gap: 24px;
    }
    .site-menu-label {
        font-size: 20px;
    }
    .site-menu-close {
        font-size: 16px;
        gap: 10px;
    }
    .site-menu-close-icon {
        width: 40px;
        height: 40px;
        font-size: 24px;
    }
    .site-menu-link {
        font-size: 44px;
    }
    .site-menu-contact-link {
        font-size: 22px;
    }
    .hero-title {
        font-size: 48px;
        margin-left: 0;
        text-align: left;
    }
    .hero-desc-wrapper {
        justify-content: flex-start;
    }
    .hero-description {
        text-align: left;
        font-size: 18px;
        white-space: normal;
    }
    .hero-description br {
        display: none;
    }
    .about-hero-section {
        min-height: auto;
        padding: 24px 0 36px;
        gap: 56px;
    }
    .about-hero-title {
        font-size: 44px;
        line-height: 104%;
        letter-spacing: -0.03em;
    }
    .about-hero-description {
        margin-left: 0;
        max-width: 100%;
        font-size: 20px;
        text-align: left;
    }
    .cases-hero-section {
        min-height: auto;
        padding: 28px 0 44px;
        gap: 56px;
    }
    .cases-hero-title {
        font-size: 78px;
    }
    .cases-hero-description {
        margin-left: 0;
        max-width: 100%;
        font-size: 20px;
        text-align: left;
    }
    .cases-white-section {
        margin: 0 -20px;
        width: calc(100% + 40px);
    }
    .blog-coming-section {
        padding: 36px 20px;
    }
    .blog-coming-title {
        font-size: clamp(36px, 13vw, 72px);
    }
    .contato-hero-section {
        min-height: auto;
        padding: 18px 0 54px;
    }
    .contato-hero-title {
        font-size: 72px;
        max-width: 100%;
    }
    .contato-form-section {
        padding: 8px 0 56px;
    }
    .contato-form-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }
    .contato-form-sidebar {
        flex-direction: row;
        gap: 28px;
        padding-top: 0;
    }
    .contato-info-block {
        flex: 1;
        gap: 8px;
    }
    .contato-form-content {
        max-width: 100%;
        margin-left: 0;
    }
    .contato-form-intro {
        font-size: 40px;
        text-align: left;
        margin-bottom: 20px;
    }
    .contato-field {
        gap: 10px;
        margin-bottom: 14px;
    }
    .contato-field input,
    .contato-field textarea {
        font-size: 22px;
    }
    .contato-submit-button {
        margin-top: 12px;
    }
    .cvb-hero-section {
        min-height: auto;
        padding: 26px 0 30px;
    }
    .cvb-hero-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }
    .cvb-case-link {
        font-size: 20px;
        margin-bottom: 10px;
    }
    .cvb-case-title {
        font-size: 48px;
    }
    .cvb-hero-right {
        gap: 24px;
    }
    .cvb-case-description,
    .cvb-case-topics {
        font-size: 18px;
    }
    .cvb-gallery-section {
        margin: 0 -20px;
        width: calc(100% + 40px);
        padding: 10px;
        gap: 10px;
    }
    .cvb-gallery-row {
        min-height: clamp(160px, 22vh, 240px);
    }
    .cvb-gallery-row-double {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    .cvb-gallery-item {
        padding: 10px;
        border-width: 2px;
    }
    .cvb-other-projects-section {
        margin: 0 -20px;
        width: calc(100% + 40px);
        padding: 56px 20px 42px;
        align-items: stretch;
    }
    .cvb-other-projects-title {
        font-size: 56px;
        margin-bottom: 20px;
        width: auto;
    }
    .cvb-other-projects-grid {
        width: 100%;
        margin: 0;
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .cvb-other-project-card {
        width: 100%;
        height: auto;
        min-height: 0;
        aspect-ratio: 438.6667 / 419.0602;
    }
    .cvb-other-project-link {
        font-size: 14px;
    }
    .about-services-section {
        margin: 0 -20px;
        width: calc(100% + 40px);
        padding: 56px 20px 36px;
    }
    .about-services-section::after {
        left: 20px;
        right: 20px;
    }
    .about-services-grid {
        grid-template-columns: 1fr;
        gap: 26px;
    }
    .about-services-title {
        font-size: 56px;
    }
    .about-services-content {
        grid-template-columns: 1fr;
        row-gap: 28px;
    }
    .about-service-heading,
    .about-service-link {
        font-size: 14px;
    }
    .about-service-items {
        font-size: 18px;
        letter-spacing: -0.03em;
    }
    .about-metrics-section {
        margin: 0 -20px;
        width: calc(100% + 40px);
        padding: 34px 20px 38px;
    }
    .about-metrics-section::after {
        left: 20px;
        right: 20px;
    }
    .about-metrics-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }
    .about-metric-card {
        min-height: auto;
        padding: 18px 0;
        gap: 10px;
    }
    .about-metric-card + .about-metric-card {
        border-left: 0;
        border-top: 1px solid #B9B9B9;
    }
    .about-metric-value {
        font-size: 64px;
    }
    .about-metric-description {
        max-width: 100%;
        font-size: 18px;
        letter-spacing: -0.03em;
    }
    .about-team-section {
        margin: 0 -20px;
        width: calc(100% + 40px);
        padding: 34px 20px 34px;
    }
    .about-team-section::after {
        left: 20px;
        right: 20px;
    }
    .about-team-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .about-team-title {
        font-size: 56px;
    }
    .about-team-founders {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .about-team-photo {
        max-width: 100%;
        height: auto;
    }
    .about-team-name,
    .about-team-role {
        font-size: 18px;
        letter-spacing: -0.03em;
    }
    .about-team-list {
        grid-template-columns: 1fr;
        gap: 14px;
    }
    .about-team-column {
        gap: 20px;
    }
    .fc-intro-section {
        margin: 0 -20px;
        width: calc(100% + 40px);
        padding: 28px 20px 36px;
    }
    .fc-hero-spacer {
        min-height: 54vh;
    }
    .fc-intro-title {
        font-size: 46px;
        line-height: 96%;
        letter-spacing: -0.015em;
        margin-bottom: 22px;
    }
    .fc-intro-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .fc-intro-left {
        font-size: 30px;
        line-height: 95%;
        letter-spacing: 0.02em;
    }
    .fc-intro-right {
        font-size: 20px;
        line-height: 122%;
    }
    .fc-intro-left br,
    .fc-intro-right br {
        display: none;
    }
    .fc-notebook-section {
        margin: 0 -20px;
        width: calc(100% + 40px);
        min-height: 420px;
        background-position: 58% center;
    }
    .fc-features-section {
        margin: 0 -20px;
        width: calc(100% + 40px);
        padding: 0 20px 36px;
    }
    .fc-feature-row {
        grid-template-columns: 1fr;
        gap: 14px;
        padding: 24px 0;
    }
    .fc-feature-title {
        font-size: 34px;
        letter-spacing: 0.02em;
    }
    .fc-feature-description {
        font-size: 15px;
        max-width: 100%;
    }
    .fc-notebook-section-2 {
        margin: 0 -20px;
        width: calc(100% + 40px);
        min-height: 420px;
        background-position: 58% center;
    }
    .fc-cta-section {
        margin: 0 -20px;
        width: calc(100% + 40px);
        min-height: 360px;
        padding: 42px 20px;
    }
    .fc-cta-eyebrow {
        font-size: 18px;
        margin-bottom: 10px;
    }
    .fc-cta-title {
        font-size: 38px;
        margin-bottom: 20px;
    }
    .fc-cta-button {
        font-size: 14px;
        min-height: 40px;
        padding: 10px 14px;
    }
    
    .cases-section {
        margin: 0 -20px;
        padding: 60px 20px;
        width: calc(100% + 40px);
    }
    .cases-header {
        flex-direction: column;
        gap: 20px;
    }
    .cases-title {
        font-size: 48px;
    }
    .cases-link {
        font-size: 16px;
        align-self: flex-start;
    }
    .cases-description-text {
        font-size: 18px;
        margin-bottom: 40px;
    }
    
    .cases-description-text br {
        display: none;
    }

    .cases-grid {
        flex-direction: column;
    }

    .services-section {
        margin: 0 -20px;
        padding: 60px 20px 44px;
        width: calc(100% + 40px);
    }
    .services-title {
        font-size: 48px;
        margin-bottom: 20px;
    }
    .service-row {
        grid-template-columns: 1fr;
        gap: 16px;
        padding: 16px 0;
    }
    .services-list::before,
    .service-row::before,
    .service-row::after {
        left: -20px;
        right: -20px;
    }
    .service-main {
        align-items: flex-start;
    }
    .service-name {
        font-size: 28px;
    }
    .service-description {
        justify-self: start;
        max-width: 100%;
        padding-left: 52px;
    }

    .connected-case-section {
        margin: 0 -20px;
        width: calc(100% + 40px);
        min-height: auto;
        padding: 260px 20px 28px;
        background-position: 56% top;
        align-items: flex-end;
    }
    .connected-case-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
    }
    .connected-case-title {
        font-size: 64px;
        margin-bottom: 12px;
    }
    .connected-case-description {
        font-size: 18px;
        max-width: 100%;
    }
    .connected-case-tags {
        width: 100%;
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }
    .connected-tag {
        width: 100%;
        height: 52px;
        padding: 12px;
        font-size: 14px;
    }

    .testimonials-section {
        margin: 0 -20px;
        width: calc(100% + 40px);
        padding: 36px 20px;
    }
    .testimonial-quote {
        font-size: 22px;
        line-height: 118%;
        margin-bottom: 24px;
    }
    .testimonial-meta-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 18px;
        margin-bottom: 28px;
    }
    .testimonial-user img {
        width: 42px;
        height: 42px;
    }
    .testimonial-user-texts strong {
        font-size: 16px;
    }
    .testimonial-user-texts span {
        font-size: 12px;
    }
    .testimonial-controls {
        gap: 12px;
    }
    .testimonial-nav-btn {
        width: 44px;
        height: 44px;
        font-size: 18px;
    }
    .testimonial-page {
        font-size: 14px;
    }
    .companies-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
    }

    .blog-section {
        margin: 0 -20px;
        width: calc(100% + 40px);
        min-height: 360px;
        padding: 36px 20px;
    }
    .blog-header {
        align-items: flex-start;
    }
    .blog-title {
        font-size: 48px;
    }
    .blog-link {
        font-size: 16px;
        line-height: 120%;
    }
    .blog-grid {
        margin-top: 26px;
        grid-template-columns: 1fr;
        gap: 22px;
    }
    .blog-card-title {
        font-size: 22px;
    }
    .blog-card-category {
        font-size: 14px;
    }
    .blog-card-btn {
        width: 38px;
        min-width: 38px;
        height: 38px;
        font-size: 20px;
    }

    .site-footer {
        margin: 0 -20px;
        width: calc(100% + 40px);
        min-height: auto;
        padding: 34px 20px;
    }
    .footer-content {
        flex-direction: column;
    }
    .footer-left,
    .footer-right {
        width: 100%;
        min-height: auto;
    }
    .footer-title {
        font-size: 58px;
    }
    .footer-subtitle {
        font-size: 22px;
        margin-bottom: 22px;
    }
    .footer-cta {
        width: 100%;
        max-width: 313px;
        margin-bottom: 24px;
    }
    .footer-social {
        flex-direction: row;
        margin-bottom: 24px;
    }
    .footer-right-top {
        gap: 18px;
    }
    .footer-nav {
        gap: 18px;
    }
    .footer-info-columns {
        gap: 20px;
    }
}
}
