@font-face {
    font-family: 'Anton';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('fonts/anton-latin-400.woff2') format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400 700;
    font-display: swap;
    src: url('fonts/inter-latin-all.woff2') format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    overflow-y: scroll;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #fcfcfc;
}

.body {
    display: flex;
    flex-direction: column;
    gap: 0;
    align-items: center;
    justify-content: flex-start;
    position: relative;
    width: 100%;
    background: #fcfcfc;
}



.navbar {
    background: rgba(27, 94, 32, 0.97);
    padding: 0 5%;
    display: flex;
    flex-direction: column;
    gap: 0;
    align-items: center;
    justify-content: center;
    align-self: stretch;
    flex-shrink: 0;
    height: 4.5rem;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 0.125rem 1.25rem 0 rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(0.625rem);
}

.body {
    padding-top: 4.5rem;
}

.navbar__inner {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 75rem;
    margin: 0 auto;
    height: 4rem;
    position: relative;
}

.navbar__logo {
    flex-shrink: 0;
    width: 9.5rem;
    height: 3rem;
    object-fit: cover;
    aspect-ratio: 152/48;
}

.navbar__nav {
    display: flex;
    flex-direction: row;
    gap: 1.5rem;
    align-items: center;
    flex-shrink: 0;
}

.navbar__link {
    position: relative;
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-family: 'Anton', sans-serif;
    font-size: 0.875rem;
    line-height: 1.3125rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: opacity 0.3s ease;
}

.navbar__link::after {
    content: '';
    position: absolute;
    bottom: -0.3125rem;
    left: 0;
    width: 0;
    height: 0.125rem;
    background-color: #E5AC31;
    transition: width 0.3s ease;
}

.navbar__link.active-nav::after,
.navbar__link:focus-visible::after {
    width: 100%;
}

.navbar__link:hover {
    opacity: 0.7;
}

.navbar__link:active {
    opacity: 0.5;
}

.navbar__actions {
    display: flex;
    flex-direction: row;
    gap: 0.75rem;
    align-items: center;
    height: 2.2744rem;
}

.navbar__btn-whatsapp {
    background: #25d366;
    border-radius: 0.375rem;
    padding: 0.5rem 2rem;
    display: flex;
    flex-direction: row;
    gap: 0.375rem;
    align-items: center;
    text-decoration: none;
    transition: filter 0.3s ease, transform 0.3s ease;
}

.navbar__btn-whatsapp:hover {
    filter: brightness(1.1);
    transform: scale(1.02);
}

.navbar__btn-whatsapp:active {
    transform: scale(0.97);
}

