/* ==========================================================================
   DESIGN SYSTEM - OK REPARAÇÕES (PORTUGAL)
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;500;600;700;800&display=swap');

:root {
  /* Colors */
  --primary: #0B192C;       /* Slate Navy - Core Trust & Professionalism */
  --primary-light: #1E3E62; /* Lighter Navy */
  --accent: #10B981;        /* Vibrant Logo Green - Trust & Action */
  --accent-hover: #059669;  /* Darker Green for Hover */
  --secondary: #008DDA;     /* Assistive Blue */
  --success: #25D366;       /* WhatsApp Green */
  --success-dark: #128C7E;
  --emergency: #FF6B00;     /* Emergency Orange - Alerts & Urgency */
  --emergency-hover: #E05E00;
  --text-dark: #0F172A;     /* Off-black for high contrast readability */
  --text-muted: #475569;    /* Gray for paragraphs */
  --bg-light: #F8FAFC;      /* Clean background */
  --bg-white: #FFFFFF;
  --border-color: #E2E8F0;
  
  /* Fonts */
  --font-headings: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* Shadows */
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.08), 0 4px 6px -2px rgba(0, 0, 0, 0.04);
  --shadow-premium: 0 20px 40px -15px rgba(11, 25, 44, 0.12);
  --shadow-glow: 0 0 15px rgba(16, 185, 129, 0.4);
  --shadow-glow-emergency: 0 0 15px rgba(255, 107, 0, 0.4);
  
  /* Borders */
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-full: 9999px;
  
  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s ease;
  
  /* Layout */
  --max-width: 1200px;
}

/* ==========================================================================
   BASE STYLES & RESET
   ========================================================================== */

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background-color: var(--bg-light);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-headings);
  font-weight: 700;
  color: var(--primary);
  line-height: 1.25;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-fast);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul {
  list-style: none;
}

/* ==========================================================================
   TYPOGRAPHY UTILITIES
   ========================================================================== */

.text-gradient {
  background: linear-gradient(135deg, var(--primary) 30%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-center { text-align: center; }
.text-right { text-align: right; }

/* ==========================================================================
   BUTTONS & CTAs
   ========================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 0.875rem 2rem;
  font-family: var(--font-headings);
  font-weight: 600;
  font-size: 1rem;
  border-radius: var(--radius-full);
  border: none;
  cursor: pointer;
  transition: var(--transition-normal);
  box-shadow: var(--shadow-md);
}

.btn-primary {
  background-color: var(--accent);
  color: var(--bg-white);
}

.btn-primary:hover {
  background-color: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow);
}

.btn-secondary {
  background-color: var(--primary);
  color: var(--bg-white);
}

.btn-secondary:hover {
  background-color: var(--primary-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-whatsapp {
  background-color: var(--success);
  color: var(--bg-white);
}

.btn-whatsapp:hover {
  background-color: var(--success-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
}

.btn-block {
  display: flex;
  width: 100%;
}

/* Pulse animation for key phone buttons */
.pulse {
  animation: pulse-animation 2s infinite;
}

@keyframes pulse-animation {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 107, 0, 0.4);
  }
  70% {
    box-shadow: 0 0 0 12px rgba(255, 107, 0, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 107, 0, 0);
  }
}

/* ==========================================================================
   HEADER / NAVIGATION
   ========================================================================== */

.top-bar {
  background-color: var(--primary);
  color: var(--bg-white);
  padding: 0.5rem 1rem;
  font-size: 0.85rem;
  font-weight: 500;
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: var(--max-width);
  margin: 0 auto;
}

.top-bar-left {
  display: flex;
  gap: 1.5rem;
}

.top-bar-right {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.top-bar a:hover {
  color: var(--accent);
}

.top-bar-urgent {
  background-color: var(--emergency);
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius-sm);
  font-weight: 700;
  animation: flash 1.5s infinite;
}

@keyframes flash {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.85; }
}

header {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-normal);
}

header.scrolled {
  background-color: var(--bg-white);
  box-shadow: var(--shadow-md);
  padding: 0.5rem 0;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  max-width: var(--max-width);
  margin: 0 auto;
}

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

.logo-text {
  font-family: var(--font-headings);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -0.5px;
}

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

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

.nav-item {
  position: relative;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--primary-light);
  padding: 0.5rem 0;
}

.nav-item:hover, .nav-item.active {
  color: var(--accent);
}

.nav-item::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--accent);
  transition: var(--transition-normal);
}

.nav-item:hover::after, .nav-item.active::after {
  width: 100%;
}

