:root {
  --primary: #000000;
  --primary-foreground: #FFFFFF;
  --secondary: #8b5cf6;
  --secondary-foreground: #FFFFFF;
  --accent: #dc2626;
  --accent-foreground: #111827;
  --background: #FFFFFF;
  --foreground: #111827;
  --card: #FFFFFF;
  --card-foreground: #111827;
  --border: #E5E7EB;
  --input: #E5E7EB;
  --ring: #000000;
  --muted: #F3F4F6;
  --muted-foreground: #6B7280;
  --font-family: 'Open Sans', sans-serif;
  --radius: 0.5rem;
}

* {
  box-sizing: border-box;
}

body {
  font-family: var(--font-family);
  line-height: 1.6;
  color: var(--foreground);
  background: var(--background);
  margin: 0;
  padding: 0;
}

.hidden {
  display: none !important;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  line-height: 1.3;
  margin: 0 0 1rem 0;
  color: var(--foreground);
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

p {
  margin: 0 0 1rem 0;
  color: var(--foreground);
}

a {
  color: var(--primary);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* Layout */
.section {
  padding: 3rem 0;
  background: linear-gradient(180deg, var(--background) 0%, var(--muted) 100%);
}

.section:nth-child(even) {
  background: linear-gradient(180deg, var(--muted) 0%, var(--background) 100%);
}

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

.section-header h2 {
  margin-bottom: 0.5rem;
}

.section-header p {
  font-size: 1.125rem;
  color: var(--muted-foreground);
}

/* Grid Layouts */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

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

@media (max-width: 768px) {
  .grid-2,
  .grid-3 {
    grid-template-columns: 1fr;
  }
}

/* Header and Navigation */
.header {
  background: transparent;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(10px);
}

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

.logo-img {
  height: 40px;
  width: auto;
}

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

.nav-links a {
  color: var(--foreground);
  font-weight: 500;
  padding: 0.5rem 0;
  border-bottom: 3px solid transparent;
  transition: border-color 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
  text-decoration: none;
  border-bottom-color: var(--primary);
}

.unitpronovaes_mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--foreground);
}

.unitpronovaes_mobile-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--card);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.unitpronovaes_mobile-menu ul {
  list-style: none;
  margin: 0;
  padding: 1rem 0;
}

.unitpronovaes_mobile-menu li {
  padding: 0.5rem 1rem;
}

.unitpronovaes_mobile-menu a {
  color: var(--foreground);
  font-weight: 500;
  display: block;
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  
  .unitpronovaes_mobile-menu-toggle {
    display: block;
  }
  
  .unitpronovaes_mobile-menu {
    display: block;
  }
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: var(--primary-foreground);
  padding: 4rem 0;
  text-align: center;
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
}

.hero-overlay {
  position: relative;
  z-index: 2;
}

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

.hero-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--primary-foreground);
}

.hero-subtitle {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  color: var(--primary-foreground);
  opacity: 0.9;
}

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

@media (max-width: 768px) {
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-subtitle {
    font-size: 1.125rem;
  }
  
  .hero-actions {
    flex-direction: column;
    align-items: center;
  }
}

/* Page Header */
.page-header {
  background: var(--muted);
  padding: 3rem 0;
  text-align: center;
}

.page-header h1 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.page-header p {
  font-size: 1.125rem;
  color: var(--muted-foreground);
}

/* Buttons */
.btn-primary,
.btn-outline,
.btn-outline-light,
.btn-primary-light {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--radius);
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  font-size: 1rem;
  text-align: center;
  border-bottom: 3px solid transparent;
}

