/* style.css */
@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;400;500;600;700&family=Inter:wght@300;400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@20..48,100..700,0..1,-50..200');

:root {
  --bg-color: #06090c;
  --surface: #0d1218;
  --surface-light: #161e27;
  --primary: #4deeea;
  --primary-glow: rgba(77, 238, 234, 0.4);
  --text-main: #f8f9fa;
  --text-muted: #9aaabf;
  
  --font-heading: 'Space Grotesk', sans-serif;
  --font-body: 'Inter', sans-serif;

  --glass-bg: rgba(13, 18, 24, 0.65);
  --glass-border: rgba(255, 255, 255, 0.08);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
  background-color: var(--bg-color);
  color: var(--text-main);
  font-family: var(--font-body);
  overflow-x: hidden;
  line-height: 1.6;
}

/* Base Styles */
h1, h2, h3, h4, h5, .font-headline {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

.material-symbols-outlined {
    font-variation-settings: 'FILL' 1, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}

/* Glassmorphism utility */
.glass {
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
}

/* Dynamic Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 1.5rem 0;
  z-index: 1000;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar.scrolled {
  background: rgba(6, 9, 12, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 1rem 0;
  border-bottom: 1px solid var(--glass-border);
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

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

.logo {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.5px;
}

.logo span {
  color: var(--primary);
}

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

.nav-links a {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
}

.nav-links a:not(.btn-primary):hover, .nav-links a:not(.btn-primary).active {
  color: #fff;
}

.nav-links a:not(.btn-primary)::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary);
  transition: width 0.3s ease;
}

.nav-links a:not(.btn-primary):hover::after, .nav-links a:not(.btn-primary).active::after {
  width: 100%;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--primary);
  color: #000 !important;
  padding: 0.8rem 1.5rem;
  border-radius: 8px;
  font-family: var(--font-heading);
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 0 20px var(--primary-glow);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 30px var(--primary-glow);
  background: #fff;
}

.btn-glass {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 0.75rem 1.5rem;
  background: rgba(77, 238, 234, 0.05);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(77, 238, 234, 0.3);
  border-radius: 12px;
  color: var(--primary);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  width: 100%;
  margin-top: auto;
}

.btn-glass .material-symbols-outlined {
    font-size: 1.25rem;
    margin-bottom: 0 !important;
}

.btn-glass:hover {
  background: rgba(77, 238, 234, 0.15);
  border-color: var(--primary);
  color: #fff;
  box-shadow: 0 0 20px rgba(77, 238, 234, 0.2);
  transform: translateY(-3px);
}

/* Mobile Toggle */
.mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
  z-index: 1001;
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  padding-top: 80px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
  transform: scale(1.05); /* Will be animated */
  transition: transform 10s linear;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(6,9,12,0.95) 0%, rgba(6,9,12,0.6) 50%, rgba(6,9,12,0.9) 100%);
}

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

.hero-content h1 {
  font-size: clamp(3rem, 5vw, 4.5rem);
  margin-bottom: 1.5rem;
  letter-spacing: -1px;
}

.hero-content h1 span {
  background: linear-gradient(135deg, #fff, var(--primary));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-content p {
  font-size: 1.25rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  max-width: 600px;
}

.hero-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem 2rem;
  margin-bottom: 2.5rem;
  max-width: 650px;
}

.hero-feature-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--text-main);
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 1.1rem;
}

.hero-feature-item .material-symbols-outlined {
  color: var(--primary);
  font-size: 1.5rem;
}

.hero-image-wrap {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
  transform: perspective(1000px) rotateY(-5deg);
  transition: transform 0.5s ease;
  border: 1px solid var(--glass-border);
}

.hero-image-wrap:hover {
  transform: perspective(1000px) rotateY(0deg) scale(1.02);
}

.hero-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
}

.hero-badge {
  position: absolute;
  bottom: 2rem;
  left: -2rem;
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  padding: 1rem 1.5rem;
  border-radius: 12px;
  border: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  gap: 1rem;
  animation: float 6s ease-in-out infinite;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.hero-badge .material-symbols-outlined {
    color: var(--primary);
    font-size: 2rem;
}

@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-15px); }
  100% { transform: translateY(0px); }
}

/* Sections */
section {
  padding: 5rem 0;
  position: relative;
}

.section-header {
  margin-bottom: 3rem;
  max-width: 800px;
}

.section-header.text-center {
    margin: 0 auto 4rem auto;
}

.section-subtitle {
  color: var(--primary);
  font-family: var(--font-heading);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.9rem;
  margin-bottom: 1rem;
  display: block;
}

.section-title {
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  margin-bottom: 1.5rem;
}

.section-desc {
    font-size: 1.125rem;
    color: var(--text-muted);
}

/* Bento Grid Services */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  grid-auto-rows: minmax(280px, auto);
  margin-top: 2rem;
}

.bento-item {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 1.5rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  min-height: 280px;
}

.bento-item::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, var(--primary-glow), transparent 60%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.bento-item:hover {
  transform: translateY(-5px);
  border-color: rgba(77, 238, 234, 0.3);
  box-shadow: 0 10px 40px rgba(0,0,0,0.5);
}

.bento-item:hover::before {
  opacity: 1;
}

