/* Reset e Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Segoe UI', sans-serif;
  background: #f9f9f9;
  color: #333;
  line-height: 1.6;
}

/* ===== CABEÇALHO ===== */
#header {
  position: fixed;
  top: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 3rem;
  background: transparent;
  transition: all 0.3s ease;
  z-index: 1000;
  height: 140px; /* Altura maior para acomodar logo grande */
}

#header.scrolled {
  background: url('imagens/header2.png') no-repeat center center;
  background-size: cover;
  box-shadow: 0 2px 15px rgba(0,0,0,0.1);
  padding: 10px 3rem;
  height: 120px;
}

/* Logo - Tamanho grande no topo */
.logo-container .logo {
  margin-top: 60px;
  max-height: 320px; /* Logo grande no topo */
  width: auto;
  transition: all 0.3s ease;
}

/* Logo reduzida no scroll */
#header.scrolled .logo-container .logo {
  max-height: 180px; /* Logo menor ao fazer scroll */
  margin-bottom: 60px;
}

/* MARGENS APENAS NO HEADER SCROLLED (DESKTOP) */
@media (min-width: 769px) {
  #header.scrolled .logo-container {
    margin-left: 160px; /* Só aplica no desktop com scroll */
  }
  
  #header.scrolled .menu-desktop {
    margin-right: 160px; /* Só aplica no desktop com scroll */
  }
}

/* Menu Desktop - COM HOVER E LINHA ANIMADA */
.menu-desktop ul {
  list-style: none;
  display: flex;
  gap: 2rem;
}

.menu-desktop a {
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  color: #fff;
  transition: color 0.3s ease;
  padding: 8px 0;
  position: relative;
}

.menu-desktop a:hover {
  color: #C0995D;
}

/* Linha animada no hover */
.menu-desktop a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: #C0995D;
  transition: width 0.3s ease;
}

.menu-desktop a:hover::after {
  width: 100%;
}

#header.scrolled .menu-desktop a {
  color: #ffffff;
}

/* Garantir que funcione também no header scrolled */
#header.scrolled .menu-desktop a:hover {
  color: #C0995D;
}

#header.scrolled .menu-desktop a::after {
  background-color: #C0995D;
}

#header.scrolled .menu-desktop a:hover::after {
  width: 100%;
}


/* ===== MENU MOBILE ===== */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 22px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1300;
}

.menu-toggle span {
  display: block;
  height: 3px;
  width: 100%;
  background: #ffffff;
  border-radius: 3px;
  transition: all 0.3s ease;
}

#header.scrolled .menu-toggle span {
  background: #ffffff;
}

/* ===== RESPONSIVIDADE ===== */

/* Tablet */
@media (max-width: 1024px) {
  .fichamentos-grid {
    grid-template-columns: repeat(2, 1fr);
    max-width: 800px;
  }
  
  .recursos-grid {
    max-width: 800px;
  }
  
  .sobre-content h1 {
    font-size: 4em;
  }
}

/* Mobile */
@media (max-width: 768px) {
  /* Header Mobile */
  #header {
    padding: 15px 1rem;
    height: 100px;
  }
  
  #header.scrolled {
    height: 100px;
    padding: 8px 1rem;
  }
  
  .logo-container .logo {
    max-height: 180px; 
  }
  
  #header.scrolled .logo-container .logo {
    max-height: 120px;
  }
  
  /* Remove margens no mobile */
  #header.scrolled .logo-container {
    margin-left: 0 !important;
  }
  
  #header.scrolled .menu-desktop {
    margin-right: 0 !important;
  }
  
  .menu-toggle {
    display: flex;
  }
  
  .menu-desktop {
    display: none;
  }
  
  /* Seções Mobile */
  section {
    margin: 120px auto 2rem;
  }
  
  .sobre-content h1 {
    font-size: 3em;
  }
  
  .Nossoarabesobrecurto {
    font-size: 2em;
  }
  
  .fichamentos-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
  }
  
  .recursos-grid {
    flex-direction: column;
    align-items: center;
  }
  
  .recurso-card {
    width: 100%;
    max-width: 400px;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }
  
  .arabic-text {
    text-align: center;
  }
  
  .social-icons {
    justify-content: center;
  }
}

