/* ==========================================================================
   IMPRIARTE SOLUÇÕES GRÁFICAS - LANDING PAGE STYLES
   Colors: #7d4296 (Purple), #2bbec5 (Teal/Cyan), #25D366 (WhatsApp Green)
   Font: Plus Jakarta Sans (Elegant Sans-Serif)
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

:root {
  --primary: #7d4296;
  --primary-dark: #623078;
  --primary-light: #f5ecf8;
  --primary-glow: rgba(125, 66, 150, 0.25);
  
  --secondary: #2bbec5;
  --secondary-dark: #1ea3aa;
  --secondary-light: #eefbfb;
  --secondary-glow: rgba(43, 190, 197, 0.25);
  
  --whatsapp: #25D366;
  --whatsapp-hover: #20ba5a;
  --whatsapp-glow: rgba(37, 211, 102, 0.35);

  --dark-bg: #120b1b;
  --dark-surface: #1d142b;
  --dark-border: rgba(255, 255, 255, 0.12);
  
  --text-main: #1e1b26;
  --text-muted: #64748b;
  --text-light: #94a3b8;
  
  --bg-light: #f8fafc;
  --bg-white: #ffffff;
  
  --border-light: #e2e8f0;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-full: 9999px;
  
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 8px 24px rgba(125, 66, 150, 0.08);
  --shadow-lg: 0 16px 32px rgba(125, 66, 150, 0.14);
  --shadow-glow: 0 0 25px var(--primary-glow);
  
  --font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  --transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

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

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

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Typography Helpers */
.highlight-purple {
  color: var(--primary);
}

.highlight-teal {
  color: var(--secondary);
}

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

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 1rem;
  background: var(--primary-light);
  color: var(--primary);
  font-size: 0.85rem;
  font-weight: 700;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
}

.section-tag.light {
  background: rgba(43, 190, 197, 0.15);
  color: var(--secondary);
}

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

.section-header h2 {
  font-size: 2.25rem;
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

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

/* Manual line break helper - hidden on tablet/mobile, visible on desktop */
.title-break {
  display: none;
}

@media (min-width: 1025px) {
  .title-break {
    display: block;
  }
}

/* Buttons - Prevent text breaking in 2 lines */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.1rem;
  font-family: var(--font-family);
  font-size: 0.92rem;
  font-weight: 700;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
  width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Only CTA buttons use WhatsApp Green */
.btn-whatsapp {
  background-color: var(--whatsapp);
  color: #ffffff;
  box-shadow: 0 6px 20px var(--whatsapp-glow);
}

.btn-whatsapp:hover {
  background-color: var(--whatsapp-hover);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px var(--whatsapp-glow);
  color: #ffffff;
}

/* Form Submit Buttons follow Brand IDV (#7d4296 purple) */
.btn-form-submit,
.btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: #ffffff;
  box-shadow: 0 6px 20px var(--primary-glow);
}

.btn-form-submit:hover,
.btn-primary:hover {
  background: linear-gradient(135deg, var(--primary-dark) 0%, #4a215c 100%);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px var(--primary-glow);
  color: #ffffff;
}

.btn-secondary {
  background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-dark) 100%);
  color: #ffffff;
  box-shadow: 0 6px 20px var(--secondary-glow);
}

.btn-secondary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px var(--secondary-glow);
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero-section {
  padding: 2.5rem 0 4rem 0;
  background: radial-gradient(circle at 10% 20%, rgba(125, 66, 150, 0.05) 0%, transparent 40%),
              radial-gradient(circle at 90% 80%, rgba(43, 190, 197, 0.06) 0%, transparent 40%),
              var(--bg-white);
  position: relative;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr 1fr;
  gap: 2rem;
  align-items: center;
}

.hero-col-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hero-logo-wrapper {
  margin-bottom: 1.5rem;
}

.hero-logo {
  max-width: 220px;
  height: auto;
  object-fit: contain;
}

.hero-title {
  font-size: 2.35rem;
  font-weight: 800;
  line-height: 1.2;
  color: var(--text-main);
  margin-bottom: 1rem;
  letter-spacing: -0.03em;
}

.hero-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-bottom: 1.75rem;
  line-height: 1.6;
}

