/* Reset e Estilos Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: #2c1810;
  line-height: 1.6;
  overflow-x: hidden;
}


.app {
  min-height: 100vh;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Navegação */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(44, 24, 16, 0.95);
  backdrop-filter: blur(20px);
  z-index: 1000;
  transition: all 0.3s ease;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}

.nav-logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.logo-text {
  font-size: 1.5rem;
  font-weight: 700;
  color: #f4e6d3;
  letter-spacing: -0.02em;
}

.logo-subtitle {
  font-size: 0.85rem;
  color: #b8956a;
  font-weight: 300;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

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

.nav-link {
  background: none;
  border: none;
  color: #f4e6d3;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0.5rem 0;
  position: relative;
}

.nav-link:hover {
  color: #b8956a;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #b8956a, #8b6f47);
  transition: width 0.3s ease;
}

.nav-link:hover::after {
  width: 100%;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.menu-toggle span {
  width: 25px;
  height: 3px;
  background: #f4e6d3;
  margin: 3px 0;
  transition: 0.3s;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: rgba(44, 24, 16, 0.98);
  backdrop-filter: blur(20px);
  padding: 2rem;
  transform: translateY(-100%);
  opacity: 0;
  transition: all 0.3s ease;
}

.mobile-menu.open {
  transform: translateY(0);
  opacity: 1;
}

.mobile-nav-link {
  background: none;
  border: none;
  color: #f4e6d3;
  font-size: 1.1rem;
  cursor: pointer;
  padding: 1rem 0;
  text-align: left;
  transition: color 0.3s ease;
}

.mobile-nav-link:hover {
  color: #b8956a;
}

/* Seção Hero */
.hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
}

.hero-image-container {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.hero-image.active {
  opacity: 1;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(44, 24, 16, 0.8) 0%,
    rgba(139, 111, 71, 0.6) 50%,
    rgba(184, 149, 106, 0.4) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  padding: 0 2rem;
}

.hero-title {
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 800;
  color: #f4e6d3;
  margin-bottom: 1.5rem;
  line-height: 1;
  letter-spacing: -0.03em;
}

.hero-title-highlight {
  display: block;
  background: linear-gradient(135deg, #b8956a 0%, #8b6f47 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-top: 0.5rem;
}

.hero-subtitle {
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  color: #f4e6d3;
  margin-bottom: 3rem;
  font-weight: 300;
  line-height: 1.6;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-cta {
  background: linear-gradient(135deg, #b8956a 0%, #8b6f47 100%);
  color: #f4e6d3;
  border: none; /* Remove qualquer borda */
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  box-shadow: 0 8px 32px rgba(184, 149, 106, 0.3);
  text-decoration: none; /* Remove underline se houver */
}

.hero-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 48px rgba(184, 149, 106, 0.4);
}


.hero-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 48px rgba(184, 149, 106, 0.4);
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #f4e6d3;
  font-size: 0.9rem;
  font-weight: 300;
  letter-spacing: 0.1em;
}

.scroll-line {
  width: 2px;
  height: 40px;
  background: linear-gradient(to bottom, transparent, #b8956a);
  margin-bottom: 0.5rem;
  animation: scroll-pulse 2s infinite;
}

@keyframes scroll-pulse {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 1; }
}

/* Seção Sobre */
.about {
  padding: 8rem 0;
  background: #f4e6d3;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.section-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
  color: #2c1810;
  margin-bottom: 2rem;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.about-description {
  font-size: 1.1rem;
  color: #5d4037;
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.stat {
  text-align: center;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: #8b6f47;
  display: block;
  margin-bottom: 0.5rem;
}

.stat-social {
  display: flex;
  justify-content: center;
  margin-bottom: 1rem;
}

.instagram-icon {
  width: 40px;
  height: 40px;
  transition: transform 0.3s ease;
}

.instagram-icon:hover {
  transform: scale(1.1);
}

.stat-label {
  font-size: 0.9rem;
  color: #5d4037;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.about-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.bruna-photo {
  width: 300px;
  height: 400px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(139, 111, 71, 0.3);
  position: relative;
}

.bruna-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #8b6f47 0%, #b8956a 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #f4e6d3;
  font-size: 1.2rem;
  font-weight: 500;
  position: absolute;
  top: 0;
  left: 0;
}

/* Seção Serviços */
.services {
  padding: 8rem 0;
  background: #2c1810;
}

.services .section-title {
  color: #f4e6d3;
  text-align: center;
}

.section-subtitle {
  text-align: center;
  font-size: 1.2rem;
  color: #b8956a;
  margin-bottom: 4rem;
  font-weight: 300;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 4rem;
}

.service-card {
  background: rgba(244, 230, 211, 0.05);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(184, 149, 106, 0.1);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(184, 149, 106, 0.2);
}

.service-image {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.service-card:hover .service-image img {
  transform: scale(1.05);
}

.service-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(44, 24, 16, 0.3) 0%,
    rgba(139, 111, 71, 0.2) 100%
  );
}

.service-content {
  padding: 2rem;
}

.service-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: #f4e6d3;
  margin-bottom: 1rem;
}

.service-description {
  font-size: 1rem;
  color: #b8956a;
  line-height: 1.6;
}

/* Seção Processo */
.process {
  padding: 8rem 0;
  background: #f4e6d3;
}

.process .section-title {
  text-align: center;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-top: 4rem;
}

.process-step {
  text-align: center;
  position: relative;
}

.step-number {
  font-size: 3rem;
  font-weight: 800;
  color: #8b6f47;
  margin-bottom: 1.5rem;
  display: block;
}

.step-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #2c1810;
  margin-bottom: 1rem;
}

.step-description {
  font-size: 1rem;
  color: #5d4037;
  line-height: 1.6;
}

/* Seção Contato */
.contact {
  padding: 8rem 0;
  background: #2c1810;
}

.contact .section-title {
  color: #f4e6d3;
  text-align: center;
}

.contact-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.contact-description {
  font-size: 1.1rem;
  color: #b8956a;
  margin-bottom: 4rem;
  line-height: 1.7;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.social-link {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem 2rem;
  background: rgba(244, 230, 211, 0.05);
  border-radius: 15px;
  text-decoration: none;
  color: #f4e6d3;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(184, 149, 106, 0.1);
  font-size: 1.1rem;
  font-weight: 500;
}

.social-link:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(184, 149, 106, 0.2);
  color: #b8956a;
}

.social-icon {
  width: 24px;
  height: 24px;
  transition: transform 0.3s ease;
}

.social-link:hover .social-icon {
  transform: scale(1.1);
}

.social-link.instagram:hover {
  background: linear-gradient(135deg, #833ab4 0%, #fd1d1d 50%, #fcb045 100%);
  color: white;
}

.social-link.pinterest:hover {
  background: #bd081c;
  color: white;
}

.social-link.bio:hover {
  background: linear-gradient(135deg, #8b6f47 0%, #b8956a 100%);
  color: white;
}

/* Rodapé */
.footer {
  background: #1a0f0a;
  padding: 4rem 0 2rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.footer-description {
  color: #8b6f47;
  font-size: 1rem;
  line-height: 1.6;
}

.footer-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: #f4e6d3;
  margin-bottom: 1.5rem;
}

.footer-link,
.footer-service,
.footer-contact-item {
  color: #8b6f47;
  font-size: 0.95rem;
  margin-bottom: 0.8rem;
  transition: color 0.3s ease;
}

.footer-link {
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  padding: 0;
}

.footer-link:hover {
  color: #b8956a;
}

.footer-contact-item a {
  color: #8b6f47;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-contact-item a:hover {
  color: #b8956a;
}

.footer-bottom {
  border-top: 1px solid rgba(184, 149, 106, 0.2);
  padding-top: 2rem;
  text-align: center;
  color: #8b6f47;
  font-size: 0.9rem;
}

/* Design Responsivo */
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  
  .menu-toggle {
    display: flex;
  }
  
  .mobile-menu {
    display: flex;
  }
  
  .hero-content {
    padding: 0 1rem;
  }
  
  .about-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .about-stats {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
  }
  
  .process-steps {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .social-links {
    flex-direction: column;
    align-items: center;
  }
  
  .social-link {
    min-width: 250px;
    justify-content: center;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }
  
  .nav-container {
    padding: 0 15px;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-subtitle {
    font-size: 1rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .social-links {
    gap: 1rem;
  }
  
  .social-link {
    min-width: 200px;
    padding: 1rem 1.5rem;
  }
}

/* Rolagem Suave */
html {
  scroll-behavior: smooth;
}

/* Barra de Rolagem Personalizada */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #2c1810;
}

::-webkit-scrollbar-thumb {
  background: #8b6f47;
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: #b8956a;
}