/* --------------------
   Estilo da página - 100% Responsivo
--------------------- */

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

main {
   font-family: 'Inter', sans-serif;
   line-height: 1.6;
   color: #333;
   overflow-x: hidden;
}

/* Estado inicial antes da animação */
.antes-animacao {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.6s ease-out;
}

/* Classe que será adicionada quando o elemento aparecer */
.animar-entrada {
    opacity: 1;
    transform: translateY(0);
}

/* ---- SEÇÃO PRINCIPAL ---- */
.secao-principal {
   min-height: 100vh;
   background: linear-gradient(135deg, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.6));
   display: flex;
   align-items: center;
   justify-content: center;
   text-align: center;
   color: white;
   position: relative;
   padding: 2rem;
}

.placeholder-imagem {
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   background: url(../assets/images/background_sobre_nos.png);
   background-size: cover;
   background-position: center;
   background-attachment: fixed;
   display: flex;
   align-items: center;
   justify-content: center;
   z-index: -1;
}

.conteudo-principal {
   max-width: 800px;
   width: 100%;
   z-index: 2;
   animation: slideUp 1s ease-out;
   padding: 0 1rem;
}

.titulo-principal {
   font-size: clamp(2rem, 5vw, 3.5rem);
   font-weight: bold;
   margin-bottom: 8rem;
   text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
   line-height: 1.2;
}

.subtitulo {
   font-size: clamp(1rem, 3vw, 1.7rem);
   margin-bottom: 3rem;
   opacity: 0.9;
   line-height: 1.4;
}