/* Mobile Pequeno */
@media (max-width: 480px) {
  #header {
    padding: 12px 1rem;
    height: 90px;
  }
  
  #header.scrolled {
    height: 60px;
  }
  
  .logo-container .logo {
    max-height: 70px;
  }
  
  #header.scrolled .logo-container .logo {
    max-height: 40px;
  }
  
  .sobre-content h1 {
    font-size: 2.5em;
  }
  
  .Nossoarabesobrecurto {
    font-size: 1.6em;
  }
  
  .sobre-texto p {
    font-size: 1.1em;
  }
  
  .comunidade-card {
    padding: 30px 20px;
  }
  
  .comunidade-card h1 {
    font-size: 1.8em;
  }
  
  .contador-item span {
    font-size: 2rem;
  }
  
  .contador-item small {
    font-size: 1.5rem;
  }
}

/* ===== MENU LATERAL ===== */
#side-menu {
  position: fixed;
  top: 0;
  right: -280px;
  width: 280px;
  height: 102%;
  background: url('imagens/backgroundmenu.png');
  box-shadow: -2px 0 12px rgba(0,0,0,0.25);
  transition: right 0.3s ease-in-out;
  z-index: 1200;
  display: flex;
  flex-direction: column;
  padding: 1rem 1.5rem;
  border-radius: 20px;
}

#side-menu.active {
  right: 0;
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  z-index: 1100;
  display: none;
}

.overlay.active {
  display: block;
}

.close-menu {
  position: absolute;
  top: 15px;
  right: 15px;
  background: none;
  border: none;
  font-size: 24px;
  color: #ffffff;
  cursor: pointer;
  z-index: 1300;
}

.side-logo {
  text-align: center;
  margin-bottom: 2rem;
}

.side-logo img {
  max-height: 200px;
  margin-bottom: 0.5rem;
}

.side-menu a {
  padding: 15px 20px;
  text-decoration: none;
  font-size: 18px;
  color: #ffffff;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: background 0.3s, color 0.3s;
}

.side-menu a:hover {
  background: rgba(90, 45, 12, 0.1);
  color: #C0995D;
}

/* Overlay */
#overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.4);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease-in-out;
  z-index: 1100;
}

#overlay.active {
  opacity: 1;
  visibility: visible;
}

.close-menu {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 1.8rem;
  background: none;
  border: none;
  color: #ffffff;
  cursor: pointer;
}

/* ===== CONTADOR HERO ===== */
.contador-hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  background: url('imagens/abed-ismail-_jhUrn9o8yM-unsplash.jpg') no-repeat center center/cover;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  margin: 0;
}

.contador-hero .contador-overlay {
  margin-top: 100px;
  background: rgba(0,0,0,0.4);
  padding: 2rem 3rem;
  border-radius: 10px;
}

.contador-wrapper {
  display: flex;
  gap: 1rem;
  justify-content: center;
  align-items: center;
}

.contador-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.contador-item span {
  font-size: 3rem;
  font-weight: bold;
  color: #f5e1c0;
  margin-bottom: 5px;
  line-height: 1;
}

.contador-item small {
  font-size: 2rem;
  color: #fff;
  line-height: 1;
}

/* SEPARADOR DOS NÚMEROS - ALINHADO COM OS NÚMEROS */
.separator {
  font-size: 3rem; /* Mesmo tamanho dos números */
  color: #f5e1c0;
  font-weight: bold;
  align-self: flex-start; /* Alinha com o topo dos números */
  margin-top: 0.09rem; /* Ajuste fino para alinhar com os números */
  line-height: 1;
}