.btn-primary {
  background: var(--primary);
  color: var(--primary-foreground);
  border-bottom-color: var(--primary);
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.btn-primary:hover {
  background: var(--secondary);
  border-bottom-color: var(--secondary);
  box-shadow: 0 4px 16px rgba(0,0,0,0.12);
  text-decoration: none;
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
  border-bottom: 3px solid var(--primary);
}

.btn-outline:hover {
  background: var(--primary);
  color: var(--primary-foreground);
  text-decoration: none;
  transform: translateY(-1px);
}

.btn-outline-light {
  background: transparent;
  color: var(--primary-foreground);
  border: 2px solid var(--primary-foreground);
  border-bottom: 3px solid var(--primary-foreground);
}

.btn-outline-light:hover {
  background: var(--primary-foreground);
  color: var(--primary);
  text-decoration: none;
  transform: translateY(-1px);
}

.btn-primary-light {
  background: var(--primary-foreground);
  color: var(--primary);
  border-bottom-color: var(--primary-foreground);
}

.btn-primary-light:hover {
  background: var(--muted);
  text-decoration: none;
  transform: translateY(-1px);
}

/* Icons */
.icon-box {
  width: 3rem;
  height: 3rem;
  background: var(--muted);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.icon-sm { width: 1rem; height: 1rem; }
.icon-md { width: 1.5rem; height: 1.5rem; }
.icon-lg { width: 2rem; height: 2rem; }
.icon-xl { width: 3rem; height: 3rem; }

.text-primary { color: var(--primary); }
.text-muted { color: var(--muted-foreground); }

/* Cards */
.feature-card {
  background: var(--card);
  padding: 1rem;
  border-radius: var(--radius);
  box-shadow: 0 2px 8px rgba(0,0,0,0.08), 0 4px 16px rgba(0,0,0,0.04);
  text-align: center;
  color: var(--card-foreground);
}

.feature-card h3 {
  margin-bottom: 0.5rem;
  color: var(--card-foreground);
}

.feature-card p {
  color: var(--muted-foreground);
}

.feature-card-large {
  background: var(--card);
  border-radius: var(--radius);
  box-shadow: 0 2px 8px rgba(0,0,0,0.08), 0 4px 16px rgba(0,0,0,0.04);
  overflow: hidden;
  color: var(--card-foreground);
}

.feature-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.feature-content {
  padding: 1.5rem;
}

.feature-content h3 {
  color: var(--card-foreground);
}

.feature-content p {
  color: var(--muted-foreground);
}

/* Process Steps */
.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

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

.step-number {
  width: 3rem;
  height: 3rem;
  background: var(--primary);
  color: var(--primary-foreground);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.25rem;
  margin: 0 auto 1rem auto;
}

.step-content h3 {
  margin-bottom: 0.5rem;
  color: var(--foreground);
}

.step-content p {
  color: var(--muted-foreground);
}

.step-icon {
  margin-top: 1rem;
}

/* Newsletter Section */
.newsletter {
  background: var(--muted);
}

.newsletter-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.newsletter-text {
  flex: 1;
}

.newsletter-form {
  flex: 1;
}

.email-signup {
  display: flex;
  gap: 1rem;
}

.email-signup input {
  flex: 1;
  padding: 0.75rem;
  border: 1px solid var(--input);
  border-radius: var(--radius);
  font-size: 1rem;
}

@media (max-width: 768px) {
  .newsletter-content {
    flex-direction: column;
    text-align: center;
  }
  
  .email-signup {
    flex-direction: column;
  }
}

/* Partner Logos */
.partners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  text-align: center;
}

.partner-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.partner-icon {
  opacity: 0.6;
}

/* Pricing Cards */
.pricing-card {
  background: var(--card);
  padding: 1.5rem;
  border-radius: var(--radius);
  box-shadow: 0 2px 8px rgba(0,0,0,0.08), 0 4px 16px rgba(0,0,0,0.04);
  text-align: center;
  color: var(--card-foreground);
}

.pricing-card.featured {
  border: 2px solid var(--primary);
  transform: scale(1.05);
}

.pricing-card h3 {
  margin-bottom: 0.5rem;
  color: var(--card-foreground);
}

.pricing-card p {
  color: var(--muted-foreground);
  margin-bottom: 1.5rem;
}

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

.team-text h2 {
  margin-bottom: 1rem;
  color: var(--foreground);
}

.team-text p {
  color: var(--muted-foreground);
  margin-bottom: 1rem;
}

.team-image img {
  width: 100%;
  height: auto;
  border-radius: var(--radius);
}

.rounded-image {
  border-radius: var(--radius);
}

@media (max-width: 768px) {
  .team-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* CTA Section */
.cta {
  background: var(--primary);
  color: var(--primary-foreground);
  text-align: center;
}

.cta-content h2 {
  color: var(--primary-foreground);
  margin-bottom: 1rem;
}

.cta-content p {
  color: var(--primary-foreground);
  opacity: 0.9;
  margin-bottom: 2rem;
  font-size: 1.125rem;
}

.cta-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .cta-actions {
    flex-direction: column;
    align-items: center;
  }
}

/* Footer */
footer {
  background: transparent;
  border-top: 1px solid var(--border);
  color: var(--foreground);
  padding: 3rem 0 1rem 0;
}

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

.footer-brand h3 {
  margin-bottom: 0.5rem;
  color: var(--foreground);
}

.footer-brand p {
  color: var(--muted-foreground);
  font-size: 0.875rem;
}

.footer-logo {
  height: 32px;
  width: auto;
  margin-bottom: 0.5rem;
}

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

.footer-column h4 {
  margin-bottom: 1rem;
  color: var(--foreground);
  font-size: 1rem;
}

.footer-column ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

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

.footer-column a {
  color: var(--primary);
  font-size: 0.875rem;
}

.footer-contact h4 {
  margin-bottom: 1rem;
  color: var(--foreground);
}

.footer-contact p {
  margin-bottom: 0.5rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.footer-contact a {
  color: var(--primary);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

.footer-bottom p {
  margin: 0;
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

@media (max-width: 768px) {
  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .footer-links {
    grid-template-columns: 1fr;
  }
}

/* Forms */
.form-input {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid var(--input);
  border-radius: var(--radius);
  font-size: 1rem;
  font-family: var(--font-family);
  background: var(--background);
  color: var(--foreground);
}

.form-input:focus {
  outline: none;
  border-color: var(--ring);
  box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.1);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: var(--foreground);
}

.success-message {
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  border-radius: var(--radius);
  padding: 1.5rem;
  margin-top: 1rem;
  text-align: center;
}

.success-content h3 {
  color: #166534;
  margin-bottom: 0.5rem;
}

.success-content p {
  color: #166534;
  margin: 0;
}

/* Services Page */
.service-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  margin-bottom: 4rem;
}

.service-row.reverse {
  direction: rtl;
}

.service-row.reverse > * {
  direction: ltr;
}

.service-content h2 {
  color: var(--foreground);
  margin-bottom: 1rem;
}

.service-content p {
  color: var(--muted-foreground);
  margin-bottom: 1.5rem;
}

.service-features {
  list-style: none;
  margin: 0 0 2rem 0;
  padding: 0;
}

.service-features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  color: var(--foreground);
}

.service-image img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: var(--radius);
}

