@import url('fontes.css');

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

body {
  font-family: 'poppinsRegular';
  background: #fff;
}

/* ===== CONTAINER LOGIN ===== */
.login-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  background: #fff;
  padding: 20px;
}

.login-container img {
  height: 380px;
  max-width: 100%;
  object-fit: contain;
  margin-bottom: 20px;
  margin-left: -25%;
}

/* ===== CAIXA LOGIN ===== */
.login-box {
  display: flex;
  flex-direction: column;
  max-width: 303px;
  width: 100%;
  text-align: center;
  justify-content: center;
}

.login-box h2 {
  font-size: 45px;
  font-weight: 600;
  margin-bottom: 10px;
  font-family: 'poppinsSemibold';
}

.login-box .inputs {
  display: block;
  width: 100%;
  max-width: 19rem;
  padding: 10px 20px;
  margin-bottom: 12px;
  border: none;
  border-radius: 8px;
  background: #6E7893;
  font-size: 15px;
  font-weight: 300;
  font-family: 'poppinsRegular';
}

.login-box input::placeholder {
  color: #FFF5DD;
}

.login-box a {
  display: block;
  margin: 10px 0;
  font-size: 15px;
  color: black;
  font-weight: 400;
  text-decoration: none;
  font-family: 'poppinsRegular';
}

.login-box button {
  padding: 3px 20px;
  border: none;
  border-radius: 8px;
  background: #FD8A3E;
  color: black;
  font-family: 'poppinsRegular';
  font-size: 19px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
  max-width: 19rem;
  align-items: center;
}

.login-box button:hover {
  background: #d45713;
}

/* ===== CAMPOS E FORMULÁRIOS ===== */
.formulario {
  width: 100%;
  max-width: 35rem;
  display: flex;
  justify-content: center;
  align-items: start;
  flex-direction: column;
}

.labelogin {
  width: 100%;
}

.labelogin p {
  font-size: 15px;
  margin-top: 10px;
  transition: color 0.3s ease;
}

.labelogin a {
  display: inline;
  margin: 0;
  color: #007bff;
}

/* ===== TERMOS ===== */
.termo{
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 1rem; 
  margin-bottom: 1rem;
}

.termo_links{
  display: flex;
  flex-direction: column; 
  height: 1rem;
  gap: .5rem;
  margin-top: -1rem;
}

.termo_texto{
  display: flex;
  justify-content: center;
  align-items: baseline;
  gap: .5rem;
  text-align: center;
  width: max-content;

}

.termo_in{
  appearance: none;
  -webkit-appearance: none; 
  -moz-appearance: none; 
  cursor: pointer;
  border: none;
  width: 1.11rem;
  height: 1.11rem;
  border-radius: 5px;
  border: solid 2px #6E7893; 
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: .5rem
}

.termo_in:checked::before {
  content: '✓';
  color: #FFF;
  font-weight: bold;
  font-size: 0.8rem;
  width: 1.11rem;
  height: 1.11rem;
  display: flex;
  background-color: #6E7893;
  justify-content: center;
  align-items: center;
  border-radius: 5px;
}

/* ===== BOTÃO E ERROS ===== */
.botao {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 19rem;
}

.erro {
  color: red;
}

.orgao {
  display: block;
  width: 100%;
  max-width: 19rem;
  padding: 10px 20px;
  margin-bottom: 12px;
  border: none;
  border-radius: 8px;
  background: #6E7893;
  font-size: 15px;
  font-weight: 300;
  font-family: 'poppinsRegular';
  color: #fff;
}

/* SOBRE NÓS*/
.container-sobre {
    width: 100%;
    max-width: 1000px;
    margin: 30px auto 60px auto;
    padding: 20px;
}

.titulo-sobre {
    font-size: 30px;
    font-family: 'poppinsBold';
    color: #081F5C;
    text-align: center;
    margin-bottom: 30px;
}