/* Dropdown Menu for Services */
.nav-dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: -20px;
  background-color: var(--bg-white);
  box-shadow: var(--shadow-lg);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  padding: 0.75rem 0;
  min-width: 240px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition-normal);
}

.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-item {
  display: block;
  padding: 0.6rem 1.5rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--primary-light);
  transition: var(--transition-fast);
}

.dropdown-item:hover {
  background-color: var(--bg-light);
  color: var(--accent);
  padding-left: 1.75rem;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
}

.menu-toggle span {
  width: 28px;
  height: 3px;
  background-color: var(--primary);
  border-radius: 3px;
  transition: var(--transition-normal);
}

/* Open states for mobile menu */
.menu-toggle.open span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.menu-toggle.open span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.open span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */

.hero {
  position: relative;
  background: radial-gradient(circle at 10% 20%, rgba(11, 25, 44, 0.95) 0%, rgba(18, 38, 58, 0.95) 90%), url('../images/ok-hero-bg.webp') no-repeat center center/cover;
  padding: 7rem 1rem 5rem;
  color: var(--bg-white);
  overflow: hidden;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4rem;
  background: linear-gradient(to top, var(--bg-light), transparent);
}

.hero .container {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3rem;
  align-items: center;
  max-width: var(--max-width);
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.hero-tag {
  background-color: rgba(16, 185, 129, 0.15);
  color: var(--accent);
  border: 1px solid rgba(16, 185, 129, 0.3);
  padding: 0.4rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.9rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.hero-title {
  font-size: 3.25rem;
  color: var(--bg-white);
  line-height: 1.15;
  margin-bottom: 1.5rem;
}

.hero-title span {
  color: var(--accent);
}

.hero-description {
  font-size: 1.125rem;
  opacity: 0.9;
  margin-bottom: 2rem;
  max-width: 580px;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.hero-stats {
  display: flex;
  gap: 3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 2rem;
}

.stat-item h3 {
  color: var(--accent);
  font-size: 2rem;
  margin-bottom: 0.25rem;
}

.stat-item p {
  font-size: 0.875rem;
  opacity: 0.8;
}

/* Floating Emergency Widget on Hero */
.hero-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-premium);
}

.hero-card h3 {
  color: var(--bg-white);
  margin-bottom: 0.5rem;
  font-size: 1.5rem;
}

.hero-card p {
  opacity: 0.8;
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}

.quick-contact-box {
  background: rgba(255, 255, 255, 0.05);
  border-left: 4px solid var(--accent);
  padding: 1rem;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.quick-contact-box i {
  font-size: 1.5rem;
  color: var(--accent);
}

.quick-contact-box div h4 {
  color: var(--bg-white);
  font-size: 0.85rem;
  text-transform: uppercase;
  opacity: 0.7;
}

.quick-contact-box div p {
  margin: 0;
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--bg-white);
}

/* ==========================================================================
   SECTIONS GENERAL
   ========================================================================== */

.section {
  padding: 5rem 1rem;
}

.section-bg {
  background-color: var(--bg-white);
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3.5rem;
}

.section-subtitle {
  color: var(--accent);
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 0.75rem;
  display: block;
}

.section-title {
  font-size: 2.25rem;
  margin-bottom: 1rem;
}

.section-desc {
  color: var(--text-muted);
}

/* ==========================================================================
   SERVICES GRID (HOME & SERVICES LANDING)
   ========================================================================== */

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

.service-card {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(11, 25, 44, 0.06);
  padding: 3rem 2.25rem 2.5rem;
  transition: var(--transition-normal);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #06B6D4 0%, #10B981 100%);
  transition: var(--transition-normal);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px -12px rgba(11, 25, 44, 0.12), 0 0 20px rgba(6, 182, 212, 0.15);
  border-color: rgba(6, 182, 212, 0.2);
}

.service-card:hover::before {
  height: 6px;
}

.service-icon-wrapper {
  background: linear-gradient(135deg, rgba(6, 182, 212, 0.05) 0%, rgba(16, 185, 129, 0.05) 100%);
  border: 1px solid rgba(6, 182, 212, 0.1);
  color: #06B6D4;
  width: 60px;
  height: 60px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  margin-bottom: 1.75rem;
  transition: var(--transition-normal);
}

.service-card:hover .service-icon-wrapper {
  background: linear-gradient(135deg, rgba(6, 182, 212, 0.15) 0%, rgba(16, 185, 129, 0.15) 100%);
  border-color: rgba(16, 185, 129, 0.25);
  color: #10B981;
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 0 15px rgba(6, 182, 212, 0.15);
}

.service-card-badge {
  position: absolute;
  top: 2rem;
  right: 2rem;
  background: rgba(16, 185, 129, 0.08);
  border: 1px solid rgba(16, 185, 129, 0.18);
  color: #10B981;
  font-size: 0.65rem;
  font-weight: 700;
  padding: 0.25rem 0.6rem;
  border-radius: var(--radius-sm);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  gap: 0.35rem;
  transition: var(--transition-fast);
}

.service-card:hover .service-card-badge {
  background: rgba(16, 185, 129, 0.12);
  border-color: rgba(16, 185, 129, 0.3);
  box-shadow: 0 0 8px rgba(16, 185, 129, 0.2);
}

.service-card h3 {
  font-size: 1.35rem;
  margin-bottom: 1rem;
  font-family: var(--font-headings);
  font-weight: 800;
}

.service-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 1.75rem;
  line-height: 1.6;
  flex-grow: 1;
}