/* RESPONSIVIDADE DO CONTADOR */
@media (max-width: 768px) {
  .contador-hero .contador-overlay {
    margin-top: 80px;
    padding: 1.5rem 2rem;
  }
  
  .contador-wrapper {
    gap: 0.8rem;
  }
  
  .contador-item span {
    font-size: 2.2rem;
  }
  
  .contador-item small {
    font-size: 1.5rem;
  }
  
  .separator {
    font-size: 2.2rem; /* Mesmo tamanho dos números */
    margin-top: 0.4rem;
  }
}

@media (max-width: 480px) {
  .contador-hero .contador-overlay {
    margin-top: 60px;
    padding: 1rem 1.5rem;
  }
  
  .contador-wrapper {
    gap: 0.5rem;
  }
  
  .contador-item span {
    font-size: 1.8rem;
  }
  
  .contador-item small {
    font-size: 1.2rem;
  }
  
  .separator {
    font-size: 1.8rem; /* Mesmo tamanho dos números */
    margin-top: 0.3rem;
  }
}

/* Para telas muito pequenas (iPhone SE etc) */
@media (max-width: 375px) {
  .contador-hero .contador-overlay {
    margin-top: 50px;
    padding: 0.8rem 1rem;
  }
  
  .contador-wrapper {
    gap: 0.3rem;
  }
  
  .contador-item span {
    font-size: 1.5rem;
  }
  
  .contador-item small {
    font-size: 1rem;
  }
  
  .separator {
    font-size: 1.5rem; /* Mesmo tamanho dos números */
    margin-top: 0.2rem;
  }
}

/* ===== SEÇÃO SOBRE ===== */
#sobre-simples {
  padding: 80px 20px;
  display: flex;
  align-items: center;
}

.sobre-container {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.sobre-content h1 {
  font-size: 5em;
  color: #5a2d0c;
  font-weight: 700;
  margin: 0 0 10px 0;
}

.Nossoarabesobrecurto {
  font-size: 2.7em;
  color: #C0995D;
  font-weight: 500;
  margin: 0 0 40px 0;
}

.sobre-texto {
  text-align: left;
  max-width: 900px;
  margin: 0 auto;
}

.sobre-texto p {
  font-size: 1.2em;
  line-height: 1.7;
  color: #555;
  margin-bottom: 25px;
}

/* ===== EXPLORE RECURSOS ===== */
#explore-recursos {
  background: #f9f9f9;
  padding: 80px 20px;
  text-align: center;
}

#explore-recursos h2 {
  color: #5a2d0c;
  font-size: 2.5em;
  font-weight: 700;
  margin-bottom: 60px;
}

