/* Estilos específicos da página apousada.html (o design system está em ../site.css) */

h3 {
        font-size: clamp(1.5rem, 3vw, 2rem);
        line-height: 1.3;
      }

p, .lead {
        font-family: var(--font-sans);
        line-height: 1.7;
        margin-bottom: var(--space-md);
      }

.lead {
        font-size: clamp(1.1rem, 2vw, 1.25rem);
        color: var(--color-secondary);
      }

.page-hero::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: url('../../img/20210513_172609.jpg') center/cover;
        opacity: 0.2;
        z-index: 0;
      }

.page-hero .subtitle {
        font-size: clamp(1.2rem, 2.5vw, 1.5rem);
        color: var(--color-accent-soft);
        font-family: var(--font-sans);
        font-weight: 400;
        letter-spacing: 0.05em;
        text-transform: uppercase;
        animation: fadeInUp 1s ease-out 0.2s both;
      }

/* ========================================
         SEÇÕES DE CONTEÚDO
      ======================================== */
.content-section {
        padding: var(--space-2xl) 0;
      }

.content-section.bg-light {
        background-color: var(--color-neutral-light);
      }

.content-section.bg-accent {
        background: linear-gradient(
          135deg,
          var(--color-accent-soft) 0%,
          rgba(232, 227, 213, 0.8) 100%
        );
      }

.content-section.bg-dark {
        background-color: var(--color-primary);
        color: var(--color-text-light);
      }

.content-section.bg-dark h2,
      .content-section.bg-dark h3,
      .content-section.bg-dark p {
        color: var(--color-text-light);
      }

/* ========================================
         FEATURE CARDS
      ======================================== */
.feature-card {
        background: #fff;
        border-radius: 16px;
        padding: var(--space-lg);
        box-shadow: 0 4px 24px rgba(28, 39, 28, 0.08);
        transition: var(--transition-smooth);
        border: 1px solid var(--color-neutral-medium);
        height: 100%;
      }

.feature-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 12px 48px rgba(28, 39, 28, 0.15);
        border-color: var(--color-accent-warm);
      }

.feature-card h3 {
        font-size: 1.5rem;
        text-align: center;
        margin-bottom: var(--space-sm);
      }

.feature-card p {
        text-align: center;
        color: var(--color-secondary);
        font-size: 0.95rem;
        line-height: 1.6;
        margin: 0;
      }

/* ========================================
         STATS SECTION
      ======================================== */
.stats-item {
        text-align: center;
        padding: var(--space-lg);
      }

.stats-number {
        font-family: var(--font-serif);
        font-size: clamp(2.5rem, 5vw, 3.5rem);
        font-weight: 700;
        color: var(--color-accent-warm);
        line-height: 1;
        margin-bottom: var(--space-sm);
        display: block;
      }

.stats-label {
        font-family: var(--font-sans);
        font-size: 1rem;
        color: var(--color-text-light);
        letter-spacing: 0.05em;
        text-transform: uppercase;
        opacity: 0.9;
      }

/* ========================================
         TIMELINE
      ======================================== */
.timeline-item {
        position: relative;
        padding-left: var(--space-xl);
        margin-bottom: var(--space-xl);
      }

.timeline-item::before {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        width: 4px;
        height: 100%;
        background: linear-gradient(
          to bottom,
          var(--color-accent-warm) 0%,
          var(--color-bronze) 100%
        );
        border-radius: 4px;
      }

.timeline-item::after {
        content: '';
        position: absolute;
        left: -6px;
        top: 8px;
        width: 16px;
        height: 16px;
        background: var(--color-accent-warm);
        border-radius: 50%;
        box-shadow: 0 0 0 4px var(--color-neutral-light);
      }

.timeline-item h3 {
        font-size: 1.75rem;
        margin-bottom: var(--space-sm);
      }

.timeline-item p {
        margin: 0;
      }

/* ========================================
         IMAGE CONTENT SECTION
      ======================================== */
.image-content-wrapper {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: var(--space-xl);
        align-items: center;
      }

.image-content-wrapper img {
        width: 100%;
        height: 500px;
        object-fit: cover;
        border-radius: 16px;
        box-shadow: 0 12px 48px rgba(28, 39, 28, 0.15);
      }

@media (max-width: 768px) {
        .image-content-wrapper {
          grid-template-columns: 1fr;
          gap: var(--space-lg);
        }

        .image-content-wrapper img {
          height: 350px;
        }
      }

/* ========================================
         IMAGEM FULL WIDTH
         (mesmo padrão de overlay do hero da home)
      ======================================== */
.full-image-section {
        position: relative;
        height: 500px;
        overflow: hidden;
      }

.full-image-section img {
        width: 100%;
        height: 100%;
        object-fit: cover;
      }

.full-image-section::after {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(
          180deg,
          rgba(28, 39, 28, 0.3) 0%,
          rgba(28, 39, 28, 0.5) 100%
        );
        z-index: 1;
      }

.full-image-caption {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        text-align: center;
        z-index: 2;
        width: min(90%, 800px);
      }

.full-image-caption h2 {
        color: var(--color-text-light);
        font-size: clamp(1.75rem, 1.2rem + 2.5vw, 3rem);
        text-shadow: 0 4px 24px rgba(0, 0, 0, 0.5);
        margin: 0;
      }

/* ========================================
         CTA SECTION
      ======================================== */
.cta-box {
        background: linear-gradient(135deg, var(--color-accent-warm) 0%, var(--color-bronze) 100%);
        border-radius: 24px;
        padding: var(--space-xl);
        text-align: center;
        box-shadow: 0 12px 48px rgba(201, 184, 150, 0.3);
        margin: var(--space-xl) 0;
      }

.btn-primary-custom {
        background: var(--color-primary);
        color: var(--color-text-light);
        padding: 16px 48px;
        border-radius: 12px;
        font-family: var(--font-sans);
        font-weight: 600;
        font-size: 16px;
        letter-spacing: 0.02em;
        border: none;
        box-shadow: 0 4px 16px rgba(28, 39, 28, 0.3);
        transition: var(--transition-smooth);
        text-decoration: none;
        display: inline-block;
      }

.btn-primary-custom:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 24px rgba(28, 39, 28, 0.4);
        background: var(--color-primary-hover);
        color: var(--color-text-light);
      }

.fade-in {
        animation: fadeInUp 0.8s ease-out;
      }

/* ========================================
         RESPONSIVIDADE
      ======================================== */
@media (max-width: 768px) {
        :root {
          --space-xl: 48px;
          --space-2xl: 64px;
        }

        .page-hero {
          height: 28vh;
          min-height: 240px;
        }

        .feature-card {
          margin-bottom: var(--space-md);
        }

        .timeline-item {
          padding-left: var(--space-lg);
        }

        .cta-box {
          padding: var(--space-lg);
        }

        .full-image-section {
          height: 350px;
        }
      }

@media (max-width: 576px) {
        :root {
          --space-xl: 32px;
          --space-2xl: 48px;
        }

        .full-image-section {
          height: 280px;
        }

        .image-content-wrapper img {
          height: 260px;
        }

        .stats-item {
          padding: var(--space-sm);
        }

        .cta-box {
          padding: var(--space-md);
        }
      }

/* Celulares pequenos */
@media (max-width: 400px) {
        .btn-primary-custom {
          display: block;
          width: 100%;
          text-align: center;
          padding: 14px 20px;
        }
      }