.service-features {
  margin-bottom: 1.75rem;
  border-top: 1px solid var(--border-color);
  padding-top: 1.25rem;
}

.service-features li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 0.6rem;
}

.service-features li i {
  color: #06B6D4;
}

.service-link {
  font-weight: 700;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--primary);
  transition: var(--transition-fast);
}

.service-link i {
  transition: var(--transition-fast);
}

.service-card:hover .service-link {
  color: #10B981;
}

.service-card:hover .service-link i {
  transform: translateX(4px);
}

/* ==========================================================================
   FEATURES / TRUST SECTION
   ========================================================================== */

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

.trust-content h2 {
  font-size: 2.25rem;
  margin-bottom: 1.5rem;
}

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

.trust-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.trust-item {
  background-color: var(--bg-white);
  padding: 1.5rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: var(--transition-normal);
}

.trust-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: rgba(16, 185, 129, 0.2);
}

.trust-item i {
  font-size: 1.75rem;
  color: var(--accent);
}

.trust-item h4 {
  font-size: 1.1rem;
}

.trust-item p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin: 0;
}

.trust-image {
  position: relative;
}

.trust-image img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-premium);
}

.experience-badge {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background-color: var(--primary);
  color: var(--bg-white);
  padding: 1.5rem 2rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 1rem;
  border-left: 5px solid var(--accent);
}

.experience-badge h3 {
  color: var(--accent);
  font-size: 2.5rem;
  line-height: 1;
}

.experience-badge p {
  font-weight: 700;
  font-size: 0.9rem;
  line-height: 1.2;
}

/* ==========================================================================
   LOCATIONS AREA
   ========================================================================== */

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

.locations-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.location-card {
  background-color: var(--bg-white);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  transition: var(--transition-normal);
}

.location-card:hover {
  background-color: var(--primary);
  color: var(--bg-white);
  border-color: var(--primary);
  transform: scale(1.03);
  box-shadow: var(--shadow-lg);
}

.location-card:hover h4 {
  color: var(--bg-white);
}

.location-card i {
  color: var(--accent);
  font-size: 1.5rem;
}

.location-card h4 {
  font-size: 1.1rem;
  font-weight: 600;
}

/* ==========================================================================
   TESTIMONIALS & FAQ
   ========================================================================== */

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

.testimonial-card {
  background-color: var(--bg-white);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.stars {
  color: #FBBF24;
  font-size: 0.95rem;
}

.testimonial-text {
  color: var(--text-muted);
  font-style: italic;
  font-size: 0.95rem;
}

.testimonial-user {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: auto;
  border-top: 1px solid var(--border-color);
  padding-top: 1rem;
}

.user-avatar {
  background-color: var(--primary-light);
  color: var(--bg-white);
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.user-info h4 {
  font-size: 0.95rem;
}

.user-info p {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* FAQ Layout */
.faq-grid {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background-color: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition-fast);
}

.faq-question {
  padding: 1.25rem 1.5rem;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-question i {
  transition: var(--transition-normal);
}

.faq-answer {
  padding: 0 1.5rem;
  max-height: 0;
  overflow: hidden;
  transition: var(--transition-normal);
  color: var(--text-muted);
  font-size: 0.95rem;
}

.faq-item.active {
  border-color: rgba(16, 185, 129, 0.4);
}

.faq-item.active .faq-question {
  color: var(--accent);
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-item.active .faq-answer {
  padding-bottom: 1.25rem;
  max-height: 200px;
}

/* ==========================================================================
   CONTACT SECTION & FORM
   ========================================================================== */

.contact-section-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: flex-start;
}

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

.contact-info-item {
  display: flex;
  gap: 1rem;
}

.contact-info-icon {
  background-color: rgba(16, 185, 129, 0.1);
  color: var(--accent);
  width: 50px;
  height: 50px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}

.contact-info-details h3 {
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}

.contact-info-details p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.contact-form-card {
  background-color: var(--bg-white);
  padding: 3rem 2.5rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-premium);
}

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

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--primary-light);
}