.hero-highlights {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  width: 100%;
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.6rem 0.85rem;
  background: var(--bg-light);
  border: 1px solid rgba(125, 66, 150, 0.1);
  border-radius: var(--radius-md);
  transition: var(--transition);
}

.highlight-item:hover {
  background: var(--primary-light);
  border-color: rgba(125, 66, 150, 0.25);
  transform: translateX(4px);
}

.highlight-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.highlight-text {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-main);
}

/* Hero Col 2: Banner Image directly over background */
.hero-col-media {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.hero-banner-img {
  width: 100%;
  max-width: 440px;
  height: auto;
  object-fit: contain;
  border-radius: var(--radius-lg);
  transition: transform 0.4s ease;
  filter: drop-shadow(0 12px 30px rgba(125, 66, 150, 0.15));
}

.hero-banner-img:hover {
  transform: translateY(-4px) scale(1.02);
}

/* Hero Col 3: Lead Form */
.hero-col-form {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  box-shadow: 0 20px 40px rgba(125, 66, 150, 0.12);
  border: 2px solid rgba(125, 66, 150, 0.15);
  position: relative;
}

.form-header {
  text-align: center;
  margin-bottom: 1.25rem;
}

.form-header h3 {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 0.35rem;
}

.form-header p {
  font-size: 0.88rem;
  color: var(--text-muted);
}

.lead-form {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  position: relative;
}

.form-group label {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-main);
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.form-control {
  width: 100%;
  padding: 0.8rem 1rem;
  font-family: var(--font-family);
  font-size: 0.95rem;
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-md);
  background-color: var(--bg-light);
  color: var(--text-main);
  transition: var(--transition);
  outline: none;
}

.form-control:focus {
  border-color: var(--secondary);
  background-color: #ffffff;
  box-shadow: 0 0 0 4px var(--secondary-glow);
}

/* Custom Dropdown Multi-select */
.custom-multiselect {
  position: relative;
  user-select: none;
}

.multiselect-trigger {
  width: 100%;
  padding: 0.8rem 1rem;
  font-size: 0.95rem;
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-md);
  background-color: var(--bg-light);
  color: var(--text-muted);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: var(--transition);
  min-height: 48px;
}

.custom-multiselect.active .multiselect-trigger {
  border-color: var(--secondary);
  background-color: #ffffff;
  box-shadow: 0 0 0 4px var(--secondary-glow);
}

.multiselect-placeholder {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 90%;
}

.multiselect-placeholder.selected {
  color: var(--text-main);
  font-weight: 600;
}

.multiselect-arrow {
  transition: transform 0.25s ease;
  font-size: 0.75rem;
  color: var(--text-muted);
}

.custom-multiselect.active .multiselect-arrow {
  transform: rotate(180deg);
}

.multiselect-options {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  right: 0;
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
  z-index: 999;
  max-height: 220px;
  overflow-y: auto;
  display: none;
  padding: 0.5rem;
}

.custom-multiselect.active .multiselect-options {
  display: block !important;
}

.option-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.6rem 0.75rem;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: background 0.2s ease;
  font-size: 0.9rem;
  color: var(--text-main);
}

.option-item:hover {
  background: var(--primary-light);
  color: var(--primary);
}

.option-item input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: var(--primary);
  cursor: pointer;
}

.form-footer-note {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-align: center;
  margin-top: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
}

/* ==========================================================================
   INFINITE MARQUEE TICKER SLIDER
   ========================================================================== */
.ticker-section {
  background: linear-gradient(90deg, var(--primary) 0%, var(--primary-dark) 50%, var(--secondary-dark) 100%);
  padding: 1.1rem 0;
  overflow: hidden;
  white-space: nowrap;
  position: relative;
  box-shadow: inset 0 2px 6px rgba(0, 0, 0, 0.2);
}

.ticker-track {
  display: inline-flex;
  align-items: center;
  gap: 2.5rem;
  animation: marquee 28s linear infinite;
}

.ticker-track:hover {
  animation-play-state: paused;
}

.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: #ffffff;
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.02em;
}

.ticker-item span.icon {
  color: var(--secondary);
  font-size: 1.2rem;
}

