/* 
   SENIC SERVIÇOS - STYLE.CSS
   Landing page de alta conversão para Google Ads
   Todos os direitos reservados © 2026
    */

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

html {
  scroll-behavior: smooth;
  -webkit-tap-highlight-color: transparent;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: #000;
  color: #fff;
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
}

:root {
  --gold: #D4AF37;
  --gold-light: #F0D060;
  --gold-dark: #B8962E;
  --gold-gradient: linear-gradient(135deg, #C9A84C, #D4AF37, #E2C55A);
  --gold-gradient-hover: linear-gradient(135deg, #B8962E, #C9A84C, #D4AF37);
  --dark: #000;
  --dark-2: #0a0a0a;
  --dark-3: #111;
  --dark-4: #1a1a1a;
  --gray: #999;
  --gray-light: #ccc;
  --white: #fff;
  --container: 1200px;
  --radius: 12px;
  --radius-lg: 20px;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  padding: 60px 0;
}

.section-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--gold);
  margin-bottom: 14px;
}

.section-title {
  font-size: 24px;
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 14px;
  letter-spacing: -0.3px;
}

.section-sub {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.55;
  max-width: 600px;
}

.section-sub.centered {
  margin: 0 auto;
  text-align: center;
}

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

.text-gold {
  color: var(--gold);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 12px;
  padding: 10px 20px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  white-space: nowrap;
  min-width: 140px;
}

.btn-gold {
  background: var(--gold-gradient);
  color: #000;
  box-shadow: 0 4px 20px rgba(212, 175, 55, 0.3);
}

.btn-gold:hover {
  background: var(--gold-gradient-hover);
  box-shadow: 0 6px 30px rgba(212, 175, 55, 0.5);
  transform: translateY(-2px);
}

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

.btn-outline:hover {
  background: var(--gold);
  color: #000;
  transform: translateY(-2px);
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(212, 175, 55, 0.1);
  transition: all 0.3s ease;
}

.header.scrolled {
  background: rgba(0, 0, 0, 0.97);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px;
  max-width: var(--container);
  margin: 0 auto;
}

.header-logo {
  display: flex;
  align-items: center;
}

.header-logo img {
  height: 34px;
  width: auto;
  transition: opacity 0.3s ease;
}

.header-logo:hover img {
  opacity: 0.8;
}

.header-cta .btn {
  padding: 7px 16px;
  font-size: 10px;
  min-width: auto;
}

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: 80px 0 50px;
  overflow: hidden;
}

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

.hero-bg picture,
.hero-bg img {
  width: 100%;
  height: 100%;
}

.hero-bg img {
  object-fit: cover;
  object-position: 70% 20%;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.65) 50%, rgba(0, 0, 0, 0.8) 100%);
  z-index: 1;
}

.hero-overlay-2 {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, #000 0%, transparent 25%, transparent 70%, #000 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid rgba(212, 175, 55, 0.25);
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 11px;
  color: var(--gold);
  font-weight: 400;
  margin-bottom: 20px;
}

.hero-badge span {
  color: var(--gold-light);
}

.hero h1 {
  font-size: 30px;
  font-weight: 600;
  line-height: 1.08;
  margin-bottom: 16px;
  letter-spacing: -0.8px;
}