.form-control {
  width: 100%;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-color);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: var(--transition-fast);
}

.form-control:focus {
  border-color: var(--accent);
  outline: none;
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
}

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

/* ==========================================================================
   SERVICE DETAILS PAGE SPECIFICS
   ========================================================================== */

.page-header {
  background: radial-gradient(circle at 10% 20%, var(--primary) 0%, var(--primary-light) 90%);
  color: var(--bg-white);
  padding: 4rem 1rem;
  text-align: center;
}

.page-header h1 {
  color: var(--bg-white);
  font-size: 2.75rem;
  margin-bottom: 0.5rem;
}

.breadcrumbs {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  opacity: 0.8;
}

.breadcrumbs a:hover {
  color: var(--accent);
}

.service-detail-container {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
  padding: 5rem 1rem;
  max-width: var(--max-width);
  margin: 0 auto;
}

.service-main-content h2 {
  font-size: 2rem;
  margin: 2rem 0 1rem;
}

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

.service-features-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin: 2rem 0;
}

.service-features-list-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.service-features-list-item i {
  color: var(--accent);
  font-size: 1.2rem;
  margin-top: 0.2rem;
}

.service-features-list-item h4 {
  font-size: 1.05rem;
  margin-bottom: 0.25rem;
}

.service-features-list-item p {
  font-size: 0.9rem;
  margin: 0;
}

.sidebar-widget {
  background-color: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: var(--shadow-sm);
}

.sidebar-widget h3 {
  font-size: 1.25rem;
  margin-bottom: 1.25rem;
  border-bottom: 2px solid var(--border-color);
  padding-bottom: 0.5rem;
}

.services-list-widget a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
  font-weight: 500;
  border-bottom: 1px solid var(--bg-light);
}

.services-list-widget a:hover, .services-list-widget a.active {
  background-color: var(--primary);
  color: var(--bg-white);
}

.sidebar-cta-widget {
  background-color: var(--primary);
  color: var(--bg-white);
  text-align: center;
  border: none;
}

.sidebar-cta-widget h3 {
  color: var(--bg-white);
  border: none;
}

.sidebar-cta-widget p {
  opacity: 0.9;
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}

.sidebar-phone-box {
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-md);
  padding: 1rem;
  margin-bottom: 1.5rem;
}

.sidebar-phone-box span {
  font-size: 0.8rem;
  text-transform: uppercase;
  opacity: 0.7;
}

.sidebar-phone-box a {
  display: block;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--accent);
}

/* ==========================================================================
   FOOTER
   ========================================================================== */

footer {
  background-color: var(--primary);
  color: rgba(255, 255, 255, 0.85);
  padding: 5rem 1rem 2rem;
  border-top: 5px solid var(--accent);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr 1fr;
  gap: 3rem;
  max-width: var(--max-width);
  margin: 0 auto 3rem;
}

.footer-col h3 {
  color: var(--bg-white);
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.footer-col h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background-color: var(--accent);
}

.footer-col p {
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-col ul li {
  font-size: 0.9rem;
}

.footer-col ul li a:hover {
  color: var(--accent);
  padding-left: 5px;
}

.footer-col ul li i {
  color: var(--accent);
  margin-right: 0.5rem;
}

.footer-socials {
  display: flex;
  gap: 1rem;
}

.social-icon {
  background-color: rgba(255, 255, 255, 0.05);
  width: 36px;
  height: 36px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
}

.social-icon:hover {
  background-color: var(--accent);
  color: var(--bg-white);
  transform: translateY(-3px);
}

.footer-bottom {
  max-width: var(--max-width);
  margin: 0 auto;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
}

.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
}

.footer-bottom-links a:hover {
  color: var(--accent);
}

/* ==========================================================================
   FLOATING INTERACTIVE WIDGETS
   ========================================================================== */

.floating-contact-widget {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  z-index: 99;
}

.floating-btn {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  color: var(--bg-white);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: var(--transition-normal);
  cursor: pointer;
  position: relative;
}