.ticker-dot {
  width: 6px;
  height: 6px;
  background-color: var(--secondary);
  border-radius: 50%;
  display: inline-block;
  opacity: 0.8;
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ==========================================================================
   PRODUCTS SECTION (4 columns grid)
   ========================================================================== */
.products-section {
  padding: 5rem 0;
  background-color: var(--bg-light);
}

.products-section > .container > .banner-card {
  margin-bottom: 3rem;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: stretch;
}

.product-card {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(125, 66, 150, 0.3);
}

/* Product Image Container: FULL UNCROPPED IMAGE (0% crop top, bottom, left, right) */
.product-image-container {
  width: 100%;
  height: auto;
  overflow: hidden;
  position: relative;
  background: #f8fafc;
}

.product-image-container img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: fill;
  transition: transform 0.4s ease;
}

.product-card:hover .product-image-container img {
  transform: scale(1.03);
}

.product-card-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product-card-title {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 0.6rem;
}

.product-card-desc {
  font-size: 0.92rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  line-height: 1.5;
  flex-grow: 1;
}

/* ==========================================================================
   CTA CARD (sem imagem, fundo diferente)
   ========================================================================== */
.product-card.cta-card {
  background: linear-gradient(135deg, var(--dark-surface) 0%, var(--primary-dark) 100%);
  border: 1px solid var(--primary);
  box-shadow: 0 14px 30px rgba(125, 66, 150, 0.2);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 2.25rem 1.75rem;
  position: relative;
  overflow: hidden;
}

.product-card.cta-card::before {
  content: '';
  position: absolute;
  top: -40px;
  right: -40px;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(43, 190, 197, 0.25) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.product-card.cta-card::after {
  content: '';
  position: absolute;
  bottom: -50px;
  left: -50px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(125, 66, 150, 0.35) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.product-card.cta-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 22px 40px rgba(125, 66, 150, 0.32);
  border-color: var(--secondary);
}

.cta-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.85rem;
  margin-bottom: 1.25rem;
  box-shadow: 0 8px 20px rgba(43, 190, 197, 0.4);
  position: relative;
  z-index: 1;
}

.product-card.cta-card .product-card-title {
  color: #ffffff;
  position: relative;
  z-index: 1;
}

.product-card.cta-card .product-card-desc {
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}

.product-card.cta-card .btn-form-submit {
  position: relative;
  z-index: 1;
}

/* ==========================================================================
   FEATURED EVENT CARD SECTION
   ========================================================================== */
.banner-card {
  background: linear-gradient(135deg, var(--dark-surface) 0%, var(--primary-dark) 100%);
  border-radius: var(--radius-lg);
  overflow: hidden;
  color: #ffffff;
  box-shadow: 0 20px 40px rgba(125, 66, 150, 0.2);
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  position: relative;
}

.banner-content {
  padding: 3.5rem 3rem;
}

.banner-badge {
  display: inline-block;
  padding: 0.35rem 0.9rem;
  background: var(--secondary);
  color: var(--dark-bg);
  font-weight: 800;
  font-size: 0.8rem;
  text-transform: uppercase;
  border-radius: var(--radius-full);
  margin-bottom: 1.25rem;
  letter-spacing: 0.05em;
}

.banner-title {
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 1rem;
  color: #ffffff;
}

.banner-desc {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.banner-meta {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--secondary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1rem;
  padding: 0.25rem 0;
}

.banner-image {
  height: 100%;
  min-height: 380px;
  position: relative;
  overflow: hidden;
}

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

/* ==========================================================================
   DIFFERENTIALS SECTION
   ========================================================================== */
.differentials-section {
  padding: 5.5rem 0;
  background-color: var(--dark-bg);
  color: #ffffff;
  position: relative;
}

.differentials-section .section-header h2 {
  color: #ffffff;
}

.differentials-section .section-header p {
  color: #a0aec0;
}

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

.diff-card {
  background: var(--dark-surface);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.diff-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, var(--secondary) 0%, var(--primary) 100%);
  opacity: 0;
  transition: var(--transition);
}

.diff-card:hover {
  transform: translateY(-5px);
  border-color: rgba(43, 190, 197, 0.4);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.diff-card:hover::before {
  opacity: 1;
}

.diff-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(125, 66, 150, 0.25), rgba(43, 190, 197, 0.25));
  border: 1px solid rgba(43, 190, 197, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
}

