/* ============================================
   TELAS FORTE — Pure HTML/CSS Version
   Matching original React design exactly
   ============================================ */

/* --- CSS Variables (Design Tokens) --- */
:root {
  --radius: 0.5rem;

  /* Colors */
  --background: #f9f8f6;
  /* oklch(0.985 0.002 90) */
  --foreground: #1e1e2e;
  /* oklch(0.2 0.02 260) */
  --card: #ffffff;
  --card-foreground: #1e1e2e;
  --primary: #c0392b;
  /* oklch(0.52 0.2 25) — deep red */
  --primary-foreground: #ffffff;
  --secondary: #f2f1ef;
  /* oklch(0.95 0.005 90) */
  --secondary-foreground: #1e1e2e;
  --muted: #f2f1ef;
  --muted-foreground: #6b7280;
  --accent: #1e1e2e;
  /* oklch(0.25 0.015 260) — dark navy/charcoal */
  --accent-foreground: #f9f8f6;
  --border: #e5e4e0;
  --hero-overlay: rgba(15, 15, 25, 0.70);

  --font-heading: 'Inter', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;
}

/* --- Reset --- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  line-height: 1.2;
}

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

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

/* --- Layout --- */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

@media (min-width: 768px) {
  .container {
    padding: 0 2rem;
  }
}

main {
  min-height: 60vh;
}

/* ====== SUPER HEADER ====== */
.super-header {
  background-color: #C0392B !important;
  color: #ffffff !important;
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  flex-wrap: wrap !important;
  width: 100% !important;
  min-height: 38px !important;
  padding: 8px 16px !important;
  margin: 0 !important;
  font-family: 'Inter', sans-serif !important;
  font-size: 14px !important;
  font-weight: 700 !important;
  line-height: 1.5 !important;
  text-align: center !important;
  text-transform: uppercase !important;
  letter-spacing: 1px !important;
  box-sizing: border-box !important;
  white-space: normal !important;
  overflow: visible !important;
  position: relative !important;
  z-index: 200 !important;
}

.super-header * {
  color: #ffffff !important;
}

.super-header a,
.super-header a:link,
.super-header a:visited {
  color: #ffffff !important;
  text-decoration: none !important;
  font-weight: 700 !important;
}

.super-header a:hover {
  text-decoration: underline !important;
}

@media (max-width: 600px) {
  .super-header {
    font-size: 12px !important;
    letter-spacing: 0.3px !important;
  }
}

@media (max-width: 400px) {
  .super-header {
    font-size: 11px !important;
    padding: 8px 8px !important;
    letter-spacing: 0 !important;
  }
}



/* ============================================
   HEADER — Dark background matching original
   ============================================ */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: 80px;
  /* Increased height bit to match larger logo */
  background-color: var(--accent);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

/* Logo: "TELAS" red + "FORTE" white */
.logo {
  display: flex;
  align-items: center;
  gap: 0;
  font-size: 1.6rem;
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1;
}

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

.logo-forte {
  color: var(--accent-foreground);
}

/* Desktop Nav */
.nav-desktop {
  display: none;
  align-items: center;
  gap: 2.5rem;
}

@media (min-width: 768px) {
  .nav-desktop {
    display: flex;
  }
}

.nav-link {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent-foreground);
  transition: color 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary);
}

/* Header CTA Button */
.header-cta {
  display: none;
  align-items: center;
  gap: 0.5rem;
  background-color: var(--primary);
  color: white;
  border-radius: var(--radius);
  padding: 0.6rem 1.25rem;
  font-size: 0.8rem;
  font-weight: 700;
  white-space: nowrap;
  transition: opacity 0.2s ease;
}

.header-cta:hover {
  opacity: 0.9;
}

@media (min-width: 768px) {
  .header-cta {
    display: inline-flex;
  }
}

/* Mobile menu toggle */
.mobile-menu-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  cursor: pointer;
  color: var(--accent-foreground);
  padding: 0.5rem;
}

@media (min-width: 768px) {
  .mobile-menu-btn {
    display: none;
  }
}

/* Mobile Nav Drawer */
.mobile-nav {
  position: absolute;
  top: 80px; /* Force to header height instead of 100% fixed cross browser sticky flex bug */
  left: 0;
  width: 100%;
  background-color: var(--accent);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
  z-index: -1;
}

.mobile-nav.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.mobile-nav .nav-link {
  font-size: 0.9rem;
}

/* ============================================
   HERO
   ============================================ */
