/* ============================================
   CSS RESET & BASE STYLES
   ============================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  /* Colors */
  --background: hsl(0, 0%, 100%);
  --foreground: hsl(215, 25%, 27%);
  --card: hsl(0, 0%, 100%);
  --card-foreground: hsl(215, 25%, 27%);
  --primary: hsl(209, 65%, 48%);
  --primary-foreground: hsl(0, 0%, 100%);
  --secondary: hsl(145, 63%, 42%);
  --secondary-foreground: hsl(0, 0%, 100%);
  --accent: hsl(36, 91%, 55%);
  --accent-foreground: hsl(0, 0%, 100%);
  --muted: hsl(210, 40%, 96%);
  --muted-foreground: hsl(215, 16%, 47%);
  --border: hsl(214, 32%, 91%);
  --input: hsl(214, 32%, 91%);
  --ring: hsl(209, 65%, 48%);
  --radius: 0.75rem;
  --whatsapp-green: hsl(142, 70%, 45%);

  /* Shadows */
  --shadow-card: 0 4px 20px -4px hsla(209, 65%, 48%, 0.15);
  --shadow-card-hover: 0 12px 40px -8px hsla(209, 65%, 48%, 0.25);
  --shadow-button: 0 4px 14px -2px hsla(145, 63%, 42%, 0.4);
}

html {
  scroll-behavior: smooth;
}

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

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

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

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

ul, ol {
  list-style: none;
}

address {
  font-style: normal;
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.container-custom {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 640px) {
  .container-custom {
    padding: 0 1.5rem;
  }
}

@media (min-width: 1024px) {
  .container-custom {
    padding: 0 2rem;
  }
}

.section-padding {
  padding: 4rem 1rem;
}

@media (min-width: 640px) {
  .section-padding {
    padding: 4rem 1.5rem;
  }
}

@media (min-width: 768px) {
  .section-padding {
    padding: 4rem 2rem;
  }
}

@media (min-width: 1024px) {
  .section-padding {
    padding: 6rem 2rem;
  }
}

.hidden {
  display: none !important;
}

.card-hover {
  transition: all 0.3s ease;
}

.card-hover:hover {
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-4px);
}

/* ============================================
   BUTTONS
   ============================================ */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background-color: var(--secondary);
  color: var(--secondary-foreground);
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius);
  transition: all 0.3s ease;
  font-size: 0.875rem;
}