.bento-img {
  width: 100%;
  height: 240px;
  overflow: hidden;
  border-radius: 12px;
}

.bento-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.bento-item:hover .bento-img img {
  transform: scale(1.1);
}

.bento-large { grid-column: span 2; min-height: 400px; }

@media (max-width: 768px) {
  .bento-large { grid-column: span 1; }
}

.bento-highlight {
  background: linear-gradient(135deg, var(--surface), #131d27);
  border-color: rgba(77, 238, 234, 0.2);
}

.bento-item .material-symbols-outlined {
  font-size: 3rem;
  margin-bottom: 2rem;
  color: var(--primary);
  display: inline-block;
  transition: transform 0.3s ease;
}

.bento-item:hover .material-symbols-outlined {
    transform: scale(1.1);
}

.bento-content h3 {
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
}

.bento-content p {
  color: var(--text-muted);
}

/* Why Choose Us */
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.feature-card {
  padding: 3rem 2rem;
  text-align: center;
  transition: transform 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-10px);
}

.feature-icon-wrapper {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
  background: var(--surface-light);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--glass-border);
  position: relative;
}

.feature-icon-wrapper::after {
  content: '';
  position: absolute;
  inset: -5px;
  border-radius: 50%;
  border: 1px solid var(--primary);
  opacity: 0;
  transition: all 0.3s ease;
  transform: scale(0.8);
}

.feature-card:hover .feature-icon-wrapper::after {
  opacity: 1;
  transform: scale(1);
}

.feature-icon-wrapper .material-symbols-outlined {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 0;
}

.feature-card h4 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.feature-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.cta-wrap {
    text-align: center;
    margin-top: 4rem;
}

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

.about-image {
  position: relative;
  aspect-ratio: 3/4;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--glass-border);
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%) contrast(1.2);
  transition: filter 0.5s ease, transform 0.5s ease;
}

.about-image:hover img {
  filter: grayscale(0%) contrast(1);
  transform: scale(1.05);
}

.about-content .section-title {
    margin-bottom: 2rem;
}

.about-content p {
    font-size: 1.125rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 3rem;
  padding-top: 3rem;
  border-top: 1px solid var(--glass-border);
}

.stat-item h4 {
  font-size: 4rem;
  color: var(--primary);
  margin-bottom: 0.25rem;
  line-height: 1;
}

.stat-item span {
    color: var(--text-muted);
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
    font-weight: 600;
}

/* Contact Section */
.contact-section {
  background: var(--surface);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

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

.contact-info > p {
    font-size: 1.125rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.5rem;
  border-radius: 12px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  transition: all 0.3s ease;
}

.contact-item:hover {
  background: var(--surface-light);
  border-color: var(--primary);
  transform: translateX(10px);
}

.contact-item .icon {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  background: rgba(77, 238, 234, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-item .icon .material-symbols-outlined {
    color: var(--primary);
    font-size: 2rem;
    margin-bottom: 0;
}

.contact-item div h5 {
  font-size: 1.2rem;
  margin-bottom: 0.25rem;
}

.contact-item div p {
  color: var(--text-muted);
}

.map-container {
  height: 100%;
  min-height: 400px;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--glass-border);
  box-shadow: 0 0 50px rgba(77, 238, 234, 0.4); /* Glow Verde/Cyan mais intenso */
}

.map-container iframe {
  width: 100%;
  height: 100%;
  min-height: 400px;
  object-fit: cover;
  transition: all 0.5s ease;
}

/* Footer */
footer {
  padding: 5rem 0 2rem;
  border-top: 1px solid var(--glass-border);
  background: #000;
}

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

.footer-brand h3 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.footer-brand h3 span {
  color: var(--primary);
}

.footer-brand p {
    color: var(--text-muted);
    max-width: 300px;
}

.footer-links h4 {
  margin-bottom: 1.5rem;
  color: #fff;
  font-size: 1.2rem;
}

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

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

.footer-links ul a {
  color: var(--text-muted);
}

.footer-links ul a:hover {
  color: var(--primary);
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid var(--glass-border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--text-muted);
  font-size: 0.9rem;
}

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

.socials a {
    color: var(--text-muted);
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.socials a:hover {
    color: var(--primary);
    transform: translateY(-3px);
}

/* Utilities & Animations */
.text-center { text-align: center; }
.mt-2 { margin-top: 0.5rem; }
.mb-2 { margin-bottom: 0.5rem; }

/* Observers */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* Responsive */
@media (max-width: 1024px) {
    .bento-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 900px) {
  .hero-grid, .about-grid, .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .hero-content {
      padding-top: 4rem;
  }

  .about-image {
      order: -1;
  }
  
  .hero-badge {
    display: none;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
  
  .footer-brand {
      grid-column: span 2;
  }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: rgba(6, 9, 12, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    transition: right 0.4s ease;
  }
  
  .nav-links.active {
    right: 0;
  }
  
  .mobile-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .bento-grid {
    grid-template-columns: 1fr;
  }
  
  .bento-large {
    grid-column: span 1;
  }

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

  .footer-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-brand {
      grid-column: span 1;
  }
  
  .footer-bottom {
      flex-direction: column;
      gap: 1rem;
      text-align: center;
  }
}

@media (max-width: 600px) {
  .hero-features {
    grid-template-columns: 1fr;
  }
}