.hero-section {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* --- Ken Burns Slideshow Container --- */
.hero-kenburns {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-kb-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.8s ease-in-out;
  will-change: opacity;
}

.hero-kb-slide.hero-kb-active {
  opacity: 1;
  z-index: 1;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  will-change: transform;
  transform: scale(1.15) translateZ(0);
}

@keyframes kbZoomOut {
  from { transform: scale(1.15) translateZ(0); }
  to   { transform: scale(1.0) translateZ(0); }
}

.hero-kb-slide.hero-kb-animating .hero-bg {
  animation: kbZoomOut 12s linear forwards;
}
/* ------------------------------------ */

.hero-overlay {
  position: absolute;
  inset: 0;
  background-color: var(--hero-overlay);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 10;
  color: white;
  padding: 5rem 0;
  text-align: center;
}

.hero-label {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 1rem;
}

.hero-title {
  font-size: clamp(2rem, 8vw, 4rem);
  font-weight: 900;
  line-height: 1.1;
  max-width: 38rem;
  color: white;
  margin-left: auto;
  margin-right: auto;
}

.hero-subtitle {
  font-size: 1.1rem;
  max-width: 32rem;
  margin: 1.5rem auto 0;
  opacity: 0.85;
  line-height: 1.6;
}

.hero-actions {
  margin-top: 2.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
}

/* ============================================
   STATS BAR
   ============================================ */
.stats-bar {
  background-color: var(--primary);
  padding: 2.5rem 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  text-align: center;
}

@media (min-width: 768px) {
  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 900;
  color: white;
  line-height: 1;
}

.stat-label {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.75);
  margin-top: 0.4rem;
}

/* ============================================
   SECTIONS
   ============================================ */
.section {
  padding: 5rem 0;
}

@media (min-width: 768px) {
  .section {
    padding: 7rem 0;
  }
}

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

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

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

.section-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 0.75rem;
}

.section-bg-accent .section-label {
  color: rgba(255, 255, 255, 0.6);
}

.section-title {
  font-size: 2rem;
  font-weight: 800;
  color: var(--foreground);
}

@media (min-width: 768px) {
  .section-title {
    font-size: 2.6rem;
  }
}

.section-bg-accent .section-title {
  color: var(--accent-foreground);
}

.section-subtitle {
  color: var(--muted-foreground);
  margin-top: 1rem;
  max-width: 40rem;
  line-height: 1.7;
}

.section-bg-accent .section-subtitle {
  color: rgba(255, 255, 255, 0.6);
}

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

.text-center .section-subtitle {
  margin-left: auto;
  margin-right: auto;
}

/* ============================================
   GRID LAYOUTS
   ============================================ */
.grid-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

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

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

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

@media (min-width: 1024px) {
  .grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

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

@media (min-width: 640px) {
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .grid-4 {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* ============================================
   BUTTONS / CTAs
   ============================================ */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: var(--radius);
  background-color: var(--primary);
  padding: 0.85rem 2rem;
  font-size: 0.95rem;
  font-weight: 700;
  color: white;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  transition: opacity 0.2s ease, transform 0.2s ease;
  box-shadow: 0 4px 15px rgba(192, 57, 43, 0.35);
}

.btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-1px);
  color: white;
}

.btn-outline-white {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: var(--radius);
  border: 2px solid rgba(255, 255, 255, 0.8);
  padding: 0.85rem 2rem;
  font-size: 0.95rem;
  font-weight: 700;
  color: white;
  background: transparent;
  cursor: pointer;
  white-space: nowrap;
  transition: background-color 0.2s ease;
}

.btn-outline-white:hover {
  background-color: rgba(255, 255, 255, 0.12);
  color: white;
}

/* ============================================
   SERVICE CARDS
   ============================================ */
.card-service {
  background-color: var(--card);
  border-radius: 0.75rem;
  padding: 2rem;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  border: 1px solid var(--border);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
  overflow: hidden;
}

.card-service:hover {
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
  transform: translateY(-4px);
}

.card-service-img {
  width: calc(100% + 4rem);
  margin: -2rem -2rem 1.5rem -2rem;
  height: 11rem;
  object-fit: cover;
  display: block;
}

.card-service-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.icon-box {
  width: 2.8rem;
  height: 2.8rem;
  border-radius: 0.5rem;
  background-color: rgba(192, 57, 43, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  flex-shrink: 0;
}

.icon-box-lg {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 0.75rem;
  background-color: rgba(192, 57, 43, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  margin-bottom: 1.25rem;
  flex-shrink: 0;
}

/* ============================================
   ABOUT IMAGE BLOCK
   ============================================ */
.about-img-wrapper {
  position: relative;
}

.about-img-badge {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  background-color: var(--primary);
  border-radius: 0.75rem;
  padding: 1.25rem 1.5rem;
  color: white;
  text-align: center;
}

@media (max-width: 767px) {
  .about-img-badge {
    display: none;
  }
}

.checklist {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-top: 1.75rem;
}

.checklist-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
}

.check-icon {
  color: var(--primary);
  flex-shrink: 0;
  width: 20px;
  height: 20px;
}

/* ============================================
   PROCESS STEPS
   ============================================ */
.step-circle {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  background-color: var(--primary);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  font-weight: 900;
  margin: 0 auto 1rem;
}

/* ============================================
   PORTFOLIO GALLERY + LIGHTBOX
   ============================================ */
.portfolio-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 640px) {
  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .portfolio-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.portfolio-item {
  position: relative;
  border-radius: 0.75rem;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
  aspect-ratio: 4 / 3;
}

.portfolio-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.portfolio-item:hover img {
  transform: scale(1.08);
}

.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.75) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
}

