
:root {
  --primary: #cf4452;
  --secondary: #dc8553;
  --text: #403e3f;
  --bg-light: #f8f9fa;
  --neutral: #888787;
  --white: #ffffff;
  --gradient: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  --gradient-light: linear-gradient(135deg, rgba(207, 68, 82, 0.05) 0%, rgba(220, 133, 83, 0.05) 100%);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', 'Segoe UI', system-ui, sans-serif;
}

body {
  background-color: var(--bg-light);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  width: min(1200px, 95%);
  margin: 0 auto;
  padding: 0 1rem;
}

/* HEADER */
.header {
  background-color: var(--white);
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  transition: all 0.3s ease;
}

.header.scrolled {
  padding: 0.5rem 0;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo-img {
  height: 50px;
  width: auto;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-text h1 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1.1;
}

.logo-text span {
  font-size: 0.75rem;
  color: var(--neutral);
  font-weight: 400;
}

.menu {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.menu a {
  text-decoration: none;
  color: var(--text);
  font-weight: 500;
  font-size: 0.9rem;
  transition: color 0.3s;
  position: relative;
}

.menu a:not(.btn-gradient):after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -5px;
  left: 0;
  background: var(--gradient);
  transition: width 0.3s;
}

.menu a:not(.btn-gradient):hover:after {
  width: 100%;
}

.menu a:hover {
  color: var(--primary);
}

.btn-gradient {
  background: var(--gradient);
  color: white;
  padding: 0.6rem 1.2rem;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(207, 68, 82, 0.3);
}

.btn-gradient:hover {
  transform: translateY(-3px);
  box-shadow: 0 7px 20px rgba(207, 68, 82, 0.4);
}

/* HERO SECTION */
.hero {
  padding: 10rem 0 5rem;
  background: var(--gradient-light);
  position: relative;
  overflow: hidden;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.hero-text h1 {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  text-align: left;
}

.hero-text h1 span {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-text p {
  font-size: 1.1rem;
  color: var(--neutral);
  margin-bottom: 2rem;
  max-width: 500px;
  text-align: left;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-outline {
  border: 2px solid var(--primary);
  color: var(--primary);
  padding: 0.6rem 1.2rem;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s;
  background: transparent;
}

.btn-outline:hover {
  background: rgba(207, 68, 82, 0.05);
  transform: translateY(-3px);
}

.hero-img img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  transform: perspective(1000px) rotateY(-5deg);
  transition: transform 0.5s;
}

.hero-img img:hover {
  transform: perspective(1000px) rotateY(0);
}

/* SERVICES SECTION */
.services-section {
  padding: 6rem 0;
  background: var(--white);
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
  left: 50%;
  transform: translateX(-50%);
}

.section-title:after {
  content: '';
  position: absolute;
  width: 80px;
  height: 4px;
  background: var(--gradient);
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 2px;
}

.section-sub {
  text-align: center;
  color: var(--neutral);
  max-width: 700px;
  margin: 0 auto 3rem;
  font-size: 1.1rem;
}

.services-grid {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

.service-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.service-item:nth-child(even) .service-text {
  order: 2;
}

.service-item:nth-child(even) .service-media {
  order: 1;
}

.service-text h3 {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  color: var(--text);
  position: relative;
  display: flex;
  align-items: center;
  gap: 1rem;
  text-align: left;
}

.service-text h3:after {
  content: '';
  position: absolute;
  width: 40px;
  height: 3px;
  background: var(--gradient);
  bottom: -8px;
  left: 0;
  border-radius: 2px;
}

.service-text p {
  color: var(--neutral);
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
  line-height: 1.7;
  text-align: left;
}

.service-features {
  list-style: none;
  margin-top: 1.5rem;
  text-align: left;
}

.service-features li {
  margin-bottom: 0.8rem;
  padding-left: 1.8rem;
  position: relative;
  display: flex;
  align-items: center;
}

.service-features li:before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: bold;
}

.service-media {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  position: relative;
}

.service-media video {
  width: 100%;
  height: auto;
  display: block;
}

/* CONSULTORIA SECTION */
.consultoria-section {
  padding: 6rem 0;
  background: var(--gradient-light);
}

.consultoria-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.consultoria-text h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  display: flex;
  align-items: center;
  gap: 1rem;
  text-align: left;
}

.consultoria-text h2 i {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.consultoria-text p {
  color: var(--neutral);
  margin-bottom: 2rem;
  font-size: 1.1rem;
  text-align: left;
}

.consultoria-features {
  list-style: none;
  margin-top: 1.5rem;
  text-align: left;
}

.consultoria-features li {
  margin-bottom: 1rem;
  padding-left: 1.8rem;
  position: relative;
  display: flex;
  align-items: center;
}

.consultoria-features li:before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: bold;
}

.consultoria-media {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  position: relative;
}

.consultoria-media video {
  width: 100%;
  height: auto;
  display: block;
}

/* BPO SECTION */
.bpo-section {
  padding: 6rem 0;
  background: var(--white);
}

.bpo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.bpo-text h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  display: flex;
  align-items: center;
  gap: 1rem;
  text-align: left;
}

.bpo-text h2 i {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.bpo-text p {
  color: var(--neutral);
  margin-bottom: 2rem;
  font-size: 1.1rem;
  text-align: left;
}

.bpo-features {
  list-style: none;
  margin-top: 1.5rem;
  text-align: left;
}

.bpo-features li {
  margin-bottom: 1rem;
  padding-left: 1.8rem;
  position: relative;
  display: flex;
  align-items: center;
}

.bpo-features li:before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: bold;
}

.bpo-media {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  position: relative;
  background: var(--gradient-light);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
}

.bpo-visual {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-top: 1rem;
}

.bpo-visual-item {
  background: var(--white);
  border-radius: 10px;
  padding: 1rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 140px;
  transition: transform 0.3s;
}

.bpo-visual-item:hover {
  transform: translateY(-5px);
}

.bpo-visual-item i {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.bpo-visual-item span {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text);
}

/* ABOUT SECTION */
.about-section {
  padding: 6rem 0;
  background: var(--gradient-light);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-text h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  display: flex;
  align-items: center;
  gap: 1rem;
  text-align: left;
}

.about-text h2 i {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.about-text p {
  color: var(--neutral);
  margin-bottom: 2rem;
  font-size: 1.1rem;
  text-align: left;
}

.about-text ul {
  list-style: none;
  text-align: left;
}

.about-text li {
  margin-bottom: 1rem;
  padding-left: 1.5rem;
  position: relative;
  display: flex;
  align-items: center;
}

.about-text li:before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: bold;
}

.about-img img {
  width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

/* CLIENT AREA SECTION */
.client-area-section {
  padding: 6rem 0;
  background: var(--white);
  text-align: center;
}

.client-area-content {
  max-width: 700px;
  margin: 0 auto;
}

.client-area-content h2 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.client-area-content h2 i {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.client-area-content p {
  color: var(--neutral);
  margin-bottom: 2rem;
  font-size: 1.1rem;
}

/* CONTACT SECTION */
.contact-section {
  padding: 6rem 0;
  background: var(--gradient-light);
}

.contact-form {
  max-width: 600px;
  margin: 0 auto;
  display: grid;
  gap: 1.5rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 1rem 1.2rem;
  border-radius: 10px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: var(--bg-light);
  font-size: 1rem;
  transition: all 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(207, 68, 82, 0.1);
}

.contact-form textarea {
  min-height: 150px;
  resize: vertical;
}

.contact-form button {
  width: 100%;
  padding: 1rem;
  font-size: 1.1rem;
  margin-top: 1rem;
}

/* LOCATION SECTION */
.location-section {
  padding: 4rem 0;
  background: var(--white);
}

.location-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.location-card {
  background: var(--bg-light);
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  text-align: center;
  transition: transform 0.3s;
}

.location-card:hover {
  transform: translateY(-5px);
}

.location-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.location-card p {
  color: var(--neutral);
  margin-bottom: 0.5rem;
}

.location-icon {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 1rem;
}

/* FOOTER */
.footer {
  background: var(--text);
  color: var(--white);
  padding: 3rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-column h3 {
  color: var(--white);
  margin-bottom: 1.5rem;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-column p,
.footer-column a {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 0.8rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-column a:hover {
  color: var(--white);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
}

/* ANIMATIONS */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.8s ease;
}

.fade-in.active {
  opacity: 1;
  transform: translateY(0);
}

.slide-up {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease 0.2s;
}

.slide-up.active {
  opacity: 1;
  transform: translateY(0);
}

/* WHATSAPP FLOATING BUTTON */
.whatsapp-float {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 60px;
  height: 60px;
  background: #25D366;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  box-shadow: 0 5px 15px rgba(37, 211, 102, 0.4);
  z-index: 100;
  transition: all 0.3s ease;
  animation: pulse 2s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.6);
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  }

  70% {
    box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

/* MOBILE MENU */
.mobile-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--text);
  cursor: pointer;
}

/* RESPONSIVE DESIGN */
@media (max-width: 968px) {

  .hero-content,
  .about-grid,
  .consultoria-grid,
  .bpo-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-img {
    order: -1;
  }

  .hero-img img {
    max-width: 500px;
    margin: 0 auto;
  }

  .service-item {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .service-item:nth-child(even) .service-text,
  .service-item:nth-child(even) .service-media {
    order: initial;
  }

  .menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--white);
    flex-direction: column;
    padding: 1.5rem;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  }

  .menu.active {
    display: flex;
  }

  .mobile-toggle {
    display: block;
  }

  .bpo-visual {
    justify-content: center;
  }

  .bpo-visual-item {
    width: 120px;
  }
}

@media (max-width: 768px) {
  .hero {
    padding: 8rem 0 4rem;
  }

  .cta-buttons {
    justify-content: center;
  }

  .bpo-visual-item {
    width: 100px;
  }
}

.stats-section {
  background: var(--white);
  padding: 5rem 0;
  text-align: center;
}

.stats-card {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  background: var(--gradient-light);
  padding: 3rem 2rem;
  border-radius: 20px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.stat {
  background: var(--white);
  padding: 2rem 1.5rem;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.stat h3 {
  font-size: 2rem;
  color: var(--primary);
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.stat p {
  color: var(--text);
  font-size: 0.95rem;
  font-weight: 500;
}

.stats-card-hero {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  text-align: center;
  width: 100%;
}

.stat {
  padding: 1.5rem;
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.stat:hover {
  background: var(--gradient-light);
  transform: scale(1.03);
}

.stat h3 {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 0.4rem;
}

.stat p {
  font-size: 0.9rem;
  color: var(--text);
  font-weight: 500;
}

.steps-section {
  padding: 6rem 0;
  background: var(--gradient-light);
  text-align: center;
  overflow: hidden;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2.5rem;
  margin-top: 3rem;
  position: relative;
}

.step {
  background: var(--white);
  border-radius: 15px;
  padding: 2rem 1.5rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  position: relative;
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease;
}

.step.active {
  opacity: 1;
  transform: translateY(0);
}

.step-icon {
  width: 70px;
  height: 70px;
  background: var(--gradient);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin: 0 auto 1.2rem;
  box-shadow: 0 8px 20px rgba(207, 68, 82, 0.3);
}

.step h3 {
  font-size: 1.3rem;
  margin-bottom: 0.8rem;
  color: var(--primary);
  font-weight: 700;
}

.step p {
  color: var(--neutral);
  font-size: 0.95rem;
  line-height: 1.6;
}

.steps-section {
  background: var(--white);
  padding: 6rem 0;
  text-align: center;
  position: relative;
}

.steps-timeline {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  position: relative;
  margin: 4rem 0 3rem;
}

.step-item {
  flex: 1;
  min-width: 220px;
  max-width: 250px;
  text-align: center;
  position: relative;
  padding: 1rem;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.step-item.active {
  opacity: 1;
  transform: translateY(0);
}

.step-icon {
  width: 70px;
  height: 70px;
  background: var(--gradient);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin: 0 auto 1rem;
  box-shadow: 0 10px 25px rgba(207, 68, 82, 0.3);
}

.step-item h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.step-item p {
  font-size: 0.95rem;
  color: var(--neutral);
  line-height: 1.5;
}

/* Conectores entre os passos */
.connector {
  flex: 0 0 50px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  align-self: center;
  border-radius: 10px;
  opacity: 0;
  transform: scaleX(0);
  transition: all 1s ease;
  transform-origin: left;
}

.connector.active {
  opacity: 1;
  transform: scaleX(1);
}

/* Botão CTA centralizado */
.cta-center {
  margin-top: 3rem;
}

.btn-large {
  font-size: 1.2rem;
  padding: 1rem 2rem;
  border-radius: 40px;
}

/* clientes */
.clients-section {
  background: var(--gradient-light);
  padding: 6rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.clients-carousel {
  overflow: hidden;
  width: 100%;
  position: relative;
  margin-top: 3rem;
}

.clients-track {
  display: flex;
  gap: 3rem;
  animation: scrollClients 25s linear infinite;
}

.client-item {
  flex: 0 0 auto;
  width: 180px;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.3s ease;
}

.client-item:hover {
  transform: scale(1.08);
}

.client-item img {
  width: 120px;
  height: 120px;
  object-fit: contain;
  border-radius: 10px;
  background: var(--white);
  padding: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  margin-bottom: 0.8rem;
}

.client-item span {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--primary);
}

@keyframes scrollClients {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* Pausar animação ao passar o mouse */
.clients-track:hover {
  animation-play-state: paused;
}

@media (max-width: 768px) {
  .client-item img {
    width: 90px;
    height: 90px;
  }

  .clients-track {
    gap: 1.5rem;
  }
}

.stat {
  position: relative;
  background: var(--white);
  padding: 2rem 1.5rem;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  transition: all 0.4s ease;
}

.stat::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  animation: shine 2.5s infinite;
}

@keyframes shine {
  100% {
    left: 100%;
  }
}

.stat h3 {
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary);
  animation: popUp 0.8s ease forwards;
}

@keyframes popUp {
  from {
    transform: scale(0.8);
    opacity: 0;
  }

  to {
    transform: scale(1);
    opacity: 1;
  }
}

.troca-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.troca-right {
  background: var(--white);
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  text-align: left;
}

.troca-right h3 {
  color: var(--primary);
  margin-bottom: 1.5rem;
}

details {
  background: var(--bg-light);
  border-radius: 10px;
  padding: 1rem 1.2rem;
  margin-bottom: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

details summary {
  font-weight: 600;
  color: var(--text);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

details[open] {
  background: var(--gradient-light);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

details p {
  margin-top: 0.8rem;
  color: var(--neutral);
}

/* ===== TROCAR DE CONTADOR ===== */
.progress-wrapper {
  position: relative;
  margin: 4rem 0 3rem;
  padding-left: 40px;
  border-left: 4px solid var(--gradient);
}

.progress-line {
  position: absolute;
  top: 0;
  left: 40px;
  width: 4px;
  height: 0;
  background: var(--gradient);
  border-radius: 4px;
  transition: height 2s ease;
}

.step-card {
  display: flex;
  align-items: flex-start;
  margin-bottom: 2.5rem;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.step-card.active {
  opacity: 1;
  transform: translateY(0);
}

.step-marker {
  width: 60px;
  height: 60px;
  background: var(--white);
  border: 3px solid var(--primary);
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-right: 1rem;
  position: relative;
  z-index: 2;
  transition: all 0.4s ease;
}

.step-card.active .step-marker {
  background: var(--gradient);
  color: #fff;
  transform: scale(1.1);
  box-shadow: 0 0 15px rgba(207, 68, 82, 0.4);
}

.step-content h3 {
  margin-bottom: 0.5rem;
  color: var(--primary);
  font-size: 1.2rem;
  font-weight: 700;
}

.step-content p {
  color: var(--neutral);
  font-size: 0.95rem;
  line-height: 1.6;
}

@keyframes fillLine {
  from {
    height: 0;
  }

  to {
    height: 100%;
  }
}

@media (max-width: 900px) {
  .troca-grid {
    grid-template-columns: 1fr;
  }

  .progress-wrapper {
    border-left: none;
    padding-left: 0;
  }

  .progress-line {
    display: none;
  }
}


/* ===============================
   HERO STATS — GRID ORGANIZADO
   =============================== */

/* 2 colunas para desktop */
.stats-card-hero {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    text-align: center;
    width: 100%;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
  }
  
  /* Cartões internos */
  .stat {
    padding: 2rem 1.5rem;
    background: #fff;
    border-bottom: 1px solid rgba(0,0,0,0.05);
  }
  
  /* Ocupa a largura TOTAL */
  .stat.full {
    grid-column: 1 / -1;
    background: linear-gradient(90deg, #fff, #fff7f7);
    border-bottom: none;
  }
  
  /* Mobile vira 1 coluna */
  @media (max-width: 768px) {
    .stats-card-hero {
      grid-template-columns: 1fr;
    }
  }
  

/* Ajuste para os cards das estatísticas */
.stats-card-hero {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    width: 100%;
    padding: 20px;
  }
  
  /* Cada card */
  .stat {
    min-height: 130px; /* ← AUMENTA a altura padrão */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 25px 15px;
  }

  
  /* Wrapper vertical da linha de progresso */
.progress-wrapper {
    position: relative;
    margin: 4rem 0 3rem;
    padding-left: 45px;
  }
  
  /* Linha vertical com gradiente animado */
  .progress-line {
    position: absolute;
    top: 0;
    left: 15px;
    width: 6px;
    height: 0;
    background: linear-gradient(180deg, #cf4452, #dc8553);
    border-radius: 20px;
    animation-fill-mode: forwards;
    filter: drop-shadow(0 3px 6px rgba(207, 68, 82, 0.25));
    opacity: 0;
  }
  
  /* Efeito premium de brilho descendo pela linha */
  .progress-line::after {
    content: "";
    position: absolute;
    top: -20px;
    left: 0;
    width: 100%;
    height: 30px;
    background: linear-gradient(180deg, rgba(255,255,255,0.6), transparent);
    animation: glowLine 2.5s ease-out forwards;
    opacity: 0;
  }
  
  @keyframes glowLine {
    0% { opacity: 0; transform: translateY(0); }
    30% { opacity: 1; }
    100% { opacity: 0; transform: translateY(220px); }
  }
  
  /* Marcador */
  .step-marker {
    width: 60px;
    height: 60px;
    background: #fff;
    border: 3px solid var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.4rem;
    transition: 0.4s;
    box-shadow: 0 0 0 rgba(0,0,0,0);
  }
  
  /* Quando ativo → brilha e cresce */
  .step-card.active .step-marker {
    background: var(--gradient);
    color: #fff;
    transform: scale(1.13);
    box-shadow: 0 6px 16px rgba(207, 68, 82, 0.35);
  }
  
  /* Card do passo */
  .step-card {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2.8rem;
    opacity: 0;
    transform: translateY(25px);
    transition: all 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  }
  
  /* Quando aparece */
  .step-card.active {
    opacity: 1;
    transform: translateY(0);
  }
  
  /* Animação suave da linha crescendo */
  @keyframes growLine {
    from { height: 0; opacity: 0; }
    to { height: 100%; opacity: 1; }
  }



/* ===============================
   SEÇÃO ATENDIMENTO BRASIL
================================= */

.atendimento-section {
  padding: 4rem 0;
}

.atendimento-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.atendimento-mapa img {
  width: 100%;
  max-width: 480px;
  display: block;
  margin: 0 auto;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.12));
}

/* TÍTULO */
.atendimento-text h2 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 1rem;
  position: relative;
}

.atendimento-text .linha {
  width: 4px;
  height: 28px;
  background: var(--primary);
  display: inline-block;
  margin-right: 0.5rem;
  vertical-align: middle;
}

.atendimento-text p {
  color: var(--neutral);
  line-height: 1.6;
  margin-bottom: 2rem;
  max-width: 420px;
}

/* BOTÃO */
.btn-whats {
  background: var(--secondary);
  color: #fff;
  padding: 0.9rem 2rem;
  border-radius: 8px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  transition: 0.3s ease;
}

.btn-whats:hover {
  background: #d45f10;
}

.whats-info {
  display: block;
  margin-top: 0.7rem;
  font-size: 0.9rem;
  color: var(--neutral);
}

/* RESPONSIVO */
@media (max-width: 900px) {
  .atendimento-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .atendimento-text p {
    margin: 0 auto 1.5rem;
  }

  .atendimento-text h2 {
    justify-content: center;
  }
}

