/* ===========================
   ELO DIGITAL — GLOBAL STYLES
   =========================== */

:root {
  --navy:   #0D1B2A;
  --navy2:  #112233;
  --navy3:  #0A1520;
  --blue:   #5DADE2;
  --mint:   #1ABC9C;
  --white:  #FFFFFF;
  --gray:   #E2E8F0;
  --gray2:  #94A3B8;
  --font:   'Inter', sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background-color: var(--navy);
  color: var(--white);
  line-height: 1.6;
}

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

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

/* ===========================
   TYPOGRAPHY
   =========================== */
h1 { font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 900; line-height: 1.1; letter-spacing: -1px; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.5rem); font-weight: 900; line-height: 1.2; letter-spacing: -0.5px; }
h3 { font-size: clamp(1.1rem, 2vw, 1.5rem); font-weight: 700; line-height: 1.3; }
p  { font-size: 1rem; line-height: 1.7; color: var(--gray); }

/* ===========================
   UTILITIES
   =========================== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 96px 0;
}

.section-sm {
  padding: 64px 0;
}

.text-mint  { color: var(--mint); }
.text-blue  { color: var(--blue); }
.text-gray  { color: var(--gray2); }
.text-center { text-align: center; }

.divider-mint {
  display: inline-block;
  width: 48px;
  height: 4px;
  background-color: var(--mint);
  margin-bottom: 16px;
}

/* ===========================
   BUTTONS
   =========================== */
.btn {
  display: inline-block;
  padding: 14px 32px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: opacity 0.2s;
  border: none;
  outline: none;
  font-family: var(--font);
}

.btn:hover { opacity: 0.85; }

.btn-primary {
  background-color: var(--mint);
  color: var(--navy);
}

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

.btn-outline:hover {
  background-color: var(--mint);
  color: var(--navy);
  opacity: 1;
}

.btn-blue {
  background-color: var(--blue);
  color: var(--navy);
}

/* ===========================
   NAVBAR
   =========================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: rgba(13, 27, 42, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100px;
}

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

.navbar-menu {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.navbar-menu a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--gray);
  transition: color 0.2s;
}

.navbar-menu a:hover { color: var(--mint); }

.navbar-cta {
  background-color: var(--mint);
  color: var(--navy) !important;
  padding: 10px 24px;
  font-weight: 700 !important;
}

.navbar-cta:hover {
  background-color: var(--blue) !important;
  color: var(--navy) !important;
  opacity: 1;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--white);
  transition: all 0.3s;
}

/* ===========================
   HERO
   =========================== */