.portfolio-item:hover .portfolio-overlay {
  opacity: 1;
}

.portfolio-category {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--primary);
  margin-bottom: 0.25rem;
}

.portfolio-title {
  font-size: 1rem;
  font-weight: 700;
  color: white;
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 999;
  background-color: rgba(0, 0, 0, 0.92);
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.lightbox.open {
  display: flex;
}

.lightbox-inner {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
}

.lightbox-inner img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 0.5rem;
}

.lightbox-caption {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  text-align: center;
  margin-top: 1rem;
}

.lightbox-close {
  position: fixed;
  top: 1rem;
  right: 1.5rem;
  background: transparent;
  border: none;
  color: white;
  font-size: 2rem;
  cursor: pointer;
  line-height: 1;
  z-index: 1000;
  padding: 0.5rem;
}

.lightbox-prev,
.lightbox-next {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.15);
  border: none;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 1rem 0.75rem;
  border-radius: 0.4rem;
  z-index: 1000;
  transition: background 0.2s ease;
}

.lightbox-prev:hover,
.lightbox-next:hover {
  background: rgba(255, 255, 255, 0.25);
}

.lightbox-prev {
  left: 1rem;
}

.lightbox-next {
  right: 1rem;
}

/* ============================================
   PAGE HEADER SECTION (Serviços, Portfólio, etc.)
   ============================================ */
.page-header {
  position: relative;
  background-color: var(--accent);
  background-image: url('../assets/banner-beach-view.png');
  background-size: cover;
  background-position: center;
  color: var(--accent-foreground);
  padding: 6rem 0;
  text-align: center;
  overflow: hidden;
}

.page-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(15, 15, 25, 0.7);
  /* Dark discreete overlay */
  z-index: 1;
}

.page-header .container {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.page-header .section-label {
  color: #ff6b6b;
  background-color: rgba(192, 57, 43, 0.2);
  display: inline-block;
  padding: 0.4rem 1.2rem;
  border-radius: 2rem;
  border: 1px solid rgba(192, 57, 43, 0.3);
  margin-bottom: 1.5rem;
  font-size: 0.8rem;
}

.page-header .section-title {
  color: #ffffff !important;
  margin-bottom: 1rem;
  text-align: center;
}

.page-header .section-subtitle {
  color: rgba(255, 255, 255, 0.9) !important;
  font-size: 1.15rem;
  text-align: center;
  margin-left: auto !important;
  margin-right: auto !important;
  max-width: 45rem;
}


/* ============================================
   SERVICE CARD CTA BUTTON
   ============================================ */
.btn-service-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  margin-top: 1.25rem;
  padding: 0.65rem 1.25rem;
  background-color: #25d366;
  color: #ffffff;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background-color 0.2s ease, transform 0.2s ease;
  align-self: flex-start;
}

.btn-service-cta:hover {
  background-color: #1ebe5d;
  transform: translateY(-1px);
  color: #ffffff;
}

/* ============================================
   CTA BANNER (2 buttons)
   ============================================ */
.cta-banner {
  background-color: var(--primary);
  padding: 4rem 0;
  text-align: center;
}

.cta-banner-title {
  font-size: 1.8rem;
  font-weight: 800;
  color: white;
  margin-bottom: 0.75rem;
}

.cta-banner-sub {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 2rem;
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
}

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

/* ============================================
   FOOTER — 4 columns matching original
   ============================================ */
.footer {
  background-color: var(--accent);
  color: var(--accent-foreground);
  padding: 4rem 0 2rem;
}

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

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr 1fr;
  }
}

.footer-brand-desc {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
  margin-top: 1rem;
}

.footer-title {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 1rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-links a {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.65);
  transition: color 0.2s ease;
}

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

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 0.75rem;
  text-decoration: none;
  transition: color 0.2s ease;
}

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

.footer-contact-item svg {
  color: var(--primary);
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: 3rem;
  padding-top: 2rem;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.4);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-copy {
  text-align: left;
  margin-bottom: 6px;
}

.footer-net {
  text-align: right;
}

.logo-net {
  display: inline-flex !important;
  align-items: center;
}

@media (max-width: 1024px) {
  .footer-bottom {
    flex-direction: column;
    justify-content: center;
    text-align: center;
    gap: 1.5rem;
  }

  .footer-copy,
  .footer-net {
    width: 100%;
    text-align: center !important;
    justify-content: center;
  }
}