.floating-btn:hover {
  transform: scale(1.1);
}

.floating-whatsapp {
  background-color: var(--success);
}

.floating-whatsapp:hover {
  background-color: var(--success-dark);
}

.floating-phone {
  background-color: var(--accent);
}

.floating-phone:hover {
  background-color: var(--accent-hover);
}

.floating-btn .tooltip {
  position: absolute;
  right: 70px;
  background-color: var(--primary);
  color: var(--bg-white);
  padding: 0.4rem 0.8rem;
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  font-weight: 700;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transform: translateX(10px);
  transition: var(--transition-normal);
  pointer-events: none;
  box-shadow: var(--shadow-md);
}

.floating-btn:hover .tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

/* Dynamic banner for mobile quick dial */
.mobile-quick-call-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: var(--primary);
  border-top: 3px solid var(--accent);
  z-index: 101;
  grid-template-columns: 1fr 1fr;
  box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.15);
}

.mobile-call-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 0.5rem;
  color: var(--bg-white);
  font-family: var(--font-headings);
  font-weight: 700;
  font-size: 0.95rem;
  text-align: center;
}

.mobile-call-btn.m-call {
  background-color: var(--accent);
}

.mobile-call-btn.m-whatsapp {
  background-color: var(--success);
}

/* ==========================================================================
   MEDIA QUERIES (RESPONSIVENESS)
   ========================================================================== */

@media (max-width: 1024px) {
  .hero-title {
    font-size: 2.75rem;
  }
  
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .menu-toggle {
    display: flex;
  }
  
  .nav-links {
    position: fixed;
    top: 60px; /* adjusted for logo */
    left: -100%;
    width: 100%;
    height: calc(100vh - 60px);
    background-color: var(--bg-white);
    flex-direction: column;
    align-items: flex-start;
    padding: 2rem;
    gap: 1.5rem;
    overflow-y: auto;
    transition: var(--transition-slow);
    box-shadow: var(--shadow-lg);
  }
  
  .nav-links.open {
    left: 0;
  }
  
  .nav-dropdown:hover .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    padding-left: 1rem;
    margin-top: 0.5rem;
    background-color: var(--bg-light);
  }
  
  .hero .container {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }
  
  .hero-tag {
    justify-content: center;
  }
  
  .hero-buttons {
    justify-content: center;
  }
  
  .hero-stats {
    justify-content: center;
    gap: 1.5rem;
  }
  
  .trust-section {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  
  .locations-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .contact-section-split {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  
  .service-detail-container {
    grid-template-columns: 1fr;
  }
  
  .service-features-list {
    grid-template-columns: 1fr;
  }
  
  .floating-contact-widget {
    display: none; /* Hide floating buttons on mobile and use mobile-quick-call-bar */
  }
  
  .mobile-quick-call-bar {
    display: grid;
  }
  
  body {
    padding-bottom: 56px; /* Space for the floating call bar */
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2.25rem;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
  }
  
  .locations-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}

/* ==========================================================================
   ABOUT BLOCK SPECIFICS (HOMEPAGE)
   ========================================================================== */

.section-about-block {
  background-color: var(--bg-white);
  padding: 6rem 1rem;
}

.about-grid-container {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 5rem;
  align-items: center;
}

.about-image-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-premium);
  transition: var(--transition-normal);
  transform-style: preserve-3d;
  perspective: 1000px;
  background-color: var(--primary);
}

.about-ok-img {
  width: 100%;
  border-radius: var(--radius-lg);
  display: block;
  transition: transform var(--transition-slow) cubic-bezier(0.165, 0.84, 0.44, 1), filter var(--transition-normal);
}

.about-image-wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.2) 0%, transparent 100%);
  opacity: 0;
  transition: var(--transition-normal);
  pointer-events: none;
  z-index: 2;
}

.about-image-wrapper:hover {
  transform: translateY(-8px) rotateY(-4deg) rotateX(3deg);
  box-shadow: 0 30px 60px -15px rgba(16, 185, 129, 0.3), var(--shadow-glow);
}

.about-image-wrapper:hover::after {
  opacity: 1;
}

.about-image-wrapper:hover .about-ok-img {
  transform: scale(1.06);
  filter: brightness(1.05);
}