.btn-primary:hover {
  box-shadow: var(--shadow-button);
  transform: translateY(-2px);
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-with-icon {
  gap: 0.5rem;
}

.btn-block {
  width: 100%;
}

.btn-full {
  width: 100%;
  padding: 1rem 1.5rem;
  font-size: 1.125rem;
}

/* ============================================
   SECTION HEADERS
   ============================================ */
.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title-center {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 0.5rem;
}

@media (min-width: 640px) {
  .section-title-center {
    font-size: 2.25rem;
  }
}

.section-subtitle-center {
  font-size: 1rem;
  color: var(--muted-foreground);
  max-width: 42rem;
  margin: 1rem auto 0;
}

@media (min-width: 640px) {
  .section-subtitle-center {
    font-size: 1.125rem;
  }
}

/* ============================================
   HEADER
   ============================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  transition: all 0.3s ease;
  background: transparent;
}

.header.scrolled {
  background: hsla(0, 0%, 100%, 0.95);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-card);
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 5rem;
}

@media (min-width: 768px) {
  .header-content {
    height: 6rem;
  }
}

.logo-link {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.logo {
  height: 2.5rem;
  width: auto;
  transition: all 0.3s ease;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.logo:hover {
  transform: scale(1.05);
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.15));
}

@media (max-width: 380px) {
  .logo {
    height: 2rem;
  }
}

@media (min-width: 480px) {
  .logo {
    height: 3rem;
  }
}

@media (min-width: 640px) {
  .logo {
    height: 3.5rem;
  }
}

@media (min-width: 768px) {
  .logo {
    height: 4.5rem;
  }
}

@media (min-width: 1024px) {
  .logo {
    height: 5.5rem;
  }
}

@media (min-width: 1280px) {
  .logo {
    height: 6rem;
  }
}

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

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

.nav-link {
  color: var(--foreground);
  font-weight: 700;
  font-size: 1rem;
  transition: color 0.2s ease;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary);
  transition: width 0.3s ease;
}

.nav-link:hover {
  color: var(--primary);
}

.nav-link:hover::after {
  width: 100%;
}

.phone-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--primary);
  font-weight: 600;
}

.mobile-menu-btn {
  display: block;
  padding: 0.5rem;
  color: var(--foreground);
}

@media (min-width: 768px) {
  .mobile-menu-btn {
    display: none;
  }
}

.mobile-menu {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background-color: var(--background);
  box-shadow: var(--shadow-card-hover);
  animation: fadeInUp 0.3s ease-out;
}

.mobile-nav-link {
  display: block;
  padding: 0.75rem 1.5rem;
  color: var(--foreground);
  font-weight: 700;
  transition: all 0.2s ease;
}

.mobile-nav-link:hover {
  color: var(--primary);
  background-color: var(--muted);
}

.mobile-phone-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  color: var(--primary);
  font-weight: 600;
}

.mobile-cta {
  padding: 0.75rem 1.5rem;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero-section {
  padding-top: 4rem;
}

@media (min-width: 768px) {
  .hero-section {
    padding-top: 5rem;
  }
}

.hero-carousel {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

@media (min-width: 768px) {
  .hero-carousel {
    aspect-ratio: 21 / 9;
  }
}

.carousel-slides {
  position: relative;
  width: 100%;
  height: 100%;
}

.carousel-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.7s ease;
}

.carousel-slide.active {
  opacity: 1;
}

.slide-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slide-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.4) 100%);
}

.slide-content {
  max-width: 36rem;
}

.slide-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
  margin-bottom: 0.75rem;
  line-height: 1.2;
}

@media (min-width: 640px) {
  .slide-title {
    font-size: 1.875rem;
  }
}

@media (min-width: 768px) {
  .slide-title {
    font-size: 2.25rem;
  }
}

@media (min-width: 1024px) {
  .slide-title {
    font-size: 3rem;
  }
}

.slide-subtitle {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.95);
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.8);
  margin-bottom: 1.5rem;
  line-height: 1.4;
  font-weight: 500;
}

@media (min-width: 640px) {
  .slide-subtitle {
    font-size: 1rem;
  }
}

@media (min-width: 768px) {
  .slide-subtitle {
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .slide-subtitle {
    font-size: 1.25rem;
  }
}

.slide-btn {
  display: inline-block;
  background-color: var(--secondary);
  color: white;
  font-weight: 600;
  padding: 0.875rem 2rem;
  border-radius: var(--radius);
  transition: all 0.3s ease;
  text-decoration: none;
  font-size: 1rem;
  border: 2px solid var(--secondary);
  box-shadow: 0 4px 14px rgba(145, 63, 42, 0.4);
}

.slide-btn:hover {
  background-color: var(--foreground);
  border-color: var(--foreground);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.2);
  color: white;
  padding: 0.5rem;
  border-radius: 50%;
  transition: background 0.2s ease;
}

.carousel-arrow:hover {
  background: rgba(255, 255, 255, 0.4);
}

.carousel-arrow-left {
  left: 1rem;
}

.carousel-arrow-right {
  right: 1rem;
}

.carousel-dots {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
}

.carousel-dot {
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  transition: background 0.2s ease;
}

.carousel-dot.active {
  background: white;
}

.quick-contact-bar {
  background-color: var(--primary);
  padding: 1rem 0;
}

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

@media (min-width: 640px) {
  .quick-contact-content {
    flex-direction: row;
    gap: 2rem;
  }
}

.quick-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--primary-foreground);
  font-weight: 600;
  font-size: 1.125rem;
  transition: transform 0.2s ease;
}

.quick-phone:hover {
  transform: scale(1.05);
}

.quick-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: var(--background);
  color: var(--foreground);
  font-weight: 600;
  padding: 0.5rem 1.5rem;
  border-radius: var(--radius);
  transition: opacity 0.2s ease;
}

.quick-whatsapp:hover {
  opacity: 0.9;
}

/* ============================================
   BRAND LOGOS SLIDER
   ============================================ */
.brands-slider-section {
  padding: 3rem 0;
  background-color: var(--card);
  overflow: hidden;
}

.logos-slider-wrapper {
  position: relative;
  margin-top: 2rem;
}

.logos-slider {
  display: flex;
  animation: scrollLogos 20s linear infinite;
}

.logo-item {
  flex-shrink: 0;
  padding: 0 1.5rem;
}

@media (min-width: 640px) {
  .logo-item {
    padding: 0 2.5rem;
  }
}

@media (min-width: 768px) {
  .logo-item {
    padding: 0 3.5rem;
  }
}

.logo-card {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 5rem;
  width: 7rem;
  background-color: var(--background);
  border-radius: 0.75rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  padding: 1rem;
  transition: box-shadow 0.2s ease;
}

@media (min-width: 640px) {
  .logo-card {
    height: 6rem;
    width: 9rem;
  }
}

.logo-card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

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

@keyframes scrollLogos {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* ============================================
   TRUST SECTION
   ============================================ */
.trust-section {
  background-color: var(--background);
}

.trust-grid {
  display: grid;
  gap: 1.5rem;
}

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

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

.trust-card {
  text-align: center;
  padding: 1.5rem;
  border-radius: 0.75rem;
  background-color: var(--card);
  box-shadow: var(--shadow-card);
}

.trust-icon {
  width: 4rem;
  height: 4rem;
  margin: 0 auto 1rem;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.trust-icon-accent {
  background-color: hsla(36, 91%, 55%, 0.1);
  color: var(--accent);
}

.trust-icon-primary {
  background-color: hsla(209, 65%, 48%, 0.1);
  color: var(--primary);
}

.trust-icon-secondary {
  background-color: hsla(145, 63%, 42%, 0.1);
  color: var(--secondary);
}

.trust-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--foreground);
  margin-bottom: 0.5rem;
}

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

/* ============================================
   HOW IT WORKS SECTION
   ============================================ */
.how-it-works-section {
  background-color: hsla(210, 40%, 96%, 0.3);
}

.steps-grid {
  display: grid;
  gap: 2rem;
}

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

.step-card-wrapper {
  position: relative;
}

.step-card {
  background-color: var(--card);
  border-radius: 1rem;
  box-shadow: var(--shadow-card);
  overflow: hidden;
  position: relative;
  z-index: 10;
}

.step-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 10;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: var(--primary-foreground);
  font-size: 0.875rem;
  font-weight: 700;
  padding: 0.25rem 1rem;
  border-radius: 9999px;
}