/* ============================================
   WHATSAPP FLOAT BUTTON
   ============================================ */
.whatsapp-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  background-color: #25d366;
  color: white;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
  z-index: 200;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.6);
}

/* ============================================
   UTILITIES
   ============================================ */
.w-full {
  width: 100%;
}

.h-full {
  height: 100%;
}

.rounded-xl {
  border-radius: 0.75rem;
}

.shadow-lg {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.shadow-xl {
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.16);
}

.mt-2 {
  margin-top: 0.5rem;
}

.mt-4 {
  margin-top: 1rem;
}

.mt-6 {
  margin-top: 1.5rem;
}

.mt-8 {
  margin-top: 2rem;
}

.mt-12 {
  margin-top: 3rem;
}

/* ============================================
   EQUIPLEX / DIVIDER SECTION
   ============================================ */
.section-equiplex {
  position: relative;
  background-color: #ffffff;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 6rem 0;
  margin-bottom: 4rem;
  /* espaçamento para a respiro na próxima sessão */
}

/* Divisor em formato de chevron/seta nas bordas */
.section-equiplex::before,
.section-equiplex::after {
  content: "";
  position: absolute;
  left: 50%;
  width: 24px;
  height: 24px;
  background-color: #ffffff;
  z-index: 10;
}

/* Chevron do topo apontando pra cima (^) */
.section-equiplex::before {
  top: -12.5px;
  transform: translateX(-50%) rotate(45deg);
  border-top: 1px solid var(--border);
  border-left: 1px solid var(--border);
}

/* Chevron de baixo apontando pra baixo (v) */
.section-equiplex::after {
  bottom: -12.5px;
  transform: translateX(-50%) rotate(45deg);
  border-bottom: 1px solid var(--border);
  border-right: 1px solid var(--border);
}

/* Botão outline fantasma */
.btn-outline-red {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 2rem;
  border: 1px solid var(--primary);
  color: var(--primary);
  background: transparent;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: var(--radius);
  transition: all 0.3s ease;
}

.btn-outline-red:hover {
  background: var(--primary);
  color: #ffffff;
}

@media (max-width: 768px) {
  .equiplex-content {
    order: 2;
  }

  .equiplex-image {
    order: 1;
  }
}

/* ============================================
   TESTIMONIALS / DEPONIMENTOS SECTION
   ============================================ */
.section-testimonials {
  background-color: var(--accent);
  padding: 6rem 0;
  color: var(--accent-foreground);
  overflow: hidden;
}

.testimonial-slider-container {
  position: relative;
  overflow: hidden;
  padding-top: 2rem;
  padding-bottom: 1rem;
}

.testimonial-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
  gap: 2rem;
}

.testimonial-card {
  width: calc((100% - 4rem) / 3);
  flex-shrink: 0;
  background: #ffffff;
  border-radius: 16px;
  padding: 3rem 2rem 2rem 2rem;
  color: #111;
  position: relative;
  display: flex;
  flex-direction: column;
  text-align: left;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

@media (max-width: 1024px) {
  .testimonial-card {
    width: calc((100% - 2rem) / 2);
  }
}

@media (max-width: 768px) {
  .testimonial-card {
    width: 100%;
  }
}

.testimonial-quote-icon {
  position: absolute;
  top: -24px;
  left: 50%;
  transform: translateX(-50%);
  width: 48px;
  height: 48px;
  background-color: #4285F4;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.15);
}

.testimonial-text {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #444;
  margin-bottom: 2rem;
  flex-grow: 1;
}

.testimonial-footer {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  border-top: 1px solid #eee;
  padding-top: 1.5rem;
}

.testimonial-author strong {
  display: block;
  font-size: 1.05rem;
  margin-bottom: 0.2rem;
}

.testimonial-author span {
  font-size: 0.8rem;
  color: #777;
}

.testimonial-rating {
  font-size: 1rem;
}

.testimonial-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #4285F4;
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  margin-top: 1.5rem;
  transition: opacity 0.2s;
}

.testimonial-link:hover {
  opacity: 0.8;
}

.testimonial-nav {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 1rem;
}

.testimonial-nav button {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.05);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.testimonial-nav button:hover {
  background: white;
  color: var(--accent);
  border-color: white;
}

/* ============================================
   MODERN SERVICE CARDS HOVER
   ============================================ */
.modern-service-card img {
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.modern-service-card:hover img {
  transform: scale(1.08);
}

.modern-service-card .card-overlay {
  transition: background 0.4s ease-in-out !important;
}

.modern-service-card:hover .card-overlay {
  background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.15) 70%, rgba(0,0,0,0) 100%) !important;
}

@media (max-width: 768px) {
  .modern-service-card {
    aspect-ratio: auto !important;
    height: 400px;
  }
}