/* VM Contabilidade - Estilos */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

/* Decorative Shapes */
.decorative-shapes {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.shape-1 {
  position: absolute;
  top: 80px;
  right: 40px;
  width: 128px;
  height: 128px;
  background: rgba(52, 211, 153, 0.1);
  border-radius: 50%;
  filter: blur(60px);
}

.shape-2 {
  position: absolute;
  top: 33%;
  left: 40px;
  width: 160px;
  height: 160px;
  background: rgba(45, 212, 191, 0.1);
  border-radius: 50%;
  filter: blur(60px);
}

.shape-3 {
  position: absolute;
  bottom: 25%;
  right: 80px;
  width: 192px;
  height: 192px;
  background: rgba(74, 222, 128, 0.1);
  border-radius: 50%;
  filter: blur(60px);
}

/* Navigation */
nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid #f3f4f6;
}

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

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

.logo img {
  height: 48px;
  width: auto;
}

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

.nav-links a {
  color: #374151;
  text-decoration: none;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: #2d5a4a;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.lang-selector {
  display: flex;
  gap: 0.5rem;
}

.lang-btn {
  padding: 0.5rem 0.75rem;
  border: none;
  border-radius: 0.375rem;
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s;
  background: transparent;
  color: #4b5563;
}

.lang-btn:hover {
  background: #f3f4f6;
}

.lang-btn.active {
  background: #2d5a4a;
  color: white;
}

.btn-primary {
  padding: 0.5rem 1.5rem;
  background: #40bfa5;
  color: white;
  border: none;
  border-radius: 0.375rem;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: background 0.3s;
}

.btn-primary:hover {
  background: #35a68e;
}

/* Hero Section */
.hero {
  display: flex;
  min-height: calc(100vh - 80px);
  position: relative;
}

.hero-content {
  width: 50%;
  background: #1e4539;
  color: white;
  padding: 4rem;
  display: flex;
  align-items: center;
}

.hero-text {
  max-width: 600px;
}

.hero h1 {
  font-size: 3.5rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.hero h1 .highlight {
  color: #40bfa5;
}

.hero .subtitle {
  font-size: 1.25rem;
  color: #d1d5db;
  margin-bottom: 1rem;
}

.hero .description {
  color: #e5e7eb;
  margin-bottom: 2rem;
  line-height: 1.8;
}

.hero-image {
  width: 50%;
  position: relative;
  overflow: hidden;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Sections */
section {
  position: relative;
  z-index: 1;
}

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

/* Trust Section */
.trust-section {
  padding: 4rem 0;
  background: #f9fafb;
  text-align: center;
}

.trust-section h2 {
  font-size: 1.875rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
}

.trust-section .highlight {
  color: #40bfa5;
}

.trust-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  margin-top: 3rem;
}

.trust-logos div {
  font-size: 1.5rem;
  font-weight: bold;
  color: #6b7280;
}

/* Experts Section */
.experts-section {
  padding: 5rem 0;
  background: white;
  position: relative;
  overflow: hidden;
}

.experts-cta {
  text-align: center;
  margin-bottom: 4rem;
}

.experts-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.experts-image {
  position: relative;
  aspect-ratio: 4/3;
  border-radius: 0.5rem;
  overflow: hidden;
}

.experts-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.experts-content h2 {
  font-size: 2.25rem;
  font-weight: bold;
  margin-bottom: 1rem;
  color: #40bfa5;
}

.experts-content h3 {
  font-size: 1.5rem;
  color: #374151;
  margin-bottom: 1.5rem;
}

.experts-content p {
  color: #4b5563;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

/* Services Section */
.services-section {
  padding: 5rem 0;
  background: #1e4539;
  color: white;
  position: relative;
  overflow: hidden;
}

.services-header {
  text-align: center;
  margin-bottom: 1rem;
}

.services-header h2 {
  font-size: 2.25rem;
  font-weight: bold;
  color: #40bfa5;
  margin-bottom: 0.75rem;
}

.services-header p {
  font-size: 1.25rem;
  color: #d1d5db;
}

.services-title {
  text-align: center;
  font-size: 1.875rem;
  font-weight: bold;
  margin: 4rem 0 3rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.service-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  padding: 2rem;
  border-radius: 0.5rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s;
}

.service-card:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-5px);
}

.service-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 1rem;
  color: #40bfa5;
}

.service-card h4 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.service-card p {
  color: #d1d5db;
  font-size: 0.875rem;
  line-height: 1.6;
}

/* Contact Section */
.contact-section {
  padding: 5rem 0;
  background: white;
}

.contact-header {
  text-align: center;
  margin-bottom: 3rem;
}

.contact-header h2 {
  font-size: 2.25rem;
  font-weight: bold;
  color: #2d5a4a;
  margin-bottom: 1rem;
}

.contact-header p {
  font-size: 1.25rem;
  color: #4b5563;
}

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

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-size: 0.875rem;
  font-weight: 500;
  color: #374151;
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
  padding: 0.75rem 1rem;
  border: 1px solid #d1d5db;
  border-radius: 0.375rem;
  font-size: 1rem;
  transition: all 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #40bfa5;
  box-shadow: 0 0 0 3px rgba(64, 191, 165, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.submit-btn {
  padding: 0.75rem 1.5rem;
  background: #40bfa5;
  color: white;
  border: none;
  border-radius: 0.375rem;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.3s;
  font-size: 1rem;
}

.submit-btn:hover {
  background: #35a68e;
}

.submit-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.alert {
  padding: 1rem;
  border-radius: 0.375rem;
  margin-top: 1rem;
}

.alert-success {
  background: #ecfdf5;
  border: 1px solid #a7f3d0;
  color: #065f46;
}

.alert-error {
  background: #fef2f2;
  border: 1px solid #fecaca;
  color: #991b1b;
}

.contact-info {
  background: #f9fafb;
  padding: 2rem;
  border-radius: 0.5rem;
}

.contact-info h3 {
  font-size: 1.5rem;
  font-weight: bold;
  color: #2d5a4a;
  margin-bottom: 1.5rem;
}

.contact-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.contact-icon {
  width: 48px;
  height: 48px;
  background: #40bfa5;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  flex-shrink: 0;
}

.contact-details p {
  font-size: 0.875rem;
  color: #6b7280;
  margin-bottom: 0.25rem;
}

.contact-details a {
  font-size: 1.125rem;
  font-weight: 600;
  color: #2d5a4a;
  text-decoration: none;
  transition: color 0.3s;
}

.contact-details a:hover {
  color: #40bfa5;
}

/* Footer */
footer {
  background: #1e4539;
  color: #d1d5db;
  padding: 2rem 0;
  text-align: center;
}

/* Responsive */
@media (max-width: 1024px) {
  .hero {
    flex-direction: column;
  }
  
  .hero-content,
  .hero-image {
    width: 100%;
  }
  
  .hero-image {
    min-height: 400px;
  }
  
  .experts-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }
  
  .nav-links {
    display: none;
  }
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.5rem;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
  }
  
  .hero-content {
    padding: 2rem;
  }
  
  .btn-primary.desktop-only {
    display: none;
  }
}