.recursos-grid {
  display: flex;
  justify-content: center;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.recurso-card {
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  width: 350px;
  padding: 40px 30px;
  text-align: center;
  transition: transform 0.3s ease;
  border: 2px solid #C0995D;
}

.recurso-card:hover {
  transform: translateY(-5px);
}

.recurso-icon {
  width: 80px;
  height: 80px;
  background: #C0995D;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
}

.recurso-icon i {
  color: white;
  font-size: 2em;
}

.recurso-card h3 {
  color: #5a3921;
  font-size: 1.4em;
  font-weight: 700;
  margin-bottom: 15px;
}

.recurso-card p {
  color: #333;
  line-height: 1.6;
  margin-bottom: 25px;
}

.recurso-btn {
  background: #C0995D;
  color: white;
  border: none;
  border-radius: 8px;
  padding: 12px 30px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
  max-width: 200px;
  text-decoration: none; /* Para links */
  display: inline-block; /* Para links */
  text-align: center; /* Para links */
}

.recurso-btn:hover {
  background: linear-gradient(135deg, #C0995D, #5a2d0c);
  transform: translateY(-2px);
}

/* ===== COMUNIDADE ===== */
#comunidade {
  padding: 80px 20px;
  background: #f8f9fa;
  display: flex;
  justify-content: center;
  align-items: center;
}

.comunidade-card {
  background: linear-gradient(45deg, #e9e3dc, #C0995D);
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  padding: 50px;
  max-width: 800px;
  width: 100%;
  text-align: center;
  border: 2px solid #83887A;
}

.comunidade-card h1 {
  font-size: 2.3em;
  color: #6a7263;
  font-weight: 1000;
  margin: 0 0 20px 0;
}

.comunidade-card p {
  font-size: 1.1em;
  font-weight: 700;
  line-height: 1.6;
  color: #83887A;
  margin-bottom: 25px;
}

.divisor {
  height: 1px;
  background: #83887A  ;
  margin: 30px 0;
}

.historia-btn {
  background: #83887A;
  color: white;
  border: none;
  border-radius: 25px;
  padding: 12px 35px;
  font-size: 1em;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.historia-btn:hover {
  background: #7f8672d5;
  transform: translateY(-2px);
}

/* ===== FICHAMENTOS ===== */
#fichamentos {
  padding: 80px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.fichamentos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin-bottom: 40px;
}

.ficha-card {
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  padding: 25px;
  border-top: 4px solid #667eea;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.ficha-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.ficha-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 18px;
}

.periodo-badge {
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: white;
  padding: 6px 15px;
  border-radius: 15px;
  font-size: 0.85em;
  font-weight: 600;
}

.ficha-content h3 {
  color: #2c3e50;
  font-size: 1.3em;
  margin: 0 0 10px 0;
  font-weight: 600;
}

.categoria {
  display: inline-block;
  background: #f8f9fa;
  color: #667eea;
  padding: 4px 12px;
  border-radius: 12px;
  font-size: 0.85em;
  font-weight: 500;
  margin-bottom: 15px;
}

.ficha-content p {
  color: #555;
  line-height: 1.5;
  margin: 0;
}

.download-btn {
  width: 100%;
  background: #f8f9fa;
  border: 2px solid #e9ecef;
  border-radius: 8px;
  padding: 12px 18px;
  font-weight: 500;
  color: #2c3e50;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.download-btn:hover {
  background: #667eea;
  color: white;
  border-color: #667eea;
}

.ver-mais-container {
  text-align: center;
  margin-top: 40px;
}

.ver-mais-btn {
  display: inline-block;
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: white;
  padding: 12px 30px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.ver-mais-btn:hover {
  transform: translateY(-3px);
}

/* ===== RODAPÉ ===== */
#footer {
  background: #222222;
  padding: 50px 20px 20px;
}

.footer-container {
  max-width: 1000px;
  margin: 0 auto;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 50px;
  margin-bottom: 30px;
}

.footer-col h3 {
  font-size: 1.4em;
  margin: 0 0 15px 0;
  color: #F5E1C0;
  font-weight: 600;
}

.arabic-text {
  font-size: 1.1em;
  color: #F5E1C0;
  text-align: right;
  direction: rtl;
}

.footer-desc {
  line-height: 1.5;
  color: #F2D4B6;
  margin: 0;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col li {
  margin-bottom: 8px;
}

.footer-col a {
  color: #F2D4B6;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-col a:hover {
  color: #EEAA6B;
}

.social-icons {
  display: flex;
  gap: 10px;
}

.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 37px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: #fffbf8;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 1.4em;
}

.social-icons a:hover {
  background: #F2D4B6;
}

.footer-bottom {
  border-top: 1px solid #83887A;
  padding-top: 20px;
  text-align: center;
}

.footer-bottom p {
  color: #F2D4B6;
  line-height: 1.4;
  margin: 0 0 5px 0;
}

.heart {
  color: #EEAA6B;
  font-size: 1.2em;
}

.copyright {
  font-size: 0.9em;
  color: #F2D4B6 !important;
}

/* ===== RESPONSIVIDADE ===== */

/* Tablet */
@media (max-width: 1024px) {
  .fichamentos-grid {
    grid-template-columns: repeat(2, 1fr);
    max-width: 800px;
  }
  
  .recursos-grid {
    max-width: 800px;
  }
  
  .sobre-content h1 {
    font-size: 4em;
  }
}

/* Mobile */
@media (max-width: 768px) {
  /* Header Mobile */
  #header {
    padding: 15px 1rem;
    height: 100px;
  }
  
  #header.scrolled {
    height: 100px;
    padding: 8px 1rem;
  }
  
 @media (max-width: 768px) {
  .logo-container .logo {
    max-height: 180px; /* BEM GRANDE no mobile */
  }
  
  #header.scrolled .logo-container .logo {
    max-height: 120px;
  }
}