@media (max-width: 768px) {
  .service-row,
  .service-row.reverse {
    grid-template-columns: 1fr;
    direction: ltr;
  }
}

/* Package Cards */
.package-card {
  background: var(--card);
  padding: 2rem;
  border-radius: var(--radius);
  box-shadow: 0 2px 8px rgba(0,0,0,0.08), 0 4px 16px rgba(0,0,0,0.04);
  text-align: center;
  color: var(--card-foreground);
}

.package-card.featured {
  border: 2px solid var(--primary);
  transform: scale(1.02);
}

.package-header h3 {
  color: var(--card-foreground);
  margin-bottom: 0.5rem;
}

.package-subtitle {
  color: var(--muted-foreground);
  font-size: 0.875rem;
  margin-bottom: 1.5rem;
}

.package-features ul {
  list-style: none;
  margin: 0 0 2rem 0;
  padding: 0;
  text-align: left;
}

.package-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  color: var(--card-foreground);
}

/* Timeline */
.process-timeline,
.story-timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.timeline-item,
.timeline-milestone {
  position: relative;
  padding-left: 4rem;
  margin-bottom: 3rem;
}

.timeline-item::before,
.timeline-milestone::before {
  content: '';
  position: absolute;
  left: 1.5rem;
  top: 0;
  bottom: -3rem;
  width: 2px;
  background: var(--border);
}

.timeline-item:last-child::before,
.timeline-milestone:last-child::before {
  display: none;
}

.timeline-marker,
.milestone-year {
  position: absolute;
  left: 0;
  top: 0;
  width: 3rem;
  height: 3rem;
  background: var(--primary);
  color: var(--primary-foreground);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.875rem;
}

.timeline-content h3,
.milestone-content h3 {
  margin-bottom: 0.5rem;
  color: var(--foreground);
}