.hero h1 .highlight {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero p {
  font-size: 15px;
  color: var(--gray-light);
  line-height: 1.55;
  margin-bottom: 24px;
  max-width: 540px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.hero-actions .btn {
  font-size: 11px;
  padding: 10px 18px;
  min-width: 130px;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

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

.hero-stat-num {
  font-size: 22px;
  font-weight: 600;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-stat-label {
  font-size: 11px;
  color: var(--gray);
  margin-top: 1px;
}

.qualifying {
  background: var(--dark-2);
  position: relative;
}

.qualifying::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  max-width: 400px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.qualifying-grid {
  display: grid;
  gap: 12px;
  margin-top: 32px;
}

.qualifying-card {
  background: var(--dark-3);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius);
  padding: 18px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  transition: all 0.3s ease;
}

.qualifying-card:hover {
  border-color: rgba(212, 175, 55, 0.3);
  background: var(--dark-4);
  transform: translateX(4px);
}

.qualifying-icon {
  width: 36px;
  height: 36px;
  min-width: 36px;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.qualifying-icon svg {
  width: 18px;
  height: 18px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.8;
}

.qualifying-text h4 {
  font-size: 15px;
  font-weight: 400;
  margin-bottom: 3px;
}

.qualifying-text p {
  font-size: 13px;
  color: var(--gray);
  line-height: 1.5;
}

.services {
  background: #000;
}

.services-grid {
  display: grid;
  gap: 12px;
  margin-top: 32px;
}

.service-card {
  background: var(--dark-3);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius);
  padding: 22px 18px;
  text-align: center;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gold-gradient);
  opacity: 0;
  transition: opacity 0.4s ease;
}

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

.service-card:hover {
  border-color: rgba(212, 175, 55, 0.3);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.service-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 12px;
  background: rgba(212, 175, 55, 0.08);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.8;
}

.service-card h4 {
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 6px;
}

.service-card p {
  font-size: 13px;
  color: var(--gray);
  line-height: 1.5;
}

.about {
  background: var(--dark-2);
  position: relative;
}

.about-grid {
  display: grid;
  gap: 32px;
  margin-top: 32px;
}

.about-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
}

.about-image img {
  width: 100% !important;
  max-width: 400px !important;
  aspect-ratio: 1 / 1 !important;
  height: auto !important;
  object-fit: cover !important;
  display: block !important;
  border-radius: var(--radius-lg);
}

.about-image::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(212, 175, 55, 0.15);
  pointer-events: none;
}

.about-text h3 {
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 14px;
}

.about-text p {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.55;
  margin-bottom: 12px;
}

.about-features {
  display: grid;
  gap: 10px;
  margin-top: 16px;
}

.about-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--gray-light);
  line-height: 1.5;
}