.diff-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.6rem;
}

.diff-desc {
  font-size: 0.95rem;
  color: #a0aec0;
  line-height: 1.55;
}

/* ==========================================================================
   CLIENTS SECTION
   ========================================================================== */
.clients-section {
  padding: 4.5rem 0;
  background-color: var(--bg-white);
  border-bottom: 1px solid var(--border-light);
}

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

.client-logo-wrapper {
  background: var(--bg-light);
  border-radius: var(--radius-md);
  padding: 1.5rem 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border-light);
  transition: var(--transition);
  height: 110px;
}

.client-logo-wrapper img {
  max-height: 60px;
  width: auto;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.65;
  transition: var(--transition);
}

.client-logo-wrapper:hover {
  background: var(--bg-white);
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.client-logo-wrapper:hover img {
  filter: grayscale(0%);
  opacity: 1;
}

/* ==========================================================================
   FAQ SECTION
   ========================================================================== */
.faq-section {
  padding: 5rem 0;
  background-color: var(--bg-light);
}

.faq-container {
  max-width: 840px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

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

.faq-item.active {
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
}

.faq-question {
  width: 100%;
  padding: 1.25rem 1.5rem;
  background: none;
  border: none;
  text-align: left;
  font-family: var(--font-family);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-main);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  outline: none;
}

.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--primary-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  flex-shrink: 0;
  transition: transform 0.3s ease, background 0.3s ease;
  pointer-events: none;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
  background: var(--primary);
  color: #ffffff;
}

.faq-answer {
  display: none;
  padding: 0.75rem 1.5rem 1.25rem 1.5rem;
  font-size: 0.98rem;
  color: var(--text-muted);
  line-height: 1.6;
  border-top: 1px dashed rgba(125, 66, 150, 0.15);
  margin-top: 0.25rem;
}

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

/* ==========================================================================
   TESTIMONIALS CAROUSEL SECTION
   ========================================================================== */
.testimonials-section {
  padding: 5rem 0;
  background-color: var(--bg-white);
  overflow: hidden;
}

.carousel-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.carousel-viewport {
  flex: 1;
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.carousel-track {
  display: flex;
  gap: 1.25rem;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.testimonial-slide {
  flex: 0 0 calc((100% - 2 * 1.25rem) / 3);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  background: var(--bg-light);
  aspect-ratio: 1 / 1;
  transition: var(--transition);
}

.testimonial-slide:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.testimonial-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.carousel-arrow {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--bg-white);
  color: var(--primary);
  border: 1.5px solid rgba(125, 66, 150, 0.25);
  box-shadow: 0 6px 18px rgba(125, 66, 150, 0.12);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
  transition: var(--transition);
  z-index: 2;
}

.carousel-arrow:hover {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: #ffffff;
  transform: scale(1.08);
  border-color: transparent;
  box-shadow: 0 10px 24px rgba(125, 66, 150, 0.3);
}

.carousel-arrow:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  transform: none;
}

/* ==========================================================================
   CONTACT SECTION (DARK THEME WITH RADIAL DOTTED PATTERN OVERLAY)
   ========================================================================== */
.contact-section {
  padding: 5rem 0 3rem 0;
  background-color: var(--dark-bg);
  background-image: radial-gradient(rgba(43, 190, 197, 0.18) 1.5px, transparent 1.5px);
  background-size: 24px 24px;
  color: #ffffff;
  position: relative;
}

.contact-section .section-header h2 {
  color: #ffffff;
}

.contact-section .section-header p {
  color: #a0aec0;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
  margin-bottom: 4rem;
}

.contact-card {
  background: var(--dark-surface);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius-lg);
  padding: 2.25rem 1.5rem;
  text-align: center;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.contact-card:hover {
  transform: translateY(-5px);
  border-color: var(--secondary);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
}

.contact-card-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(125, 66, 150, 0.3), rgba(43, 190, 197, 0.3));
  border: 1px solid rgba(43, 190, 197, 0.3);
  color: var(--secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 1.25rem;
}

.contact-card-title {
  font-size: 1.2rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 0.75rem;
}

.contact-card-link {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--secondary);
  word-break: break-word;
  transition: var(--transition);
}