.navbar__btn-whatsapp-text {
    color: #ffffff;
    font-family: 'Anton', sans-serif;
    font-size: 0.85rem;
    line-height: 1.275rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.navbar__btn-whatsapp-icon {
    flex-shrink: 0;
    width: 1rem;
    height: 1rem;
}

.navbar__btn-proposals {
    background: #e5ac31;
    border-radius: 0.375rem;
    padding: 0.5rem 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
    text-decoration: none;
    text-decoration: none;
}

.navbar__btn-proposals:hover {
    filter: brightness(0.9);
    transform: scale(1.02);
}

.navbar__btn-proposals:active {
    transform: scale(0.97);
}

.navbar__btn-proposals-text {
    color: #1a1a1a;
    font-family: 'Anton', sans-serif;
    font-size: 0.85rem;
    line-height: 1.275rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    width: 100%;
    min-height: 50rem;
    background-image: url('assets/hero-desktop.webp');
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.hero__mobile-img {
    display: none;
    width: 100%;
}

.hero__inner {
    max-width: 75rem;
    width: 100%;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 4.0625rem;
    align-items: flex-start;
}

.hero__content {
    display: flex;
    flex-direction: column;
    gap: 2.6875rem;
    align-items: flex-start;
    width: 42.625rem;
}

.hero__text-group {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: flex-start;
    width: 38.8125rem;
}

.hero__title {
    font-family: 'Anton', sans-serif;
    font-size: 5.5rem;
    line-height: 5.5rem;
    letter-spacing: -0.055rem;
    font-weight: 400;
    text-transform: uppercase;
    text-align: left;
    position: relative;
    margin: 0;
}

.hero__title--green {
    color: #ffffff;
}

.hero__title--gold {
    color: #e5ac31;
}

.hero__description {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: flex-start;
    width: 30rem;
}

.hero__divider {
    background: #e5ac31;
    border-radius: 0.125rem;
    width: 3.75rem;
    height: 0.25rem;
}

.hero__subtitle {
    color: rgba(255, 255, 255, 0.85);
    font-family: 'Inter', sans-serif;
    font-size: 1.05rem;
    line-height: 1.785rem;
    font-weight: 400;
    margin: 0;
    width: 30rem;
}

.hero__actions {
    display: flex;
    flex-direction: row;
    gap: 0.75rem;
    align-items: flex-start;
    height: 3.75rem;
}

.hero__btn-primary {
    background: #e5ac31;
    border-radius: 0.375rem;
    padding: 1rem 1.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 18rem;
    height: 3.75rem;
    box-shadow: 0 0.25rem 1.25rem 0 rgba(229, 172, 49, 0.35);
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
}

.hero__btn-primary:hover {
    filter: brightness(1.1);
    transform: scale(1.02);
}

.hero__btn-primary:active {
    transform: scale(0.98);
}

.hero__btn-primary-text {
    color: #1a1a1a;
    font-family: 'Anton', sans-serif;
    font-size: 1rem;
    line-height: 1.5rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.hero__btn-secondary {
    border-radius: 0.375rem;
    background: #ffffff;
    padding: 1rem 1.75rem;
    display: flex;
    flex-direction: row;
    gap: 0.5rem;
    align-items: center;
    justify-content: center;
    width: 18rem;
    height: 3.75rem;
    cursor: pointer;
    text-decoration: none;
    border: none;
    transition: all 0.3s ease;
}

.hero__btn-secondary:hover {
    filter: brightness(0.9);
    transform: scale(1.02);
}

.hero__btn-secondary:active {
    transform: scale(0.98);
}

.hero__btn-secondary-text {
    color: #1b5e20;
    font-family: 'Anton', sans-serif;
    font-size: 1rem;
    line-height: 1.5rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.hero__btn-icon {
    flex-shrink: 0;
    width: 1.0938rem;
    height: 0.845rem;
    overflow: visible;
    filter: brightness(0) saturate(100%) invert(21%) sepia(97%) saturate(466%) hue-rotate(84deg) brightness(95%) contrast(96%);
}

.hero__badges {
    display: flex;
    flex-direction: row;
    gap: 1rem;
    align-items: center;
}

.hero__badge {
    display: flex;
    flex-direction: row;
    gap: 0.375rem;
    align-items: center;
    height: 1.2744rem;
}

.hero__badge-icon {
    flex-shrink: 0;
    width: 1.5rem;
    height: 1.5rem;
    overflow: visible;
    filter: brightness(0) invert(1);
}

.hero__badge:first-child .hero__badge-icon {
    width: 1.6231rem;
}

.hero__badge-text {
    color: rgba(255, 255, 255, 0.7);
    font-family: 'Inter', sans-serif;
    font-size: 0.8125rem;
    line-height: 1.275rem;
    font-weight: 400;
}

/* ===== SECTION: HISTÓRIA ===== */
.section-story {
    background: #f5f5f0;
    padding: 0 7.9375rem;
    display: flex;
    width: 100%;
    flex-direction: column;
    align-items: center;
}

.section-mission__inner,
.section-proposals__inner,
.section-projects__inner,
.section-story__inner {
    padding: 7.5rem 0;
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 75rem;
    margin: 0 auto;
    min-width: 0;
}

.section-story__layout {
    display: flex;
    flex-direction: row;
    gap: 5rem;
    align-items: stretch;
}

.section-story__image-wrapper {
    flex: 1;
    border-radius: 0.375rem;
    overflow: hidden;
}

.section-story__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.section-story__content {
    display: flex;
    flex-direction: column;
    gap: 1.9375rem;
    align-items: flex-start;
    width: 37.375rem;
}

.section-story__tagline {
    text-align: left;
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    line-height: 1.2rem;
    letter-spacing: 0.0963rem;
    font-weight: 700;
    text-transform: uppercase;
    position: relative;
}

.section-story__tagline--green {
    color: #1b5e20;
}

.section-story__tagline--gold {
    color: #e5ac31;
}

.section-story__heading {
    align-self: stretch;
}

.section-story__heading-text {
    text-align: left;
    font-family: 'Anton', sans-serif;
    font-size: 3rem;
    line-height: 3.3rem;
    font-weight: 400;
    text-transform: uppercase;
}

.section-story__heading--green {
    color: #1b5e20;
}

.section-story__heading--black {
    color: #1a1a1a;
}

.section-story__quote {
    border-left: 0.25rem solid #e5ac31;
    padding: 0 0 0 1.5rem;
    display: flex;
    flex-direction: column;
    align-self: stretch;
}

.section-story__quote-text {
    color: #2d2d2d;
    text-align: left;
    font-family: 'Inter', sans-serif;
    font-size: 1.15rem;
    line-height: 2.07rem;
    font-weight: 400;
    font-style: italic;
}

.section-story__body {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
    align-self: stretch;
}

.section-story__body-p1 {
    text-align: left;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    line-height: 160%;
    font-weight: 400;
    align-self: stretch;
}

.section-story__body-p1--normal {
    color: #333333;
    font-family: 'Inter', sans-serif;
}

.section-story__body-p1--bold {
    color: #1b5e20;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
}

.section-story__body-p2 {
    color: #333333;
    text-align: left;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    line-height: 160%;
    font-weight: 400;
    align-self: stretch;
}

.section-story__body-p3 {
    text-align: left;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    line-height: 160%;
    font-weight: 400;
    align-self: stretch;
}

.section-story__body-p3--normal {
    color: #333333;
    font-family: 'Inter', sans-serif;
}

.section-story__body-p3--bold {
    color: #1b5e20;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
}

.section-story__body-p4 {
    color: #333333;
    text-align: left;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    line-height: 160%;
    font-weight: 400;
    align-self: stretch;
}

.section-story__body-p4--normal {
    font-family: 'Inter', sans-serif;
}

.section-story__body-p4--bold {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
}

.section-story__body-p5 {
    color: #333333;
    text-align: left;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    line-height: 160%;
    font-weight: 400;
    align-self: stretch;
}

.section-story__cta {
    border-radius: 0.375rem;
    border: 0.125rem solid #1b5e20;
    padding: 1rem 1.75rem;
    display: flex;
    flex-direction: row;
    gap: 0.5rem;
    align-items: center;
    justify-content: center;
    width: 18.62rem;
    height: 3.75rem;
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
}

.section-story__cta:hover {
    background: #1b5e20;
    border-color: #1b5e20;
    transform: scale(1.02);
}

.section-story__cta:hover .section-story__cta-text {
    color: #ffffff;
}

.section-story__cta:hover .section-story__cta-icon {
    filter: brightness(0) invert(1);
}

.section-story__cta:active {
    transform: scale(0.97);
}

.section-story__cta-text {
    color: #1b5e20;
    font-family: 'Anton', sans-serif;
    font-size: 1rem;
    line-height: 1.5rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.section-story__cta-icon {
    flex-shrink: 0;
    width: 1.0938rem;
    height: 0.845rem;
    overflow: visible;
}

/* ===== SECTION: MISSÃO ===== */
.section-mission {
    background: #fcfcfc;
    padding: 0 7.9375rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.section-mission__content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    align-items: flex-start;
    align-self: stretch;
}

.section-mission__header {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    align-self: stretch;
}

.section-mission__tagline {
    display: flex;
    flex-direction: row;
    gap: 0.75rem;
    align-items: center;
    align-self: stretch;
    height: 2.6994rem;
}

.section-mission__tagline-text {
    text-align: left;
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    line-height: 1.2rem;
    letter-spacing: 0.0963rem;
    font-weight: 700;
    text-transform: uppercase;
}

.section-mission__tagline--green {
    color: #1b5e20;
}

.section-mission__tagline--gold {
    color: #e5ac31;
}

.section-mission__heading {
    align-self: stretch;
}

.section-mission__heading-text {
    text-align: left;
    font-family: 'Anton', sans-serif;
    font-size: 3rem;
    line-height: 3.3rem;
    font-weight: 400;
    text-transform: uppercase;
}

.section-mission__heading--black {
    color: #1a1a1a;
}

.section-mission__heading--green {
    color: #1b5e20;
}

.section-mission__intro {
    width: 36.25rem;
}

.section-mission__intro-text {
    color: #666666;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    line-height: 1.7rem;
    font-weight: 400;
}

.section-mission__stats {
    display: flex;
    flex-direction: row;
    gap: 1.25rem;
    align-self: stretch;
}

.section-mission__stat {
    border-radius: 0.375rem;
    display: flex;
    flex-direction: column;
    flex: 1;
    position: relative;
    overflow: hidden;
    color: #ffffff;
    min-height: 18rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.section-mission__stat:hover {
    transform: translateY(-0.25rem);
    box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.15);
}

.section-mission__stat:active {
    transform: scale(0.98);
}

.section-mission__stat::before {
    content: '';
    flex: 1;
}

.section-mission__stat-data {
    display: flex;
    flex-direction: column;
    gap: 0.4375rem;
    align-self: stretch;
    padding: 0 1.5rem 2rem;
}

.section-mission__stat-number {
    color: inherit;
    font-family: 'Anton', sans-serif;
    font-size: 2.8rem;
    line-height: 2.8rem;
    font-weight: 400;
    text-transform: uppercase;
}

.section-mission__stat-label {
    color: inherit;
    font-family: 'Anton', sans-serif;
    font-size: 1.5rem;
    line-height: 100%;
    font-weight: 400;
    text-transform: uppercase;
}

.section-mission__stat-desc {
    align-self: stretch;
}

.section-mission__stat-desc-text {
    color: inherit;
    font-family: 'Inter', sans-serif;
    font-size: 0.88rem;
    line-height: 1.4081rem;
    font-weight: 400;
}

.section-mission__cta-wrapper {
    background: #1b5e20;
    border-radius: 0.375rem;
    padding: 3.5rem;
    display: flex;
    flex-direction: column;
    align-self: stretch;
    height: auto;
    overflow: hidden;
}

.section-mission__cta {
    display: flex;
    flex-direction: row;
    gap: 2.5rem;
    align-items: center;
    align-self: stretch;
}

.section-mission__cta-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    flex: 1;
    max-width: 50%;
}

.section-mission__cta-title {
    align-self: stretch;
    height: auto;
}

.section-mission__cta-heading {
    color: #e5ac31;
    font-family: 'Anton', sans-serif;
    font-size: 2rem;
    line-height: 2.4rem;
    font-weight: 400;
    text-transform: uppercase;
}

.section-mission__cta-text {
    align-self: stretch;
    height: auto;
}

.section-mission__cta-description {
    color: rgba(255, 255, 255, 0.85);
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    line-height: 1.8rem;
    font-weight: 400;
}

.section-mission__values {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    flex: 1;
}

.section-mission__value {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 0.25rem;
    border: 0.0625rem solid rgba(255, 255, 255, 0.1);
    padding: 1.25rem;
    display: flex;
    flex-direction: row;
    gap: 1rem;
    align-items: center;
    align-self: stretch;
}

.section-mission__value-icon {
    width: 3rem;
    height: 3rem;
    aspect-ratio: 1;
    filter: brightness(0) invert(1);
}

.section-mission__value-body {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.section-mission__value-title {
    align-self: stretch;
    height: auto;
}

.section-mission__value-title-text {
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    line-height: 1.5rem;
    font-weight: 700;
}

.section-mission__value-desc {
    align-self: stretch;
}

.section-mission__value-desc-text {
    color: rgba(255, 255, 255, 0.75);
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    line-height: 1.35rem;
    font-weight: 400;
}

/* ===== SECTION: PROPOSTAS ===== */
.section-proposals {
    background: #e8f5e9;
    padding: 0 7.9375rem;
    display: flex;
    width: 100%;
    flex-direction: column;
    align-items: center;
}

.section-proposals__content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    align-items: flex-start;
    align-self: stretch;
}

.section-proposals__header {
    display: flex;
    flex-direction: column;
    gap: 1.125rem;
    align-self: stretch;
}

.section-proposals__tagline {
    color: #1b5e20;
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    line-height: 1.2rem;
    letter-spacing: 0.0963rem;
    font-weight: 700;
    text-transform: uppercase;
    align-self: stretch;
}

.section-proposals__heading {
    align-self: stretch;
}

.section-proposals__heading-text {
    font-family: 'Anton', sans-serif;
    font-size: 3rem;
    line-height: 3.3rem;
    font-weight: 400;
    text-transform: uppercase;
}

.section-proposals__heading--black {
    color: #1a1a1a;
}

.section-proposals__heading--green {
    color: #1b5e20;
}

.section-proposals__intro {
    width: 40rem;
}

.section-proposals__intro-text {
    color: #444444;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    line-height: 1.7rem;
    font-weight: 400;
    width: 40rem;
}

.section-proposals__accordion {
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
    align-self: stretch;
    height: auto;
}

.section-projects__tagline {
    color: #ffffff;
    text-align: left;
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    line-height: 1.2rem;
    letter-spacing: 0.0963rem;
    font-weight: 700;
    text-transform: uppercase;
    position: relative;
    align-self: stretch;
}

.section-projects__heading--black {
    color: #ffffff;
}

.section-projects__heading--green {
    color: #ffffff;
}

.section-projects__intro-text {
    color: #e0f0e0;
    text-align: left;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    line-height: 1.7rem;
    font-weight: 400;
    width: 32.5rem;
}

/* ===== SECTION: PROJETOS ===== */
.section-projects__content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    align-items: flex-start;
    align-self: stretch;
}

.section-projects__header {
    display: flex;
    flex-direction: column;
    gap: 1.125rem;
    align-self: stretch;
}

.section-projects__heading {
    align-self: stretch;
    height: auto;
}

.section-projects__heading-text {
    font-family: 'Anton', sans-serif;
    font-size: 3rem;
    line-height: 3.3rem;
    font-weight: 400;
    text-transform: uppercase;
}

.section-projects__intro {
    width: 40rem;
}

.section-projects__list {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    align-self: stretch;
}

.section-projects__row {
    display: flex;
    flex-direction: row;
    gap: 1.25rem;
    align-items: stretch;
    align-self: stretch;
}

.section-projects__card {
    background: #ffffff;
    border-radius: 0.375rem;
    border: 0.0625rem solid rgba(0, 0, 0, 0.1);
    flex: 1;
    display: flex;
    flex-direction: column;
    height: auto;
    min-height: auto;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.section-projects__card:hover {
    transform: translateY(-0.3125rem);
    box-shadow: 0 0.625rem 1.875rem rgba(0, 0, 0, 0.1);
}

.section-projects__card:active {
    transform: scale(0.98);
}

.section-projects__card-image {
    width: 100%;
    height: 11.25rem;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
}

.section-projects__badge {
    font-family: 'Inter', sans-serif;
    font-size: 0.7rem;
    line-height: 1.05rem;
    letter-spacing: 0.0419rem;
    font-weight: 700;
    text-transform: uppercase;
    padding: 0.25rem 0.625rem;
    border-radius: 0.375rem;
    margin: 0.75rem;
    display: inline-block;
}

.section-projects__badge--gold {
    background: #e5ac31;
    color: #1a1a1a;
}

.section-projects__badge--green {
    background: #1b5e20;
    color: #ffffff;
}

.section-projects__card-header {
    display: flex;
    flex-direction: row;
    gap: 0.5rem;
    align-items: center;
    padding: 1.25rem 1.25rem 0;
}

.section-projects__card-title {
    font-family: 'Anton', sans-serif;
    font-size: 0.9rem;
    line-height: 1.08rem;
    font-weight: 400;
    text-transform: uppercase;
    color: #1a1a1a;
}

.section-projects__card-desc {
    padding: 0.5rem 1.25rem 0;
    flex: 1;
    color: #555555;
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    line-height: 1.36rem;
    font-weight: 400;
}

.section-projects__card-result {
    border-top: 0.0625rem solid #f0f0f0;
    padding: 0.875rem 1.25rem;
    display: flex;
    flex-direction: row;
    gap: 0.5rem;
    align-items: flex-start;
}

.section-projects__card-check {
    width: 1.5rem;
    height: 1.5rem;
    flex-shrink: 0;
    aspect-ratio: 1;
    filter: brightness(0) saturate(100%) invert(24%) sepia(78%) saturate(550%) hue-rotate(88deg) brightness(95%) contrast(95%);
}

.section-projects__card-result-text {
    color: #1b5e20;
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    line-height: 1.12rem;
    font-weight: 600;
    flex: 1;
}

/* Remove hardcoded paddings from story sections so backgrounds stretch full */
.section-story,
.section-projects,
.section-contact {
    padding: 0;
}

.section-projects {
    background: #1b5e20;
    display: flex;
    width: 100%;
    flex-direction: column;
    align-items: center;
}

.section-education {
    background: #ffffff;
    display: flex;
    width: 100%;
    flex-direction: column;
    align-items: center;
}

.section-education__inner {
    padding: 7.5rem 0;
    display: flex;
    flex-direction: column;
    gap: 5rem;
    align-items: flex-start;
    justify-content: flex-start;
    flex-shrink: 0;
    width: 100%;
    max-width: 75rem;
    margin: 0 auto;
    position: relative;
}

.section-education__content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    align-self: stretch;
}

.section-education__header {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
    justify-content: flex-start;
    flex-shrink: 0;
    width: 100%;
}

.section-education__heading {
    align-self: stretch;
}

.section-education__tagline {
    color: #1b5e20;
    text-align: left;
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    line-height: 1.2rem;
    letter-spacing: 0.0963rem;
    font-weight: 700;
    text-transform: uppercase;
    position: relative;
    align-self: stretch;
}

.section-education__heading-text {
    text-align: left;
    font-family: 'Anton', sans-serif;
    font-size: 3rem;
    line-height: 3.3rem;
    font-weight: 400;
    text-transform: uppercase;
}

.section-education__heading--black {
    color: #1a1a1a;
}

.section-education__heading--green {
    color: #1b5e20;
}

.section-education__row {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    align-items: flex-start;
    justify-content: flex-start;
    align-self: stretch;
    flex-shrink: 0;
    position: relative;
}

.section-education__list {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0.75rem;
    align-items: stretch;
    justify-content: flex-start;
    align-self: stretch;
    flex-shrink: 0;
    height: auto;
    position: relative;
}

.section-education__list--areas {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0.75rem;
}

.section-education__area-title {
    color: inherit;
    text-align: left;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    line-height: 1.425rem;
    font-weight: 500;
}

.section-education__subheading {
    align-self: stretch;
}

.section-education__subheading-text {
    color: #1b5e20;
    text-align: left;
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    line-height: 1.2rem;
    letter-spacing: 0.0963rem;
    font-weight: 700;
    text-transform: uppercase;
}

.section-education__item {
    background: #e8f5e9;
    border-radius: 0.375rem;
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    align-items: flex-start;
    justify-content: flex-start;
    flex: 1;
    min-width: 14rem;
    height: auto;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.section-education__item:hover {
    transform: translateY(-0.25rem);
    box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.1);
}

.section-education__item:active {
    transform: scale(0.98);
}

.section-education__item--area {
    background: transparent;
    padding: 0;
    justify-content: flex-end;
    color: #ffffff;
    overflow: hidden;
    min-height: 18rem;
    border-radius: 0.375rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.section-education__item--area:hover {
    transform: translateY(-0.25rem);
    box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.2);
}

.section-education__item--area:active {
    transform: scale(0.98);
}

.section-education__item--area::before {
    content: '';
    flex: 1;
}

.section-education__item--area .section-education__item-body {
    flex: none;
    width: 100%;
    padding: 0 1.5rem 2rem;
    color: #ffffff;
}

.section-education__item-icon {
    background: #1b5e20;
    border-radius: 0.25rem;
    display: flex;
    flex-direction: row;
    gap: 0;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 3rem;
    height: 3rem;
    position: relative;
    overflow: visible;
}

.section-education__item-body {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
}

.section-education__item-title {
    align-self: stretch;
    height: auto;
}

.section-education__item-title-text {
    color: #1a1a1a;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    line-height: 1.425rem;
    font-weight: 700;
}

.section-education__item-desc {
    align-self: stretch;
}

.section-education__item-desc-text {
    color: #555555;
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    line-height: 1.275rem;
    font-weight: 400;
}

.section-education__media {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    align-items: stretch;
    align-self: stretch;
    width: 100%;
}

.section-education__media-header {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
    justify-content: flex-start;
    align-self: stretch;
    flex-shrink: 0;
}

.section-education__media-tagline {
    color: #1b5e20;
    text-align: left;
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    line-height: 1.2rem;
    letter-spacing: 0.0963rem;
    font-weight: 700;
    text-transform: uppercase;
    position: relative;
    align-self: stretch;
}

.section-education__media-heading {
    align-self: stretch;
}

.section-education__media-heading-text {
    text-align: left;
    font-family: 'Anton', sans-serif;
    font-size: 3rem;
    line-height: 3.3rem;
    font-weight: 400;
    text-transform: uppercase;
}

.section-education__media--black {
    color: #1a1a1a;
}

.section-education__media--green {
    color: #1b5e20;
}

.section-education__media-grid {
    display: flex;
    flex-direction: row;
    overflow: hidden;
    gap: 0.75rem;
    align-items: stretch;
    align-self: stretch;
    width: 100%;
    flex-shrink: 0;
    position: relative;
    scroll-behavior: smooth;
}

.section-education__media-nav {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    align-self: center;
    margin-top: 1rem;
}

.section-education__media-nav-btn {
    background: #1b5e20;
    border: none;
    border-radius: 0.25rem;
    color: #ffffff;
    width: 2rem;
    height: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: opacity 0.2s;
}

.section-education__media-nav-btn:hover {
    opacity: 0.8;
}

.section-education__media-dots {
    display: flex;
    flex-direction: row;
    gap: 0.5rem;
}

.section-education__media-dot {
    width: 0.625rem;
    height: 0.625rem;
    border-radius: 50%;
    background: #cccccc;
    cursor: pointer;
    transition: background 0.2s;
}

.section-education__media-dot.is-active {
    background: #1b5e20;
}

.section-education__media-card {
    background: #f5f5f0;
    border-radius: 0.375rem;
    border-left: 0.25rem solid #e5ac31;
    padding: 1.25rem 1.5rem;
    height: auto;
    position: relative;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0.5rem;
    align-items: center;
    flex: 0 0 calc(50% - 0.375rem);
}

.section-education__media-badge {
    background: #1b5e20;
    color: #ffffff;
    border-radius: 0.375rem;
    padding: 0.1875rem 0.625rem;
    font-family: 'Inter', sans-serif;
    font-size: 0.7rem;
    line-height: 1.05rem;
    letter-spacing: 0.035rem;
    font-weight: 700;
    text-transform: uppercase;
}

.section-education__media-channel {
    color: #1a1a1a;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    line-height: 1.35rem;
    font-weight: 700;
}

.section-education__media-status {
    color: #999999;
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    line-height: 1.2rem;
    font-weight: 400;
    margin-left: auto;
}

.section-education__media-desc {
    width: 100%;
    color: #444444;
    font-family: 'Inter', sans-serif;
    font-size: 0.88rem;
    line-height: 1.32rem;
    font-weight: 400;
}

.section-education__media-link {
    opacity: 0.6;
}

.section-education__media-link .section-education__media-link-text {
    color: #1b5e20;
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    line-height: 1.2rem;
    font-weight: 600;
}

.section-education__media-footer {
    background: #1b5e20;
    border-radius: 0.375rem;
    padding: 1.5rem 1.5rem 0 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    align-items: center;
    justify-content: flex-start;
    align-self: stretch;
    flex-shrink: 0;
    height: 6.59rem;
    position: relative;
}

.section-education__media-footer-text {
    color: #e5ac31;
    text-align: left;
    font-family: 'Anton', sans-serif;
    font-size: 1.1rem;
    line-height: 1.65rem;
    font-weight: 400;
    text-transform: uppercase;
    position: relative;
}

.section-education__media-footer-slogan {
    color: rgba(255, 255, 255, 0.8);
    text-align: left;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    line-height: 1.44rem;
    font-weight: 400;
    position: relative;
}

.section-video {
    background: #0d3b14;
    display: flex;
    flex-direction: column;
    gap: 0;
    align-items: center;
    justify-content: flex-start;
    align-self: stretch;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
}

.section-video__decoration {
    background: radial-gradient(closest-side,
            rgba(229, 172, 49, 0.07) 0%,
            rgba(0, 0, 0, 0) 50%),
        radial-gradient(closest-side,
            rgba(27, 94, 32, 0.5) 0%,
            rgba(0, 0, 0, 0) 50%);
    flex-shrink: 0;
    width: 100%;
    height: 51.5rem;
    position: absolute;
    left: 50%;
    translate: -50% -50%;
    top: 50%;
}

.section-video__inner {
    padding: 7.5rem 0;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 100%;
    max-width: 75rem;
    margin: 0 auto;
    position: relative;
}

.section-video__heading {
    color: #ffffff;
    text-align: center;
    font-family: 'Anton', sans-serif;
    font-size: 3rem;
    line-height: 3.3rem;
    font-weight: 400;
    text-transform: uppercase;
    position: relative;
}

.section-video__subtitle {
    color: rgba(255, 255, 255, 0.65);
    text-align: center;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    line-height: 1.7rem;
    font-weight: 400;
    position: relative;
}

.section-video__player {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 0.375rem;
    border: 0.125rem solid rgba(229, 172, 49, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 56rem;
    aspect-ratio: 16 / 9;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.section-video__icon {
    background: #e5ac31;
    border-radius: 0.375rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 5rem;
    height: 5rem;
    position: relative;
    box-shadow: 0 0 2.5rem 0 rgba(229, 172, 49, 0.5);
    animation: pulse-play 2s ease-in-out infinite;
}

@keyframes pulse-play {

    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 0 2.5rem 0 rgba(229, 172, 49, 0.5);
    }

    50% {
        transform: scale(1.1);
        box-shadow: 0 0 3.75rem 0 rgba(229, 172, 49, 0.7);
    }
}

.section-video__play-icon {
    width: 1.75rem;
    height: 1.75rem;
    position: relative;
    overflow: visible;
}

.section-video__cta-text {
    text-align: center;
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    line-height: 1.275rem;
    font-weight: 400;
    position: relative;
}

.section-video__cta-neutral {
    color: rgba(255, 255, 255, 0.5);
    font-family: 'Inter', sans-serif;
}

.section-video__cta-highlight {
    color: #e5ac31;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
}

.section-contact__inner {
    padding: 7.5rem 0;
    display: flex;
    flex-direction: row;
    gap: 5rem;
    align-items: center;
    justify-content: flex-start;
    flex-shrink: 0;
    width: 100%;
    max-width: 75rem;
    margin: 0 auto;
    position: relative;
}

.section-contact__content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
    justify-content: flex-start;
    align-self: stretch;
    flex-shrink: 0;
    position: relative;
}

.section-contact__badge-wrapper {
    flex-shrink: 0;
    width: 13.0506rem;
}

.section-contact__tagline {
    color: #1b5e20;
    text-align: left;
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    line-height: 1.2rem;
    letter-spacing: 0.0963rem;
    font-weight: 700;
    text-transform: uppercase;
}

.section-contact__heading {
    align-self: stretch;
    flex-shrink: 0;
}

.section-contact__heading-text {
    text-align: left;
    font-family: 'Anton', sans-serif;
    font-size: 3rem;
    line-height: 3.3rem;
    font-weight: 400;
    text-transform: uppercase;
}

.section-contact__heading--black {
    color: #1a1a1a;
}

.section-contact__heading--green {
    color: #1b5e20;
}

.section-contact__description {
    flex-shrink: 0;
    width: 35rem;
}

.section-contact__description-text {
    color: #555555;
    text-align: left;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    line-height: 1.7rem;
    font-weight: 400;
    width: 35rem;
}

.section-contact__actions {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
}

.section-contact__whatsapp-btn {
    background: #25d366;
    border-radius: 0.375rem;
    padding: 1rem 2rem;
    display: flex;
    flex-direction: row;
    gap: 1rem;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    height: 5rem;
    position: relative;
    box-shadow: 0 0.25rem 1.25rem 0 rgba(37, 211, 102, 0.35);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    text-decoration: none;
}

.section-contact__whatsapp-btn:hover {
    transform: scale(1.02);
    box-shadow: 0 0.375rem 1.5rem 0 rgba(37, 211, 102, 0.45);
}

.section-contact__whatsapp-btn:active {
    transform: scale(0.98);
}

.section-contact__whatsapp-icon {
    flex-shrink: 0;
    width: 1.5rem;
    height: 1.5rem;
    position: relative;
    overflow: visible;
}

.section-contact__whatsapp-text {
    color: #ffffff;
    text-align: left;
    font-family: 'Anton', sans-serif;
    font-size: 1.05rem;
    line-height: 1.575rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    position: relative;
}

.section-contact__social {
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
}

.section-contact__social-inner {
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
    align-items: center;
    justify-content: flex-start;
    flex-shrink: 0;
    position: relative;
}

.section-contact__social-icons {
    display: flex;
    flex-direction: row;
    gap: 1rem;
    align-items: flex-start;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
}

.section-contact__social-link {
    background: #ffffff;
    border-radius: 0.375rem;
    padding: 1.5rem 1rem 1.5rem 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 5rem;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.section-contact__social-link:hover {
    transform: translateY(-0.25rem);
    box-shadow: 0 0.375rem 1.25rem rgba(0, 0, 0, 0.1);
}

.section-contact__social-link:active {
    transform: scale(0.97);
}

.section-contact__social-icon,
.section-footer__social-icon {
    display: flex;
    flex-direction: column;
    gap: 0;
    align-items: flex-start;
    justify-content: flex-start;
    flex-shrink: 0;
    width: 1.75rem;
    height: 1.75rem;
    position: relative;
}

.section-contact__social-icon-img {
    align-self: stretch;
    flex-shrink: 0;
    height: 1.75rem;
    position: relative;
    overflow: visible;
}

.section-cta {
    background: #1b5e20;
    padding: 0 7.9375rem;
    display: flex;
    flex-direction: column;
    gap: 0;
    align-items: center;
    justify-content: flex-start;
    align-self: stretch;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
}

.section-cta__inner {
    padding: 3.75rem 0;
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
    align-items: flex-start;
    justify-content: flex-start;
    flex-shrink: 0;
    width: 100%;
    max-width: 75rem;
    margin: 0 auto;
    position: relative;
}

.section-cta__content {
    display: flex;
    flex-direction: column;
    gap: 1.8125rem;
    align-items: center;
    justify-content: flex-start;
    align-self: stretch;
    flex-shrink: 0;
    position: relative;
}

.section-cta__heading {
    text-align: center;
    font-family: 'Anton', sans-serif;
    font-size: 3rem;
    line-height: 3.3rem;
    font-weight: 400;
    text-transform: uppercase;
    position: relative;
}

.section-cta__heading--white {
    color: #ffffff;
}

.section-cta__heading--gold {
    color: #e5ac31;
}

.section-cta__description {
    flex-shrink: 0;
    width: 35rem;
}

.section-cta__description-text {
    color: rgba(255, 255, 255, 0.8);
    text-align: center;
    font-family: 'Inter', sans-serif;
    font-size: 1.05rem;
    line-height: 1.89rem;
    font-weight: 400;
    width: 35rem;
}

.section-cta__btn {
    background: #e5ac31;
    border-radius: 0.375rem;
    padding: 1rem 2rem 1rem 2rem;
    display: flex;
    flex-direction: row;
    gap: 1rem;
    align-items: flex-start;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
    box-shadow: 0 0.25rem 1.5rem 0 rgba(229, 172, 49, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    text-decoration: none;
}

.section-cta__btn:hover {
    transform: scale(1.03);
    box-shadow: 0 0.375rem 2rem 0 rgba(229, 172, 49, 0.5);
}

.section-cta__btn:active {
    transform: scale(0.97);
}

.section-cta__btn-icon {
    flex-shrink: 0;
    width: 1.5rem;
    height: 1.5rem;
    position: relative;
    overflow: visible;
}

.section-cta__btn-text {
    color: #1a1a1a;
    text-align: center;
    font-family: 'Anton', sans-serif;
    font-size: 1.1rem;
    line-height: 1.65rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    position: relative;
}

.section-cta__slogan {
    color: rgba(255, 255, 255, 0.7);
    text-align: center;
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    line-height: 1.275rem;
    font-weight: 400;
    font-style: italic;
    position: relative;
}

.section-cta__decoration {
    position: absolute;
    width: 0;
    height: 0;
    overflow: visible;
}

.section-cta__circle {
    border-radius: 18.75rem;
    border-style: solid;
    border-color: rgba(229, 172, 49, 0.1);
    border-width: 0.0625rem;
    padding: 0.0625rem;
    width: 37.5rem;
    height: 37.5rem;
    position: absolute;
    left: 41.25rem;
    top: -18.75rem;
}

.section-cta__circle2 {
    border-radius: 12.5rem;
    border-style: solid;
    border-color: rgba(229, 172, 49, 0.12);
    border-width: 0.0625rem;
    padding: 0.0625rem;
    width: 25rem;
    height: 25rem;
    position: absolute;
    left: 47.5rem;
    top: -16.25rem;
}

.section-footer {
    background: #0d3b14;
    padding: 3rem 0;
    display: flex;
    flex-direction: column;
    gap: 0;
    align-items: center;
    justify-content: flex-start;
    align-self: stretch;
    flex-shrink: 0;
    height: auto;
}

.section-footer__inner {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    align-items: flex-start;
    justify-content: flex-start;
    width: 100%;
    max-width: 75rem;
    margin: 0 auto;
    min-width: 0;
    flex-shrink: 0;
}

.section-footer__layout {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
    align-self: stretch;
    flex-shrink: 0;
    row-gap: 2rem;
}

.section-footer__brand {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    align-items: flex-start;
    justify-content: flex-start;
    flex-shrink: 0;
    width: 26.6663rem;
}

.section-footer__logo-img {
    flex-shrink: 0;
    width: 10.375rem;
    height: 3.3125rem;
    position: relative;
    object-fit: cover;
    aspect-ratio: 166/53;
}

.section-footer__brand-text {
    align-self: stretch;
    flex-shrink: 0;
}

.section-footer__brand-description {
    color: rgba(255, 255, 255, 0.6);
    text-align: left;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    line-height: 1.44rem;
    font-weight: 400;
    width: 26.6875rem;
}

.section-footer__social {
    display: flex;
    flex-direction: row;
    gap: 0.75rem;
    align-items: flex-start;
    justify-content: flex-start;
    flex-shrink: 0;
    position: relative;
}

.section-footer__social-link {
    background: #1b5e20;
    border-radius: 0.375rem;
    padding: 0.75rem;
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
    transition: transform 0.3s ease, filter 0.3s ease;
    cursor: pointer;
}

.section-footer__social-link:hover {
    transform: scale(1.1);
    filter: brightness(1.2);
}

.section-footer__social-link:active {
    transform: scale(0.97);
}

.section-footer__social-icon-img {
    align-self: stretch;
    flex-shrink: 0;
    height: 1.75rem;
    position: relative;
    overflow: visible;
}

.section-footer__nav {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
    justify-content: flex-start;
    flex-shrink: 0;
    width: 7.6125rem;
}

.section-footer__heading {
    align-self: stretch;
    flex-shrink: 0;
}

.section-footer__nav-heading {
    color: #e5ac31;
    text-align: left;
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    line-height: 1.125rem;
    letter-spacing: 0.075rem;
    font-weight: 700;
    text-transform: uppercase;
}

.section-footer__nav-links {
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
    align-items: flex-start;
    justify-content: flex-start;
    align-self: stretch;
    flex-shrink: 0;
}

.section-footer__nav-link {
    flex-shrink: 0;
    width: 7.6125rem;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.section-footer__nav-link-text {
    color: rgba(255, 255, 255, 0.6);
    text-align: left;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    line-height: 1.35rem;
    font-weight: 400;
}

.section-footer__nav-link--cta {
    flex: 1;
    width: 7.6125rem;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.section-footer__nav-link:hover,
.section-footer__nav-link--cta:hover {
    opacity: 0.7;
}

.section-footer__nav-link:active,
.section-footer__nav-link--cta:active {
    opacity: 0.5;
}

.section-footer__contact {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
    justify-content: flex-start;
    flex-shrink: 0;
    width: 14.8125rem;
}

.section-footer__contact-heading {
    color: #e5ac31;
    text-align: left;
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    line-height: 1.125rem;
    letter-spacing: 0.075rem;
    font-weight: 700;
    text-transform: uppercase;
}

.section-footer__contact-details {
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
    align-items: flex-start;
    justify-content: flex-start;
    align-self: stretch;
    flex-shrink: 0;
}

.solar-phone-calling-rounded-bold-duotone {
    flex-shrink: 0;
    width: 1.5rem;
    height: 1.5rem;
    position: relative;
    overflow: visible;
    aspect-ratio: 1;
    filter: brightness(0) invert(1);
}

.section-footer__contact-phone {
    color: rgba(255, 255, 255, 0.6);
    text-align: left;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    line-height: 1.35rem;
    font-weight: 400;
    position: relative;
    width: 9.5rem;
}

.section-footer__contact-item {
    display: flex;
    flex-direction: row;
    gap: 0.5rem;
    align-items: flex-end;
    justify-content: flex-start;
    align-self: stretch;
    flex-shrink: 0;
    position: relative;
}

.solar-letter-bold-duotone {
    flex-shrink: 0;
    width: 1.5rem;
    height: 1.5rem;
    position: relative;
    overflow: visible;
    aspect-ratio: 1;
    filter: brightness(0) invert(1);
}

.section-footer__contact-email {
    color: rgba(255, 255, 255, 0.6);
    text-align: left;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    line-height: 1.35rem;
    font-weight: 400;
    position: relative;
    flex: 1;
}

.solar-global-outline {
    flex-shrink: 0;
    width: 1.5rem;
    height: 1.5rem;
    position: relative;
    overflow: visible;
    aspect-ratio: 1;
    filter: brightness(0) invert(1);
}

.solar-dna-bold-duotone,
.solar-leaf-bold-duotone,
.solar-square-academic-cap-bold-duotone {
    flex-shrink: 0;
    width: 1.5rem;
    height: 1.5rem;
    position: relative;
    overflow: visible;
    aspect-ratio: 1;
    filter: brightness(0) saturate(100%) invert(24%) sepia(78%) saturate(550%) hue-rotate(88deg) brightness(95%) contrast(95%);
}

.section-education__item-icon .solar-dna-bold-duotone,
.section-education__item-icon .solar-leaf-bold-duotone,
.section-education__item-icon .solar-square-academic-cap-bold-duotone {
    filter: brightness(0) invert(1);
}

.section-footer__contact-website {
    color: rgba(255, 255, 255, 0.6);
    text-align: left;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    line-height: 1.35rem;
    font-weight: 400;
    position: relative;
    flex: 1;
}

.section-footer__divider {
    flex: 1;
    width: 10.8663rem;
    position: relative;
}

.section-footer__bottom {
    border-style: solid;
    border-color: rgba(255, 255, 255, 0.08);
    border-width: 0.0625rem 0 0 0;
    padding: 1.25rem 0 0 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    align-items: center;
    justify-content: flex-start;
    align-self: stretch;
    flex-shrink: 0;
    height: 4.1369rem;
    position: relative;
}

.section-footer__disclaimer {
    flex-shrink: 0;
    width: 34.9338rem;
}

.section-footer__disclaimer-text {
    color: rgba(255, 255, 255, 0.7);
    text-align: center;
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    line-height: 1.2rem;
    font-weight: 400;
}

.section-footer__copyright {
    color: rgba(255, 255, 255, 0.6);
    text-align: center;
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    line-height: 1.125rem;
    font-weight: 400;
    position: relative;
}



/* Accordion Styles */
.accordion {
    width: 100%;
    max-width: 75rem;
    display: flex;
    flex-direction: column;
    gap: .5rem;

}

.accordion-item {
    background: #fff;
    border-radius: 0.375rem;
    overflow: hidden;
    border: 0.0625rem solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    box-shadow: 0 0.25rem 0.375rem rgba(0, 0, 0, 0.02);
    overflow-anchor: none;
}

.accordion-header {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #fff;
    transition: background 0.3s ease;
}

.accordion-header:hover {
    background: #f9f9f9;
}

.accordion-header:active {
    background: #e8e8e8;
}

.accordion-item.active,
.accordion-item:hover {
    background: #1b5e20;
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: none;
}

.accordion-item.active .accordion-header,
.accordion-item.active .accordion-header:hover,
.accordion-item:hover .accordion-header {
    background: #1b5e20;
}

.accordion-item.active .accordion-content,
.accordion-item:hover .accordion-content {
    background: #1b5e20;
}

.accordion-item.active .accordion-title,
.accordion-item:hover .accordion-title {
    color: #fff;
}

.accordion-item.active .accordion-sub-title,
.accordion-item:hover .accordion-sub-title {
    color: #e5ac31;
}

.accordion-item.active .accordion-sub-text,
.accordion-item:hover .accordion-sub-text {
    color: rgba(255, 255, 255, 0.9);
}

.accordion-item.active .accordion-arrow,
.accordion-item:hover .accordion-arrow {
    color: #fff;
}

.accordion-item.active .accordion-icon-circle,
.accordion-item:hover .accordion-icon-circle {
    background: #1b5e20;
}

.accordion-item.active .accordion-icon-circle img,
.accordion-item:hover .accordion-icon-circle img {
    filter: brightness(0) invert(1);
}

.accordion-title-wrapper {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.accordion-icon-circle {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background: #f0f7f0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #1b5e20;
}

.accordion-icon-circle img {
    width: 28px;
    height: auto;
    filter: brightness(0) saturate(100%) invert(24%) sepia(78%) saturate(550%) hue-rotate(88deg) brightness(95%) contrast(95%);
}

.accordion-title {
    font-family: 'Anton', sans-serif;
    font-size: 1.25rem;
    color: #1a1a1a;
    line-height: 1.4;
    text-transform: uppercase;
    letter-spacing: 0.0313rem;
}

.accordion-arrow {
    transition: transform 0.3s ease;
}

.accordion-item.active .accordion-arrow {
    transform: rotate(180deg);
}

.accordion-content {
    display: grid;
    grid-template-rows: minmax(0, 0fr);
    transition: grid-template-rows 0.4s ease, padding 0.3s ease;
    background: #fff;
    overflow: hidden;
    overflow-anchor: none;
    min-height: 0;
}

.accordion-item.active .accordion-content {
    grid-template-rows: minmax(0, 1fr);
    padding-bottom: 1.5rem;
}

.accordion-inner-content {
    padding: 0 1.5rem 1.5rem 5.75rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    overflow: hidden;
    min-height: 0;
}

.accordion-sub-section {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.accordion-sub-title {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 0.875rem;
    color: #1b5e20;
    text-transform: uppercase;
    letter-spacing: 0.0625rem;
}

.accordion-sub-text {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 1rem;
    color: #444;
    line-height: 1.6;
}

.accordion-sub-text--quote {
    font-style: italic;
}


/* Hamburger menu hidden by default, shown on mobile */
.navbar__hamburger {
    display: none;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
    transition: opacity 0.3s ease;
}

.navbar__hamburger:hover {
    opacity: 0.7;
}

.navbar__hamburger:active {
    opacity: 0.5;
}

/* ===== MOBILE MENU OVERLAY ===== */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(27, 94, 32, 0.98);
    z-index: 2000;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transform: translateX(100%);
    transition: transform 0.3s ease-in-out;
}

.mobile-menu-overlay.active {
    transform: translateX(0);
}

.mobile-menu-content {
    display: flex;
    flex-direction: column;
    gap: 1.5625rem;
    text-align: center;
    width: 100%;
    padding: 0 2rem;
}

.close-menu {
    position: absolute;
    top: 1.25rem;
    right: 1.875rem;
    font-size: 2.5rem;
    color: white;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.close-menu:hover {
    opacity: 0.7;
}

.close-menu:active {
    opacity: 0.5;
}

.mobile-link {
    color: white;
    font-family: 'Anton', sans-serif;
    font-size: 1.5rem;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.0625rem;
}

.mobile-btn-propostas {
    background: #E5AC31;
    color: #1A1A1A;
    padding: 0.75rem 2rem;
    border-radius: 0.375rem;
    margin-top: 1.25rem;
    font-family: 'Anton', sans-serif;
    font-size: 1rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: auto;
    min-width: 10rem;
    transition: transform 0.3s ease, filter 0.3s ease;
    cursor: pointer;
}

.mobile-btn-propostas:hover {
    filter: brightness(1.1);
}

.mobile-btn-propostas:active {
    transform: scale(0.97);
}

.mobile-btn-whatsapp {
    background: #25d366;
    color: #ffffff;
    padding: 0.75rem 2rem;
    border-radius: 0.375rem;
    font-family: 'Anton', sans-serif;
    font-size: 1rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: auto;
    min-width: 10rem;
    transition: transform 0.3s ease, filter 0.3s ease;
    cursor: pointer;
}

.mobile-btn-whatsapp:hover {
    filter: brightness(1.1);
}

.mobile-btn-whatsapp:active {
    transform: scale(0.97);
}

.mobile-btn-whatsapp .mobile-btn-icon {
    width: 1.25rem;
    height: 1.25rem;
}

/* ===== MOBILE RESPONSIVE ===== */
@media (max-width: 56.25rem) {

    .navbar__nav,
    .navbar__actions {
        display: none;
    }

    .navbar__hamburger {
        display: block;
    }

    .navbar__inner {
        justify-content: space-between;
        width: 100%;
    }
}

@media (max-width: 48rem) {

    /* ===== HERO MOBILE ===== */
    .hero__mobile-img {
        display: block;
        width: 100%;
        aspect-ratio: 908 / 800;
    }

    .hero {
        background: #1B5E20;
        padding-top: 0;
        justify-content: flex-start;
        min-height: auto;
        align-items: flex-start;
        flex-flow: column;
        overflow: visible;
    }

    .hero__inner {
        margin-top: -40%;
        position: relative;
        z-index: 2;
        padding: 1.875rem 2rem 4rem;
        gap: 1.5rem;
    }

    .hero__content {
        width: 100%;
        gap: 1.25rem;
    }

    .hero__text-group {
        width: 100%;
        gap: 1.5rem;
    }

    .hero__description {
        width: 100%;
    }

    .hero__title {
        font-size: 2.625rem;
        line-height: 2.875rem;
    }

    .hero__subtitle {
        width: 100%;
        font-size: 0.9375rem;
        line-height: 1.5rem;
        position: relative;
    }

    .hero__actions {
        flex-direction: column;
        gap: 0.75rem;
        width: 100%;
        height: auto;
    }

    .hero__btn-primary,
    .hero__btn-secondary {
        width: 100%;
        max-width: 100%;
        justify-content: center;
        text-align: center;
    }

    .hero__badges {
        flex-direction: column;
        gap: 0.75rem;
        align-items: flex-start;
    }

    /* ===== BADGES DOS PROJETOS ===== */
    .section-projects__badge {
        position: relative;
        left: auto;
        top: auto;
        text-align: center;
    }

    /* ===== GLOBAL: Reduzir padding vertical das seções ===== */
    .section-mission__inner,
    .section-proposals__inner,
    .section-projects__inner,
    .section-story__inner {
        padding: 3.75rem 2rem;
    }

    .section-mission__inner,
    .section-proposals__inner {
        padding: 2.5rem 2rem;
    }

    .section-mission,
    .section-proposals {
        padding: 0;
    }

    body {
        overflow-x: hidden;
    }

    /* ===== MINHA HISTÓRIA (Seção 2) ===== */
    .section-story__layout {
        flex-direction: column;
        gap: 1.875rem;
    }

    .section-story__content {
        width: 100%;
        gap: 1.25rem;
    }

    .section-story__image-wrapper {
        width: 100%;
        height: auto;
        max-height: 25rem;
        flex: none;
        border-radius: 0.375rem;
        overflow: hidden;
    }

    .section-story__image {
        width: 100%;
        height: auto;
        display: block;
        max-height: 25rem;
        object-fit: cover;
    }

    .section-story__heading {
        height: auto;
    }

    .section-story__heading-text {
        position: relative;
        font-size: 2.125rem;
        line-height: 2.375rem;
    }

    .section-story__heading--green br {
        display: none;
    }

    .section-story__quote {
        height: auto;
        padding: 0 0 0 1rem;
    }

    .section-story__cta {
        width: 100%;
        max-width: 100%;
    }

    /* ===== MISSÃO E PROPÓSITO (Seção 3) ===== */
    .section-mission__heading {
        height: auto;
    }

    .section-mission__heading-text {
        position: relative;
        font-size: 2.125rem;
        line-height: 2.375rem;
    }

    .section-mission__intro {
        width: 100%;
    }

    .section-mission__stats {
        flex-direction: column;
    }

    .section-mission__stat {
        width: 100%;
        min-height: 14rem;
    }

    .section-mission__value-icon {
        width: 2rem;
        height: 2rem;
    }

    .section-mission__stat-desc-text {
        width: 100%;
    }

    .section-mission__stat-desc {
        height: auto;
    }

    .section-mission__stat-numbers {
        width: 100%;
    }

    .section-mission__stat-number {
        font-size: 2.25rem;
        line-height: 2.25rem;
    }

    .section-mission__stat-label {
        font-size: 1.125rem;
    }

    /* Green "A FORMA DE FAZER" box */
    .section-mission__cta-wrapper {
        height: auto;
        padding: 2rem;
    }

    .section-mission__cta {
        flex-direction: column;
        height: auto;
        gap: 1.5rem;
    }

    .section-mission__cta-content {
        width: 100%;
        height: auto;
        max-width: 100%;
    }

    .section-mission__cta-heading {
        font-size: 1.625rem;
        line-height: 2rem;
    }

    .section-mission__cta-text {
        height: auto;
    }

    .section-mission__cta-description {
        width: 100%;
    }

    .section-mission__values {
        width: 100%;
        height: auto;
    }

    .section-mission__value {
        height: auto;
        padding: 1rem;
    }

    .section-mission__value-body {
        width: 100%;
        height: auto;
    }

    .section-mission__value {
        height: auto;
    }

    /* ===== PROPOSTAS (Seção 4) ===== */
    .section-proposals__heading {
        height: auto;
    }

    .section-proposals__intro {
        width: 100%;
    }

    .section-proposals__intro-text {
        width: 100%;
    }

    .section-proposals__accordion {
        height: auto;
    }

    .section-proposals__heading-text {
        position: relative;
        font-size: 2.125rem;
        line-height: 2.375rem;
    }

    .accordion-title {
        font-size: 1rem;
        font-family: 'Anton', sans-serif;
        letter-spacing: 0.0187rem;
    }

    .accordion-header {
        padding: 1rem;
    }

    .accordion-title-wrapper {
        gap: 0.75rem;
    }

    .accordion-icon-circle {
        width: 2.25rem;
        height: 2.25rem;
        min-width: 2.25rem;
    }

    .accordion-icon-circle img {
        width: 1.25rem;
        height: 1.25rem;
    }

    .accordion-inner-content {
        grid-template-columns: 1fr;
        padding-left: 1.5rem;
    }

    .accordion-sub-title {
        font-size: 0.8125rem;
    }

    .accordion-sub-text {
        font-size: 0.875rem;
    }

    /* ===== PROJETOS EXECUTADOS (Seção 5) ===== */
    .section-projects__row {
        flex-direction: column;
    }

    .section-projects__card {
        width: 100%;
        height: auto;
    }

    .section-projects__card-image {
        width: 100%;
        height: 10rem;
    }

    .section-projects__card-header {
        padding: 1rem 1.25rem 0;
        width: 100%;
    }

    .section-projects__card-desc {
        padding: 0.5rem 1.25rem;
        width: 100%;
    }

    .section-projects__card-result {
        width: auto;
    }

    .section-projects__intro {
        width: 100%;
    }

    .section-projects__intro-text {
        width: 100%;
    }

    .section-projects__heading {
        height: auto;
    }

    .section-projects__heading-text {
        font-size: 2.125rem;
        line-height: 2.375rem;
    }

    .section-projects__card-title {
        width: auto;
        font-size: 1rem;
        line-height: 1.25rem;
    }

    .section-projects__card-desc {
        width: 100%;
    }

    .section-projects__card-result-text {
        width: 100%;
    }

    /* ===== FORMAÇÃO / NA MÍDIA (Seção 6) ===== */
    .section-education__row {
        flex-direction: column;
        gap: 1.875rem;
    }

    .section-education__list {
        flex-direction: column;
    }

    .section-education__item {
        width: 100%;
        min-width: auto;
    }

    .section-education__list--areas {
        grid-template-columns: 1fr;
    }

    .section-education__item--area {
        min-height: 14rem;
    }

    .section-education__item-desc {
        height: auto;
    }

    .section-education__inner {
        gap: 1.875rem;
        padding: 3.75rem 2rem;
    }

    .section-education__header {
        width: 100%;
    }

    .section-education__heading-text {
        position: relative;
        font-size: 2.125rem;
        line-height: 2.375rem;
    }

    .section-education__list {
        height: auto;
    }

    .section-education__item {
        height: auto;
        width: 100%;
    }

    .section-education__item-body {
        width: auto;
        flex: 1;
        height: auto;
    }

    .section-education__areas {
        height: auto;
    }

    .section-education__area {
        height: auto;
    }

    .section-education__area-text {
        width: auto;
        height: auto;
        flex: 1;
    }


    /* Midia carousel */
    .section-education__media-grid {
        display: flex;
        flex-direction: row;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
        gap: 0;
        scrollbar-width: none;
    }

    .section-education__media-grid::-webkit-scrollbar {
        display: none;
    }

    .section-education__media-card {
        flex: 0 0 100%;
        scroll-snap-align: start;
        flex-direction: column;
        align-items: flex-start;
        height: auto;
        padding: 1rem;
    }

    .section-education__media-badge,
    .section-education__media-channel,
    .section-education__media-status {
        position: relative;
        left: auto;
        top: auto;
        margin-bottom: 0.25rem;
    }

    .section-education__media-status {
        margin-left: 0;
    }

    .section-education__media-desc {
        width: 100%;
        height: auto;
        position: relative;
        left: auto;
        top: auto;
    }

    .section-education__media-heading-text {
        font-size: 2.125rem;
        line-height: 2.375rem;
    }

    .section-education__media-footer {
        height: auto;
        padding: 1.25rem 2rem;
    }

    /* ===== VÍDEO (Seção 7) ===== */
    .section-video__inner {
        padding: 3.75rem 2rem;
    }

    .section-video__player {
        width: 100%;
        max-width: 100%;
    }

    .section-video__heading {
        font-size: 2.125rem;
        line-height: 2.375rem;
    }

    .section-video__subtitle {
        font-size: 0.9375rem;
        line-height: 1.5rem;
    }

    .section-video__cta-text {
        text-align: center;
        padding: 0 0.625rem;
    }

    /* ===== FALE COMIGO (Seção 8) ===== */
    .section-contact__inner {
        flex-direction: column;
        gap: 1.875rem;
        padding: 3.75rem 2rem;
    }

    .section-contact__layout,
    .section-contact__actions {
        width: 100%;
    }

    .section-contact__heading {
        height: auto;
    }

    .section-contact__heading-text {
        position: relative;
        font-size: 2.125rem;
        line-height: 2.375rem;
    }

    .section-contact__description {
        width: 100%;
        height: auto;
    }

    .section-contact__description-text {
        width: 100%;
        position: relative;
    }

    .section-contact__social-icons {
        width: 100%;
        flex-wrap: wrap;
        gap: 0.75rem;
        justify-content: center;
    }

    .section-contact__social-link {
        width: calc(25% - 0.5625rem);
    }

    .section-contact__whatsapp-btn {
        height: auto;
        padding: 1rem;
    }

    /* ===== CTA FINAL (Seção 9) ===== */
    .section-cta {
        padding: 0 2rem;
    }

    .section-cta__inner {
        padding: 1.875rem 0;
    }

    .section-cta__heading {
        font-size: 2.125rem;
        line-height: 2.375rem;
    }

    .section-cta__description {
        width: 100%;
        height: auto;
    }

    .section-cta__description-text {
        width: 100%;
        position: relative;
        text-align: center;
    }

    .section-cta__decoration {
        display: none;
    }

    /* ===== FOOTER ===== */
    .section-footer {
        height: auto;
        padding: 2.5rem 2rem;
    }

    .section-footer__layout {
        flex-direction: column;
        height: auto;
        gap: 1.875rem;
    }

    .section-footer__inner {
        height: auto;
        gap: 1.875rem;
    }

    .section-footer__brand {
        width: 100%;
    }

    .section-footer__brand-text {
        height: auto;
    }

    .section-footer__brand-description {
        width: 100%;
        position: relative;
    }

    .section-footer__nav {
        width: 100%;
        height: auto;
    }

    .section-footer__nav-links {
        height: auto;
    }

    .section-footer__contact {
        width: 100%;
        height: auto;
    }

    .section-footer__contact-details {
        height: auto;
    }

    .section-footer__bottom {
        height: auto;
    }

    .section-footer__disclaimer {
        width: 100%;
        height: auto;
    }

    .section-footer__nav,
    .section-footer__contact-details,
    .section-footer__bottom {
        height: auto;
    }

    .section-footer__nav-links {
        height: auto;
    }

    .section-footer__disclaimer-text {
        width: 100%;
        position: relative;
        text-align: center;
    }
}

.whatsapp-float {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    z-index: 999;
    width: 3.5rem;
    height: 3.5rem;
    background: #1b5e20;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    box-shadow: 0 0.25rem 1rem rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 0.375rem 1.5rem rgba(0, 0, 0, 0.4);
}

.whatsapp-float:active {
    transform: scale(0.97);
}

/* ===== PÁGINA SOBRE (MINHA HISTÓRIA) ===== */
.page-about {
    margin: 0;
    padding: 0;
}

.page-about__header {
    background: #1b5e20;
    padding: 0 7.9375rem;
    display: flex;
    justify-content: center;
    position: sticky;
    top: 0;
    z-index: 100;
}

.page-about__header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 75rem;
    padding: 0.75rem 0;
}

.page-about__back {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.page-about__back:hover {
    opacity: 0.8;
}

.page-about__logo {
    width: 9.5rem;
    height: 3rem;
    object-fit: cover;
    aspect-ratio: 152/48;
}

.page-about__hero {
    position: relative;
    background: #1b5e20;
    display: flex;
    justify-content: center;
    overflow: hidden;
}

.page-about__hero-bg {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg, rgba(0,0,0,0.55), rgba(0,0,0,0.3)),
        url(assets/bg_sobre.webp) center / cover no-repeat;
    z-index: 1;
}

.page-about__hero-inner {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 75rem;
    padding: 6rem 7.9375rem;
    text-align: center;
}

.page-about__hero-tagline {
    color: #e5ac31;
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.0963rem;
    margin-bottom: 1.5rem;
}

.page-about__hero-title {
    font-family: 'Anton', sans-serif;
    font-size: 4rem;
    line-height: 4.2rem;
    font-weight: 400;
    text-transform: uppercase;
    color: #ffffff;
    margin: 0 0 1rem;
}

.page-about__hero-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 1.25rem;
    line-height: 1.8rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 36rem;
    margin: 0 auto 2rem;
}

.page-about__hero-quote {
    font-family: 'Anton', sans-serif;
    font-size: 1.5rem;
    line-height: 1.8rem;
    color: #e5ac31;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.page-about__section {
    display: flex;
    justify-content: center;
    padding: 0 7.9375rem;
    background: #ffffff;
}

.page-about__section--cream {
    background: #f5f5f0;
}

.page-about__section-inner {
    width: 100%;
    max-width: 75rem;
    padding: 5rem 0;
}

.page-about__section-grid {
    display: flex;
    flex-direction: row;
    gap: 3rem;
    align-items: center;
}

.page-about__section-grid--reverse {
    flex-direction: row-reverse;
}

.page-about__text {
    flex: 1;
}

.page-about__heading {
    font-family: 'Anton', sans-serif;
    font-size: 2.5rem;
    line-height: 2.8rem;
    font-weight: 400;
    text-transform: uppercase;
    color: #1a1a1a;
    margin: 0 0 1.5rem;
}

.page-about__heading--centered {
    text-align: center;
    margin-bottom: 2rem;
}

.page-about__paragraph {
    font-family: 'Inter', sans-serif;
    font-size: 1.0625rem;
    line-height: 1.8rem;
    color: #444444;
    margin: 0 0 1.2rem;
}

.page-about__paragraph--centered {
    text-align: center;
    max-width: 44rem;
    margin-left: auto;
    margin-right: auto;
}

.page-about__paragraph--emphasis {
    font-size: 1.125rem;
    color: #1b5e20;
    font-weight: 600;
}

.page-about__highlight {
    color: #1b5e20;
    font-weight: 600;
}

.page-about__image-wrapper {
    flex-shrink: 0;
}

.page-about__photo {
    width: 18rem;
    height: 18rem;
    border-radius: 0.5rem;
    object-fit: cover;
    object-position: top;
}

.page-about__area-icon-img {
    width: 1.75rem;
    height: 1.75rem;
    filter: brightness(0) saturate(100%) invert(24%) sepia(78%) saturate(550%) hue-rotate(88deg) brightness(95%) contrast(95%);
}

.page-about__problem-icon-img {
    width: 2.25rem;
    height: 2.25rem;
    filter: brightness(0) saturate(100%) invert(24%) sepia(78%) saturate(550%) hue-rotate(88deg) brightness(95%) contrast(95%);
}

.page-about__area-icon-img--white {
    filter: brightness(0) invert(1);
}

.page-about__areas {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1rem;
    margin-top: 2.5rem;
}

.page-about__area-card {
    display: flex;
    flex-direction: column;
    border-radius: 0.375rem;
    overflow: hidden;
    min-height: 16rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-about__area-card--image {
    background: transparent;
    padding: 0;
    justify-content: flex-end;
    color: #ffffff;
}

.page-about__area-card--image::before {
    content: '';
    flex: 1;
}

.page-about__area-card--image:hover {
    transform: translateY(-0.25rem);
    box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.2);
}

.page-about__area-card--image:active {
    transform: scale(0.98);
}

.page-about__area-card-body {
    flex: none;
    width: 100%;
    padding: 0 1.5rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    color: #ffffff;
}

.page-about__area-card-icon {
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-about__area-card-icon img {
    width: 2rem;
    height: 2rem;
}

.page-about__area-card-label {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    line-height: 1.3rem;
    color: #ffffff;
    font-weight: 500;
    text-align: center;
}

.page-about__problems {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin: 2.5rem 0;
}

.page-about__problem-card {
    background: #f5f5f0;
    border-radius: 0.5rem;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-about__problem-card:hover {
    transform: translateY(-0.25rem);
    box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.08);
}

.page-about__problem-icon {
    font-size: 2rem;
}

.page-about__problem-text {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    line-height: 1.4rem;
    color: #333333;
    font-weight: 500;
    margin: 0;
}

.page-about__cta {
    background: #1b5e20;
    display: flex;
    justify-content: center;
    padding: 0 7.9375rem;
}

.page-about__cta-inner {
    width: 100%;
    max-width: 75rem;
    padding: 3.5rem 0;
    text-align: center;
}

.page-about__cta-text {
    font-family: 'Inter', sans-serif;
    font-size: 1.125rem;
    line-height: 1.8rem;
    color: rgba(255, 255, 255, 0.85);
    margin: 0 0 1.5rem;
}

.page-about__cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #e5ac31;
    color: #1a1a1a;
    font-family: 'Anton', sans-serif;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-decoration: none;
    padding: 0.75rem 2rem;
    border-radius: 0.375rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-about__cta-btn:hover {
    transform: scale(1.03);
    box-shadow: 0 0.375rem 1.5rem rgba(0, 0, 0, 0.2);
}

.page-about__cta-btn:active {
    transform: scale(0.97);
}

@media (max-width: 48rem) {
    .page-about__header {
        padding: 0 2rem;
    }

    .page-about__hero-inner {
        padding: 3rem 2rem;
    }

    .page-about__hero-title {
        font-size: 2.5rem;
        line-height: 2.8rem;
    }

    .page-about__hero-subtitle {
        font-size: 1rem;
        line-height: 1.5rem;
    }

    .page-about__hero-quote {
        font-size: 1.2rem;
    }

    .page-about__section {
        padding: 0 2rem;
    }

    .page-about__section-inner {
        padding: 3rem 0;
    }

    .page-about__section-grid {
        flex-direction: column;
        gap: 2rem;
    }

    .page-about__section-grid--reverse {
        flex-direction: column;
    }

    .page-about__heading {
        font-size: 2rem;
        line-height: 2.3rem;
    }

    .page-about__paragraph {
        font-size: 1rem;
        line-height: 1.7rem;
    }

    .page-about__image-wrapper {
        width: 100%;
        overflow: hidden;
    }

    .page-about__photo {
        width: 100%;
        height: 18rem;
        margin-top: -2rem;
    }

    .page-about__areas {
        grid-template-columns: 1fr;
    }

    .page-about__area-card--image {
        min-height: 12rem;
    }

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

    .page-about__cta {
        padding: 0 2rem;
    }

    .page-about__cta-inner {
        padding: 2.5rem 0;
    }

}