/* ============================================
   Viza Rental — Vanilla CSS
   Converted from Tailwind + React Components
   ============================================ */

/* --- CSS Variables --- */
:root {
  --background: hsl(0, 0%, 100%);
  --foreground: hsl(0, 0%, 10%);
  --card: hsl(0, 0%, 98%);
  --card-foreground: hsl(0, 0%, 10%);
  --primary: hsl(0, 72%, 50%);
  --primary-foreground: hsl(0, 0%, 100%);
  --secondary: hsl(0, 0%, 95%);
  --muted: hsl(0, 0%, 95%);
  --muted-foreground: hsl(0, 0%, 40%);
  --accent: hsl(0, 0%, 93%);
  --accent-foreground: hsl(0, 0%, 10%);
  --border: hsl(0, 0%, 88%);
  --ring: hsl(0, 72%, 50%);
  --radius: 0.5rem;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'DM Sans', sans-serif;
  background-color: var(--background);
  color: var(--foreground);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 0.04em;
  line-height: 1;
}

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

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

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

/* --- Container --- */
.container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  border-radius: 9999px;
  transition: all 0.2s ease;
  white-space: nowrap;
  cursor: pointer;
  text-decoration: none;
  border: none;
}

.btn-primary {
  background-color: var(--primary);
  color: var(--primary-foreground);
  box-shadow: 0 10px 25px -5px hsla(0, 72%, 50%, 0.3);
}

.btn-primary:hover {
  background-color: hsl(0, 72%, 44%);
}

.btn-whatsapp {
  background-color: #25D366;
  color: #fff;
  box-shadow: 0 10px 25px -5px rgba(37, 211, 102, 0.35);
}

.btn-whatsapp:hover {
  background-color: #1fb855;
}

.btn-outline {
  background-color: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-outline:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
}

.btn-md {
  padding: 0.625rem 1.5rem;
  font-size: 0.875rem;
}

.btn-lg {
  padding: 0.875rem 2.5rem;
  font-size: 1.125rem;
}

.btn-xl {
  padding: 1rem 3rem;
  font-size: 1.25rem;
}

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

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

@keyframes bounceArrow {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered delays */
.fade-up[data-delay="1"] { transition-delay: 0.1s; }
.fade-up[data-delay="2"] { transition-delay: 0.2s; }
.fade-up[data-delay="3"] { transition-delay: 0.3s; }
.fade-up[data-delay="4"] { transition-delay: 0.4s; }

.hero-fade-in {
  animation: heroFadeIn 0.8s ease-out forwards;
}

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background-color: rgba(255, 255, 255, 1);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-bottom: 1px solid var(--border);
}

.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4rem;
  padding: 0 1rem;
}

.navbar__logo img {
  height: 2.5rem;
}

.navbar__links {
  display: none;
  align-items: center;
  gap: 2rem;
}

.navbar__links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--muted-foreground);
  transition: color 0.2s ease;
}

.navbar__links a:hover {
  color: var(--primary);
}

.navbar__cta {
  display: none;
}

.navbar__hamburger {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--foreground);
}

.navbar__hamburger svg {
  width: 24px;
  height: 24px;
}

/* Mobile menu */
.navbar__mobile {
  display: none;
  background-color: var(--background);
  border-bottom: 1px solid var(--border);
  padding: 1rem 1.5rem 1.5rem;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 50;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.navbar__mobile.open {
  display: block;
}

.navbar__mobile a {
  display: block;
  padding: 0.875rem 0;
  font-size: 1rem;
  font-weight: 500;
  color: var(--foreground);
  border-bottom: 1px solid hsla(0, 0%, 88%, 0.5);
  transition: color 0.2s ease;
}

.navbar__mobile a:last-of-type {
  border-bottom: none;
}

.navbar__mobile a:hover {
  color: var(--primary);
}

.navbar__mobile .btn {
  width: 100%;
  margin-top: 1rem;
  color: var(--primary-foreground);
  text-align: center;
}

@media (min-width: 768px) {
  .navbar__links {
    display: flex;
  }

  .navbar__cta {
    display: block;
  }

  .navbar__hamburger {
    display: none;
  }

  .navbar__mobile {
    display: none !important;
  }
}

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
}

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