.about-text-content {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.about-text-content p {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

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

/* Responsive extension for about block */
@media (max-width: 768px) {
  .about-grid-container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .about-text-content {
    text-align: center;
  }
}

/* ==========================================================================
   TECH CONTACT PAGE STYLES
   ========================================================================== */
.tech-dashboard {
  background: linear-gradient(135deg, #0b192c 0%, #1e293b 100%);
  border: 1px solid rgba(6, 182, 212, 0.2);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  color: #f8fafc;
  margin-bottom: 2rem;
  font-family: var(--font-headings);
  box-shadow: 0 4px 20px rgba(6, 182, 212, 0.15);
}

.tech-dashboard-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 1rem;
  margin-bottom: 1.25rem;
}

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

.status-ping {
  width: 10px;
  height: 10px;
  background-color: #10b981;
  border-radius: 50%;
  position: relative;
  display: inline-block;
}

.status-ping::after {
  content: '';
  width: 100%;
  height: 100%;
  background-color: #10b981;
  border-radius: 50%;
  position: absolute;
  top: 0;
  left: 0;
  animation: status-ping-anim 1.5s infinite ease-in-out;
}

@keyframes status-ping-anim {
  0% { transform: scale(1); opacity: 1; }
  100% { transform: scale(2.5); opacity: 0; }
}

.status-text {
  font-size: 0.75rem;
  font-weight: 700;
  color: #10b981;
  letter-spacing: 0.05em;
}

.dispatch-title {
  font-size: 0.85rem;
  color: #94a3b8;
  font-weight: 500;
}

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

.tech-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-sm);
  padding: 1rem;
  text-align: center;
  transition: var(--transition-fast);
}

.tech-card:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(6, 182, 212, 0.3);
  transform: translateY(-2px);
}

.tech-card-label {
  font-size: 0.7rem;
  color: #94a3b8;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
}

.tech-card-value {
  font-size: 1.5rem;
  font-weight: 800;
  color: #06B6D4;
  margin-bottom: 0.25rem;
}

.tech-card-sub {
  font-size: 0.75rem;
  color: #64748b;
}

@media (max-width: 480px) {
  .tech-dashboard-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
  .tech-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   GLOBAL SERVICE IMAGE STANDARDIZATION
   ========================================================================== */
.service-main-content img {
  width: 100%;
  max-width: 800px;
  aspect-ratio: 800 / 533;
  object-fit: cover;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  margin-bottom: 2rem;
}

/* ==========================================================================
   TOP BAR BUTTONS
   ========================================================================== */
.top-bar-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.3rem 0.8rem;
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  font-weight: 700;
  transition: var(--transition-fast);
  color: var(--bg-white) !important;
  text-decoration: none;
}

.top-bar-call {
  background-color: var(--emergency);
}

.top-bar-call:hover {
  background-color: var(--emergency-hover);
  box-shadow: 0 0 10px rgba(255, 107, 0, 0.5);
  transform: translateY(-1px);
}

.top-bar-whatsapp {
  background-color: var(--success);
}

.top-bar-whatsapp:hover {
  background-color: var(--success-dark);
  box-shadow: 0 0 10px rgba(37, 211, 102, 0.5);
  transform: translateY(-1px);
}

@media (max-width: 768px) {
  .top-bar-left {
    display: none !important;
  }
  .top-bar .container {
    justify-content: center !important;
  }
}

/* ==========================================================================
   GLOBAL CALL-TO-ACTION (CTA) SECTION
   ========================================================================== */
.section-cta-assist {
  padding: 4rem 1rem;
  background-color: var(--bg-light);
}