.contact-card-link:hover {
  color: #ffffff;
  text-decoration: underline;
}

/* Footer Divider & Credits in Dark Section */
.footer-divider {
  height: 1px;
  background: var(--dark-border);
  margin-bottom: 2rem;
}

.footer-bottom {
  text-align: center;
  font-size: 0.9rem;
  color: #a0aec0;
  padding-bottom: 1rem;
}

.footer-bottom a {
  color: var(--secondary);
  font-weight: 700;
  transition: var(--transition);
}

.footer-bottom a:hover {
  color: #ffffff;
  text-decoration: underline;
}

/* ==========================================================================
   FLOATING WHATSAPP BUTTON
   ========================================================================== */
.whatsapp-float {
  position: fixed;
  bottom: 1.75rem;
  right: 1.75rem;
  width: 62px;
  height: 62px;
  background-color: var(--whatsapp);
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.45);
  z-index: 999;
  transition: var(--transition);
  text-decoration: none;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.6);
  color: #ffffff;
}

.whatsapp-badge {
  position: absolute;
  top: -2px;
  right: -2px;
  width: 14px;
  height: 14px;
  background-color: #ff3b30;
  border: 2px solid #ffffff;
  border-radius: 50%;
}

/* ==========================================================================
   MODAL FORM 2
   ========================================================================== */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(18, 11, 27, 0.75);
  backdrop-filter: blur(6px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-container {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 480px;
  padding: 2rem 1.75rem;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
  position: relative;
  transform: translateY(20px);
  transition: transform 0.3s ease;
  max-height: 90vh;
  overflow-y: auto;
}

.modal-overlay.active .modal-container {
  transform: translateY(0);
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1.25rem;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--text-muted);
  cursor: pointer;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.modal-close:hover {
  background: var(--bg-light);
  color: var(--text-main);
}

/* ==========================================================================
   THANK YOU PAGE STYLES
   ========================================================================== */
.thankyou-wrapper {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at 50% 30%, rgba(125, 66, 150, 0.08) 0%, transparent 60%), var(--bg-light);
  padding: 2rem 1rem;
}

.thankyou-card {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  max-width: 620px;
  width: 100%;
  padding: 3rem 2.5rem;
  text-align: center;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-light);
}

.thankyou-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--whatsapp), var(--secondary));
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  margin: 0 auto 1.5rem auto;
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
}

.thankyou-title {
  font-size: 2.1rem;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 0.75rem;
}

.thankyou-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.thankyou-box {
  background: var(--primary-light);
  border: 1px dashed var(--primary);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  margin-bottom: 2rem;
  text-align: left;
}

.thankyou-box h4 {
  color: var(--primary);
  font-weight: 800;
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

.thankyou-box ul {
  padding-left: 1.2rem;
  list-style: disc;
  color: var(--text-main);
  font-size: 0.9rem;
}

/* ==========================================================================
   RESPONSIVE DESIGN (MEDIA QUERIES)
   ========================================================================== */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .hero-col-brand {
    grid-column: span 2;
    align-items: center;
    text-align: center;
  }

  .hero-highlights {
    max-width: 500px;
    margin: 0 auto;
  }

  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .differentials-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .testimonial-slide {
    flex: 0 0 calc((100% - 1.25rem) / 2);
  }
}

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

  .hero-col-brand {
    grid-column: span 1;
  }

  .hero-title {
    font-size: 1.85rem;
  }

  .banner-card {
    grid-template-columns: 1fr;
  }

  .banner-content {
    padding: 2.5rem 1.5rem;
  }

  .banner-image {
    min-height: 250px;
  }

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

  /* Uncropped product image spanning 100% width */
  .product-image-container {
    height: auto;
    width: 100%;
  }

  .product-image-container img {
    width: 100%;
    height: auto;
  }

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

  .clients-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .section-header h2 {
    font-size: 1.75rem;
  }

  .testimonial-slide {
    flex: 0 0 100%;
  }

  .carousel-arrow {
    width: 40px;
    height: 40px;
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .hero-col-form, .modal-container {
    padding: 1.5rem 1.15rem;
  }

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

  .whatsapp-float {
    width: 54px;
    height: 54px;
    font-size: 1.75rem;
    bottom: 1.25rem;
    right: 1.25rem;
  }
}
