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

body {
  font-family: "Inter", sans-serif;
  line-height: 1.6;
  color: #f5f5f5;
  background-color: #0a0a0a;
}

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

/* Header */
.header {
  background-color: #1a1a1a;
  border-bottom: 1px solid #333;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo-icon {
  width: 2rem;
  height: 2rem;
  color: #d4af37;
}

.logo-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #f5f5f5;
}

.logo-subtitle {
  font-size: 0.875rem;
  color: #d4d4d4;
}

.nav {
  display: flex;
  gap: 1.5rem;
}

.nav-link {
  color: #f5f5f5;
  text-decoration: none;
  transition: color 0.3s;
}

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

/* Menu mobile */
.mobile-menu-btn {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 1001;
  position: relative;
}

.mobile-menu-btn span {
  width: 25px;
  height: 3px;
  background-color: #f5f5f5;
  margin: 3px 0;
  transition: all 0.3s ease;
  border-radius: 2px;
}

/* Animação do botão quando ativo */
.mobile-menu-btn.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-btn.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* Overlay menu mobile */
.mobile-nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(4px);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.mobile-nav-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Menu mobile */
.mobile-nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100vh;
  background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
  border-left: 1px solid #333;
  z-index: 1000;
  transition: right 0.3s ease;
  display: flex;
  flex-direction: column;
  box-shadow: -5px 0 20px rgba(0, 0, 0, 0.3);
}

.mobile-nav.active {
  right: 0;
}

/* Header do menu mobile */
.mobile-nav-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem;
  border-bottom: 1px solid #333;
}

.mobile-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.mobile-logo-icon {
  width: 1.5rem;
  height: 1.5rem;
  color: #d4af37;
}

.mobile-logo span {
  font-weight: 700;
  color: #f5f5f5;
  font-size: 1.1rem;
}

.mobile-nav-close {
  background: none;
  border: none;
  color: #f5f5f5;
  cursor: pointer;
  padding: 0.5rem;
  border-radius: 0.25rem;
  transition: background-color 0.3s;
}

.mobile-nav-close:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.mobile-nav-close svg {
  width: 1.5rem;
  height: 1.5rem;
}

/* Links do menu mobile */
.mobile-nav-links {
  flex: 1;
  padding: 1rem 0;
}

.mobile-nav-link {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.5rem;
  color: #f5f5f5;
  text-decoration: none;
  transition: all 0.3s ease;
  border-left: 3px solid transparent;
}

.mobile-nav-link:hover {
  background-color: rgba(212, 175, 55, 0.1);
  border-left-color: #d4af37;
  color: #d4af37;
}

.mobile-nav-link svg {
  width: 1.25rem;
  height: 1.25rem;
}

/* Footer do menu mobile */
.mobile-nav-footer {
  padding: 1.5rem;
  border-top: 1px solid #333;
}

.mobile-btn-whatsapp {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  padding: 0.75rem;
  background-color: #25d366;
  color: #ffffff;
  text-decoration: none;
  border-radius: 0.5rem;
  font-weight: 500;
  transition: all 0.3s ease;
  margin-bottom: 1rem;
}

.mobile-btn-whatsapp:hover {
  background-color: #20b858;
  transform: translateY(-1px);
}

.mobile-btn-whatsapp svg {
  width: 1.25rem;
  height: 1.25rem;
}

.mobile-contact-info {
  text-align: center;
  font-size: 0.875rem;
  color: #ffffff !important;
  text-decoration: none !important;
  -webkit-text-fill-color: #ffffff !important;
}

.mobile-contact-info p {
  margin: 0.25rem 0;
}

/* Hero Section */
.hero {
  padding: 8% 0 5rem;
  background-image: url("img/Design\ sem\ nome.png");
  text-align: center;
  display: flex;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.badge {
  display: inline-block;
  background-color: #333;
  color: #f5f5f5;
  padding: 0.5rem 1rem;
  border-radius: 2rem;
  font-size: 0.875rem;
  margin-bottom: 1rem;
}

.hero-title {
  font-size: 3rem;
  font-weight: 700;
  color: #f6ff00;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.accent-text {
  color: #ffffff;
}

.hero-description {
  font-size: 1.25rem;
  color: #ffffff;
  margin-bottom: 2rem;
  line-height: 1.6;
}

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

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  font-weight: 500;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  font-size: 1rem;
}

.btn-primary {
  background-color: #d4af37;
  color: #0a0a0a;
}

.btn-primary:hover {
  background-color: #e67a37;
}

/* Adicionado estilo para botão do WhatsApp */
.btn-whatsapp {
  background-color: #25d366;
  color: #000000;
}

.btn-whatsapp:hover {
  background-color: #20b858;
  transform: translateY(-2px);
}

.btn-outline {
  background-color: transparent;
  color: #f5f5f5;
  border: 1px solid #333;
}

.btn-outline:hover {
  background-color: #333;
}

.btn-full {
  width: 100%;
}

.btn-icon {
  width: 1rem;
  height: 1rem;
}

/* Sections */
.areas,
.testimonials {
  padding: 4rem 0;
  background-color: #0a0a0a;
}

.about,
.contact {
  padding: 2rem 0;
  background-color: #1a1a1a;
}

.section-header {
  text-align: center;
  margin-bottom: 2rem;
}

.section-title {
  font-size: 2rem;
  font-weight: 700;
  color: #f5f5f5;
  margin-bottom: 2rem;
}