.hero__bg-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.45);
}

.hero__bg-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 1), transparent, rgba(0, 0, 0, 0.5));
}

.hero__content {
  position: relative;
  z-index: 20;
  text-align: center;
  padding: 0 1rem;
}

.hero__badge {
  display: inline-block;
  margin-bottom: 1.25rem;
  padding: 0.375rem 1.25rem;
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  border-radius: 9999px;
}

.hero h1 {
  font-size: 3rem;
  font-weight: 700;
  line-height: 0.95;
  margin-bottom: 1.5rem;
  color: #fff;
}

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

.hero__description {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 42rem;
  margin: 0 auto 2.5rem;
  font-weight: 300;
  line-height: 1.7;
}

.hero__buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
  align-items: center;
}

.hero__chevron {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
  animation: bounceArrow 2s infinite ease-in-out;
  color: rgba(255, 255, 255, 0.5);
}

.hero__chevron svg {
  width: 28px;
  height: 28px;
}

@media (min-width: 640px) {
  .hero h1 {
    font-size: 3.75rem;
  }

  .hero__buttons {
    flex-direction: row;
  }
}

@media (min-width: 768px) {
  .hero h1 {
    font-size: 6rem;
  }

  .hero__description {
    font-size: 1.25rem;
  }
}

/* ============================================
   ABOUT
   ============================================ */
.about {
  padding: 5rem 0;
  background-color: var(--card);
}

.about__header {
  max-width: 48rem;
  margin: 0 auto 4rem;
  text-align: center;
}

.section-label {
  color: var(--primary);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-family: 'DM Sans', sans-serif;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-top: 0.75rem;
  color: var(--foreground);
}

.about__text {
  color: var(--muted-foreground);
  font-size: 1.125rem;
  line-height: 1.7;
  margin-top: 1.5rem;
}

/* Stats */
.about__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 42rem;
  margin: 0 auto 4rem;
}

.about__stat {
  text-align: center;
}

.about__stat-value {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary);
}

.about__stat-label {
  font-size: 0.75rem;
  color: var(--muted-foreground);
  margin-top: 0.5rem;
  font-weight: 500;
}