.about-feature .check {
  width: 20px;
  height: 20px;
  min-width: 20px;
  background: rgba(212, 175, 55, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-feature .check svg {
  width: 11px;
  height: 11px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 3;
}

.comparison {
  background: #000;
}

.comparison-grid {
  display: grid;
  gap: 0;
  margin-top: 32px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.comparison-col {
  padding: 24px 18px;
}

.comparison-col.bad {
  background: rgba(255, 255, 255, 0.02);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.comparison-col.good {
  background: rgba(212, 175, 55, 0.03);
}

.comparison-col h4 {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 500;
  margin-bottom: 16px;
}

.comparison-items {
  display: grid;
  gap: 12px;
}

.comparison-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 13px;
  line-height: 1.5;
}

.comparison-item .icon {
  min-width: 16px;
  margin-top: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.comparison-item .icon svg {
  width: 14px;
  height: 14px;
  stroke-width: 2.5;
  fill: none;
}

.comparison-item .icon.x svg {
  stroke: #ff4444;
}

.comparison-item .icon.check svg {
  stroke: var(--gold);
}

.process {
  background: var(--dark-2);
}

.process-grid {
  display: grid;
  gap: 12px;
  margin-top: 32px;
}

.process-step {
  background: var(--dark-3);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius);
  padding: 18px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  transition: all 0.3s ease;
}

.process-step:hover {
  border-color: rgba(212, 175, 55, 0.25);
  transform: translateY(-2px);
}

.process-num {
  width: 40px;
  height: 40px;
  min-width: 40px;
  background: var(--gold-gradient);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 16px;
  color: #000;
}

.process-info h4 {
  font-size: 15px;
  font-weight: 400;
  margin-bottom: 3px;
}

.process-info p {
  font-size: 13px;
  color: var(--gray);
  line-height: 1.5;
}

.clients {
  background: #000;
}

.carousel-wrap {
  margin-top: 32px;
  overflow: hidden;
  position: relative;
  cursor: grab;
  -webkit-user-select: none;
  user-select: none;
}

.carousel-wrap:active {
  cursor: grabbing;
}

.carousel-track {
  display: flex;
  gap: 16px;
  width: max-content;
  will-change: transform;
}

.client-card {
  background: var(--dark-3);
  border: 1px solid rgba(212, 175, 55, 0.1);
  border-radius: var(--radius);
  padding: 24px 22px;
  min-width: 240px;
  max-width: 260px;
  flex-shrink: 0;
  text-align: center;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
  pointer-events: auto;
}

.client-card:hover {
  border-color: rgba(212, 175, 55, 0.3);
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
}

.client-card h4 {
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 4px;
}

.client-card .since {
  font-size: 11px;
  color: var(--gold);
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.client-card p {
  font-size: 13px;
  color: var(--gray);
  line-height: 1.5;
}

.faq {
  background: var(--dark-2);
}

.faq-list {
  margin-top: 32px;
  display: grid;
  gap: 8px;
}

.faq-item {
  background: var(--dark-3);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.3s ease;
}

.faq-item.active {
  border-color: rgba(212, 175, 55, 0.3);
}

.faq-question {
  width: 100%;
  padding: 16px 18px;
  background: none;
  border: none;
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 500;
  text-align: left;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.faq-question .arrow {
  width: 18px;
  height: 18px;
  min-width: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.faq-question .arrow svg {
  width: 12px;
  height: 12px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 2.5;
}

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

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding: 0 18px 16px;
}

.faq-answer p {
  font-size: 13px;
  color: var(--gray);
  line-height: 1.55;
}

.cta-final {
  position: relative;
  padding: 60px 0;
  overflow: hidden;
}

.cta-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.cta-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.8) 100%);
  z-index: 1;
}

.cta-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.cta-content h2 {
  font-size: 24px;
  font-weight: 400;
  margin-bottom: 12px;
  letter-spacing: -0.3px;
  line-height: 1.15;
}

.cta-content p {
  font-size: 15px;
  color: var(--gray);
  line-height: 1.55;
  margin-bottom: 24px;
  max-width: 460px;
  margin-left: auto;
  margin-right: auto;
}

.cta-content .btn {
  font-size: 12px;
  padding: 12px 28px;
  min-width: 160px;
}

.footer {
  background: var(--dark-2);
  border-top: 1px solid rgba(212, 175, 55, 0.08);
  padding: 54px 0;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  text-align: center;
}

.footer-logo img {
  height: 44px;
  width: auto;
  opacity: 0.9;
  transition: opacity 0.3s ease;
}

.footer-logo:hover img {
  opacity: 0.7;
}

.footer-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  font-size: 13px;
  color: var(--gray);
  line-height: 1.5;
}

.footer-info a {
  color: var(--gold);
}

.footer-info a:hover {
  text-decoration: underline;
}

.footer-copy {
  font-size: 11px;
  color: #555;
  line-height: 1.5;
}

.footer-sep {
  color: #444;
  margin: 0 4px;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: rgba(10, 10, 10, 0.98);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid rgba(212, 175, 55, 0.15);
  padding: 14px 20px;
  transform: translateY(100%);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.cookie-banner.show {
  transform: translateY(0);
}

.cookie-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
}

.cookie-inner p {
  font-size: 12px;
  color: var(--gray);
  line-height: 1.55;
}

.cookie-inner p a {
  color: var(--gold);
  text-decoration: underline;
}

.cookie-inner .btn {
  padding: 7px 20px;
  font-size: 11px;
  font-weight: 500;
  min-width: auto;
}

.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 999;
  width: 48px;
  height: 48px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: all 0.3s ease;
}

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

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

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.animate-fade {
  opacity: 0;
  animation: fadeUp 0.6s ease forwards;
}

.animate-left {
  opacity: 0;
  animation: fadeInLeft 0.7s ease forwards;
}

.animate-right {
  opacity: 0;
  animation: fadeInRight 0.7s ease forwards;
}