.timeline-content p,
.milestone-content p {
  color: var(--muted-foreground);
  margin: 0;
}

/* About Page */
.mission-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  margin-bottom: 3rem;
}

.mission-text h2 {
  color: var(--foreground);
  margin-bottom: 1rem;
}

.mission-text p {
  color: var(--muted-foreground);
  margin-bottom: 1rem;
}

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

.value-card {
  background: var(--card);
  padding: 1.5rem;
  border-radius: var(--radius);
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  text-align: center;
  color: var(--card-foreground);
}

.value-card h3 {
  color: var(--card-foreground);
  margin-bottom: 0.5rem;
}

.value-card p {
  color: var(--muted-foreground);
  margin: 0;
}

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

.team-member {
  background: var(--card);
  padding: 1.5rem;
  border-radius: var(--radius);
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  text-align: center;
  color: var(--card-foreground);
}

.member-avatar {
  margin-bottom: 1rem;
}

.member-info h3 {
  color: var(--card-foreground);
  margin-bottom: 0.25rem;
}

.member-role {
  color: var(--primary);
  font-weight: 500;
  font-size: 0.875rem;
  margin-bottom: 1rem;
}

.member-info p {
  color: var(--muted-foreground);
  font-size: 0.875rem;
  margin: 0;
}

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

.achievement-highlights {
  margin-top: 1.5rem;
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  color: var(--foreground);
}

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

.approach-item {
  text-align: center;
}

.approach-item h3 {
  color: var(--foreground);
  margin-bottom: 0.5rem;
}

.approach-item p {
  color: var(--muted-foreground);
}

@media (max-width: 768px) {
  .mission-content,
  .achievements-content {
    grid-template-columns: 1fr;
  }
}

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

.unitpronovaes_contact-form-section h2 {
  color: var(--foreground);
  margin-bottom: 1rem;
}

.unitpronovaes_contact-form-section p {
  color: var(--muted-foreground);
  margin-bottom: 2rem;
}

.contact-card {
  background: var(--card);
  padding: 2rem;
  border-radius: var(--radius);
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  margin-bottom: 2rem;
  color: var(--card-foreground);
}

.contact-card h2 {
  color: var(--card-foreground);
  margin-bottom: 1rem;
}

.contact-card p {
  color: var(--muted-foreground);
  margin-bottom: 2rem;
}

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