/* Highlights */
.about__highlights {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.about__highlight {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  padding: 1.5rem;
  border-radius: 1rem;
  background-color: var(--accent);
  transition: background-color 0.2s ease;
}

.about__highlight:hover {
  background-color: hsla(0, 0%, 93%, 0.8);
}

.about__highlight-icon {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 0.75rem;
  background-color: hsla(0, 72%, 50%, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.about__highlight-icon svg {
  width: 28px;
  height: 28px;
  color: var(--primary);
}

.about__highlight span {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--foreground);
  text-align: center;
}

@media (min-width: 768px) {
  .about {
    padding: 7rem 0;
  }

  .section-title {
    font-size: 3.75rem;
  }

  .about__stat-value {
    font-size: 3.75rem;
  }

  .about__stat-label {
    font-size: 0.875rem;
  }

  .about__highlights {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* ============================================
   EQUIPMENT SECTION
   ============================================ */
.equipment {
  padding: 5rem 0;
}

.equipment__header {
  text-align: center;
  margin-bottom: 3rem;
}

/* Tabs */
.equipment__tabs {
  display: flex;
  justify-content: flex-start;
  margin-bottom: 1.5rem;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 0 1rem;
}

.equipment__tabs::-webkit-scrollbar {
  display: none;
}

.equipment__tabs-inner {
  display: inline-flex;
  background-color: var(--card);
  border: 1px solid var(--border);
  border-radius: 9999px;
  padding: 0.25rem;
  gap: 0.25rem;
  flex-shrink: 0;
  margin: 0 auto;
}

.equipment__tab {
  padding: 0.5rem 0.875rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 600;
  transition: all 0.2s ease;
  color: var(--muted-foreground);
  font-family: 'DM Sans', sans-serif;
  white-space: nowrap;
}

.equipment__tab:hover {
  color: var(--foreground);
}

.equipment__tab.active {
  background-color: var(--primary);
  color: var(--primary-foreground);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.equipment__description {
  text-align: center;
  color: var(--muted-foreground);
  max-width: 42rem;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
  animation: fadeIn 0.3s ease;
}

/* Carousel */
.equipment__carousel {
  position: relative;
  animation: fadeIn 0.3s ease;
}

.equipment__carousel-track {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 0.5rem 0;
  overscroll-behavior-x: contain;
}

.equipment__carousel-track::after {
  content: '';
  flex: 0 0 1px;
}

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

.equipment__carousel-track--centered {
  justify-content: center;
  overflow-x: visible;
}

/* Equipment card */
.equipment-card {
  flex: 0 0 calc(100% - 1rem);
  scroll-snap-align: start;
}

.equipment-card__inner {
  background-color: var(--card);
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid var(--border);
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.equipment-card__inner:hover {
  border-color: hsla(0, 72%, 50%, 0.3);
}

.equipment-card__image {
  aspect-ratio: 4/3;
  background-color: var(--accent);
  overflow: hidden;
}

.equipment-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.equipment-card__inner:hover .equipment-card__image img {
  transform: scale(1.05);
}

.equipment-card__body {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 20px;
}

.equipment-card__body .btn {
  margin-top: auto;
}

.equipment-card__name {
  font-size: 0.75rem;
  color: var(--primary);
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-family: 'DM Sans', sans-serif;
}

.equipment-card__model {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--foreground);
}

.equipment-card__desc {
  font-size: 0.85rem;
  color: var(--muted-foreground);
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.equipment-card__body .btn {
  width: 100%;
}

/* Carousel arrows */
.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background-color: var(--background);
  border: 1px solid var(--border);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.2s ease;
  z-index: 10;
  color: var(--foreground);
}

.carousel-arrow:hover {
  background-color: var(--accent);
}

.carousel-arrow svg {
  width: 20px;
  height: 20px;
}

.carousel-arrow--prev {
  left: 0;
  transform: translateY(-50%) translateX(-1rem);
}

.carousel-arrow--next {
  right: 0;
  transform: translateY(-50%) translateX(1rem);
}

@media (min-width: 480px) {
  .equipment-card {
    flex: 0 0 280px;
  }
}

@media (min-width: 640px) {
  .equipment-card {
    flex: 0 0 320px;
  }
}

@media (min-width: 768px) {
  .equipment {
    padding: 7rem 0;
  }

  .equipment__tabs {
    padding: 0;
  }

  .equipment__tab {
    padding: 0.625rem 1.5rem;
    font-size: 0.875rem;
  }
}

@media (min-width: 1024px) {
  .equipment-card {
    flex: 0 0 360px;
  }
}

/* ============================================
   DIFFERENTIALS
   ============================================ */
.differentials {
  padding: 5rem 0;
}

.differentials__header {
  text-align: center;
  margin-bottom: 4rem;
}

.differentials__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.differential-card {
  background-color: var(--card);
  border-radius: 1rem;
  padding: 2rem;
  text-align: center;
  border: 1px solid var(--border);
  transition: all 0.3s ease;
}

.differential-card:hover {
  border-color: hsla(0, 72%, 50%, 0.2);
}

.differential-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  border-radius: 1rem;
  background-color: hsla(0, 72%, 50%, 0.1);
  margin-bottom: 1.25rem;
  transition: background-color 0.2s ease;
}

.differential-card:hover .differential-card__icon {
  background-color: hsla(0, 72%, 50%, 0.15);
}

.differential-card__icon svg {
  width: 28px;
  height: 28px;
  color: var(--primary);
}

.differential-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 0.75rem;
}

.differential-card p {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  line-height: 1.7;
}

@media (min-width: 768px) {
  .differentials {
    padding: 7rem 0;
  }

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

@media (min-width: 1024px) {
  .differentials__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* ============================================
   SUBSCRIPTION (Assinatura Anual)
   ============================================ */
.subscription {
  padding: 5rem 0;
  background-color: var(--foreground);
  color: var(--background);
  position: relative;
  overflow: hidden;
}

.subscription__glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background-color: hsla(0, 72%, 50%, 0.08);
  border-radius: 50%;
  filter: blur(150px);
  pointer-events: none;
}

.subscription__inner {
  position: relative;
  z-index: 10;
}

.subscription__header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.subscription__header .section-title {
  color: var(--background);
}

.subscription__subtitle {
  color: var(--primary);
  font-size: 1.25rem;
  font-weight: 600;
  margin-top: 1rem;
}

.subscription__description {
  color: rgba(255, 255, 255, 0.6);
  font-size: 1.125rem;
  margin-top: 1rem;
  max-width: 44rem;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

.subscription__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.subscription-card {
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1rem;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
}

.subscription-card:hover {
  background-color: rgba(255, 255, 255, 0.08);
  border-color: hsla(0, 72%, 50%, 0.3);
}

.subscription-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  border-radius: 1rem;
  background-color: hsla(0, 72%, 50%, 0.15);
  margin-bottom: 1.25rem;
  transition: background-color 0.2s ease;
}

.subscription-card:hover .subscription-card__icon {
  background-color: hsla(0, 72%, 50%, 0.25);
}

.subscription-card__icon svg {
  width: 28px;
  height: 28px;
  color: var(--primary);
}

.subscription-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--background);
  margin-bottom: 0.75rem;
}

.subscription-card p {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
}

.subscription__footer {
  text-align: center;
}

.subscription__note {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 1.5rem;
  font-weight: 500;
}

@media (min-width: 768px) {
  .subscription {
    padding: 7rem 0;
  }

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

@media (min-width: 1024px) {
  .subscription__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* ============================================
   PARTNERSHIPS
   ============================================ */
.partnerships {
  padding: 5rem 0;
  background-color: var(--foreground);
  color: var(--background);
  position: relative;
  overflow: hidden;
}

.partnerships__glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background-color: hsla(0, 72%, 50%, 0.1);
  border-radius: 50%;
  filter: blur(150px);
  pointer-events: none;
}

.partnerships__inner {
  position: relative;
  z-index: 10;
}

.partnerships__header {
  text-align: center;
  margin-bottom: 4rem;
}

.partnerships__header .section-title {
  color: var(--background);
}

.partnerships__subtitle {
  color: rgba(255, 255, 255, 0.6);
  font-size: 1.125rem;
  margin-top: 1rem;
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

/* Testimonial Carousel */
.testimonial-carousel {
  position: relative;
  max-width: 52rem;
  margin: 0 auto 3rem;
  padding: 0 1rem;
}

@media (min-width: 768px) {
  .testimonial-carousel {
    padding: 0 3.5rem;
    margin-bottom: 4rem;
  }
}

.testimonial-carousel__viewport {
  overflow: hidden;
  border-radius: 1.5rem;
}

.testimonial-carousel__track {
  display: flex;
  transition: transform 0.5s ease;
  width: 100%;
}

.testimonial__card {
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1.5rem;
  padding: 2.5rem;
  position: relative;
  width: 100%;
  flex-shrink: 0;
  box-sizing: border-box;
}

.testimonial__quote-icon {
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  color: hsla(0, 72%, 50%, 0.3);
}

.testimonial__quote-icon svg {
  width: 48px;
  height: 48px;
}

.testimonial__card blockquote {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1rem;
  line-height: 1.7;
  font-style: italic;
  position: relative;
  z-index: 10;
  margin-bottom: 2rem;
  margin-top: 1rem;
}

.testimonial__author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testimonial__avatar {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}

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

.testimonial__name {
  font-weight: 600;
  color: var(--background);
}

.testimonial__role {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.875rem;
}

.testimonial__stars {
  display: flex;
  gap: 0.25rem;
  margin-top: 0.75rem;
  color: var(--primary);
  font-size: 1.25rem;
  letter-spacing: 2px;
}

.testimonial__stars svg {
  width: 18px;
  height: 18px;
  color: var(--primary);
  fill: var(--primary);
}

/* Carousel arrows */
.testimonial-carousel__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background-color 0.2s ease;
  z-index: 10;
}

.testimonial-carousel__arrow:hover {
  background-color: var(--primary);
  border-color: var(--primary);
}

.testimonial-carousel__arrow--prev {
  left: 0;
}

.testimonial-carousel__arrow--next {
  right: 0;
}

/* Dots */
.testimonial-carousel__dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

.testimonial-carousel__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.2);
  border: none;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.testimonial-carousel__dot.active {
  background-color: var(--primary);
}

.partnerships__cta {
  text-align: center;
}

@media (min-width: 768px) {
  .partnerships {
    padding: 7rem 0;
  }

  .testimonial-carousel__arrow {
    display: flex;
  }

  .testimonial__card {
    padding: 3rem;
  }

  .testimonial__card blockquote {
    font-size: 1.125rem;
  }
}

/* ============================================
   CLIENTS / LOGOS
   ============================================ */
.clients {
  padding: 5rem 0;
  background-color: var(--background);
}

.clients__header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 3rem;
}

.clients__subtitle {
  font-size: 1rem;
  color: var(--muted-foreground);
  margin-top: 1rem;
  line-height: 1.6;
}

.clients__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  max-width: 900px;
  margin: 0 auto;
}