.sobre-texto {
    text-align: center;
    font-family: 'poppinsRegular';
    color: #081F5C;
    font-size: 18px;
    margin-bottom: 40px;
    padding: 0 10px;
}

.container-sobre {
    width: 100%;
    max-width: 1000px;
    margin: 30px auto 60px auto;
    padding: 20px;
}

.equipe-imagem {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
  }
  
  .equipe-imagem img {
    width: 100%;
    max-width: 400px;
    border-radius: 12px;
    border: none;
    background-color: #f8f9fa;
}

.sobre-texto {
    text-align: justify;
    text-align-last: center;
    font-family: 'poppinsRegular';
    color: #081F5C;
    font-size: 18px;
    margin-bottom: 40px;
    padding: 0 10px;
}

.cards-membros {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
}

.card-membro {
    width: 180px;
    background-color: #fafafa;
    border-left: 2px solid #081F5C;
    border-radius: 12px;
    padding: 15px;
    text-align: center;
    box-shadow: 0px 3px 10px rgba(0,0,0,0.08);
    transition: 0.2s;
}

.card-membro:hover {
    transform: translateY(-4px);
    box-shadow: 0px 6px 15px rgba(0,0,0,0.12);
}

.card-membro img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 10px;
    border:none;
}

.card-membro h3{
    font-family: 'poppinsSemibold';
    color: #081F5C;
    margin-top: 10px;
    font-size: 16px;
}

.card-membro p {
    font-family: 'poppinsRegular';
    color: #000;
    margin-top: 5px;
    font-size: 14px;
}

.linha-final {
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-top: 20px;
}


/* UTILIDADES */
.container-info {
    width: 100%;
    max-width: 1000px;
    margin: 30px auto 60px auto;
    padding: 20px;
}

.titulo-info{
    font-size: 30px;
    font-family: 'poppinsBold';
    color: #081F5C;
    text-align: center;
    margin-bottom: 30px;
}

.info-texto {
    text-align: center;
    font-family: 'poppinsRegular';
    color: #081F5C;
    font-size: 18px;
    margin-bottom: 40px;
}

.card-orgs {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
}

.card-org {
    width: 250px;
    background-color: #fafafa;
    border: none;
    border-radius: 12px;
    padding: 15px;
    text-align: center;
    box-shadow: 0px 3px 10px rgba(0,0,0,0.08);
    transition: 0.2s;
    border-left: 2px solid #FD8A3E;
}

.card-org:hover {
    transform: translateY(-4px);
    box-shadow: 0px 6px 15px rgba(0,0,0,0.12);
}

.card-org img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 10px;
    border: none;
}

.card-org h3 {
    font-family: 'poppinsSemibold';
    color: #081F5C;
    margin-top: 10px;
    font-size: 18px;
}

.card-org .numero {
    font-family: 'poppinsBold';
    font-size: 20px;
    color: #000;
    margin-top: 5px;
}

.card-org .descricao-org {
    font-family: 'poppinsRegular';
    color: #000;
    font-size: 14px;
    text-align: justify;
    margin-top: 10px;
}


/* ===== RESPONSIVIDADE ===== */
/* computador */
@media (min-width: 1440px) {
  .login-container {
    padding: 100px;
  }
  
  .login-container img {
    height: 450px;
    margin-left: -17%;
  }

  .login-box {
  max-width: 400px; 
  width: 100%;
  padding: 30px;
}

.login-box h2 {
  font-size: 50px; 
  margin-bottom: 20px; 
}

.login-box .inputs {
  max-width: 22rem; 
  padding: 12px 20px;
  margin-bottom: 15px; 
  font-size: 16px; 
}

.login-box button {
  font-size: 20px;
  max-width: 22rem; 
  margin-top: 10px; 
}

.botao {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 22rem; 
}

.orgao {
  max-width: 22rem; 
  padding: 12px 20px; 
  margin-bottom: 15px; 
  font-size: 16px; 
}

.termo {
  gap: 1rem; 
  margin-bottom: 1.5rem;
  max-width: 22rem; 
  width: 100%;
}

.termo_texto {
  font-size: 16px; 
}
}