.delay-1 {
  animation-delay: 0.1s;
}

.delay-2 {
  animation-delay: 0.2s;
}

.delay-3 {
  animation-delay: 0.3s;
}

.delay-4 {
  animation-delay: 0.4s;
}

@media (min-width: 768px) {
  .section { padding: 80px 0; }
  .section-title { font-size: 30px; }
  .header-inner { padding: 12px 20px; }
  .header-logo img { height: 38px; }
  .header-cta .btn { padding: 8px 18px; font-size: 11px; }
  .hero { padding: 90px 0 60px; }
  .hero-bg { background: #000; }
  .hero-bg picture, .hero-bg img { width: 78%; height: 100%; object-fit: cover; object-position: 70% 20%; position: absolute; right: 0; bottom: 0; }
  .hero-bg::after { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 1; background: linear-gradient(135deg, #000 0%, #000 20%, transparent 50%); pointer-events: none; }
  .hero h1 { font-size: 44px; }
  .hero p { font-size: 17px; }
  .hero-overlay { background: linear-gradient(135deg, rgba(0, 0, 0, 0.92) 0%, rgba(0, 0, 0, 0.5) 55%, rgba(0, 0, 0, 0.75) 100%); }
  .hero-content { max-width: 55%; }
  .hero-stats { justify-content: flex-start; gap: 32px; }
  .hero-stat { text-align: left; }
  .hero-stat-num { font-size: 26px; }
  .hero-stat-label { font-size: 12px; }
  .hero-actions .btn { font-size: 12px; padding: 10px 20px; min-width: 140px; }
  .hero-badge { font-size: 12px; padding: 6px 16px; }
  .qualifying-grid { grid-template-columns: 1fr 1fr; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .process-grid { grid-template-columns: 1fr 1fr; }
  .about-grid { grid-template-columns: 1fr 1fr; align-items: center; }
  .about-image { max-width: 350px; }
  .about-image img { max-width: 350px !important; }
  .comparison-grid { grid-template-columns: 1fr 1fr; }
  .comparison-col.bad { border-bottom: none; border-right: 1px solid rgba(255, 255, 255, 0.06); }
  .comparison-col { padding: 32px 24px; }
  .footer { padding: 72px 0; }
  .footer-inner { flex-direction: row; justify-content: space-between; text-align: left; }
  .footer-info { align-items: flex-start; }
  .client-card { min-width: 220px; max-width: 240px; padding: 20px 18px; }
}

@media (min-width: 1024px) {
  .section { padding: 100px 0; }
  .section-title { font-size: 36px; }
  .hero { min-height: 100vh; }
  .hero h1 { font-size: 52px; }
  .hero p { font-size: 18px; }
  .hero-overlay { background: linear-gradient(135deg, rgba(0, 0, 0, 0.93) 0%, rgba(0, 0, 0, 0.4) 55%, rgba(0, 0, 0, 0.7) 100%); }
  .hero-content { max-width: 50%; }
  .services-grid { grid-template-columns: repeat(3, 1fr); gap: 16px; }
  .process-grid { grid-template-columns: repeat(3, 1fr); gap: 16px; }
  .qualifying-grid { gap: 16px; }
  .hero-stats { gap: 44px; }
  .hero-stat-num { font-size: 30px; }
  .about-image { max-width: 400px; }
  .about-image img { max-width: 400px !important; }
  .cta-content h2 { font-size: 36px; }
  .footer { padding: 84px 0; }
  .footer-logo img { height: 50px; }
  .client-card { min-width: 250px; max-width: 280px; padding: 26px 24px; }
}

@media (min-width: 1440px) {
  .hero h1 { font-size: 58px; }
  .container { padding: 0 40px; }
  .hero-content { max-width: 45%; }
  .footer { padding: 100px 0; }
}

@media (min-width: 600px) {
  .cookie-inner { flex-direction: row; text-align: left; gap: 16px; }
  .cookie-inner .btn { flex-shrink: 0; }
}