.cta-assist-box {
  background: linear-gradient(135deg, var(--primary) 0%, #1e3e62 100%);
  border: 1px solid rgba(6, 182, 212, 0.2);
  border-radius: var(--radius-lg);
  padding: 3.5rem;
  color: var(--bg-white);
  display: flex;
  flex-direction: column;
  gap: 2rem;
  box-shadow: var(--shadow-premium);
  position: relative;
  overflow: hidden;
}

.cta-assist-box::before {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

/* Color contrast overrides for CTA buttons */
.cta-assist-actions a[href^="tel:"] {
  background-color: var(--emergency) !important;
}
.cta-assist-actions a[href^="tel:"]:hover {
  background-color: var(--emergency-hover) !important;
  box-shadow: 0 0 15px rgba(255, 107, 0, 0.4) !important;
}
.cta-assist-actions a[href^="mailto:"] {
  background-color: #06B6D4 !important;
}
.cta-assist-actions a[href^="mailto:"]:hover {
  background-color: #0891b2 !important;
  box-shadow: 0 0 15px rgba(6, 182, 212, 0.4) !important;
}

.cta-assist-text {
  width: 100%;
}

.cta-assist-text h2 {
  color: var(--bg-white);
  font-size: 2.15rem;
  margin-bottom: 0.75rem;
  font-family: var(--font-headings);
  font-weight: 800;
  letter-spacing: -0.5px;
}

.cta-assist-text p {
  color: rgba(248, 250, 252, 0.85);
  font-size: 1.05rem;
  margin-bottom: 0;
  line-height: 1.6;
}

.cta-assist-actions {
  display: flex;
  flex-direction: row;
  gap: 1.25rem;
  width: 100%;
  justify-content: flex-start;
  flex-wrap: nowrap;
}

.cta-assist-actions .btn {
  font-size: 0.95rem;
  padding: 0.85rem 1.75rem;
  box-shadow: var(--shadow-md);
  margin: 0;
  flex: 1;
  max-width: 280px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 992px) {
  .cta-assist-box {
    padding: 3rem 2rem;
    align-items: center;
    text-align: center;
  }
  .cta-assist-actions {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .cta-assist-actions {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
  }
  .cta-assist-actions .btn {
    max-width: 100%;
  }
}

/* ==========================================================================
   CYBERFORM GLASSMORPHISM & TECH FORM
   ========================================================================== */
.contact-form-card.cyber-form {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(11, 25, 44, 0.08);
  border-top: 4px solid #06B6D4;
  box-shadow: var(--shadow-premium);
  border-radius: var(--radius-lg);
  padding: 3rem;
  position: relative;
  transition: var(--transition-normal);
}

.contact-form-card.cyber-form:hover {
  box-shadow: 0 25px 50px -12px rgba(11, 25, 44, 0.15), 0 0 15px rgba(6, 182, 212, 0.4);
  border-color: rgba(6, 182, 212, 0.25);
}

.form-sec-title {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 700;
  color: #06B6D4;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 1.5rem 0 1rem;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 0.35rem;
}

.form-sec-title:first-of-type {
  margin-top: 0;
}

.tech-input-group {
  position: relative;
  margin-bottom: 1.25rem;
}

.tech-input-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 0.4rem;
}

.tech-input-wrapper {
  position: relative;
}

.tech-input-wrapper i {
  position: absolute;
  left: 1.25rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  font-size: 0.95rem;
  transition: var(--transition-fast);
  pointer-events: none;
}

.tech-input-wrapper textarea + i {
  top: 1.25rem;
  transform: none;
}

.tech-input-wrapper .form-control {
  width: 100%;
  padding: 0.875rem 1rem 0.875rem 2.75rem;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-dark);
  background-color: var(--bg-light);
  transition: var(--transition-normal);
}

.tech-input-wrapper .form-control:focus {
  outline: none;
  background-color: var(--bg-white);
  border-color: #06B6D4;
  box-shadow: 0 0 0 4px rgba(6, 182, 212, 0.15);
}

.tech-input-wrapper .form-control:focus + i {
  color: #06B6D4;
}

.upload-zone-mock {
  border: 2px dashed var(--border-color);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  text-align: center;
  background-color: var(--bg-light);
  cursor: pointer;
  transition: var(--transition-normal);
  margin-bottom: 1.25rem;
}

.upload-zone-mock:hover {
  border-color: #06B6D4;
  background-color: rgba(6, 182, 212, 0.02);
}

.upload-zone-mock i {
  font-size: 1.75rem;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.upload-zone-mock p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin: 0;
}

.upload-zone-mock span {
  display: block;
  font-size: 0.75rem;
  color: var(--text-muted);
  opacity: 0.8;
  margin-top: 0.25rem;
}

.gdpr-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
  font-size: 0.825rem;
  color: var(--text-muted);
  line-height: 1.4;
}

.gdpr-checkbox input[type="checkbox"] {
  margin-top: 0.2rem;
  accent-color: #06B6D4;
  cursor: pointer;
}

.tech-security-badge {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border-color);
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 500;
}

.tech-security-badge i {
  color: #06B6D4;
  font-size: 0.9rem;
}

/* ==========================================================================
   CARDS DE SERVIÇOS RELACIONADOS (SELEÇÃO ESPECÍFICA)
   ========================================================================== */
.related-services-section {
  background-color: #ffffff;
  padding: 4rem 1rem;
  border-top: 1px solid var(--border-color);
}

.related-services-title {
  text-align: center;
  font-size: 2.2rem;
  font-weight: 800;
  color: #1a1a1a;
  margin-bottom: 2.5rem;
  font-family: var(--font-headings), sans-serif;
}

.related-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

@media (max-width: 992px) {
  .related-services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .related-services-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
  }
  .related-services-title {
    font-size: 1.8rem;
  }
}