/* notebook */
@media (min-width: 1024px) and (max-width: 1439px) {
  .login-container {
    padding: 50px;
    gap: 20px;
  }
  
  .login-container img {
    height: 350px;
    margin-left: -18%;
  }
  
  .login-box h2 {
    font-size: 38px;
  }
}

/* Tablets Pequenos e Mobile Grande */
@media (max-width: 768px) {
  .login-container {
    flex-direction: column;
    padding: 20px 15px;
    gap: 25px;
    justify-content: flex-start;
    min-height: 100vh;
  }
  
  .login-container img {
    display: none;
  }
  
  .login-box {
    padding:  10px;
    max-width: 500px;
  }
  
  .login-box h2 {
    font-size: 32px;
    margin-bottom: 20px;
  }
  
  .formulario {
    align-items: center;
    max-width: 100%;
    width: 100%;
  }
  
  .login-box .inputs,
  .login-box button,
  .orgao,
  .botao {
    max-width: 100%;
    width: 100%;
  }
  
  .login-box .inputs,
  .orgao {
    padding: 12px 15px;
    font-size: 16px;
    margin-bottom: 15px;
    max-width: 500px;
  }
  
  .login-box button {
    font-size: 16px;
    margin-top: 10px;
    max-width: 120px;
  }
  
  .termo {
    justify-content: center;
    margin-bottom: 2rem;
  }
  
  .termo_texto {
    justify-content: center;
    text-align: center;
    gap: 2px;
    width: 280px;
  }
  
  .termo_links {
    align-items: center;
    text-align: center;
  }
  
  .login-box a {
    font-size: 14px;
    margin: 8px 0;
  }
}

/* Mobile Médio */
@media (max-width: 480px) {
  .login-container {
    justify-content: end;
    min-height: 50vh;
  }
  
  .login-container img {
    height: 200px;
  }
  
  .login-box h2 {
    font-size: 28px;
  }
  
  .login-box .inputs,
  .orgao {
    max-width: 100%;
    width: 100%;
  }

  .login-box button{
    max-width: 100px;
  }
  
  .termo {
    text-align: center;
  }
  
  .termo_in {
    margin-top: 0;
  }
  
  .termo_links {
    align-items: center;
  }
}


@media (max-width: 320px) {
  .login-box h2 {
    font-size: 24px;
  }
  
  .login-box .inputs,
  .login-box button,
  .orgao {
    padding: 8px 15px;
    font-size: 14px;
  }
  
  .login-box a {
    font-size: 14px;
  }
  
  .termo_texto {
    font-size: 14px;
  }
}