.section-description {
  font-size: 1.125rem;
  color: #d4d4d4;
  max-width: 600px;
  margin: 0 auto;
  margin-bottom: 5rem;
}

/* Cards */
.areas-grid,
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.card,
.testimonial-card {
  background-image: url("img/card1.png");
  border: 1px solid #333;
  border-radius: 0.5rem;
  padding: 1.5rem;
  transition: box-shadow 0.3s;
}

.card2,
.testimonial-card {
  background-image: url("img/card3.png");
  border: 1px solid #333;
  border-radius: 0.5rem;
  padding: 1.5rem;
  transition: box-shadow 0.3s;
}

.card3,
.testimonial-card {
  background-image: url("img/card2.png");
  border: 1px solid #333;
  border-radius: 0.5rem;
  padding: 1.5rem;
  transition: box-shadow 0.3s;
}

.card:hover,
.testimonial-card:hover {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.card-header {
  margin-bottom: 1rem;
}

.card-icon {
  width: 2rem;
  height: 2rem;
  color: #d4af37;
  margin-bottom: 0.5rem;
}

.card-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #f5f5f5;
  margin-bottom: 0.5rem;
}

.card-description {
  color: #d4d4d4;
  font-size: 0.875rem;
}

.service-list {
  list-style: none;
  color: #d4d4d4;
  font-size: 0.875rem;
}

.service-list li {
  margin-bottom: 0.25rem;
}

/* About Section */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

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

.office-image {
  width: 100%;
  max-width: 400px;
  border-radius: 0.5rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
  object-fit: cover;
  height: auto;
}

.about-text {
  color: #d4d4d4;
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

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

.stat-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.stat-icon {
  width: 1.25rem;
  height: 1.25rem;
  color: #d4af37;
}

.stat-text {
  font-size: 0.875rem;
  color: #f5f5f5;
}

/* Testimonials */
.stars {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 1rem;
}

.star {
  width: 1rem;
  height: 1rem;
  color: #d4af37;
}

.testimonial-text {
  color: #d4d4d4;
  font-style: italic;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.testimonial-author {
  border-top: 1px solid #333;
  padding-top: 1rem;
}

.author-name {
  font-weight: 600;
  color: #f5f5f5;
}

.author-role {
  font-size: 0.875rem;
  color: #d4d4d4;
}

/* Contact Section */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.contact-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #f5f5f5;
  margin-bottom: 1.5rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.contact-icon {
  width: 1.25rem;
  height: 1.25rem;
  color: #d4af37;
  margin-top: 0.25rem;
}

.contact-label {
  font-weight: 500;
  color: #f5f5f5;
  margin-bottom: 0.25rem;
}

.contact-value {
  color: inherit;
  line-height: 1.5;
}

.whatsapp-section {
  display: flex;
  align-items: center;
  justify-content: center;
}

.whatsapp-card {
  background-color: #0a0a0a;
  border: 1px solid #333;
  border-radius: 0.5rem;
  padding: 2rem;
  text-align: center;
  max-width: 400px;
  width: 100%;
}

.whatsapp-icon {
  width: 4rem;
  height: 4rem;
  background-color: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.whatsapp-icon svg {
  width: 2rem;
  height: 2rem;
  color: #ffffff;
}

.whatsapp-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #f5f5f5;
  margin-bottom: 1rem;
}

.whatsapp-description {
  color: #d4d4d4;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.whatsapp-note {
  font-size: 0.875rem;
  color: #d4d4d4;
  margin-top: 1rem;
  font-style: italic;
}

/* Footer */
.footer {
  background-color: #f5f5f5;
  color: #0a0a0a;
  padding: 2rem 0;
}

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

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.footer-logo-icon {
  width: 1.5rem;
  height: 1.5rem;
}

.footer-logo-text {
  font-weight: 700;
}

.footer-description {
  font-size: 0.875rem;
  opacity: 0.9;
}

.footer-title {
  font-weight: 600;
  margin-bottom: 1rem;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-link {
  color: #0a0a0a;
  text-decoration: none;
  font-size: 0.875rem;
  opacity: 0.9;
  transition: opacity 0.3s;
}

.footer-link:hover {
  opacity: 1;
}

.footer-contact {
  font-size: 0.875rem;
  opacity: 0.9;
  color: #000000 !important;
  text-decoration: none !important;
  -webkit-text-fill-color: #000000 !important;
}

.footer-contact p {
  margin-bottom: 0.25rem;
}

.footer-bottom {
  border-top: 1px solid rgba(10, 10, 10, 0.2);
  padding-top: 2rem;
  text-align: center;
  font-size: 0.875rem;
  opacity: 0.9;
}

/* Responsive Design */
@media (max-width: 768px) {
  .nav {
    display: none;
  }

  .mobile-menu-btn {
    display: flex;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }

  .areas-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  /* Responsividade para seção WhatsApp */
  .whatsapp-card {
    padding: 1.5rem;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 0.5rem;
  }

  .hero {
    padding: 6rem 0 3rem;
  }

  .hero-title {
    font-size: 1.75rem;
  }

  .section-title {
    font-size: 1.5rem;
  }
}

/* Smooth Scrolling */
html {
  scroll-behavior: smooth;
}

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

.card,
.testimonial-card {
  animation: fadeIn 0.6s ease-out;
}