.clients__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100px;
  padding: 0.75rem;
  filter: grayscale(100%);
  opacity: 0.6;
  transition: all 0.3s ease;
}

.clients__logo:hover {
  filter: grayscale(0%);
  opacity: 1;
}

.clients__logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

@media (min-width: 640px) {
  .clients__grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
  }
}

@media (min-width: 768px) {
  .clients {
    padding: 7rem 0;
  }

  .clients__logo {
    height: 110px;
  }
}

/* ============================================
   CONTACT
   ============================================ */
.contact {
  padding: 5rem 0;
  background-color: var(--card);
  position: relative;
  overflow: hidden;
}

.contact__glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 500px;
  height: 500px;
  background-color: hsla(0, 72%, 50%, 0.05);
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
}

.contact__inner {
  position: relative;
  z-index: 10;
  text-align: center;
}

.contact__text {
  font-size: 1.125rem;
  color: var(--muted-foreground);
  max-width: 36rem;
  margin: 0 auto 2.5rem;
  font-weight: 300;
  line-height: 1.7;
}

.contact__whatsapp-btn {
  margin-bottom: 3rem;
}

.contact__phones {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  max-width: 42rem;
  margin: 0 auto;
}

.contact__phone {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 1.25rem;
  border-radius: 1rem;
  background-color: var(--accent);
}

.contact__phone svg {
  width: 20px;
  height: 20px;
  color: var(--primary);
}

.contact__phone-label {
  font-size: 0.75rem;
  color: var(--muted-foreground);
  font-weight: 500;
  letter-spacing: 0.05em;
}

.contact__phone-number {
  font-weight: 600;
  color: var(--foreground);
}

@media (min-width: 640px) {
  .contact__phones {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 768px) {
  .contact {
    padding: 7rem 0;
  }
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background-color: var(--background);
  border-top: 1px solid var(--border);
  padding: 2.5rem 0;
}

.footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  text-align: center;
}

.footer__logo img {
  height: 2rem;
}

.footer__social {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.footer__social a {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted-foreground);
  transition: all 0.2s ease;
}

.footer__social a:hover {
  color: var(--primary);
  border-color: var(--primary);
}

.footer__social svg {
  width: 18px;
  height: 18px;
}

.footer__address {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.footer__copy {
  font-size: 0.75rem;
  color: var(--muted-foreground);
}

/* ============================================
   WHATSAPP FLOATING BUTTON
   ============================================ */
.whatsapp-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  background-color: #25D366;
  color: #fff;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s ease;
}

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

.whatsapp-float svg {
  width: 28px;
  height: 28px;
}