.step-image-wrapper {
  aspect-ratio: 1;
  overflow: hidden;
}

.step-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.step-content {
  padding: 1.5rem;
  text-align: center;
}

.step-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--foreground);
  margin-bottom: 0.75rem;
}

.step-description {
  color: var(--muted-foreground);
}

.step-arrow {
  display: none;
  position: absolute;
  top: 50%;
  right: -1rem;
  transform: translateY(-50%);
  z-index: 20;
  color: hsla(209, 65%, 48%, 0.4);
}

@media (min-width: 768px) {
  .step-arrow {
    display: block;
  }
  
  .step-card-wrapper:last-child .step-arrow {
    display: none;
  }
}

.section-cta {
  text-align: center;
  margin-top: 3rem;
}

/* ============================================
   BRANDS SECTION
   ============================================ */
.brands-section {
  background-color: hsla(210, 40%, 96%, 0.3);
}

.brands-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

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

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

.brand-card {
  background-color: var(--card);
  border-radius: 0.75rem;
  box-shadow: var(--shadow-card);
  overflow: hidden;
  cursor: pointer;
}

.brand-image-wrapper {
  aspect-ratio: 1;
  overflow: hidden;
}

.brand-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.brand-card:hover .brand-image {
  transform: scale(1.1);
}

.brand-info {
  padding: 1rem;
  text-align: center;
}

.brand-name {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--foreground);
  transition: color 0.2s ease;
}

.brand-card:hover .brand-name {
  color: var(--primary);
}

.brand-description {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin-top: 0.25rem;
}

.brand-card-all {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 0.75rem;
  box-shadow: var(--shadow-card);
  overflow: hidden;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  aspect-ratio: 1;
  transition: all 0.3s ease;
}

@media (min-width: 640px) {
  .brand-card-all {
    aspect-ratio: auto;
  }
}

