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

:root {
  /* Paleta Verde Militar */
  --military-dark: #1D291C;
  --military-base: #2B3D33;
  --military-medium: #3B4937;
  --military-accent: #5D6532;
  --military-light: #8A925E;
  
  /* Cores originais mantidas */
  --bg-page: #1a1c1b;
  --bg-card: #302f2c;
  --text-light: #dfddd6;
  --text-muted: #888680;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
  background: #1a1c1b;
  color: #dfddd6;
  line-height: 1.6;
  overflow-x: hidden;
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(26, 28, 27, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(63, 72, 22, 0.3);
  z-index: 1000;
  padding: 1rem 0;
}

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

.logo {
  height: 150px;
  width: auto;
  filter: drop-shadow(0 3px 10px rgba(138, 146, 94, 0.4));
  transition: all 0.3s ease;
}

.logo:hover {
  filter: drop-shadow(0 5px 15px rgba(138, 146, 94, 0.6));
  transform: scale(1.05);
}

.nav-menu {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-link {
  color: var(--military-light);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  padding: 0.5rem 1rem;
  transition: all 0.3s ease;
  position: relative;
}

.nav-link:hover {
  color: var(--military-accent);
  transform: translateY(-2px);
}

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

.hamburger {
  display: block;
  width: 25px;
  height: 2px;
  background: var(--military-light);
  position: relative;
  transition: all 0.3s ease;
}

.hamburger::before,
.hamburger::after {
  content: '';
  position: absolute;
  width: 25px;
  height: 2px;
  background: var(--military-light);
  transition: all 0.3s ease;
}

.hamburger::before {
  top: -8px;
}

.hamburger::after {
  bottom: -8px;
}

/* Hero Section */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url('https://customer-assets.emergentagent.com/job_mecanica-estacio/artifacts/ngs2cptj_Untitled-1.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 120px 2.5rem 80px;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(26, 28, 27, 0.85) 0%, rgba(26, 28, 27, 0.6) 50%, rgba(26, 28, 27, 0.85) 100%);
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  text-align: left;
}

.hero-title {
  font-weight: 900;
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  line-height: 1.1;
  color: var(--military-light);
  text-transform: uppercase;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
  text-shadow: 3px 3px 8px rgba(0, 0, 0, 0.9), 0 0 20px rgba(0, 0, 0, 0.7);
}

.hero-subtitle-main {
  font-weight: 600;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  line-height: 1.3;
  color: #dfddd6;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.9);
}

.hero-subtitle {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  line-height: 1.6;
  color: #dfddd6;
  margin-bottom: 3rem;
  max-width: 700px;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.9);
}

.hero-cta-group {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  min-width: 180px;
  justify-content: center;
}

/* Buttons */
.btn-primary {
  background: var(--military-accent);
  color: #ffffff;
  border: none;
  border-radius: 10rem;
  padding: 1em 1.5em;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  min-height: 52px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  letter-spacing: -0.04em;
  text-transform: uppercase;
}

.btn-primary:hover {
  background: var(--military-light);
  transform: scale(1.05);
}

.btn-secondary {
  background: transparent;
  color: var(--military-light);
  border: 2px solid var(--military-accent);
  border-radius: 10rem;
  padding: 1em 1.5em;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  min-height: 52px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  letter-spacing: -0.04em;
  text-transform: uppercase;
}

.btn-secondary:hover {
  background: var(--military-accent);
  color: #ffffff;
  border-color: var(--military-accent);
  transform: scale(1.05);
}

/* Sections */
.section-title {
  font-weight: 900;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.1;
  color: var(--military-light);
  text-transform: uppercase;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.1rem;
  line-height: 1.5;
  color: #888680;
  margin-bottom: 3rem;
}

/* Address Section */
.address-section {
  background: #1a1c1b;
  padding: 96px 2.5rem;
  border-top: 1px solid rgba(63, 72, 22, 0.3);
}

.address-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.info-grid {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.info-item {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.info-icon {
  color: var(--military-light);
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.info-label {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--military-light);
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.info-text {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #dfddd6;
  margin: 0.25rem 0;
}

.contact-link {
  color: var(--military-light);
  text-decoration: none;
  transition: all 0.3s ease;
  font-weight: 500;
}

.contact-link:hover {
  color: var(--military-accent);
  text-decoration: underline;
}

.map-container {
  width: 100%;
  height: 100%;
  min-height: 400px;
  border: 1px solid rgba(63, 72, 22, 0.5);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  min-height: 400px;
}

/* Services Section */
.services-section {
  background: #302f2c;
  padding: 96px 2.5rem;
  border-top: 1px solid rgba(63, 72, 22, 0.3);
}

.services-container {
  max-width: 1400px;
  margin: 0 auto;
}

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

.service-card {
  background: #1a1c1b;
  border: 1px solid rgba(63, 72, 22, 0.5);
  padding: 2rem;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.service-card:hover {
  border-color: var(--military-accent);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(93, 101, 50, 0.2);
}

.service-icon-wrapper {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(93, 101, 50, 0.15);
  border: 2px solid var(--military-accent);
  border-radius: 8px;
}

.service-icon {
  color: var(--military-light);
}

.service-title {
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--military-light);
  line-height: 1.3;
}

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

/* About Section */
.about-section {
  background: #1a1c1b;
  padding: 96px 2.5rem;
  border-top: 1px solid rgba(63, 72, 22, 0.3);
}

.about-container {
  max-width: 1400px;
  margin: 0 auto;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.team-card {
  background: #302f2c;
  border: 1px solid rgba(63, 72, 22, 0.5);
  padding: 2rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  transition: all 0.3s ease;
}

.team-card:hover {
  border-color: var(--military-accent);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(93, 101, 50, 0.2);
}

.team-icon-wrapper {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(93, 101, 50, 0.15);
  border: 2px solid var(--military-accent);
  border-radius: 50%;
  flex-shrink: 0;
}

.team-icon {
  color: var(--military-light);
}

.team-name {
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--military-light);
  margin: 0 0 0.5rem 0;
}

.team-role {
  font-size: 1rem;
  color: #dfddd6;
  margin: 0 0 0.5rem 0;
  font-weight: 500;
}

.team-specialty {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: #888680;
  margin-top: 0.5rem;
}

.team-specialty svg {
  color: var(--military-accent);
  flex-shrink: 0;
}

.about-description {
  margin-top: 3rem;
  max-width: 900px;
}

.about-description p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #dfddd6;
  margin-bottom: 1.5rem;
}

/* Reviews Section */
.reviews-section {
  background: #302f2c;
  padding: 96px 2.5rem;
  border-top: 1px solid rgba(63, 72, 22, 0.3);
}

.reviews-container {
  max-width: 1400px;
  margin: 0 auto;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.review-card {
  background: #1a1c1b;
  border: 1px solid rgba(63, 72, 22, 0.5);
  padding: 2rem;
  transition: all 0.3s ease;
}

.review-card:hover {
  border-color: var(--military-accent);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(93, 101, 50, 0.2);
}

.review-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
  gap: 1rem;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(93, 101, 50, 0.2);
  border: 2px solid var(--military-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--military-light);
}

.author-name {
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--military-light);
  margin: 0 0 0.3rem 0;
}

.review-stars {
  display: flex;
  gap: 0.2rem;
}

.star {
  color: var(--military-accent);
  font-size: 1rem;
}

.review-date {
  font-size: 0.85rem;
  color: #888680;
  white-space: nowrap;
}

.review-text {
  font-size: 1rem;
  line-height: 1.6;
  color: #dfddd6;
}

.reviews-cta {
  display: flex;
  justify-content: center;
  margin-top: 3rem;
}

/* Footer */
.site-footer {
  background: #1a1c1b;
  border-top: 2px solid var(--military-accent);
  padding: 60px 2.5rem 30px;
}

.footer-container {
  max-width: 1400px;
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-logo {
  height: 110px;
  width: auto;
  margin-bottom: 1rem;
  filter: drop-shadow(0 2px 8px rgba(138, 146, 94, 0.3));
}

.footer-description {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #888680;
  max-width: 300px;
}

.footer-title {
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--military-light);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

.footer-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
  color: #dfddd6;
}

.footer-list svg {
  color: var(--military-accent);
  flex-shrink: 0;
}

.footer-list a {
  color: #dfddd6;
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-list a:hover {
  color: var(--military-light);
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(63, 72, 22, 0.3);
  text-align: center;
}

.footer-bottom p {
  font-size: 0.9rem;
  color: #888680;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .header-container {
    padding: 0 1.25rem;
  }

  .logo {
    height: 100px;
  }

  .mobile-menu-toggle {
    display: block;
  }

  .nav-menu {
    position: fixed;
    top: 100px;
    left: 0;
    right: 0;
    background: rgba(26, 28, 27, 0.98);
    backdrop-filter: blur(16px);
    flex-direction: column;
    gap: 0;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(63, 72, 22, 0.3);
    transform: translateY(-120%);
    opacity: 0;
    transition: all 0.3s ease;
    pointer-events: none;
  }

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

  .nav-link {
    width: 100%;
    text-align: center;
    padding: 1rem;
    border-bottom: 1px solid rgba(63, 72, 22, 0.2);
  }

  .hero-section {
    padding: 100px 1.25rem 60px;
    min-height: 90vh;
  }

  .hero-content {
    text-align: center;
  }

  .hero-cta-group {
    flex-direction: column;
    width: 100%;
  }

  .hero-btn {
    width: 100%;
  }

  .address-section {
    padding: 60px 1.25rem;
  }

  .address-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .map-container {
    min-height: 300px;
  }

  .services-section {
    padding: 60px 1.25rem;
  }

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

  .about-section {
    padding: 60px 1.25rem;
  }

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

  .team-card {
    flex-direction: column;
    text-align: center;
  }

  .reviews-section {
    padding: 60px 1.25rem;
  }

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

  .review-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .site-footer {
    padding: 40px 1.25rem 20px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-section {
    text-align: center;
  }

  .footer-logo {
    margin: 0 auto 1rem;
  }

  .footer-description {
    margin: 0 auto;
  }

  .footer-list li {
    justify-content: center;
  }
}
