html {
  scroll-behavior: smooth;
}

body {
    padding: 0;
    margin: 0;
}

/* Corpo do Site */

/* Seção Principal */
.sections {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 60px 40px;
    background-color: #f9f9f9;
    gap: 40px;
    scroll-margin-top: 180px;
}

/* Objetivo do Projeto */
.paragraph-text {
    flex: 1;
    max-width: 50%;
}

.paragraph-text h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #222;
}

.paragraph-text p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 25px;
    text-align: justify;
}

/* Carrossel */
.hero-carousel {
    flex: 1;
    max-width: 45%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.carousel {
    position: relative;
    width: 100%;
    max-width: 600px;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    background-color: black;
    
}

.carousel-track {
    display: flex;
    transition: transform 0.6s ease-in-out;
}

.carousel-track img {
    width: 100%;
    flex-shrink: 0;
}

.carousel-indicators {
    text-align: center;
    margin-top: 12px;
}

.dot {
    height: 10px;
    width: 10px;
    margin: 10px 10px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    transition: background 0.3s ease;
    cursor: pointer;
}

.dot.active {
    background-color: rgb(0,255,0);
}

/* Seção Documentação */

.docs-text {
    max-width: 800px;
}

.docs-text h2 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: #222;
}

.docs-text p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #555;
}

/* Botões em grade à direita */
.docs-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    width: 800px;
    justify-content: center;
}

.doc-btn {
    padding: 12px 20px;
    background-color: rgb(0, 255, 0);
    color:#222;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    text-transform: uppercase;
    transition: background 0.3s ease, transform 0.2s ease;
}

.doc-btn:hover {
    background-color: rgb(0,180,0);
    transform: translateY(-2px);
}




/* --- Seção Equipe --- */
.team {
  padding: 60px 40px;
  background-color: #f9f9f9;
  text-align: center;
}

.team-header h2 {
  font-size: 2rem;
  margin-bottom: 10px;
  color: #222;
}

.team-header p {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 40px;
}

/* Grid de integrantes */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
}

/* Card do membro */
.team-member {
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-member:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 18px rgba(0,0,0,0.12);
}

.team-member img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 15px;
}

.team-member h3 {
  font-size: 1.2rem;
  margin: 10px 0 5px;
  color: #222;
}

.team-member p {
  font-size: 0.95rem;
  color: #555;
}


/* --- Rodapé --- */
.footer {
  background-color: #111;
  color: #eee;
  padding: 40px 20px 20px;
  margin-top: 60px;
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
  margin-bottom: 20px;
}

.footer-logo h2 {
  font-size: 1.5rem;
  color: #28ff28; 
}

.footer-nav {
  display: flex;
  gap: 25px;
  flex-wrap: wrap;
}

.footer-nav a {
  color: #eee;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.footer-nav a:hover {
  color: #28ff28;
}

.footer-bottom {
  text-align: center;
  font-size: 0.9rem;
  color: #aaa;
  border-top: 1px solid #333;
  padding-top: 15px;
}
