/*=============== SOBRE NOS ===============*/

/* Hero Section */
.sobre-hero .home__data-title .highlight {
    color: var(--first-color);
    position: relative;
    display: inline-block;
}

.sobre-hero .home__data-title .highlight::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--first-color);
    border-radius: 2px;
}










/*=============== SOBRE NOS ===============*/

/* Hero Section - mantido */
.sobre-hero .home__data-title .highlight {
    color: var(--first-color);
    position: relative;
    display: inline-block;
}

.sobre-hero .home__data-title .highlight::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--first-color);
    border-radius: 2px;
}

/* História Section - REDESIGNED */
.sobre-header {
    text-align: center;
    margin-bottom: 3rem;
}

.sobre-subtitle {
    display: inline-block;
    background: linear-gradient(135deg, var(--first-color), var(--first-color-alt));
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
}

.sobre-intro {
    font-size: 1.1rem;
    color: var(--text-color-light);
    max-width: 600px;
    margin: 0 auto;
}

.sobre-content-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

@media screen and (min-width: 992px) {
    .sobre-content-wrapper {
        grid-template-columns: 1fr 1fr;
        align-items: start;
    }
}

.sobre-text-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.sobre-text-box {
    background: var(--white-color);
    padding: 1.5rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border-left: 4px solid var(--first-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sobre-text-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(255, 149, 0, 0.15);
}

.sobre-text-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--first-color), var(--first-color-alt));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.sobre-text-icon i {
    font-size: 1.5rem;
    color: white;
}

.sobre__text {
    line-height: 1.7;
    color: var(--text-color);
    margin: 0;
}

.sobre-featured-stats {
    display: flex;
    gap: 1.5rem;
    margin-top: 1rem;
}

.featured-stat {
    flex: 1;
    text-align: center;
    padding: 1.5rem;
    background: linear-gradient(135deg, var(--first-color), var(--first-color-alt));
    border-radius: 16px;
    color: white;
    box-shadow: 0 6px 20px rgba(255, 149, 0, 0.3);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.9;
}

.sobre-visual-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.sobre-image-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.sobre-main-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.sobre-image-container:hover .sobre-main-image {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    padding: 1.5rem;
}

.overlay-content {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: white;
    font-weight: 600;
}

.overlay-content i {
    font-size: 1.5rem;
    color: var(--first-color);
}

.sobre-stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.stat-card {
    background: var(--white-color);
    padding: 1.25rem;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 149, 0, 0.1);
}

.stat-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 149, 0, 0.15);
    border-color: var(--first-color);
}

.stat-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 149, 0, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.stat-icon i {
    font-size: 1.25rem;
    color: var(--first-color);
}

.stat-info {
    flex: 1;
}

.stat-value {
    font-size: 1.75rem;
    color: var(--title-color);
    font-weight: 700;
    margin-bottom: 0.25rem;
    line-height: 1;
}

.stat-desc {
    font-size: 0.85rem;
    color: var(--text-color-light);
    margin: 0;
}

/* Nossa Proposta Section - REDESIGNED */
.proposta-header {
    text-align: center;
    margin-bottom: 3rem;
}

.proposta-subtitle {
    display: inline-block;
    color: var(--first-color);
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
    position: relative;
}

.proposta-subtitle::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background: var(--first-color);
}

.proposta-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
}

@media screen and (min-width: 992px) {
    .proposta-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto auto;
    }
    
    .proposta-highlight {
        grid-column: 1;
        grid-row: 1;
    }
    
    .proposta-features {
        grid-column: 1;
        grid-row: 2;
    }
    
    .proposta-image-wrapper {
        grid-column: 2;
        grid-row: 1 / span 2;
    }
}