.botao-principal {
   background: linear-gradient(90deg, #FA6200, #F09617, #00C48C);
   color: white;
   padding: clamp(12px, 2vw, 15px) clamp(25px, 5vw, 35px);
   border: none;
   border-radius: 50px;
   font-size: clamp(0.9rem, 2vw, 1.1rem);
   font-weight: bold;
   cursor: pointer;
   transition: all 0.3s ease;
   text-transform: uppercase;
   letter-spacing: 1px;
   box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
   width: auto;
   max-width: 300px;
}

.botao-principal:hover {
   transform: translateY(-3px);
   box-shadow: 0 12px 35px rgba(255, 107, 53, 0.4);
   background: linear-gradient(45deg, #f7931e, #ff6b35);
}

/* ---- SEÇÃO SOBRE ---- */
.container {
   max-width: 1200px;
   margin: 0 auto;
   padding: 0 clamp(20px, 4vw, 40px);
   width: 100%;
}

.sobre {
   padding: clamp(60px, 10vw, 100px) 0;
   background: #f8f9fa;
   position: relative;
}

.sobre::before {
   content: '';
   position: absolute;
   top: 0;
   left: 0;
   right: 0;
   height: 4px;
   background: linear-gradient(90deg, #FA6200, #F09617, #00C48C);
}

.conteudo-sobre {
   display: grid;
   grid-template-columns: 1fr;
   gap: clamp(40px, 8vw, 80px);
   align-items: center;
}

.texto-sobre {
   background: linear-gradient(135deg, #ff6b35, #f7941d);
   color: white;
   padding: clamp(30px, 6vw, 50px);
   border-radius: 25px;
   order: 2;
   box-shadow: 0 15px 40px rgba(255, 107, 53, 0.3);
   transform: translateY(0);
   transition: all 0.4s ease;
}

.texto-sobre:hover {
   transform: translateY(-5px);
   box-shadow: 0 20px 50px rgba(255, 107, 53, 0.4);
}

.texto-sobre h2 {
   font-size: clamp(2rem, 4vw, 2.8rem);
   margin-bottom: 25px;
   font-weight: 700;
}

.texto-sobre p {
   font-size: clamp(1.1rem, 2.5vw, 1.4rem);
   line-height: 1.8;
   opacity: 0.95;
}

.imagem-sobre {
   background: url(../assets/images/de_onde_viemos.png);
   background-size: cover;
   background-position: center;
   height: clamp(300px, 50vw, 500px);
   border-radius: 25px;
   order: 1;
   box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
   transition: transform 0.4s ease;
}

.imagem-sobre:hover {
   transform: scale(1.02);
}

/* ---- SEÇÃO SLOGAN ---- */
.secao-slogan {
   padding: clamp(3rem, 8vw, 5rem) 0;
   background: #fff;
   text-align: center;
}

.container-slogan {
   max-width: 900px;
   margin: 0 auto;
   padding: clamp(2rem, 5vw, 3rem);
   background: #f8f9fa;
   border-radius: 25px;
   box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
   border: 2px solid transparent;
   background-clip: padding-box;
   position: relative;
}

.container-slogan::before {
   content: '';
   position: absolute;
   inset: 0;
   padding: 2px;
   background: linear-gradient(135deg, #FA6200, #F09617, #00C48C);
   border-radius: inherit;
   z-index: -1;
}

.texto-slogan {
   font-size: clamp(1.4rem, 4vw, 2rem);
   color: #333;
   font-weight: 600;
   line-height: 1.4;
   text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.destaque-slogan {
   background: linear-gradient(135deg, #FA6200, #F09617, #00C48C);
   -webkit-background-clip: text;
   -webkit-text-fill-color: transparent;
   background-clip: text;
   font-weight: 700;
}


/* ---- SEÇÃO MISSÃO, VISÃO E VALORES ---- */
.missao_visao_valores {
   display: flex;
   flex-direction: column;
   justify-content: center;
   align-items: center;
   min-height: 100vh;
   font-family: var(--fonte-sans, 'Inter', sans-serif);
   background: linear-gradient(135deg, #f2f2f2, #e8e8e8);
   padding: clamp(3rem, 8vw, 5rem) clamp(1rem, 4vw, 2rem);
}

.conteudo_missao {
   display: grid;
   grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
   gap: clamp(2rem, 5vw, 3rem);
   max-width: 1400px;
   width: 100%;
   justify-items: center;
   margin-bottom: clamp(3rem, 8vw, 5rem);
}

.card {
   position: relative;
   display: flex;
   align-items: flex-end;
   justify-content: center;
   padding: clamp(2rem, 5vw, 2.5rem);
   height: clamp(450px, 60vw, 650px);
   color: #fff;
   text-align: center;
   border-radius: 20px;
   overflow: hidden;
   box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
   transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
   width: 100%;
   max-width: 450px;
   cursor: pointer;
}

.card::before {
   content: '';
   position: absolute;
   inset: 0;
   background-size: cover;
   background-position: center;
   transition: transform 0.6s ease;
   z-index: 0;
}

.card::after {
   content: '';
   position: absolute;
   inset: 0;
   background: linear-gradient(to bottom, transparent 40%, rgba(0, 0, 0, 0.9));
   transition: all 0.6s ease;
}

.conteudo-card {
   position: relative;
   z-index: 1;
   display: flex;
   flex-direction: column;
   align-items: center;
   transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
   transform: translateY(calc(100% - 6rem));
}

.conteudo-card>*:not(.titulo) {
   opacity: 0;
   transform: translateY(1.5rem);
   transition: all 0.4s ease;
}

.titulo {
   font-size: clamp(2.2rem, 5vw, 3rem);
   font-weight: 700;
   text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
}

.imagem-card {
   width: clamp(160px, 30vw, 220px);
   height: clamp(160px, 30vw, 220px);
   margin: clamp(1.5rem, 4vw, 2.5rem) 0;
   object-fit: contain;
   pointer-events: none;
   filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.descricao {
   font-family: var(--font-family-heading, 'Inter', sans-serif);
   font-size: clamp(1.1rem, 3vw, 1.5rem);
   margin: clamp(1.5rem, 4vw, 2rem) 0;
   line-height: 1.5;
   text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
}

.card:hover {
   transform: translateY(-10px) scale(1.02);
   box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
}

.card:hover::before {
   transform: scale(1.1);
   background-color: rgba(0, 0, 0, 0.7);
   background-blend-mode: multiply;
}

.card:hover::after {
   background: linear-gradient(to bottom, transparent 20%, rgba(0, 0, 0, 0.95));
}

.card:hover .conteudo-card {
   transform: translateY(0);
}

.card:hover .conteudo-card>*:not(.titulo) {
   opacity: 1;
   transform: translateY(0);
   transition-delay: 0.2s;
}

/* Imagens de fundo */
.card:nth-child(1)::before {
   background-image: url(../assets/images/missão.jpg);
}

.card:nth-child(2)::before {
   background-image: url(../assets/images/visão.jpg);
}

.card:nth-child(3)::before {
   background-image: url(../assets/images/valores.jpg);
}


/* ---- SEÇÃO EQUIPE ---- */
.secao-equipe {
   padding: clamp(4rem, 10vw, 6rem) clamp(1rem, 4vw, 2rem);
   background: white;
   position: relative;
}

.secao-equipe::before {
   content: '';
   position: absolute;
   top: 0;
   left: 0;
   right: 0;
   height: 4px;
   background: linear-gradient(90deg, #FA6200, #F09617, #00C48C);
}

.container-equipe {
   max-width: 1200px;
   margin: 0 auto;
   text-align: center;
}

.titulo-equipe {
   text-align: center;
   font-size: 3rem;
   margin-bottom: 3rem;
   background: linear-gradient(90deg, #FA6200, #F09617, #00C48C);
   -webkit-background-clip: text;
   -webkit-text-fill-color: transparent;
   background-clip: text;
}

.subtitulo-equipe {
   font-size: clamp(1.1rem, 3vw, 1.3rem);
   color: #666;
   margin-bottom: clamp(3rem, 6vw, 4rem);
}

/* Grid principal - 3 colunas */
.carrossel-equipe {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(1.5rem, 3vw, 2rem);
    margin: 3rem 0;
    padding: 1rem;
    max-width: 100%;
}

/* Cada coluna contém 2 cards empilhados */
.coluna-equipe {
    display: flex;
    flex-direction: column;
    gap: clamp(1.5rem, 3vw, 2rem);
}

.container-cards-equipe {
   /* Removido - não necessário com o novo layout */
   display: contents;
}

.card-membro {
    width: 100%;
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 2px solid transparent;
}

.card-membro:hover {
   transform: translateY(-10px) scale(1.02);
   box-shadow: 0 25px 60px rgba(0, 0, 0, 0.2);
   border-color: rgba(250, 98, 0, 0.3);
}

.imagem-membro {
   width: 100%;
   height: clamp(320px, 40vw, 420px);
   overflow: hidden;
   position: relative;
}

.imagem-membro::after {
   content: '';
   position: absolute;
   inset: 0;
   background: linear-gradient(to bottom, transparent 70%, rgba(0, 0, 0, 0.1));
   opacity: 0;
   transition: opacity 0.3s ease;
}

.card-membro:hover .imagem-membro::after {
   opacity: 1;
}

.imagem-membro img {
   width: 100%;
   height: 100%;
   object-fit: cover;
   object-position: center;
   transition: transform 0.4s ease;
}

.card-membro:hover .imagem-membro img {
   transform: scale(1.05);
}

.info-membro {
   padding: clamp(1.5rem, 3vw, 2rem);
   background: linear-gradient(135deg, #f8f9fa, #ffffff);
}

.nome-membro {
   font-size: clamp(1.1rem, 2.5vw, 1.3rem);
   font-weight: 700;
   color: #333;
   margin-bottom: 0.5rem;
   transition: color 0.3s ease;
}

.cargo-membro {
   font-size: clamp(0.9rem, 2vw, 1rem);
   color: #666;
   font-weight: 500;
   opacity: 0.8;
}

.card-membro:hover .nome-membro {
   background: linear-gradient(135deg, #FA6200, #F09617, #00C48C);
   -webkit-background-clip: text;
   -webkit-text-fill-color: transparent;
   background-clip: text;
}

/* Controles do carrossel - mantidos para compatibilidade */
.controles-carrossel {
   display: none; /* Ocultos no layout de grid fixo */
}

.botao-carrossel {
   background: linear-gradient(135deg, #FA6200, #F09617);
   color: white;
   border: none;
   border-radius: 50%;
   width: clamp(50px, 10vw, 60px);
   height: clamp(50px, 10vw, 60px);
   font-size: clamp(1.2rem, 3vw, 1.5rem);
   cursor: pointer;
   transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
   display: flex;
   align-items: center;
   justify-content: center;
   box-shadow: 0 8px 20px rgba(250, 98, 0, 0.3);
   position: relative;
   overflow: hidden;
}

.botao-carrossel::before {
   content: '';
   position: absolute;
   inset: 0;
   background: linear-gradient(135deg, #f7931e, #00C48C);
   opacity: 0;
   transition: opacity 0.3s ease;
}

.botao-carrossel:hover {
   transform: scale(1.15);
   box-shadow: 0 12px 30px rgba(250, 98, 0, 0.4);
}

.botao-carrossel:hover::before {
   opacity: 1;
}

.indicadores-carrossel {
   display: none; /* Ocultos no layout de grid fixo */
}

.indicador {
   width: clamp(12px, 3vw, 15px);
   height: clamp(12px, 3vw, 15px);
   border-radius: 50%;
   background: #ddd;
   cursor: pointer;
   transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
   position: relative;
}

.indicador::before {
   content: '';
   position: absolute;
   inset: -2px;
   background: linear-gradient(135deg, #FA6200, #F09617, #00C48C);
   border-radius: 50%;
   opacity: 0;
   transition: opacity 0.3s ease;
}

.indicador.ativo {
   background: #FA6200;
   transform: scale(1.3);
}

.indicador.ativo::before {
   opacity: 1;
}

/* Responsividade */
@media (min-width: 1400px) {
    .carrossel-equipe {
        gap: clamp(2rem, 3vw, 2.5rem);
    }
    
    .imagem-membro {
        height: clamp(380px, 42vw, 480px);
    }
    
    .info-membro {
        padding: clamp(2rem, 3vw, 2.5rem);
    }
}

@media (min-width: 1200px) and (max-width: 1399px) {
    .imagem-membro {
        height: clamp(350px, 40vw, 450px);
    }
}

@media (min-width: 993px) and (max-width: 1199px) {
    .imagem-membro {
        height: clamp(320px, 38vw, 420px);
    }
    
    .carrossel-equipe {
        gap: clamp(1.5rem, 2.5vw, 2rem);
    }
}

@media (min-width: 769px) and (max-width: 992px) {
    .carrossel-equipe {
        grid-template-columns: repeat(2, 1fr);
        gap: clamp(1.5rem, 3vw, 2rem);
    }
    
    .imagem-membro {
        height: clamp(280px, 35vw, 380px);
    }
    
    .coluna-equipe {
        gap: clamp(1.5rem, 3vw, 2rem);
    }
}

@media (min-width: 577px) and (max-width: 768px) {
    .carrossel-equipe {
        grid-template-columns: repeat(2, 1fr);
        gap: clamp(1.2rem, 2.5vw, 1.8rem);
    }
    
    .coluna-equipe {
        gap: clamp(1.2rem, 2.5vw, 1.8rem);
    }
    
    .imagem-membro {
        height: clamp(250px, 40vw, 320px);
    }
    
    .info-membro {
        padding: clamp(1.2rem, 2.5vw, 1.8rem);
    }
}

@media (min-width: 481px) and (max-width: 576px) {
    .carrossel-equipe {
        grid-template-columns: 1fr;
        gap: clamp(1.2rem, 3vw, 1.8rem);
    }
    
    .coluna-equipe {
        gap: clamp(1.2rem, 3vw, 1.8rem);
    }
    
    .imagem-membro {
        height: clamp(220px, 45vw, 280px);
    }
    
    .nome-membro {
        font-size: clamp(1.1rem, 3vw, 1.25rem);
    }
    
    .cargo-membro {
        font-size: clamp(0.9rem, 2.5vw, 1rem);
    }
}

@media (max-width: 480px) {
    .secao-equipe {
        padding: clamp(2rem, 8vw, 4rem) clamp(0.5rem, 3vw, 1rem);
    }
    
    .titulo-equipe {
        font-size: clamp(2rem, 8vw, 2.5rem);
        margin-bottom: 2rem;
    }
    
    .carrossel-equipe {
        grid-template-columns: 1fr;
        gap: clamp(1rem, 3vw, 1.5rem);
        padding: 0.5rem;
    }
    
    .coluna-equipe {
        gap: clamp(1rem, 3vw, 1.5rem);
    }
    
    .imagem-membro {
        height: clamp(200px, 50vw, 260px);
    }
    
    .info-membro {
        padding: clamp(1rem, 3vw, 1.5rem);
    }
    
    .nome-membro {
        font-size: clamp(1rem, 4vw, 1.2rem);
        margin-bottom: 0.3rem;
    }
    
    .cargo-membro {
        font-size: clamp(0.85rem, 3vw, 0.95rem);
    }
}

@media (max-width: 360px) {
    .carrossel-equipe {
        padding: 0.25rem;
        gap: clamp(0.8rem, 3vw, 1.2rem);
    }
    
    .imagem-membro {
        height: clamp(180px, 55vw, 240px);
    }
    
    .info-membro {
        padding: clamp(0.8rem, 3vw, 1.2rem);
    }
    
    .nome-membro {
        font-size: clamp(0.95rem, 4vw, 1.1rem);
    }
    
    .cargo-membro {
        font-size: clamp(0.8rem, 3vw, 0.9rem);
    }
}

/* ---- SEÇÃO REDIRECIONAMENTO ---- */
.redirecionamento {
   background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
   min-height: 100vh;
   display: flex;
   align-items: center;
   justify-content: center;
   padding: clamp(30px, 6vw, 50px);
}

.container-secao {
   background: rgba(255, 255, 255, 0.95);
   backdrop-filter: blur(15px);
   border-radius: 25px;
   padding: clamp(50px, 10vw, 80px) clamp(40px, 8vw, 60px);
   max-width: 700px;
   width: 100%;
   text-align: center;
   box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
   border: 2px solid rgba(255, 255, 255, 0.3);
   transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
   position: relative;
}

.container-secao::before {
   content: '';
   position: absolute;
   inset: -2px;
   background: linear-gradient(135deg, #FA6200, #F09617, #00C48C);
   border-radius: inherit;
   opacity: 0;
   transition: opacity 0.4s ease;
   z-index: -1;
}

.container-secao:hover {
   transform: translateY(-8px);
   box-shadow: 0 35px 80px rgba(0, 0, 0, 0.2);
}

.container-secao:hover::before {
   opacity: 0.1;
}

.titulo-secao {
   font-size: clamp(2rem, 5vw, 3rem);
   font-weight: 700;
   color: #2d3748;
   margin-bottom: 25px;
   background: linear-gradient(135deg, #FA6200, #F09617, #00C48C);
   -webkit-background-clip: text;
   -webkit-text-fill-color: transparent;
   background-clip: text;
   line-height: 1.2;
}

.texto-secao {
   font-size: clamp(1.1rem, 3vw, 1.3rem);
   color: #4a5568;
   line-height: 1.8;
   margin-bottom: clamp(40px, 8vw, 50px);
}

.botao-redirecionar {
   background: linear-gradient(135deg, #FA6200 0%, #00C48C 100%);
   color: white;
   border: none;
   padding: clamp(16px, 4vw, 20px) clamp(32px, 6vw, 40px);
   font-size: clamp(1.1rem, 2.5vw, 1.3rem);
   font-weight: 600;
   border-radius: 50px;
   cursor: pointer;
   transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
   box-shadow: 0 12px 30px rgba(250, 98, 0, 0.4);
   position: relative;
   overflow: hidden;
   display: inline-flex;
   align-items: center;
   text-decoration: none;
}

.botao-redirecionar a {
   color: inherit;
   text-decoration: none;
}

.botao-redirecionar:before {
   content: '';
   position: absolute;
   top: 0;
   left: -100%;
   width: 100%;
   height: 100%;
   background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
   transition: left 0.6s;
}

.botao-redirecionar:hover {
   transform: translateY(-3px) scale(1.05);
   box-shadow: 0 18px 40px rgba(250, 98, 0, 0.5);
}

.botao-redirecionar:hover:before {
   left: 100%;
}

.icone {
   margin-left: 10px;
   transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
   font-size: 1.2em;
}

.botao-redirecionar:hover .icone {
   transform: translateX(5px);
}

/* ---- ANIMAÇÕES ---- */
@keyframes slideUp {
   from {
      opacity: 0;
      transform: translateY(50px);
   }

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

@keyframes fadeIn {
   from {
      opacity: 0;
   }

   to {
      opacity: 1;
   }
}

@keyframes slideInLeft {
   from {
      opacity: 0;
      transform: translateX(-50px);
   }

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

@keyframes slideInRight {
   from {
      opacity: 0;
      transform: translateX(50px);
   }

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

/* ---- MEDIA QUERIES ---- */

/* Desktop Grande */
@media (min-width: 1400px) {
   .container {
      max-width: 1400px;
   }

   .conteudo_missao {
      grid-template-columns: repeat(3, 1fr);
      max-width: 1600px;
   }
}

/* Desktop */
@media (min-width: 1024px) {
   .conteudo-sobre {
      grid-template-columns: 1fr 1fr;
   }

   .texto-sobre {
      order: 1;
      animation: slideInLeft 0.8s ease-out;
   }

   .imagem-sobre {
      order: 2;
      animation: slideInRight 0.8s ease-out;
   }

   .conteudo_missao {
      grid-template-columns: repeat(3, 1fr);
   }

   .conteudo_missao {
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: clamp(1.5rem, 4vw, 2.5rem);
   }

   .card {
      height: clamp(400px, 50vw, 550px);
      padding: clamp(1.5rem, 4vw, 2rem);
   }

   .titulo {
      font-size: clamp(2rem, 4vw, 2.5rem);
   }

   .imagem-card {
      width: clamp(140px, 25vw, 200px);
      height: clamp(140px, 25vw, 200px);
      margin: clamp(1rem, 3vw, 2rem) 0;
   }

   .descricao {
      font-size: clamp(1rem, 2.5vw, 1.3rem);
      margin: clamp(1rem, 3vw, 1.5rem) 0;
   }
}

/* Tablet */
@media (max-width: 1023px) and (min-width: 768px) {
   .placeholder-imagem {
      background-attachment: scroll;
   }

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

   .card:last-child {
      grid-column: 1 / -1;
      max-width: 450px;
      margin: 0 auto;
   }

   .container-cards-equipe {
      gap: 1.5rem;
   }

   .conteudo_missao {
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: clamp(1.5rem, 4vw, 2.5rem);
   }

   .card {
      height: clamp(400px, 50vw, 550px);
      padding: clamp(1.5rem, 4vw, 2rem);
   }

   .titulo {
      font-size: clamp(2rem, 4vw, 2.5rem);
   }

   .imagem-card {
      width: clamp(140px, 25vw, 200px);
      height: clamp(140px, 25vw, 200px);
      margin: clamp(1rem, 3vw, 2rem) 0;
   }

   .descricao {
      font-size: clamp(1rem, 2.5vw, 1.3rem);
      margin: clamp(1rem, 3vw, 1.5rem) 0;
   }

   .conteudo_missao {
      grid-template-columns: 1fr;
      gap: clamp(1rem, 5vw, 2rem);
   }

   .card {
      height: clamp(350px, 55vw, 450px);
      padding: clamp(1rem, 3vw, 1.5rem);
   }

   .titulo {
      font-size: clamp(1.8rem, 5vw, 2.2rem);
   }

   .imagem-card {
      width: clamp(120px, 35vw, 180px);
      height: clamp(120px, 35vw, 180px);
      margin: clamp(0.8rem, 3vw, 1.5rem) 0;
   }

   .descricao {
      font-size: clamp(0.95rem, 2.5vw, 1.2rem);
      margin: clamp(0.8rem, 3vw, 1.2rem) 0;
   }
}


/* Mobile Grande */
@media (max-width: 767px) {
   .placeholder-imagem {
      background-attachment: scroll;
   }

   .subtitulo {
      margin-bottom: 2.5rem;
   }

   .conteudo_missao {
      grid-template-columns: 1fr;
      gap: 2rem;
   }

   .card {
      max-width: 100%;
      height: clamp(400px, 70vw, 500px);
   }

   .container-cards-equipe {
      gap: 1rem;
      padding: 0.5rem;
   }

   .card-membro {
      min-width: 300px;
   }

   .controles-carrossel {
      gap: 1rem;
      margin-top: 2rem;
   }
}

/* Mobile Pequeno */
@media (max-width: 480px) {
   .secao-principal {
      padding: 1.5rem;
   }

   .conteudo-principal {
      padding: 0 0.5rem;
   }

   .container {
      padding: 0 1rem;
   }

   .container-cards-equipe {
      padding: 0;
   }

   .card-membro {
      min-width: 270px;
   }

   .controles-carrossel {
      gap: 0.8rem;
   }

   .container-secao {
      margin: 15px;
      padding: 40px 25px;
   }

   .card {
      height: clamp(350px, 80vw, 450px);
   }

   .missao_visao_valores {
      padding: clamp(2rem, 6vw, 3rem) clamp(1rem, 4vw, 1.5rem);
   }

   .card {
      height: clamp(300px, 50vw, 400px);
      padding: clamp(0.8rem, 3vw, 1.2rem);
   }

   .titulo {
      font-size: clamp(1.5rem, 5vw, 2rem);
   }

   .imagem-card {
      width: clamp(100px, 35vw, 160px);
      height: clamp(100px, 35vw, 160px);
      margin: clamp(0.5rem, 3vw, 1rem) 0;
   }

   .descricao {
      font-size: clamp(0.9rem, 2.5vw, 1rem);
      margin: clamp(0.5rem, 2vw, 1rem) 0;
   }
}

/* Mobile Extra Pequeno */
@media (max-width: 375px) {
   .card-membro {
      min-width: 250px;
   }

   .titulo-principal {
      font-size: 2rem;
   }

   .subtitulo {
      font-size: 1rem;
   }

   .card {
      height: clamp(320px, 85vw, 400px);
   }

   .container-secao {
      padding: 30px 20px;
   }
}

/* Animações de entrada */
.sobre {
   animation: fadeIn 1s ease-out;
}

.secao-slogan {
   animation: slideUp 0.8s ease-out;
}

.missao_visao_valores {
   animation: fadeIn 1s ease-out;
}

.card:nth-child(1) {
   animation: slideInLeft 0.8s ease-out 0.2s both;
}

.card:nth-child(2) {
   animation: slideUp 0.8s ease-out 0.4s both;
}

.card:nth-child(3) {
   animation: slideInRight 0.8s ease-out 0.6s both;
}

.secao-equipe {
   animation: fadeIn 1s ease-out;
}

.redirecionamento {
   animation: slideUp 1s ease-out;
}

/* Melhorias de Performance */
* {
   -webkit-font-smoothing: antialiased;
   -moz-osx-font-smoothing: grayscale;
}

/* Preload hover states */
.card,
.botao-principal,
.botao-carrossel,
.card-membro {
   will-change: transform;
}

/* Reduce motion para acessibilidade */
@media (prefers-reduced-motion: reduce) {

   *,
   ::before,
   ::after {
      animation-duration: 0.01ms !important;
      animation-iteration-count: 1 !important;
      transition-duration: 0.01ms !important;
   }
}