.contact-method {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.contact-icon {
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.contact-details h3 {
  color: var(--card-foreground);
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.contact-details p {
  margin: 0;
  font-size: 0.875rem;
}

.contact-details p:first-of-type {
  color: var(--card-foreground);
  font-weight: 500;
}

.map-placeholder {
  background: var(--muted);
  border-radius: var(--radius);
  padding: 3rem 2rem;
  text-align: center;
}

.map-content h3 {
  color: var(--foreground);
  margin-bottom: 0.5rem;
}

.map-content p {
  color: var(--muted-foreground);
  margin: 0;
}

.contact-option {
  background: var(--card);
  padding: 1.5rem;
  border-radius: var(--radius);
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  text-align: center;
  color: var(--card-foreground);
}

.contact-option h3 {
  color: var(--card-foreground);
  margin-bottom: 0.5rem;
}

.contact-option p {
  color: var(--muted-foreground);
  margin-bottom: 1.5rem;
}

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

.response-text h2 {
  color: var(--foreground);
  margin-bottom: 1rem;
}

.response-text p {
  color: var(--muted-foreground);
  margin-bottom: 2rem;
}

.response-timeline {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.response-step {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.step-icon {
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.step-text h4 {
  color: var(--foreground);
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.step-text p {
  color: var(--muted-foreground);
  font-size: 0.875rem;
  margin: 0;
}

@media (max-width: 768px) {
  .contact-grid,
  .response-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* FAQ Page */
.faq-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
}

.faq-item {
  border-bottom: 1px solid var(--border);
  margin-bottom: 1rem;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 1.5rem 0;
  text-align: left;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--foreground);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question:hover {
  color: var(--primary);
}

.faq-icon {
  transition: transform 0.3s ease;
}

.faq-question[aria-expanded="true"] .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  padding-bottom: 1.5rem;
  display: none;
}

.faq-answer.active {
  display: block;
}

.faq-answer p {
  color: var(--muted-foreground);
  margin-bottom: 1rem;
}

.faq-answer p:last-child {
  margin-bottom: 0;
}

.faq-contact-card {
  background: var(--card);
  padding: 1.5rem;
  border-radius: var(--radius);
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  margin-bottom: 2rem;
  text-align: center;
  color: var(--card-foreground);
}

.faq-contact-card h3 {
  color: var(--card-foreground);
  margin-bottom: 0.5rem;
}

.faq-contact-card p {
  color: var(--muted-foreground);
  margin-bottom: 1.5rem;
}

.contact-options {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

/* sidebar contact links (inside .contact-options) */
.contact-options .contact-option {
  display: flex !important;
  flex-direction: row !important;
  align-items: center;
  gap: 0.75rem;
  color: var(--primary);
  text-decoration: none;
  font-size: 0.875rem;
  background: none !important;
  box-shadow: none !important;
  padding: 0.5rem !important;
  text-align: left !important;
}

.contact-options .contact-option:hover {
  text-decoration: underline;
  background: var(--muted) !important;
}

.faq-resources {
  background: var(--muted);
  padding: 1.5rem;
  border-radius: var(--radius);
}

.faq-resources h4 {
  color: var(--foreground);
  margin-bottom: 1rem;
}

.faq-resources ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.faq-resources li {
  margin-bottom: 0.5rem;
}

.faq-resources a {
  color: var(--primary);
  font-size: 0.875rem;
}

.support-option {
  background: var(--card);
  padding: 1.5rem;
  border-radius: var(--radius);
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  text-align: center;
  color: var(--card-foreground);
}

.support-option h3 {
  color: var(--card-foreground);
  margin-bottom: 0.5rem;
}

.support-option p {
  color: var(--muted-foreground);
  margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
  .faq-content {
    grid-template-columns: 1fr;
  }
}

/* Legal Pages */
.legal-content {
  max-width: 800px;
  margin: 0 auto;
}

.legal-document {
  background: var(--card);
  padding: 3rem;
  border-radius: var(--radius);
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  color: var(--card-foreground);
}

.legal-meta {
  background: var(--muted);
  padding: 1rem;
  border-radius: var(--radius);
  margin-bottom: 2rem;
  font-size: 0.875rem;
}

.legal-meta p {
  margin: 0;
  color: var(--muted-foreground);
}

.legal-document h2 {
  color: var(--card-foreground);
  margin-top: 2rem;
  margin-bottom: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}

.legal-document h2:first-of-type {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}

.legal-document h3 {
  color: var(--card-foreground);
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

.legal-document p {
  color: var(--muted-foreground);
  margin-bottom: 1rem;
  line-height: 1.7;
}

.legal-document ul {
  margin-bottom: 1rem;
  padding-left: 1.5rem;
}

.legal-document li {
  color: var(--muted-foreground);
  margin-bottom: 0.5rem;
  line-height: 1.6;
}

.legal-document a {
  color: var(--primary);
}

.legal-document a:hover {
  text-decoration: underline;
}

/* Cookie Table */
.cookie-table {
  overflow-x: auto;
  margin: 2rem 0;
}

.cookie-table table {
  width: 100%;
  border-collapse: collapse;
  background: var(--background);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.cookie-table th,
.cookie-table td {
  padding: 1rem;
  text-align: left;
  border-bottom: 1px solid var(--border);
}

.cookie-table th {
  background: var(--muted);
  font-weight: 600;
  color: var(--foreground);
}

.cookie-table td {
  color: var(--muted-foreground);
}

.cookie-table tr:last-child td {
  border-bottom: none;
}

/* Cookie Banner and Modal */
.unitpronovaes_cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--card);
  border-top: 1px solid var(--border);
  box-shadow: 0 -4px 6px -1px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  padding: 1rem 0;
}

.unitpronovaes_cookie-banner-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.unitpronovaes_cookie-banner-text {
  flex: 1;
}

.unitpronovaes_cookie-banner-text p {
  margin: 0;
  font-size: 0.875rem;
  color: var(--card-foreground);
}

.unitpronovaes_cookie-banner-actions {
  display: flex;
  gap: 0.75rem;
  flex-shrink: 0;
}

.unitpronovaes_cookie-banner-actions button {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  white-space: nowrap;
}

.unitpronovaes_cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1001;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.unitpronovaes_cookie-modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
}

.unitpronovaes_cookie-modal-content {
  position: relative;
  background: var(--card);
  border-radius: var(--radius);
  padding: 2rem;
  max-width: 500px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.cookie-toggles {
  margin-bottom: 2rem;
}

.unitpronovaes_cookie-toggle-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
}

.unitpronovaes_cookie-toggle-row:last-child {
  border-bottom: none;
}

.unitpronovaes_cookie-toggle-row div {
  flex: 1;
}

.unitpronovaes_cookie-toggle-row p {
  margin: 0;
}

.font-medium {
  font-weight: 500;
  color: var(--card-foreground);
}

.text-sm {
  font-size: 0.875rem;
}

.text-lg {
  font-size: 1.125rem;
}

.font-semibold {
  font-weight: 600;
}

.mb-4 {
  margin-bottom: 1rem;
}

.unitpronovaes_cookie-modal-actions {
  display: flex;
  gap: 1rem;
  justify-content: flex-end;
}

@media (max-width: 768px) {
  .unitpronovaes_cookie-banner-inner {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }
  
  .unitpronovaes_cookie-banner-actions {
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .unitpronovaes_cookie-modal-actions {
    flex-direction: column;
  }
}

/* Animation Classes */
.animate-item {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

.animate-item:nth-child(even) {
  transform: translateX(40px);
}

.animate-item.animate-in {
  opacity: 1;
  transform: translateX(0);
}

/* Typography Utilities */
.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.text-sm { font-size: 0.875rem; }
.text-lg { font-size: 1.125rem; }
.mb-4 { margin-bottom: 1rem; }

/* Responsive Design */
@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.75rem; }
  h3 { font-size: 1.25rem; }
  
  .section {
    padding: 2rem 0;
  }
  
  .container {
    padding: 0 1rem;
  }
}

@media (max-width: 480px) {
  h1 { font-size: 1.75rem; }
  h2 { font-size: 1.5rem; }
  
  .section {
    padding: 1.5rem 0;
  }
  
  .hero {
    padding: 3rem 0;
  }
  
  .hero-title {
    font-size: 1.75rem;
  }
}

/* === BASELINE SAFETY CSS (injected by engine) === */

/* Ensure .hidden works consistently even with ID-specific overrides */
.hidden { display: none !important; }

/* Prevent content overflow breaking layout */
img, video, iframe { max-width: 100%; height: auto; }
* { box-sizing: border-box; }

/* Ensure container has responsive padding */
.container { width: 100%; max-width: 1200px; margin-left: auto; margin-right: auto; padding-left: 1rem; padding-right: 1rem; }

/* Prevent flex/grid children from overflowing */
.grid-2, .grid-3, .grid-4 { display: grid; gap: 1.5rem; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

/* Responsive grid fallbacks */
@media (max-width: 768px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}

/* Ensure forms don't break layout */
.form-input, input[type="text"], input[type="email"], input[type="tel"], textarea, select {
  width: 100%;
  max-width: 100%;
}

/* Success message styling */
.success-message {
  margin-top: 1rem;
  padding: 1rem;
  background: #ecfdf5;
  border: 1px solid #6ee7b7;
  border-radius: 0.5rem;
  color: #065f46;
  text-align: center;
}

/* Stacking context for hero sections — prevents z-index:-1 children from going behind the page */
.hero, .hero-section, .page-header, .cta, .cta-section { isolation: isolate; position: relative; }

/* Desktop nav injected by engine — show on desktop, hide on mobile */
.nav-menu { display: flex; align-items: center; gap: 1.5rem; }
.nav-menu .nav-link { text-decoration: none; color: var(--foreground, #1f2937); font-weight: 500; font-size: 0.95rem; transition: color 0.2s; }
.nav-menu .nav-link:hover { color: var(--primary, #2563eb); }
@media (max-width: 768px) {
  .nav-menu { display: none !important; }
}

/* Fixed header body padding safety */
body { min-height: 100vh; }

/* Prevent long words breaking layout */
h1, h2, h3, h4, p, li, td, th { overflow-wrap: break-word; word-wrap: break-word; }

/* === END BASELINE SAFETY CSS === */

/* Cookie banner visibility rules */
#unitpronovaes_cookie-banner.hidden, #cookie-consent-banner.hidden { display: none !important; }
#unitpronovaes_cookie-banner:not(.hidden), #cookie-consent-banner:not(.hidden) { display: block !important; }
#unitpronovaes_cookie-modal.hidden { display: none !important; }
.hidden { display: none !important; }

/* === UNITPRONOVAES: missing section classes === */

/* Section wrappers — these are just semantic names, inherit .section padding */
.company-story, .mission-values, .team-section, .achievements,
.why-choose-us, .features, .process-steps, .faq-section,
.additional-support, .service-categories, .service-packages,
.process-overview, .partner-logos, .pricing-preview, .team-preview { }

/* company-story: timeline layout */
.story-timeline { display: flex; flex-direction: column; gap: 2rem; max-width: 800px; margin: 2rem auto 0; }
.timeline-milestone { display: flex; gap: 2rem; align-items: flex-start; }
.milestone-year {
  font-size: 1.25rem; font-weight: 800; color: var(--primary);
  min-width: 4rem; flex-shrink: 0;
}
.milestone-content h3 { margin-bottom: 0.5rem; }
.milestone-content p { color: var(--muted-foreground); font-size: 0.9rem; margin: 0; }

/* mission-values: mission image + text grid, then values */
.mission-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 3rem;
}
.mission-text h2 { font-size: 2rem; margin-bottom: 1rem; }
.mission-text p { color: var(--muted-foreground); margin-bottom: 1rem; }
.mission-image { height: 400px; border-radius: var(--radius); overflow: hidden; }
.mission-image img, .rounded-image { width: 100%; height: 100%; object-fit: cover; display: block; border-radius: var(--radius); }

/* achievements */
.achievements-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}
.achievement-image { height: 300px; border-radius: var(--radius); overflow: hidden; margin-bottom: 2rem; }
.achievement-image img { width: 100%; height: 100%; object-fit: cover; display: block; }
.achievement-text { text-align: center; }
.achievement-text h3 { font-size: 2rem; font-weight: 800; color: var(--primary); margin-bottom: 0.25rem; }
.achievement-text p { color: var(--muted-foreground); font-size: 0.875rem; margin: 0; }

/* contact-split */
.contact-split .container { /* layout handled by .contact-grid inside */ }
.contact-info-section { display: flex; flex-direction: column; gap: 1.5rem; }
.contact-info-section h2 { font-size: 1.75rem; margin-bottom: 0.5rem; }

/* response-info */
.response-image { height: 320px; border-radius: var(--radius); overflow: hidden; }
.response-image img { width: 100%; height: 100%; object-fit: cover; display: block; }
.response-info { display: flex; flex-direction: column; gap: 1rem; }

/* faq-list / faq-sidebar */
.faq-list { display: flex; flex-direction: column; gap: 0.75rem; }
.faq-sidebar {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
}

/* additional-support */
.additional-support .container { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }

/* partner-logos */
.partner-logos .partners-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
  margin-top: 2rem;
}

/* service-categories */
.services-grid {
  display: block;
  margin-top: 2rem;
}

/* service-packages */
.package-action { margin-top: auto; padding-top: 1rem; }
.package-action .btn-primary,
.package-action .btn-outline { width: 100%; text-align: center; }

/* process-overview / process-steps */
.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

@media (max-width: 768px) {
  .mission-content { grid-template-columns: 1fr; }
  .mission-image { height: 260px; }
  /* contact-split responsive handled by contact-grid */
  .additional-support .container { grid-template-columns: 1fr; }
}


/* === UNITPRONOVAES LAYOUT FIXES === */

/* HERO: background image support */
.hero {
  position: relative !important;
  overflow: hidden;
}

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

.hero-bg-image, .hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.25;
}

.hero-overlay {
  position: relative;
  z-index: 1;
  width: 100%;
}

/* CONTACT: contact-grid is the layout, not container */
.contact-grid {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 4rem;
  align-items: start;
}

@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr !important;
  }
}

/* SERVICES: services-grid is a block wrapper, service-row handles its own grid */
.services-grid {
  display: block !important;
  margin-top: 0;
}

.service-row {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 4rem;
  align-items: center;
  padding: 4rem 0;
  border-bottom: 1px solid var(--border);
}

.service-row:last-child { border-bottom: none; }

.service-row.reverse { direction: rtl !important; }
.service-row.reverse > * { direction: ltr; }

.service-image {
  border-radius: var(--radius);
  overflow: hidden;
  height: 360px;
}

.service-image img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover;
  border-radius: var(--radius);
}

@media (max-width: 768px) {
  .service-row, .service-row.reverse {
    grid-template-columns: 1fr !important;
    direction: ltr !important;
    padding: 2rem 0;
  }
  .service-image { height: 240px; }
}

/* FAQ: faq-content 2-col layout with sidebar */
.faq-content {
  display: grid !important;
  grid-template-columns: 2fr 1fr !important;
  gap: 3rem;
  align-items: start;
}

/* FAQ accordion: ensure text is visible */
.faq-question {
  color: var(--foreground) !important;
  background: none !important;
}

.faq-answer {
  display: none;
  color: var(--muted-foreground);
  padding: 0 0 1.5rem;
}

.faq-answer.active {
  display: block !important;
}

.faq-answer p { color: var(--muted-foreground); }

/* FAQ icon rotation on open */
.faq-question[aria-expanded="true"] .faq-icon,
.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.faq-icon { transition: transform 0.3s ease; }

/* FAQ sidebar */
.faq-sidebar {
  position: sticky;
  top: 5rem;
}

.faq-contact-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}

.faq-contact-card h3 { margin-bottom: 0.75rem; font-size: 1.125rem; }
.faq-contact-card p { color: var(--muted-foreground); font-size: 0.875rem; margin-bottom: 1rem; }

.contact-options { display: flex; flex-direction: column; gap: 0.75rem; margin-bottom: 1.25rem; }
.contact-option {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--foreground);
  text-decoration: none;
  padding: 0.5rem;
  border-radius: var(--radius);
  transition: background 0.2s;
}
.contact-option:hover { background: var(--muted); }

.faq-resources {
  background: var(--muted);
  border-radius: var(--radius);
  padding: 1.5rem;
}
.faq-resources h4 { margin-bottom: 1rem; font-size: 0.875rem; text-transform: uppercase; letter-spacing: 0.05em; color: var(--muted-foreground); }
.faq-resources ul { list-style: none; padding: 0; margin: 0; }
.faq-resources li { margin-bottom: 0.5rem; }
.faq-resources a { font-size: 0.875rem; color: var(--primary); }

@media (max-width: 768px) {
  .faq-content {
    grid-template-columns: 1fr !important;
  }
  .faq-sidebar { position: static; }
}

/* White text fix: cta on nth-child(odd) sections is fine, but double-check */
.section.cta {
  background: var(--primary) !important;
  color: var(--primary-foreground) !important;
}

.section.cta h2,
.section.cta p {
  color: var(--primary-foreground) !important;
}


/* === CARD LAYOUT FIXES === */

/* contact-option as standalone cards (in grid-3) */
.grid-3 .contact-option,
.grid-2 .contact-option {
  display: flex !important;
  flex-direction: column !important;
  align-items: center;
  text-align: center;
  background: var(--card) !important;
  padding: 2rem !important;
  border-radius: var(--radius) !important;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08) !important;
  color: var(--card-foreground) !important;
  text-decoration: none;
  gap: 0;
}

.grid-3 .contact-option h3,
.grid-2 .contact-option h3 {
  color: var(--card-foreground);
  margin: 1rem 0 0.5rem;
}

.grid-3 .contact-option p,
.grid-2 .contact-option p {
  color: var(--muted-foreground);
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
}

.grid-3 .contact-option .btn-outline,
.grid-2 .contact-option .btn-outline {
  margin-top: auto;
  width: 100%;
  text-align: center;
}

/* support-option cards */
.support-option {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.support-option .icon-box { margin-bottom: 1rem; }
.support-option h3 { margin-bottom: 0.5rem; }
.support-option p { color: var(--muted-foreground); margin-bottom: 1.5rem; font-size: 0.9rem; flex: 1; }
.support-option .btn-outline { margin-top: auto; }

/* additional-support section - just use grid-3 layout, no special container grid */
.additional-support .container { display: block !important; }