.proposta-highlight {
    background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
    color: white;
    padding: 2.5rem;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.proposta-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--first-color);
    color: white;
    padding: 0.25rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.proposta-highlight h3 {
    color: white;
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.proposta-highlight-text {
    font-size: 1.1rem;
    line-height: 1.7;
    opacity: 0.9;
    margin-bottom: 1.5rem;
}

.proposta-tags {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.tag {
    background: rgba(255, 255, 255, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.proposta-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.feature-card {
    background: var(--white-color);
    padding: 1.5rem;
    border-radius: 16px;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 149, 0, 0.1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
    cursor: pointer;
}

.feature-card:hover {
    transform: translateX(10px);
    box-shadow: 0 8px 25px rgba(255, 149, 0, 0.15);
    border-color: var(--first-color);
}

.feature-card-primary {
    background: linear-gradient(135deg, rgba(255, 149, 0, 0.1), rgba(255, 149, 0, 0.05));
    border-color: var(--first-color);
}

.feature-icon {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, var(--first-color), var(--first-color-alt));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon i {
    font-size: 1.5rem;
    color: white;
}

.feature-content {
    flex: 1;
}

.feature-content h4 {
    font-size: 1.1rem;
    color: var(--title-color);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.feature-content p {
    font-size: 0.9rem;
    color: var(--text-color);
    line-height: 1.6;
    margin: 0;
}

.feature-arrow {
    color: var(--first-color);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-card:hover .feature-arrow {
    opacity: 1;
}

.proposta-image-wrapper {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.proposta-image-frame {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.proposta-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.proposta-image-frame:hover .proposta-image {
    transform: scale(1.05);
}

.proposta-image-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 1.5rem;
    color: white;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 600;
}

.proposta-image-caption i {
    color: var(--first-color);
    font-size: 1.25rem;
}

.proposta-quote {
    background: var(--white-color);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    border-left: 4px solid var(--first-color);
}

.proposta-quote i {
    font-size: 2.5rem;
    color: var(--first-color);
    margin-bottom: 1rem;
    display: block;
}

.proposta-quote p {
    font-size: 1.1rem;
    color: var(--text-color);
    line-height: 1.7;
    font-style: italic;
    margin: 0;
}

/* CTA Section - mantido */
.cta-section {
    background: linear-gradient(135deg, var(--first-color) 0%, var(--first-color-alt) 100%);
    color: var(--white-color);
    padding: 4rem 0;
    text-align: center;
}

.cta__content {
    max-width: 600px;
    margin: 0 auto;
}

.cta__title {
    font-size: 2.5rem;
    color: var(--white-color);
    margin-bottom: var(--mb-1-5);
    font-weight: var(--font-semi-bold);
}

@media screen and (min-width: 768px) {
    .cta__title {
        font-size: 3rem;
    }
}

.cta__text {
    font-size: var(--h3-font-size);
    margin-bottom: var(--mb-2-5);
    opacity: 0.9;
    line-height: 1.6;
}

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

@media screen and (min-width: 568px) {
    .cta__buttons {
        flex-direction: row;
        justify-content: center;
    }
}

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

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

/* Dark Theme */
body.dark-theme .sobre-text-box,
body.dark-theme .stat-card,
body.dark-theme .feature-card,
body.dark-theme .proposta-quote {
    background: var(--input-color);
    border-color: rgba(255, 255, 255, 0.1);
}

body.dark-theme .feature-card-primary {
    background: linear-gradient(135deg, rgba(255, 149, 0, 0.2), rgba(255, 149, 0, 0.1));
}

body.dark-theme .nossa-proposta {
    background: transparent;
}

/* Responsive */
@media screen and (max-width: 768px) {
    .sobre-hero .home__data-title {
        font-size: 2.5rem;
    }
    
    .sobre-featured-stats {
        flex-direction: column;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .cta__title {
        font-size: 2rem;
    }
    
    .proposta-highlight h3 {
        font-size: 1.5rem;
    }
    
    .sobre-stats-grid {
        grid-template-columns: 1fr;
    }
}

@media screen and (max-width: 480px) {
    .proposta-tags {
        justify-content: center;
    }
    
    .feature-card {
        flex-direction: column;
        text-align: center;
    }
    
    .feature-icon {
        margin: 0 auto;
    }
}
















/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--first-color) 0%, var(--first-color-alt) 100%);
    color: var(--white-color);
    padding: 4rem 0;
    text-align: center;
}

.cta__content {
    max-width: 600px;
    margin: 0 auto;
}

.cta__title {
    font-size: 2.5rem;
    color: var(--white-color);
    margin-bottom: var(--mb-1-5);
    font-weight: var(--font-semi-bold);
}

@media screen and (min-width: 768px) {
    .cta__title {
        font-size: 3rem;
    }
}

.cta__text {
    font-size: var(--h3-font-size);
    margin-bottom: var(--mb-2-5);
    opacity: 0.9;
    line-height: 1.6;
}

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

@media screen and (min-width: 568px) {
    .cta__buttons {
        flex-direction: row;
        justify-content: center;
    }
}

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

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

/* Dark Theme */
body.dark-theme .sobre-historia .sobre__text {
    color: var(--text-color);
}

body.dark-theme .sobre__stat {
    background: var(--input-color);
}

body.dark-theme .proposta__item {
    background: var(--input-color);
    border-color: rgba(255, 149, 0, 0.2);
}

body.dark-theme .nossa-proposta {
    background: linear-gradient(135deg, rgba(255, 149, 0, 0.1) 0%, transparent 100%);
}

/* Responsive */
@media screen and (max-width: 768px) {
    .sobre-hero .home__data-title {
        font-size: 2.5rem;
    }
    
    .sobre__stat-number {
        font-size: 2rem;
    }
    
    .cta__title {
        font-size: 2rem;
    }
    
    .proposta__content h3 {
        font-size: 1.75rem;
    }
}

@media screen and (max-width: 480px) {
    .sobre__stats {
        grid-template-columns: 1fr;
    }
    
    .proposta__features {
        grid-template-columns: 1fr;
    }
}





.home {
    position: relative;
    padding-bottom: 0px;
}








/*=============== backup do header ===============*/
:root {
  --header-height: 3rem; /* Altura do header */
  --z-fixed: 100; /* z-index para header fixo */
}

/*=============== HEADER ===============*/
.header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: var(--z-fixed);
  background-color: transparent;
}

/*=============== NAV ===============*/
.nav {
  height: var(--header-height);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav__logo img {
  width: 100px;
  height: auto;
  max-height: 40px;
  margin-top: 0;
  transition: opacity 0.3s ease;
}

.nav__toggle {
  font-size: 1.2rem;
  cursor: pointer;
}

.nav__menu {
  position: relative;
}

@media screen and (max-width: 767px) {
  .nav__menu {
    position: fixed;
    background-color: var(--body-color);
    top: 0;
    right: -100%;
    width: 70%;
    height: 100%;
    box-shadow: -1px 0 4px rgba(14, 55, 63, 0.15);
    padding: 3rem;
    transition: .4s;
  }
}

.nav__list {
  display: flex;
  flex-direction: column;
  row-gap: 2.5rem;
}

.nav__link {
  color: var(--text-color-light);
  font-weight: var(--font-semi-bold);
  text-transform: uppercase;
}

.nav__link:hover {
  color: var(--text-color);
}

.nav__close {
  position: absolute;
  top: .75rem;
  right: 1rem;
  font-size: 1.5rem;
  color: var(--title-color);
  cursor: pointer;
}

/* show menu */
.show-menu {
  right: 0;
}

/* Change background header */
.scroll-header {
  background-color: var(--body-color);
  box-shadow: 0 0 4px rgba(14, 55, 63, 0.15);
}

.scroll-header .nav__logo,
.scroll-header .nav__toggle {
  color: var(--title-color);
}

/* Active link */
.active-link {
  position: relative;
  color: var(--title-color);
}

.active-link::before {
  content: '';
  position: absolute;
  background-color: var(--title-color);
  width: 100%;
  height: 2px;
  bottom: -.75rem;
  left: 0;
}

/*========== Button Dark/Light ==========*/
.nav__dark {
  display: flex;
  align-items: center;
  column-gap: 2rem;
  position: absolute;
  left: 3rem;
  bottom: 4rem;
}

.change-theme, .change-theme-name {
  color: var(--text-color);
}

.change-theme {
  cursor: pointer;
  font-size: 1rem;
}

.change-theme-name {
  font-size: var(--small-font-size);
}

/*=============== MEDIA QUERIES ===============*/
@media screen and (min-width: 768px) {
  .nav {
    height: calc(var(--header-height) + 1.5rem);
  }
  
  .nav__link {
    color: var(--white-color);
    text-transform: initial;
  }
  
  .nav__link:hover {
    color: var(--white-color);
  }
  
  .nav__dark {
    position: initial;
  }
  
  .nav__menu {
    display: flex;
    column-gap: 1rem;
  }
  
  .nav__list {
    flex-direction: row;
    column-gap: 4rem;
  }
  
  .nav__toggle, .nav__close {
    display: none;
  }
  
  .change-theme-name {
    display: none;
  }
  
  .change-theme {
    color: var(--white-color);
  }
  
  .active-link::before {
    background-color: var(--white-color);
  }
  
  .scroll-header .nav__link {
    color: var(--text-color);
  }
  
  .scroll-header .active-link {
    color: var(--title-color);
  }
  
  .scroll-header .active-link::before {
    background-color: var(--title-color);
  }
  
  .scroll-header .change-theme {
    color: var(--text-color);
  }
}









/*===============================================================
  RESPONSIVIDADE MOBILE - PÁGINA SOBRE
  Adicione este código ao FINAL do seu arquivo sobre.css
================================================================*/

/*=============== MOBILE - 576px e abaixo ===============*/
@media screen and (max-width: 576px) {
    
    /* === HERO SECTION === */
    .sobre-hero .home__data-title {
        font-size: 1.75rem !important;
        line-height: 1.3;
    }
    
    .sobre-hero .home__data-title .highlight::after {
        bottom: -3px;
        height: 2px;
    }
    
    /* === SOBRE HEADER === */
    .sobre-header {
        margin-bottom: 2rem;
    }
    
    .sobre-subtitle {
        padding: 0.4rem 1rem;
        font-size: 0.8rem;
        border-radius: 20px;
        margin-bottom: 0.75rem;
    }
    
    .sobre-intro {
        font-size: 0.95rem;
        padding: 0 0.5rem;
    }
    
    /* === SOBRE CONTENT WRAPPER === */
    .sobre-content-wrapper {
        gap: 2rem;
    }
    
    /* === SOBRE TEXT CONTENT === */
    .sobre-text-content {
        gap: 1.5rem;
    }
    
    .sobre-text-box {
        padding: 1.25rem;
        border-radius: 14px;
        border-left-width: 3px;
    }
    
    .sobre-text-box:hover {
        transform: translateY(-3px);
    }
    
    .sobre-text-icon {
        width: 42px;
        height: 42px;
        border-radius: 10px;
        margin-bottom: 0.75rem;
    }
    
    .sobre-text-icon i {
        font-size: 1.25rem;
    }
    
    .sobre__text {
        font-size: 0.9rem;
        line-height: 1.65;
    }
    
    /* === FEATURED STATS === */
    .sobre-featured-stats {
        flex-direction: column;
        gap: 1rem;
        margin-top: 0.75rem;
    }
    
    .featured-stat {
        padding: 1.25rem;
        border-radius: 14px;
    }
    
    .stat-number {
        font-size: 2rem;
        margin-bottom: 0.4rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
    }
    
    /* === SOBRE VISUAL CONTENT === */
    .sobre-visual-content {
        gap: 1.5rem;
    }
    
    .sobre-image-container {
        border-radius: 16px;
    }
    
    .sobre-main-image {
        height: 220px;
    }
    
    .image-overlay {
        padding: 1rem;
    }
    
    .overlay-content {
        gap: 0.5rem;
        font-size: 0.9rem;
    }
    
    .overlay-content i {
        font-size: 1.25rem;
    }
    
    /* === STATS GRID === */
    .sobre-stats-grid {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .stat-card {
        padding: 1rem;
        border-radius: 14px;
        gap: 0.75rem;
    }
    
    .stat-card:hover {
        transform: translateY(-2px);
    }
    
    .stat-icon {
        width: 42px;
        height: 42px;
        border-radius: 10px;
    }
    
    .stat-icon i {
        font-size: 1.1rem;
    }
    
    .stat-value {
        font-size: 1.5rem;
        margin-bottom: 0.15rem;
    }
    
    .stat-desc {
        font-size: 0.8rem;
    }
    
    /* === PROPOSTA SECTION === */
    .proposta-header {
        margin-bottom: 2rem;
    }
    
    .proposta-subtitle {
        font-size: 0.85rem;
        margin-bottom: 0.5rem;
    }
    
    .proposta-subtitle::after {
        width: 30px;
        height: 2px;
    }
    
    .proposta-grid {
        gap: 1.5rem;
    }
    
    /* === PROPOSTA HIGHLIGHT === */
    .proposta-highlight {
        padding: 1.75rem;
        border-radius: 16px;
    }
    
    .proposta-badge {
        top: 0.75rem;
        right: 0.75rem;
        padding: 0.2rem 0.75rem;
        font-size: 0.7rem;
    }
    
    .proposta-highlight h3 {
        font-size: 1.25rem !important;
        margin-bottom: 1rem;
        padding-right: 60px;
    }
    
    .proposta-highlight-text {
        font-size: 0.95rem;
        line-height: 1.6;
        margin-bottom: 1.25rem;
    }
    
    .proposta-tags {
        gap: 0.5rem;
        justify-content: flex-start;
    }
    
    .tag {
        padding: 0.4rem 0.75rem;
        font-size: 0.75rem;
        border-radius: 16px;
    }
    
    /* === PROPOSTA FEATURES === */
    .proposta-features {
        gap: 0.75rem;
    }
    
    .feature-card {
        padding: 1.25rem;
        border-radius: 14px;
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
    }
    
    .feature-card:hover {
        transform: translateY(-3px);
    }
    
    .feature-icon {
        width: 48px;
        height: 48px;
        border-radius: 10px;
        margin: 0 auto;
    }
    
    .feature-icon i {
        font-size: 1.25rem;
    }
    
    .feature-content h4 {
        font-size: 1rem;
        margin-bottom: 0.4rem;
    }
    
    .feature-content p {
        font-size: 0.85rem;
        line-height: 1.55;
    }
    
    .feature-arrow {
        display: none;
    }
    
    /* === PROPOSTA IMAGE WRAPPER === */
    .proposta-image-wrapper {
        gap: 1rem;
    }
    
    .proposta-image-frame {
        border-radius: 16px;
    }
    
    .proposta-image {
        height: 200px;
    }
    
    .proposta-image-caption {
        padding: 1rem;
        gap: 0.5rem;
        font-size: 0.9rem;
    }
    
    .proposta-image-caption i {
        font-size: 1rem;
    }
    
    .proposta-quote {
        padding: 1.5rem;
        border-radius: 14px;
        border-left-width: 3px;
    }
    
    .proposta-quote i {
        font-size: 2rem;
        margin-bottom: 0.75rem;
    }
    
    .proposta-quote p {
        font-size: 0.95rem;
        line-height: 1.6;
    }
    
    /* === CTA SECTION === */
    .cta-section {
        padding: 3rem 0;
    }
    
    .cta__content {
        padding: 0 1rem;
    }
    
    .cta__title {
        font-size: 1.5rem !important;
        margin-bottom: var(--mb-1);
        line-height: 1.3;
    }
    
    .cta__text {
        font-size: 0.95rem;
        margin-bottom: var(--mb-2);
        line-height: 1.5;
    }
    
    .cta__buttons {
        flex-direction: column;
        gap: 0.75rem;
        width: 100%;
    }
    
    .cta__buttons .button {
        width: 100%;
        max-width: 280px;
        padding: 0.875rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .button--secondary {
        border-width: 1.5px;
    }
    
    /* === HEADER/NAV MOBILE (caso necessário) === */
    .nav__logo img {
        width: 80px;
        max-height: 35px;
    }
    
    .nav__dark {
        left: 2rem;
        bottom: 3rem;
        column-gap: 1.5rem;
    }
    
    .nav__list {
        row-gap: 2rem;
    }
    
    .nav__link {
        font-size: 0.95rem;
    }
}

/*=============== MOBILE EXTRA PEQUENO - 360px e abaixo ===============*/
@media screen and (max-width: 360px) {
    
    .sobre-hero .home__data-title {
        font-size: 1.5rem !important;
    }
    
    .sobre-subtitle {
        padding: 0.35rem 0.85rem;
        font-size: 0.75rem;
    }
    
    .sobre-intro {
        font-size: 0.9rem;
    }
    
    .sobre-text-box {
        padding: 1rem;
    }
    
    .sobre-text-icon {
        width: 38px;
        height: 38px;
    }
    
    .sobre-text-icon i {
        font-size: 1.1rem;
    }
    
    .featured-stat {
        padding: 1rem;
    }
    
    .stat-number {
        font-size: 1.75rem;
    }
    
    .sobre-main-image {
        height: 180px;
    }
    
    .stat-card {
        padding: 0.875rem;
    }
    
    .stat-icon {
        width: 38px;
        height: 38px;
    }
    
    .stat-value {
        font-size: 1.35rem;
    }
    
    .proposta-highlight {
        padding: 1.5rem;
    }
    
    .proposta-highlight h3 {
        font-size: 1.15rem !important;
    }
    
    .proposta-highlight-text {
        font-size: 0.9rem;
    }
    
    .tag {
        padding: 0.35rem 0.6rem;
        font-size: 0.7rem;
    }
    
    .feature-card {
        padding: 1rem;
    }
    
    .feature-icon {
        width: 44px;
        height: 44px;
    }
    
    .feature-content h4 {
        font-size: 0.95rem;
    }
    
    .proposta-image {
        height: 170px;
    }
    
    .proposta-quote {
        padding: 1.25rem;
    }
    
    .proposta-quote i {
        font-size: 1.75rem;
    }
    
    .proposta-quote p {
        font-size: 0.9rem;
    }
    
    .cta__title {
        font-size: 1.35rem !important;
    }
    
    .cta__text {
        font-size: 0.9rem;
    }
    
    .cta__buttons .button {
        padding: 0.75rem 1.25rem;
        font-size: 0.85rem;
    }
}

/*=============== TABLET PEQUENO - 577px a 767px ===============*/
@media screen and (min-width: 577px) and (max-width: 767px) {
    
    .sobre-hero .home__data-title {
        font-size: 2rem !important;
    }
    
    .sobre-header {
        margin-bottom: 2.5rem;
    }
    
    .sobre-intro {
        font-size: 1rem;
    }
    
    .sobre-text-box {
        padding: 1.35rem;
    }
    
    .sobre-featured-stats {
        flex-direction: row;
        gap: 1rem;
    }
    
    .featured-stat {
        padding: 1.25rem 1rem;
    }
    
    .stat-number {
        font-size: 1.75rem;
    }
    
    .sobre-main-image {
        height: 260px;
    }
    
    .sobre-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.875rem;
    }
    
    .proposta-highlight {
        padding: 2rem;
    }
    
    .proposta-highlight h3 {
        font-size: 1.4rem !important;
    }
    
    .feature-card {
        flex-direction: row;
        text-align: left;
        padding: 1.35rem;
    }
    
    .feature-card:hover {
        transform: translateX(5px);
    }
    
    .feature-icon {
        margin: 0;
    }
    
    .feature-arrow {
        display: block;
    }
    
    .proposta-image {
        height: 240px;
    }
    
    .cta__title {
        font-size: 1.75rem !important;
    }
    
    .cta__buttons {
        flex-direction: row;
        justify-content: center;
    }
    
    .cta__buttons .button {
        width: auto;
    }
}

/*=============== LANDSCAPE MOBILE ===============*/
@media screen and (max-width: 767px) and (orientation: landscape) {
    
    .sobre-hero .home__data-title {
        font-size: 1.75rem !important;
    }
    
    .sobre-content-wrapper {
        gap: 2rem;
    }
    
    .sobre-featured-stats {
        flex-direction: row;
    }
    
    .sobre-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .proposta-grid {
        gap: 1.5rem;
    }
    
    .proposta-highlight {
        padding: 1.75rem;
    }
    
    .feature-card {
        flex-direction: row;
        text-align: left;
    }
    
    .feature-icon {
        margin: 0;
    }
    
    .cta-section {
        padding: 2.5rem 0;
    }
}

/*=============== TOUCH DEVICES ===============*/
@media (hover: none) and (pointer: coarse) {
    
    /* Remove hover effects que não funcionam bem em touch */
    .sobre-text-box:hover {
        transform: none;
    }
    
    .stat-card:hover {
        transform: none;
    }
    
    .feature-card:hover {
        transform: none;
    }
    
    .sobre-image-container:hover .sobre-main-image {
        transform: none;
    }
    
    .proposta-image-frame:hover .proposta-image {
        transform: none;
    }
    
    /* Adiciona active states para feedback visual */
    .sobre-text-box:active {
        transform: scale(0.98);
    }
    
    .stat-card:active {
        transform: scale(0.98);
        border-color: var(--first-color);
    }
    
    .feature-card:active {
        transform: scale(0.98);
        border-color: var(--first-color);
    }
    
    .tag:active {
        background: rgba(255, 255, 255, 0.2);
    }
    
    .cta__buttons .button:active {
        transform: scale(0.98);
    }
    
    /* Aumenta área de toque */
    .tag {
        min-height: 36px;
        display: inline-flex;
        align-items: center;
    }
    
    .stat-card {
        min-height: 70px;
    }
    
    .feature-card {
        min-height: 80px;
    }
}

/*=============== DARK MODE MOBILE ===============*/
@media screen and (max-width: 576px) {
    body.dark-theme .sobre-text-box {
        background: rgba(40, 40, 40, 0.9);
    }
    
    body.dark-theme .stat-card {
        background: rgba(40, 40, 40, 0.9);
    }
    
    body.dark-theme .feature-card {
        background: rgba(40, 40, 40, 0.9);
    }
    
    body.dark-theme .feature-card-primary {
        background: linear-gradient(135deg, rgba(255, 149, 0, 0.15), rgba(255, 149, 0, 0.08));
    }
    
    body.dark-theme .proposta-quote {
        background: rgba(40, 40, 40, 0.9);
    }
    
    body.dark-theme .proposta-highlight {
        background: linear-gradient(135deg, #0f0f0f, #1a1a1a);
    }
}

/*=============== ACESSIBILIDADE - REDUCED MOTION ===============*/
@media (prefers-reduced-motion: reduce) {
    .sobre-text-box,
    .stat-card,
    .feature-card,
    .sobre-main-image,
    .proposta-image,
    .tag {
        transition: none !important;
    }
    
    .sobre-text-box:hover,
    .stat-card:hover,
    .feature-card:hover {
        transform: none !important;
    }
}

/*=============== SAFE AREA (iPhone X+) ===============*/
@supports (padding: max(0px)) {
    @media screen and (max-width: 576px) {
        .cta-section {
            padding-bottom: max(3rem, calc(env(safe-area-inset-bottom) + 2rem));
        }
        
        .sobre-content-wrapper {
            padding-left: max(0px, env(safe-area-inset-left));
            padding-right: max(0px, env(safe-area-inset-right));
        }
    }
}

/*===============================================================
  CORREÇÃO HERO MOBILE - PÁGINA SOBRE
  Adicione este código ao seu sobre.css (substitua os media queries 
  existentes do hero ou adicione ao final)
================================================================*/

/*=============== FIX HERO MOBILE ===============*/
@media screen and (max-width: 576px) {
    
    /* Garante que o hero ocupe a tela toda */
    .sobre-hero {
        min-height: 100vh;
        height: 100vh;
        position: relative;
        overflow: hidden;
    }
    
    /* Ajusta a imagem de fundo */
    .sobre-hero .home__img {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
    }
    
    /* Container do hero */
    .sobre-hero .home__container {
        height: 100%;
        min-height: 100vh;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 0 1.5rem;
        padding-top: 60px; /* Espaço para o header */
        padding-bottom: 100px; /* Espaço para o botão */
        position: relative;
        z-index: 2;
    }
    
    /* Conteúdo/dados do hero */
    .sobre-hero .home__data {
        text-align: center;
        width: 100%;
        max-width: 100%;
        padding: 0 0.5rem;
    }
    
    /* Título principal - REDUZIDO para caber */
    .sobre-hero .home__data-title {
        font-size: 2rem !important;
        line-height: 1.2 !important;
        margin-bottom: 1rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    /* Highlight/destaque no título */
    .sobre-hero .home__data-title .highlight {
        display: inline;
    }
    
    .sobre-hero .home__data-title .highlight::after {
        bottom: -2px;
        height: 2px;
    }
    
    /* Subtítulo */
    .sobre-hero .home__data-subtitle {
        font-size: 0.9rem;
        margin-bottom: 0.5rem;
    }
    
    /* Descrição (se houver) */
    .sobre-hero .home__data-description {
        font-size: 0.95rem;
        line-height: 1.5;
        margin-bottom: 1.5rem;
        padding: 0 0.5rem;
    }
    
    /* Botão "Descobrir Mais" */
    .sobre-hero .button,
    .sobre-hero .home__data .button {
        padding: 0.875rem 1.5rem;
        font-size: 0.9rem;
        margin-top: 1rem;
    }
    
    /* Se o botão estiver posicionado absolutamente */
    .sobre-hero .home__info {
        position: absolute;
        bottom: 20px;
        left: 50%;
        transform: translateX(-50%);
        width: auto;
        max-width: 90%;
    }
}

/*=============== FIX PARA TELAS MUITO PEQUENAS ===============*/
@media screen and (max-width: 360px) {
    
    .sobre-hero .home__container {
        padding: 0 1rem;
        padding-top: 50px;
        padding-bottom: 90px;
    }
    
    .sobre-hero .home__data-title {
        font-size: 1.65rem !important;
        line-height: 1.25 !important;
    }
    
    .sobre-hero .home__data-subtitle {
        font-size: 0.85rem;
    }
    
    .sobre-hero .home__data-description {
        font-size: 0.9rem;
    }
    
    .sobre-hero .button {
        padding: 0.75rem 1.25rem;
        font-size: 0.85rem;
    }
}

/*=============== FIX PARA TELAS MUITO CURTAS (altura) ===============*/
@media screen and (max-width: 576px) and (max-height: 667px) {
    
    .sobre-hero .home__container {
        padding-top: 50px;
        padding-bottom: 80px;
    }
    
    .sobre-hero .home__data-title {
        font-size: 1.75rem !important;
        margin-bottom: 0.75rem;
    }
    
    .sobre-hero .home__data-description {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }
}

/*=============== FIX LANDSCAPE MOBILE ===============*/
@media screen and (max-width: 767px) and (orientation: landscape) {
    
    .sobre-hero {
        min-height: 100vh;
        height: auto;
    }
    
    .sobre-hero .home__container {
        min-height: 100vh;
        padding-top: 70px;
        padding-bottom: 30px;
    }
    
    .sobre-hero .home__data-title {
        font-size: 1.5rem !important;
    }
    
    .sobre-hero .home__data-description {
        font-size: 0.85rem;
        margin-bottom: 1rem;
    }
}

/*=============== TABLET PEQUENO ===============*/
@media screen and (min-width: 577px) and (max-width: 767px) {
    
    .sobre-hero .home__container {
        padding: 0 2rem;
        padding-top: 80px;
        padding-bottom: 100px;
    }
    
    .sobre-hero .home__data-title {
        font-size: 2.25rem !important;
    }
}
