/* 
ERIKA FURTADO - MAIN STYLES
Estilos principais para a landing page editorial
*/

/* Reset e estilos base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--color-white);
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 1.5rem 0;
  background-color: var(--color-white);
  z-index: 1000;
  transition: all 0.3s ease;
  border-bottom: 1px solid transparent;
}

.header.scrolled {
  padding: 1rem 0;
  border-bottom: 1px solid var(--color-gray);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.5rem;
  font-weight: 300;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.nav-menu {
  display: flex;
  list-style: none;
}

.nav-item {
  margin-left: 2.5rem;
}

.nav-link {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding-bottom: 0.3rem;
}

.nav-link:hover {
  border-bottom: 1px solid var(--color-gold);
}

.menu-toggle {
  display: none;
  cursor: pointer;
}

/* Hero Section */
.hero {
  height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0;
  overflow: hidden;
}

.hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0,0,0,0.2), rgba(0,0,0,0.4));
  z-index: -1;
}

.hero-content {
  text-align: center;
  color: var(--color-white);
  max-width: 800px;
  padding: 0 2rem;
}

.hero-title {
  margin-bottom: 1.5rem;
  font-weight: 300;
}

.hero-subtitle {
  font-size: 1.2rem;
  font-weight: 300;
  letter-spacing: 0.05em;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  color: var(--color-white);
  font-size: 1.5rem;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0) translateX(-50%);
  }
  40% {
    transform: translateY(-20px) translateX(-50%);
  }
  60% {
    transform: translateY(-10px) translateX(-50%);
  }
}

/* Editorial Blocks */
.editorial-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.editorial-title {
  margin-bottom: 1.5rem;
  position: relative;
}

.editorial-title:after {
  content: '';
  position: absolute;
  bottom: -0.5rem;
  left: 0;
  width: 40px;
  height: 1px;
  background-color: var(--color-gold);
}

.editorial-text {
  margin-bottom: 2rem;
  font-weight: 300;
  line-height: 1.8;
}

/* Cases Section */
.cases-section {
  background-color: var(--color-beige-light);
  padding: 8rem 0;
}

.case-item {
  position: relative;
}

.case-quote {
  font-size: 1.5rem;
  font-weight: 300;
  font-style: italic;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.case-author {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.quote-mark {
  font-size: 5rem;
  position: absolute;
  top: -2rem;
  left: -2rem;
  color: var(--color-gold);
  opacity: 0.2;
}

/* Metrics Section */
.metrics-section {
  padding: 8rem 0;
}

.metric-item {
  margin-bottom: 2rem;
}

.metric-number {
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--color-gold);
  margin-bottom: 0.5rem;
}

.metric-label {
  font-size: 1rem;
  font-weight: 300;
  letter-spacing: 0.05em;
}

/* Steps Section */
.steps-section {
  background-color: var(--color-gray-light);
  padding: 8rem 0;
}

.step-item {
  text-align: center;
  padding: 2rem;
}

.step-number {
  font-size: 3rem;
  font-weight: 300;
  color: var(--color-gold);
  margin-bottom: 1.5rem;
}

.step-title {
  margin-bottom: 1rem;
}

/* CTA Section */
.cta-section {
  background-color: var(--color-beige);
  padding: 8rem 0;
  text-align: center;
}

.cta-content {
  max-width: 600px;
  margin: 0 auto;
}

.cta-title {
  margin-bottom: 1.5rem;
}

.cta-text {
  margin-bottom: 2.5rem;
}

/* Footer */
.footer {
  background-color: var(--color-white);
  padding: 4rem 0;
  border-top: 1px solid var(--color-gray);
}

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

.footer-logo {
  font-size: 1.2rem;
  font-weight: 300;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.social-links {
  display: flex;
  list-style: none;
}

.social-item {
  margin-left: 1.5rem;
}

.social-link {
  font-size: 1.2rem;
}

.footer-bottom {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--color-gray);
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  color: var(--color-text-medium);
}

/* WhatsApp Button */
.whatsapp-button {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 60px;
  height: 60px;
  background-color: var(--color-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  z-index: 100;
  transition: all 0.3s ease;
}

.whatsapp-button:hover {
  transform: scale(1.1);
  background-color: var(--color-gold-hover);
}

/* Responsividade */
@media (max-width: 992px) {
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    height: 100vh;
    background-color: var(--color-white);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: all 0.5s ease;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
  }
  
  .nav-menu.active {
    right: 0;
  }
  
  .nav-item {
    margin: 1.5rem 0;
  }
  
  .menu-toggle {
    display: block;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-subtitle {
    font-size: 1rem;
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2rem;
  }
  
  .footer-container {
    flex-direction: column;
    text-align: center;
  }
  
  .social-links {
    margin-top: 2rem;
    justify-content: center;
  }
  
  .social-item:first-child {
    margin-left: 0;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  
  .footer-bottom div:last-child {
    margin-top: 1rem;
  }
  
  .whatsapp-button {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
  }
}

@media (max-width: 576px) {
  .hero-title {
    font-size: 1.8rem;
  }
  
  .hero-subtitle {
    font-size: 0.9rem;
  }
}