.related-service-card {
  border: 2px solid #000000 !important;
  background-color: #ffffff !important;
  padding: 15px !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  text-align: center !important;
  box-sizing: border-box !important;
  border-radius: 0px !important;
  box-shadow: none !important;
}

.related-service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 15px rgba(0,0,0,0.1) !important;
}

.related-card-img-wrapper {
  width: 100% !important;
  border: 2px solid #000000 !important;
  overflow: hidden !important;
  margin-bottom: 15px !important;
  aspect-ratio: 1.5 / 1 !important;
  border-radius: 0px !important;
}

.related-card-img-wrapper img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  display: block !important;
  border-radius: 0px !important;
}

.related-service-card h3 {
  font-size: 1.25rem !important;
  font-weight: 800 !important;
  color: #1a1a1a !important;
  margin: 10px 0 !important;
  font-family: var(--font-headings), sans-serif !important;
}

.related-service-card p {
  font-size: 0.95rem !important;
  color: #1a1a1a !important;
  line-height: 1.4 !important;
  margin-bottom: 20px !important;
  flex-grow: 1 !important;
}

.related-card-btn {
  width: 100% !important;
  background-color: #008000 !important;
  color: #ffffff !important;
  border: none !important;
  padding: 12px 10px !important;
  font-size: 0.95rem !important;
  font-weight: bold !important;
  text-decoration: none !important;
  display: inline-block !important;
  text-align: center !important;
  transition: background-color 0.2s ease !important;
  box-sizing: border-box !important;
  border-radius: 0px !important;
}

.related-card-btn:hover {
  background-color: #006400 !important;
  color: #ffffff !important;
}

/* ==========================================================================
   PROCESSO DE TRABALHO (COMO TRABALHAMOS)
   ========================================================================== */
.work-process-section {
  padding: 3rem 1rem;
  background-color: var(--bg-light);
  border-bottom: 1px solid var(--border-color);
}

.work-process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  max-width: var(--max-width);
  margin: 0 auto;
}

@media (max-width: 992px) {
  .work-process-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .work-process-grid {
    grid-template-columns: 1fr;
  }
}

.work-process-step {
  background: var(--bg-white);
  border-radius: var(--radius-md);
  padding: 2.25rem 1.5rem 2rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  position: relative;
  transition: var(--transition-normal);
  text-align: center;
  overflow: hidden;
}

.work-process-step::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #06B6D4 0%, var(--accent) 100%);
  transform: scaleX(0);
  transition: var(--transition-normal);
}

.work-process-step:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(16, 185, 129, 0.12);
  border-color: rgba(16, 185, 129, 0.3);
}

.work-process-step:hover::before {
  transform: scaleX(1);
}

.work-process-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: rgba(16, 185, 129, 0.1);
  color: var(--accent);
  width: 26px;
  height: 26px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.8rem;
  transition: var(--transition-normal);
}

.work-process-step:hover .work-process-badge {
  background: var(--accent);
  color: var(--bg-white);
  box-shadow: var(--shadow-glow);
}

.work-process-icon {
  font-size: 1.75rem;
  color: var(--primary);
  background: rgba(11, 25, 44, 0.03);
  width: 60px;
  height: 60px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  transition: var(--transition-normal);
}

.work-process-step:hover .work-process-icon {
  background: linear-gradient(135deg, rgba(6, 182, 212, 0.15) 0%, rgba(16, 185, 129, 0.15) 100%);
  color: var(--accent);
  transform: scale(1.1) rotate(8deg);
}

.work-process-step h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.75rem;
  font-family: var(--font-headings);
}

.work-process-step p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin: 0;
}

/* ==========================================================================
   WIDGETS DE BARRA LATERAL (SIDEBAR EXTRAS)
   ========================================================================== */
.sidebar-features-list-el {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
}

.sidebar-features-list-el li {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.25rem;
  align-items: flex-start;
}

.sidebar-features-list-el li:last-child {
  margin-bottom: 0;
}

.sidebar-features-list-el i {
  color: var(--accent);
  font-size: 1.25rem;
  margin-top: 0.2rem;
}

.sidebar-features-list-el h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--primary);
  margin: 0 0 0.25rem;
}

.sidebar-features-list-el p {
  font-size: 0.825rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.4;
}

.sidebar-areas-widget p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}

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

.areas-grid span {
  font-size: 0.8rem;
  color: var(--primary);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.areas-grid span i {
  color: var(--accent);
  font-size: 0.75rem;
}