.brand-card-all:hover {
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-4px);
}

.brand-all-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary-foreground);
  text-align: center;
}

.brand-all-subtitle {
  font-size: 0.875rem;
  color: hsla(0, 0%, 100%, 0.8);
  margin-top: 0.5rem;
  text-align: center;
}

/* ============================================
   WHAT WE BUY SECTION
   ============================================ */
.what-we-buy-section {
  background-color: var(--background);
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

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

@media (min-width: 1024px) {
  .categories-grid {
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
  }
}

.category-card {
  background-color: var(--card);
  border-radius: 0.75rem;
  box-shadow: var(--shadow-card);
  overflow: hidden;
  cursor: pointer;
}

.category-image-wrapper {
  aspect-ratio: 1;
  overflow: hidden;
}

.category-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.category-card:hover .category-image {
  transform: scale(1.1);
}

.category-info {
  padding: 1rem;
  text-align: center;
}

.category-name {
  font-weight: 600;
  color: var(--foreground);
  transition: color 0.2s ease;
}

.category-card:hover .category-name {
  color: var(--secondary);
}

.category-description {
  font-size: 0.75rem;
  color: var(--muted-foreground);
  margin-top: 0.25rem;
}

/* ============================================
   WHY CHOOSE US SECTION
   ============================================ */
.why-choose-section {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  position: relative;
  overflow: hidden;
}

.why-choose-bg-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.1;
}

.pattern-circle {
  position: absolute;
  border-radius: 50%;
  background-color: var(--primary-foreground);
  filter: blur(60px);
}

.pattern-circle-1 {
  top: 2.5rem;
  left: 2.5rem;
  width: 10rem;
  height: 10rem;
}

.pattern-circle-2 {
  bottom: 2.5rem;
  right: 2.5rem;
  width: 15rem;
  height: 15rem;
}

.why-choose-content {
  position: relative;
  z-index: 10;
}

.why-choose-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}

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

.why-choose-title {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--primary-foreground);
  margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
  .why-choose-title {
    font-size: 2.25rem;
  }
}

.why-choose-subtitle {
  font-size: 1.125rem;
  color: hsla(0, 0%, 100%, 0.8);
  margin-bottom: 2rem;
}

.reasons-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.reason-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.reason-icon {
  flex-shrink: 0;
  color: var(--accent);
  margin-top: 0.125rem;
}

.reason-item span {
  color: var(--primary-foreground);
}

.stats-card {
  background-color: hsla(0, 0%, 100%, 0.1);
  backdrop-filter: blur(8px);
  padding: 2rem;
  border-radius: 1rem;
  border: 1px solid hsla(0, 0%, 100%, 0.2);
}

.stats-main {
  text-align: center;
  margin-bottom: 2rem;
}

.stats-value-large {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary-foreground);
}

.stats-label {
  color: hsla(0, 0%, 100%, 0.7);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

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

.stat-value {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--accent);
}

.stat-label {
  font-size: 0.875rem;
  color: hsla(0, 0%, 100%, 0.7);
}

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */
.testimonials-section {
  background-color: var(--background);
}

.testimonials-grid {
  display: grid;
  gap: 1.5rem;
}

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

.testimonial-card {
  background-color: var(--card);
  padding: 1.5rem;
  border-radius: 1rem;
  box-shadow: var(--shadow-card);
  position: relative;
}

.testimonial-quote-icon {
  position: absolute;
  top: 1rem;
  right: 1rem;
  color: hsla(209, 65%, 48%, 0.1);
}

.testimonial-stars {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 1rem;
}

.star-icon {
  color: var(--accent);
}

.testimonial-text {
  color: hsla(215, 25%, 27%, 0.8);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.author-avatar {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background-color: hsla(209, 65%, 48%, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--primary);
}

.author-name {
  font-weight: 600;
  color: var(--foreground);
}

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

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact-section {
  background-color: hsla(210, 40%, 96%, 0.3);
}

.contact-quick-links {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
  align-items: center;
  margin-top: 1.5rem;
}

@media (min-width: 640px) {
  .contact-quick-links {
    flex-direction: row;
  }
}

.contact-phone-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary);
}

