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

:root {
  --primary-pink: #ff0083;
  --primary-blue: #2248db;
  --text-dark: #1c1c1c;
  --text-muted: #555;
  --text-light: #ffffff;
  --bg-white: #ffffff;
  --bg-soft: #f6f7fb;

  --font-family: 'Montserrat', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

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

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

section {
  padding: 96px 0;
}

.hero {
  padding: 120px 0;
}

.navbar {
  height: 64px;
  background: #fff;
  border-bottom: 1px solid #eaeaea;
  display: flex;
  align-items: center;
}

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

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

.navbar-actions {
  display: flex;
  gap: 24px;
}

.navbar-actions a {
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
  color: var(--text-dark);
}

.navbar-actions a:hover {
  color: var(--primary-blue);
}

.btn {
  background: linear-gradient(135deg, var(--primary-pink), var(--primary-blue));
  color: #fff;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
}

.hero {
  position: relative;
  background-image: url("../images/banner-voxfree-principal.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,.75), rgba(0,0,0,.45));
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  z-index: 1;
}

.hero-text {
  color: #fff;
}

.hero-text h1 {
  font-size: 42px;
  line-height: 1.2;
  margin-bottom: 24px;
}

.hero-text p {
  opacity: 0.9;
  margin-bottom: 16px;
}

.hero-form {
  background: #fff;
  padding: 32px;
  border-radius: 12px;
}

.bg-white {
  background: var(--bg-white);
}

.bg-soft {
  background: var(--bg-soft);
}

.carousel-track {
  display: flex;
  gap: 32px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none; 
}

.carousel-track::-webkit-scrollbar {
  display: none; 
}

.solutions-carousel {
  padding: 100px 0;
  background: #f1f3f8;
}

.solutions-carousel h2 {
  text-align: center;
  margin-bottom: 64px;
}

.solution-item {
  min-width: 280px;
  max-width: 280px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.solution-item img {
  display: block;
  margin: 0 auto 24px; 
  width: 96px;
  height: 96px;
  object-fit: contain;
}

.solution-item h3 {
  font-size: 18px;
  margin-bottom: 10px;
}

.solution-item p {
  font-size: 14px;
  line-height: 1.6;
  color: #6b7280;
}

@media (min-width: 1024px) {
  .solution-item {
    min-width: 25%;
  }
}

@media (min-width: 1024px) {
  .solution-item {
    min-width: 320px;
    max-width: 320px;
  }

  .solution-item img {
    width: 110px;
    height: 110px;
  }
}

.benefits-carousel {
  padding: 100px 0;
  background: #ffffff;
}

.benefits-carousel h2 {
  text-align: center;
  margin-bottom: 64px;
}

.benefit-slide {
  min-width: 240px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}


.benefit-slide img {
  display: block;
  margin: 0 auto 20px;
  width: 72px;
  height: 72px;
  object-fit: contain;
}


.benefit-slide p {
  font-size: 15px;
  color: #6b7280;
}

.image-slot {
  width: 100%;
  height: 140px;
  margin-bottom: 24px;
  border-radius: 16px;
  background: linear-gradient(135deg, #e5e7eb, #f3f4f6);
}

.image-slot.small {
  height: 100px;
}

.btn.center {
  display: block;
  width: fit-content;
  margin: 64px auto 0;
}

@media (min-width: 1024px) {
  .benefit-slide {
    min-width: 260px;
  }

  .benefit-slide img {
    width: 84px;
    height: 84px;
  }
}

.help {
  background: #f1f3f8; 
  padding: 100px 0;
}

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

.help-content .grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin: 32px 0 48px;
}

.help-content h3 {
  font-size: 18px;          
  font-weight: 600;
  margin-bottom: 4px;
  position: relative;
  padding-left: 18px;
}

.help-content h3::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #7c3aed; 
  font-size: 22px;
  line-height: 1;
}

.help-content p {
  font-size: 15px;
  color: #6b7280;
  line-height: 1.6;
}

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

.footer {
  background: #f1f3f8;
  padding: 24px 16px;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.footer-logo {
  height: 38px;
  margin: 0 auto 12px;
  display: block;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 28px;
  margin-bottom: 10px;
  flex-wrap: wrap;
}

.footer-links a {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 500;
  color: #1f2937;
  text-decoration: none;
}

.footer-links a i {
  font-size: 16px;
}

.footer-links a:hover {
  opacity: 0.7;
}

.footer-copy {
  font-size: 12px;
  color: #6b7280;
}

.carousel-track {
  display: flex;
  gap: 64px;
  width: max-content;
  animation: scroll-infinite 40s linear infinite;
}

.solutions-carousel,
.benefits-carousel {
  overflow: hidden;
}

.solution-item,
.benefit-slide {
  flex: 0 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.solution-item {
  width: 280px;
}

.solution-item img {
  width: 96px;
  height: 96px;
  object-fit: contain;
  margin-bottom: 24px;
}

.solution-item h3 {
  font-size: 18px;
  margin-bottom: 12px;
}

.solution-item p {
  font-size: 14px;
  line-height: 1.6;
  color: #6b7280;
}

.benefit-slide {
  width: 240px;
}

.benefit-slide img {
  width: 88px;
  height: 88px;
  object-fit: contain;
  margin-bottom: 20px;
}

.benefit-slide p {
  font-size: 15px;
  color: #6b7280;
}

@media (min-width: 1024px) {
  .solution-item {
    width: 320px;
  }

  .benefit-slide {
    width: 260px;
  }
}

@keyframes scroll-infinite {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.cta-section {
  position: relative;
  padding: 120px 0;
  background: url("../images/banner-voxfree-cta.jpg") center / cover no-repeat;
  color: #ffffff;
  text-align: center;
  overflow: hidden;
}

.cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(15, 23, 42, 0.85),
    rgba(30, 27, 75, 0.85)
  );
  z-index: 1;
}

.cta-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
}

.cta-content h2 {
  font-size: 36px;
  line-height: 1.2;
  margin-bottom: 24px;
}

.cta-content p {
  font-size: 16px;
  line-height: 1.7;
  color: #e5e7eb;
  margin-bottom: 40px;
}

.cta-content .btn {
  margin: 0 auto;
}

@media (max-width: 768px) {
  .cta-section {
    padding: 80px 0;
  }

  .cta-content h2 {
    font-size: 28px;
  }
}
/* MOBILE */
@media (max-width: 768px) {

  section {
    padding: 64px 0;
  }

  .container {
    padding: 0 16px;
  }

  /* Navbar */
  .navbar {
    height: auto;
    padding: 12px 0;
  }

  .navbar-actions {
    display: none; 
  }

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

  /* HERO */
  .hero {
    padding: 96px 0 64px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-text h1 {
    font-size: 30px;
    line-height: 1.25;
  }

  .hero-text p {
    font-size: 15px;
  }

  .hero-form {
    padding: 24px;
  }

  .btn {
    width: 100%;
    text-align: center;
    padding: 14px 20px;
  }

  .btn.center {
    margin-top: 40px;
  }

  /* Carrosséis */
  .solutions-carousel,
  .benefits-carousel {
    padding: 72px 0;
  }

  .solutions-carousel h2,
  .benefits-carousel h2 {
    font-size: 24px;
    margin-bottom: 40px;
  }

  .carousel-track {
    gap: 32px;
    animation-duration: 28s; 
  }

  .solution-item {
    width: 240px;
  }

  .solution-item img {
    width: 80px;
    height: 80px;
  }

  .solution-item h3 {
    font-size: 16px;
  }

  .solution-item p {
    font-size: 13px;
  }

  .benefit-slide {
    width: 220px;
  }

  .benefit-slide img {
    width: 72px;
    height: 72px;
  }

  .benefit-slide p {
    font-size: 14px;
  }

  .help {
    padding: 72px 0;
  }

  .help-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .help-content h3 {
    font-size: 16px;
  }

  .help-content p {
    font-size: 14px;
  }

  .why-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .cta-section {
    padding: 72px 0;
  }

  .cta-content h2 {
    font-size: 26px;
  }

  .cta-content p {
    font-size: 15px;
  }

  /* Footer */
  .footer {
    padding: 32px 16px;
  }

  .footer-links {
    gap: 16px;
  }

  .footer-links a {
    font-size: 13px;
  }

  .footer-copy {
    font-size: 11px;
  }
}

@media (max-width: 768px) {

  html,
  body {
    overflow-x: hidden;
  }

  .solutions-carousel,
  .benefits-carousel {
    overflow: hidden;
  }

  .carousel-track {
    display: flex;
    gap: 24px;
    width: fit-content;
    max-width: none;
    animation: scroll-infinite-mobile 30s linear infinite;
    will-change: transform;
  }

  .solution-item {
    width: 240px;
    flex-shrink: 0;
  }

  .benefit-slide {
    width: 220px;
    flex-shrink: 0;
  }

}

/* Animação exclusiva para mobile */
@keyframes scroll-infinite-mobile {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}

.navbar-collapse {
  background: #ffffff;
}

.navbar-nav .nav-link {
  color: #1c1c1c !important;
  font-weight: 500;
  padding: 12px 0;
}

.navbar-nav .nav-link:hover {
  color: var(--primary-blue) !important;
}

@media (max-width: 991px) {
  .navbar-nav {
    padding: 16px 0;
  }
}