/* COMO USAR */
 :root {
            --primary-color: #081F5C;
            --secondary-color: #FF6600;
            --accent-color: #FD8A3E;
            --light-color: #FFFCF3;
            --dark-color: #2c3e50;
            --gray-color: #6c757d;
        }
        
        body {
            font-family: 'poppinsRegular';
            line-height: 1.6;
            color: var(--dark-color);
            background-color: #f8f9fa;
        }
        
        .logo-tutorial {
            width: 80px;
            height: 80px;
            margin-bottom: 20px;
            background: white;
            border-radius: 50%;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-size: 32px;
            color: var(--primary-color);
            box-shadow: 0 4px 20px rgba(0,0,0,0.2);
        }
        
        .header-tutorial h1 {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 15px;
            color: white;
        }
        
        .header-tutorial p {
            font-size: 1.1rem;
            opacity: 0.9;
            max-width: 600px;
            margin: 0 auto;
        }
        
        /* Main Container */
        .tutorial-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 40px 20px;
        }
        
        /* Step Cards */
        .step-card {
            background: white;
            border-radius: 15px;
            padding: 30px;
            margin-bottom: 40px;
            box-shadow: 0 5px 25px rgba(0,0,0,0.08);
            border-left: 5px solid var(--secondary-color);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        
        .step-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.15);
        }
        
        .step-number {
            display: inline-block;
            background: var(--secondary-color);
            color: white;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            text-align: center;
            line-height: 40px;
            font-weight: 700;
            font-size: 1.2rem;
            margin-bottom: 20px;
        }
        
        .step-card h3 {
            color: var(--dark-color);
            font-size: 1.5rem;
            margin-bottom: 15px;
            font-weight: 600;
        }
        
        .step-card p {
            color: var(--primary-color);
            margin-bottom: 20px;
        }
        
        /* Image Container */
        .image-container {
            position: relative;
            margin: 25px 0;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
            border: 1px solid #e9ecef;
        }
        
        .image-container img {
            width: 100%;
            height: auto;
            display: block;
            transition: transform 0.3s ease;
      }

        .image-container:hover img {
            transform: scale(1.02);
        }
        
        .image-caption {
            padding: 15px;
            background: #f8f9fa;
            border-top: 1px solid #e9ecef;
            font-size: 0.9rem;
            color: var(--gray-color);
            text-align: center;
            font-style: italic;
        }
        
        /* Feature Highlight */
        .feature-highlight {
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            border-radius: 10px;
            padding: 20px;
            margin: 25px 0;
            border-left: 4px solid var(--primary-color);
        }
        
        .feature-highlight h4 {
            color: var(--primary-color);
            margin-bottom: 10px;
            font-size: 1.2rem;
        }
        
        /* Quick Tips */
        .quick-tips {
            background: white;
            border-radius: 15px;
            padding: 30px;
            margin: 50px 0;
            box-shadow: 0 5px 25px rgba(0,0,0,0.08);
        }
        
        .quick-tips h3 {
            color: var(--primary-color);
            margin-bottom: 25px;
            text-align: center;
            font-size: 1.8rem;
        }
        
        .tips-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
        }
        
        .tip-item {
            display: flex;
            align-items: flex-start;
            gap: 15px;
            padding: 15px;
            background: #f8f9fa;
            border-radius: 8px;
        }
        
        .tip-icon {
            color: var(--secondary-color);
            font-size: 1.5rem;
            flex-shrink: 0;
        }

        
        /* Responsive */
        @media (max-width: 768px) {
            .header-tutorial {
                padding: 40px 0 30px;
            }
            
            .header-tutorial h1 {
                font-size: 2rem;
            }
            
            .tutorial-container {
                padding: 20px 15px;
            }
            
            .step-card {
                padding: 20px;
            }
            
            .tutorial-nav {
                flex-direction: column;
                gap: 15px;
            }
            
            .nav-btn {
                width: 100%;
                justify-content: center;
            }
            
            .tips-grid {
                grid-template-columns: 1fr;
            }
        }
        
        @media (max-width: 480px) {
            .header-tutorial h1 {
                font-size: 1.8rem;
            }
            
            .step-card h3 {
                font-size: 1.3rem;
            }
            
            .footer-links {
                flex-direction: column;
                gap: 15px;
            }
        }
        
        /* Animations */
        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .step-card {
            animation: fadeIn 0.6s ease forwards;
        }
        
        .step-card:nth-child(2) { animation-delay: 0.1s; }
        .step-card:nth-child(3) { animation-delay: 0.2s; }
        .step-card:nth-child(4) { animation-delay: 0.3s; }
        .step-card:nth-child(5) { animation-delay: 0.4s; }
        .step-card:nth-child(6) { animation-delay: 0.5s; }
        
        /* Back to Top Button */
        .back-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            background: var(--secondary-color);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            font-size: 1.5rem;
            box-shadow: 0 4px 15px rgba(255, 102, 0, 0.3);
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            z-index: 1000;
        }
        
        .back-to-top.show {
            opacity: 1;
            visibility: visible;
        }
        
        .back-to-top:hover {
            background: var(--primary-color);
            transform: translateY(-3px);
        }