@media (max-width: 480px) {
  .logo-container .logo {
    max-height: 130px; /* Ainda grande no mobile pequeno */
  }
  
  #header.scrolled .logo-container .logo {
    max-height: 120px;
  }
}
  
  .menu-toggle {
    display: flex;
  }
  
  .menu-desktop {
    display: none;
  }
  
  /* Seções Mobile */
  section {
    margin: 120px auto 2rem;
  }
  
  .sobre-content h1 {
    font-size: 3em;
  }
  
  .Nossoarabesobrecurto {
    font-size: 2em;
  }
  
  .fichamentos-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
  }
  
  .recursos-grid {
    flex-direction: column;
    align-items: center;
  }
  
  .recurso-card {
    width: 100%;
    max-width: 400px;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }
  
  .arabic-text {
    text-align: center;
  }
  
  .social-icons {
    justify-content: center;
  }
}

/* Mobile Pequeno */
@media (max-width: 480px) {
  #header {
    padding: 12px 1rem;
    height: 90px;
  }
  
  #header.scrolled {
    height: 60px;
  }
  
  .logo-container .logo {
    max-height: 70px;
  }
  
  #header.scrolled .logo-container .logo {
    max-height: 40px;
  }
  
  .sobre-content h1 {
    font-size: 2.5em;
  }
  
  .Nossoarabesobrecurto {
    font-size: 1.6em;
  }
  
  .sobre-texto p {
    font-size: 1.1em;
  }
  
  .comunidade-card {
    padding: 30px 20px;
  }
  
  .comunidade-card h1 {
    font-size: 1.8em;
  }
  
  .contador-item span {
    font-size: 2rem;
  }
  
  .contador-item small {
    font-size: 1.5rem;
  }
}

/* RESPONSIVIDADE DO CONTADOR */
@media (max-width: 768px) {
  .contador-hero .contador-overlay {
    margin-top: 80px;
    padding: 1.5rem 2rem;
  }
  
  .contador-wrapper {
    gap: 0.8rem;
  }
  
  .contador-item span {
    font-size: 2.2rem; /* Reduzido de 3rem */
  }
  
  .contador-item small {
    font-size: 1.5rem; /* Reduzido de 2rem */
  }
  
  .separator {
    font-size: 1.8rem;
  }
}

@media (max-width: 480px) {
  .contador-hero .contador-overlay {
    margin-top: 60px;
    padding: 1rem 1.5rem;
  }
  
  .contador-wrapper {
    gap: 0.5rem;
  }
  
  .contador-item span {
    font-size: 1.8rem; /* Muito menor no mobile pequeno */
  }
  
  .contador-item small {
    font-size: 1.2rem; /* Muito menor no mobile pequeno */
  }
  
  .separator {
    font-size: 1.5rem;
  }
}

/* Para telas muito pequenas (iPhone SE etc) */
@media (max-width: 375px) {
  .contador-hero .contador-overlay {
    margin-top: 50px;
    padding: 0.8rem 1rem;
  }
  
  .contador-wrapper {
    gap: 0.3rem;
  }
  
  .contador-item span {
    font-size: 1.5rem;
  }
  
  .contador-item small {
    font-size: 1rem;
  }
  
  .separator {
    font-size: 1.2rem;
  }
}