.contact-divider {
  display: none;
  color: var(--muted-foreground);
}

@media (min-width: 640px) {
  .contact-divider {
    display: inline;
  }
}

.contact-whatsapp-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--whatsapp-green);
}

.contact-grid {
  display: grid;
  gap: 2rem;
}

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

.contact-form-card {
  background-color: var(--card);
  padding: 1.5rem;
  border-radius: 1rem;
  box-shadow: var(--shadow-card-hover);
}

@media (min-width: 640px) {
  .contact-form-card {
    padding: 2rem;
  }
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-row {
  display: grid;
  gap: 1.25rem;
}

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

.form-group {
  display: flex;
  flex-direction: column;
}

.form-label {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--foreground);
  margin-bottom: 0.5rem;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border-radius: var(--radius);
  border: 1px solid var(--input);
  background-color: var(--background);
  color: var(--foreground);
  font-family: inherit;
  font-size: 1rem;
  transition: all 0.2s ease;
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--muted-foreground);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  box-shadow: 0 0 0 3px hsla(209, 65%, 48%, 0.2);
}

.form-textarea {
  resize: none;
}

.condition-options {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem;
}

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

.condition-option {
  cursor: pointer;
}

.condition-option input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.condition-label {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem;
  border-radius: var(--radius);
  border: 1px solid var(--input);
  background-color: var(--background);
  font-size: 0.875rem;
  color: var(--foreground);
  transition: all 0.2s ease;
  text-align: center;
}

.condition-option input:checked + .condition-label {
  border-color: var(--primary);
  background-color: hsla(209, 65%, 48%, 0.05);
}

.condition-option:hover .condition-label {
  border-color: hsla(209, 65%, 48%, 0.5);
}

.form-note {
  text-align: center;
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.contact-info-wrapper {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.address-card {
  background-color: var(--card);
  border-radius: 1rem;
  box-shadow: var(--shadow-card-hover);
  padding: 1.5rem;
}

.address-header {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.address-icon-wrapper {
  width: 3rem;
  height: 3rem;
  background-color: hsla(209, 65%, 48%, 0.1);
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--primary);
}

.address-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--foreground);
  margin-bottom: 0.5rem;
}

.address-text {
  color: var(--muted-foreground);
  font-size: 0.875rem;
  line-height: 1.7;
}

.contact-buttons-grid {
  display: grid;
  gap: 0.75rem;
}

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

.contact-button {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem;
  border-radius: 0.75rem;
  transition: background 0.2s ease;
}

.contact-button-phone {
  background-color: hsla(209, 65%, 48%, 0.05);
}

.contact-button-phone:hover {
  background-color: hsla(209, 65%, 48%, 0.1);
}

.contact-button-whatsapp {
  background-color: hsla(142, 70%, 45%, 0.05);
}

.contact-button-whatsapp:hover {
  background-color: hsla(142, 70%, 45%, 0.1);
}

.contact-button-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-button-icon-phone {
  background-color: var(--primary);
  color: var(--primary-foreground);
}

.contact-button-icon-whatsapp {
  background-color: var(--whatsapp-green);
  color: var(--primary-foreground);
}

.contact-button-label {
  font-size: 0.75rem;
  color: var(--muted-foreground);
  display: block;
}

.contact-button-value {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--foreground);
  display: block;
}

.map-wrapper {
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: var(--shadow-card-hover);
  height: 16rem;
}

@media (min-width: 1024px) {
  .map-wrapper {
    height: 20rem;
  }
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background-color: var(--foreground);
  color: var(--primary-foreground);
  padding: 3rem 0;
}

@media (min-width: 1024px) {
  .footer {
    padding: 4rem 0;
  }
}

.footer-grid {
  display: grid;
  gap: 2rem;
}

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

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

.footer-brand {
  grid-column: span 1;
}

@media (min-width: 640px) {
  .footer-brand {
    grid-column: span 2;
  }
}

@media (min-width: 1024px) {
  .footer-brand {
    grid-column: span 1;
  }
}

.footer-logo {
  height: 4rem;
  width: auto;
  margin-bottom: 1rem;
  filter: brightness(0) invert(1);
}

.footer-description {
  color: hsla(0, 0%, 100%, 0.7);
  font-size: 0.875rem;
  line-height: 1.7;
}