.hero {
  padding-top: 140px;
  padding-bottom: 96px;
  position: relative;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.hero-card {
  background: linear-gradient(135deg, #112233 0%, #0A1F30 100%);
  border: 1px solid rgba(26,188,156,0.25);
  border-top: 4px solid var(--mint);
  padding: 48px 40px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero-card-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: rgba(26,188,156,0.12);
  color: var(--mint);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 6px 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  width: fit-content;
}

.hero-card h3 {
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1.2;
}

.hero-card h3 span {
  color: var(--mint);
}

.hero-card-steps {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hero-card-step {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.hero-card-step-num {
  width: 32px;
  height: 32px;
  background-color: var(--mint);
  color: var(--navy);
  font-size: 0.85rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hero-card-step-text {
  font-size: 0.9rem;
  color: var(--gray);
  line-height: 1.5;
  padding-top: 6px;
}

.hero-card-step-text strong {
  color: var(--white);
  display: block;
  font-size: 0.95rem;
  margin-bottom: 2px;
}

.hero-card-timer {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  background-color: rgba(93,173,226,0.08);
  border-left: 3px solid var(--blue);
}

.hero-card-timer span {
  font-size: 0.9rem;
  color: var(--gray);
}

.hero-card-timer strong {
  color: var(--blue);
}

.hero::before {
  content: "";
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(26,188,156,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero-badge {
  display: inline-block;
  background-color: rgba(26,188,156,0.1);
  color: var(--mint);
  font-size: 0.85rem;
  font-weight: 700;
  padding: 6px 16px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 24px;
  border-left: 3px solid var(--mint);
}

.hero h1 span { color: var(--mint); }

.hero-desc {
  font-size: 1.15rem;
  color: var(--gray);
  max-width: 560px;
  margin: 24px 0 40px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  gap: 48px;
  margin-top: 64px;
  flex-wrap: wrap;
}

.hero-stat-number {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--mint);
  line-height: 1;
}

.hero-stat-label {
  font-size: 0.9rem;
  color: var(--gray2);
  margin-top: 4px;
}

/* ===========================
   SECTION HEADER
   =========================== */
.section-header {
  margin-bottom: 56px;
}

.section-header.center {
  text-align: center;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.section-header p {
  margin-top: 16px;
  font-size: 1.1rem;
}

/* ===========================
   SERVICES GRID
   =========================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
}

.service-card {
  background-color: var(--navy2);
  border-top: 4px solid var(--mint);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform 0.2s;
}

.service-card:nth-child(even) {
  border-top-color: var(--blue);
}

.service-card:hover {
  transform: translateY(-4px);
}

.service-icon {
  font-size: 2.5rem;
  line-height: 1;
}

.service-card h3 {
  font-size: 1.25rem;
  color: var(--white);
}

.service-card p {
  font-size: 0.95rem;
  color: var(--gray2);
  flex: 1;
}

.service-card .btn {
  align-self: flex-start;
  padding: 10px 24px;
  font-size: 0.9rem;
}

/* ===========================
   ABOUT SECTION
   =========================== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-pillars {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 32px;
}

.pillar {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.pillar-icon {
  width: 48px;
  height: 48px;
  background-color: rgba(26,188,156,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}

.pillar-content h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}

.pillar-content p {
  font-size: 0.9rem;
  color: var(--gray2);
}

.about-highlight {
  background-color: var(--navy2);
  border-left: 6px solid var(--mint);
  padding: 40px;
}

.about-highlight blockquote {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.4;
  margin-bottom: 24px;
}

/* ===========================
   BLOG GRID
   =========================== */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.blog-card {
  background-color: var(--navy2);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: transform 0.2s;
}

.blog-card:hover { transform: translateY(-4px); }

.blog-card-tag {
  display: inline-block;
  background-color: rgba(26,188,156,0.1);
  color: var(--mint);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
  width: fit-content;
}

.blog-card-body {
  padding: 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.blog-card-body h3 {
  font-size: 1.1rem;
  color: var(--white);
  line-height: 1.4;
}

.blog-card-body p {
  font-size: 0.9rem;
  color: var(--gray2);
  flex: 1;
}

.blog-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 28px;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.blog-card-date {
  font-size: 0.8rem;
  color: var(--gray2);
}

.blog-read-more {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--mint);
}

/* ===========================
   CTA BANNER
   =========================== */
.cta-banner {
  background-color: var(--mint);
  padding: 80px 0;
}

.cta-banner h2 { color: var(--navy); }
.cta-banner p  { color: rgba(13,27,42,0.75); }

.cta-banner-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.cta-banner .btn {
  background-color: var(--navy);
  color: var(--white);
  white-space: nowrap;
}

/* ===========================
   FOOTER
   =========================== */
.footer {
  background-color: var(--navy3);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 64px 0 32px;
}

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

.footer-brand img {
  height: 72px;
  margin-bottom: 20px;
}

.footer-brand p {
  font-size: 0.9rem;
  color: var(--gray2);
  max-width: 280px;
}

.footer-col h4 {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gray2);
  margin-bottom: 20px;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col ul li a {
  font-size: 0.9rem;
  color: var(--gray);
  transition: color 0.2s;
}

.footer-col ul li a:hover { color: var(--mint); }

.footer-contact-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-bottom: 16px;
}

.footer-contact-label {
  font-size: 0.75rem;
  color: var(--gray2);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-contact-value {
  font-size: 0.95rem;
  color: var(--white);
  font-weight: 600;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  font-size: 0.85rem;
  color: var(--gray2);
}

/* ===========================
   SERVICE PAGE
   =========================== */
.page-hero {
  padding-top: 140px;
  padding-bottom: 64px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.breadcrumb {
  display: flex;
  gap: 8px;
  align-items: center;
  font-size: 0.85rem;
  color: var(--gray2);
  margin-bottom: 24px;
}

.breadcrumb a { color: var(--mint); }
.breadcrumb span { color: var(--gray2); }

.service-content {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 64px;
  align-items: start;
}

.service-content-text h2 {
  font-size: 1.8rem;
  margin-bottom: 20px;
}

.service-content-text p {
  margin-bottom: 20px;
}

.service-benefits {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 24px 0;
}

.service-benefits li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 0.95rem;
  color: var(--gray);
}

.service-benefits li::before {
  content: "✓";
  color: var(--mint);
  font-weight: 900;
  flex-shrink: 0;
}

/* ===========================
   FORM
   =========================== */
.form-card {
  background-color: var(--navy2);
  border-top: 4px solid var(--mint);
  padding: 40px;
  position: sticky;
  top: 96px;
}

.form-card h3 {
  font-size: 1.4rem;
  color: var(--white);
  margin-bottom: 8px;
}

.form-card .form-subtitle {
  font-size: 0.9rem;
  color: var(--gray2);
  margin-bottom: 28px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gray);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background-color: var(--navy3);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--white);
  padding: 12px 16px;
  font-size: 0.95rem;
  font-family: var(--font);
  outline: none;
  transition: border-color 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--mint);
}

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

.form-group select option { background-color: var(--navy2); }

.form-submit {
  width: 100%;
  padding: 16px;
  font-size: 1rem;
  font-weight: 700;
  background-color: var(--mint);
  color: var(--navy);
  border: none;
  cursor: pointer;
  font-family: var(--font);
  transition: background-color 0.2s;
}

.form-submit:hover { background-color: var(--blue); }

/* ===========================
   CONTACT PAGE
   =========================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.contact-info-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  margin-bottom: 32px;
}

.contact-icon {
  width: 52px;
  height: 52px;
  background-color: rgba(26,188,156,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}

.contact-info-item h4 {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gray2);
  margin-bottom: 4px;
}

.contact-info-item p {
  font-size: 1rem;
  color: var(--white);
  font-weight: 600;
}

/* ===========================
   BLOG PAGE
   =========================== */
.blog-hero {
  padding-top: 140px;
  padding-bottom: 64px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.blog-article {
  max-width: 800px;
  margin: 0 auto;
}

.article-header {
  padding-top: 140px;
  padding-bottom: 48px;
}

.article-meta {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.article-tag {
  background-color: rgba(26,188,156,0.1);
  color: var(--mint);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.article-date {
  font-size: 0.85rem;
  color: var(--gray2);
}

.article-body {
  padding: 48px 0 96px;
}

.article-body h2 {
  font-size: 1.6rem;
  margin: 40px 0 16px;
  color: var(--white);
}

.article-body h3 {
  font-size: 1.2rem;
  margin: 32px 0 12px;
  color: var(--blue);
}

.article-body p {
  margin-bottom: 20px;
  font-size: 1.05rem;
  line-height: 1.8;
}

.article-body ul, .article-body ol {
  margin: 16px 0 24px 24px;
}

.article-body li {
  font-size: 1.05rem;
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: 8px;
}

.article-body blockquote {
  border-left: 4px solid var(--mint);
  padding: 16px 24px;
  background-color: var(--navy2);
  margin: 32px 0;
  font-size: 1.1rem;
  color: var(--gray);
  font-style: italic;
}

/* ===========================
   RESPONSIVE
   =========================== */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .service-content { grid-template-columns: 1fr; }
  .form-card { position: static; }
}

@media (max-width: 768px) {
  .navbar-menu { display: none; flex-direction: column; position: absolute; top: 72px; left: 0; right: 0; background-color: var(--navy3); padding: 24px; gap: 20px; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .navbar-menu.open { display: flex; }
  .hamburger { display: flex; }
  .hero-stats { gap: 32px; }
  .contact-grid { grid-template-columns: 1fr; }
  .cta-banner-inner { flex-direction: column; text-align: center; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .hero-buttons { flex-direction: column; }
  .services-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
}

/* ===========================
   RESPONSIVIDADE — HERO GRID
   =========================== */
@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .hero-card {
    padding: 36px 28px;
  }

  .navbar-logo img {
    height: 48px;
  }
}

@media (max-width: 600px) {
  .navbar-logo img {
    height: 40px;
  }
}

/* ===========================
   WHATSAPP FLOATING BUTTON
   =========================== */
.whatsapp-float {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  text-decoration: none;
}

.whatsapp-float-bubble {
  background-color: var(--navy2);
  border: 1px solid rgba(26,188,156,0.3);
  color: var(--gray);
  font-size: 0.82rem;
  padding: 10px 16px;
  max-width: 220px;
  line-height: 1.4;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
  opacity: 0;
  transform: translateX(10px);
  transition: opacity 0.3s, transform 0.3s;
  pointer-events: none;
}

.whatsapp-float:hover .whatsapp-float-bubble {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}

.whatsapp-float-icon {
  width: 60px;
  height: 60px;
  background-color: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  flex-shrink: 0;
  transition: transform 0.2s;
}

.whatsapp-float:hover .whatsapp-float-icon {
  transform: scale(1.08);
}

.whatsapp-float-icon svg {
  width: 32px;
  height: 32px;
  fill: #fff;
}

/* ===========================
   LGPD CONSENT POPUP
   =========================== */
.lgpd-popup {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9998;
  background-color: #0A1520;
  border-top: 3px solid var(--mint);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  box-shadow: 0 -4px 24px rgba(0,0,0,0.4);
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.lgpd-popup.visible {
  transform: translateY(0);
}

.lgpd-popup-text {
  flex: 1;
  min-width: 260px;
}

.lgpd-popup-text p {
  font-size: 0.88rem;
  color: var(--gray2);
  line-height: 1.6;
}

.lgpd-popup-text a {
  color: var(--mint);
  text-decoration: underline;
}

.lgpd-popup-actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
  flex-wrap: wrap;
}

.lgpd-btn-accept {
  background-color: var(--mint);
  color: var(--navy);
  border: none;
  padding: 10px 24px;
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  font-family: var(--font);
  transition: opacity 0.2s;
}

.lgpd-btn-accept:hover { opacity: 0.85; }

.lgpd-btn-reject {
  background-color: transparent;
  color: var(--gray2);
  border: 1px solid rgba(255,255,255,0.15);
  padding: 10px 24px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  font-family: var(--font);
  transition: color 0.2s;
}

.lgpd-btn-reject:hover { color: var(--white); }
