/* 
  Estilos Específicos do Layout (main.css)
*/

.main-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 1.5rem 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.header-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: white;
}

.logo {
  text-align: center;
}

.logo h1 {
  font-size: 1.2rem;
  margin-bottom: -5px;
}

.sub-logo {
  font-size: 0.6rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  opacity: 0.8;
}

.header-actions {
  display: flex;
  gap: 1.5rem;
}

.header-actions i {
  width: 20px;
  cursor: pointer;
}

/* Hero Section */
.hero {
  height: 100vh;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #000;
}

.hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.hero-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.7;
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  color: white;
  max-width: 800px;
  padding: 2rem;
}

.hero-content h2 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

.hero-content p {
  font-size: 1.1rem;
  margin-bottom: 2.5rem;
  opacity: 0.9;
  font-weight: 300;
}

.hero-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

.hero-btns .btn-outline {
  border-color: white;
  color: white;
}

/* Bento Grid Customization */
.section-padding {
  padding: 6rem 0;
}

.bento-item {
  position: relative;
  border-radius: var(--radius-card);
  overflow: hidden;
  height: 400px;
  transition: var(--transition-smooth);
  opacity: 0;
  transform: translateY(30px);
}

.bento-item.visible {
  opacity: 1;
  transform: translateY(0);
}

.grid-span-8 { grid-column: span 8; }
.grid-span-4 { grid-column: span 4; }

.bento-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 3rem;
  background: linear-gradient(transparent, rgba(0,0,0,0.8));
  color: white;
}

.card-content {
  padding: 3rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background-color: var(--color-gray-light);
}

.bg-brown { background-color: var(--color-accent); }
.text-white { color: white; }

.link-arrow {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1rem;
  text-decoration: none;
  font-weight: 700;
  color: var(--color-text);
  font-size: 0.8rem;
  text-transform: uppercase;
}

.fade-in { animation: fadeIn 1s forwards; }
.fade-in-delay { animation: fadeIn 1.5s forwards; }

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Footer */
.main-footer {
  padding: 4rem 0;
  background: var(--color-text);
  color: white;
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-links {
  display: flex;
  gap: 2rem;
}

.footer-links a {
  color: white;
  text-decoration: none;
  font-size: 0.8rem;
  opacity: 0.7;
  transition: 0.3s;
}

.footer-links a:hover { opacity: 1; }

/* Responsive */
/* Estilos de Artigo e Manifesto */
.article-section {
  padding: 8rem 0;
  max-width: 800px;
  margin: 0 auto;
}

.article-header {
  margin-bottom: 4rem;
  text-align: center;
}

.article-header span {
  color: var(--color-accent);
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.article-header h2 {
  font-size: 3rem;
  margin-top: 1rem;
  line-height: 1.1;
}

.story-content p {
  font-size: 1.15rem;
  line-height: 1.8;
  margin-bottom: 2rem;
  color: var(--color-gray-dark);
}

.story-content blockquote {
  border-left: 4px solid var(--color-accent);
  padding-left: 2rem;
  margin: 4rem 0;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-style: italic;
  color: var(--color-text);
  line-height: 1.4;
}

.emphasized-box {
  background-color: var(--color-text);
  color: white;
  padding: 3rem;
  border-radius: var(--radius-card);
  margin: 4rem 0;
}

.emphasized-box h4 {
  color: var(--color-accent);
  margin-bottom: 1rem;
}

.emphasized-box p {
  color: rgba(255,255,255,0.8);
  margin-bottom: 0;
}

.manifesto-cta {
  text-align: center;
  margin-top: 6rem;
}

.manifesto-cta h3 {
  font-size: 1.5rem;
  margin-bottom: 2rem;
}

/* Responsividade de Artigo */
@media (max-width: 768px) {
  .article-header h2 { font-size: 2rem; }
  .story-content p { font-size: 1.05rem; }
  .emphasized-box { padding: 2rem; }
}