.footer-heading {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.footer-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-link {
  color: hsla(0, 0%, 100%, 0.7);
  font-size: 0.875rem;
  transition: color 0.2s ease;
}

.footer-link:hover {
  color: var(--primary-foreground);
}

.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-contact-link {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: hsla(0, 0%, 100%, 0.7);
  font-size: 0.875rem;
  transition: color 0.2s ease;
}

.footer-contact-link:hover {
  color: var(--primary-foreground);
}

.footer-contact-link svg {
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.footer-contact-value {
  font-weight: 600;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: hsla(0, 0%, 100%, 0.7);
  font-size: 0.875rem;
}

.footer-contact-item svg {
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.footer-address-content {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: hsla(0, 0%, 100%, 0.7);
  font-size: 0.875rem;
}

.footer-address-content svg {
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.footer-address-text {
  line-height: 1.7;
}

.footer-bottom {
  border-top: 1px solid hsla(0, 0%, 100%, 0.1);
  margin-top: 3rem;
  padding-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

.footer-copyright {
  font-size: 0.875rem;
  color: hsla(0, 0%, 100%, 0.6);
}

.footer-powered {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  justify-content: center;
}

.powered-text {
  font-size: 0.875rem;
  color: hsla(0, 0%, 100%, 0.6);
}

.powered-link {
  font-size: 0.875rem;
  color: hsla(0, 0%, 100%, 0.8);
  text-decoration: none;
  transition: color 0.2s ease;
}

.powered-link:hover {
  color: var(--primary-foreground);
  text-decoration: underline;
}

.powered-separator {
  color: hsla(0, 0%, 100%, 0.4);
  font-size: 0.875rem;
}

.footer-social {
  display: flex;
  gap: 1rem;
}

.footer-social-link {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background-color: hsla(0, 0%, 100%, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
}

.footer-social-link:hover {
  background-color: hsla(0, 0%, 100%, 0.2);
}

/* ============================================
   VIDEO SECTION
   ============================================ */
.video-section {
  background: linear-gradient(135deg, var(--muted) 0%, var(--background) 100%);
}

.video-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .video-container {
    grid-template-columns: 1.2fr 1fr;
  }
}

.video-wrapper {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  background: var(--card);
}

.video-player {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius);
  aspect-ratio: 16/9;
  object-fit: cover;
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: var(--radius);
}

.video-overlay:hover {
  background: rgba(0, 0, 0, 0.2);
}

.video-overlay.hidden {
  opacity: 0;
  pointer-events: none;
}

.video-play-btn {
  background: var(--primary);
  color: var(--primary-foreground);
  border: none;
  border-radius: 50%;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-button);
}

.video-play-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.video-play-btn:active {
  transform: scale(0.95);
}

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

@media (min-width: 1024px) {
  .video-content {
    text-align: left;
  }
}

.video-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 1rem;
  line-height: 1.2;
}

@media (min-width: 640px) {
  .video-title {
    font-size: 2.5rem;
  }
}

.video-description {
  color: var(--muted-foreground);
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.video-features {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

@media (min-width: 640px) {
  .video-features {
    flex-direction: row;
    justify-content: center;
  }
}

@media (min-width: 1024px) {
  .video-features {
    justify-content: flex-start;
  }
}

.video-feature {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--secondary);
  font-weight: 600;
  font-size: 0.95rem;
}

.video-feature svg {
  flex-shrink: 0;
}

.video-cta {
  display: inline-block;
  text-decoration: none;
}

@media (min-width: 640px) {
  .video-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
}

@media (min-width: 1024px) {
  .video-cta {
    justify-content: flex-start;
  }
}

/* ============================================
   FLOATING BUTTONS
   ============================================ */
.floating-button {
  position: fixed;
  z-index: 50;
  padding: 1rem;
  border-radius: 50%;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  right: 1rem;
}

@media (min-width: 640px) {
  .floating-button {
    right: 1.5rem;
  }
}

.floating-button:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

.floating-whatsapp {
  bottom: 6rem;
  background-color: var(--whatsapp-green);
  color: var(--primary-foreground);
}

.floating-phone {
  bottom: 1.5rem;
  background-color: var(--primary);
  color: var(--primary-foreground);
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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