/* ==========================================
   CSS Variables - Brand Colors
   ========================================== */
:root {
  /* Primary Colors - Wine/Burgundy */
  --primary: hsl(355, 61%, 21%);
  --primary-foreground: hsl(0, 0%, 100%);
  --wine-dark: hsl(355, 65%, 15%);
  --wine-light: hsl(355, 50%, 30%);

  /* Accent Colors - Gold/Yellow */
  --accent: hsl(43, 94%, 53%);
  --accent-foreground: hsl(355, 61%, 21%);
  --gold-light: hsl(43, 90%, 65%);
  --gold-dark: hsl(43, 94%, 45%);

  /* Neutral Colors */
  --background: hsl(0, 0%, 96%);
  --foreground: hsl(355, 61%, 21%);
  --card: hsl(0, 0%, 100%);
  --card-foreground: hsl(355, 61%, 21%);
  --muted: hsl(0, 0%, 91%);
  --muted-foreground: hsl(355, 30%, 40%);
  --border: hsl(0, 0%, 85%);

  /* WhatsApp Green */
  --whatsapp: hsl(142, 70%, 45%);

  /* Gradients */
  --gradient-hero: linear-gradient(135deg, hsl(355, 61%, 21%) 0%, hsl(355, 65%, 15%) 100%);
  --gradient-cta: linear-gradient(135deg, hsl(43, 94%, 53%) 0%, hsl(43, 94%, 45%) 100%);

  /* Shadows */
  --shadow-sm: 0 2px 8px -2px hsla(355, 61%, 21%, 0.1);
  --shadow-md: 0 8px 24px -4px hsla(355, 61%, 21%, 0.15);
  --shadow-lg: 0 16px 48px -8px hsla(355, 61%, 21%, 0.2);
  --shadow-gold: 0 8px 24px -4px hsla(43, 94%, 53%, 0.4);

  /* Radius */
  --radius: 0.75rem;
  --radius-lg: 1rem;
  --radius-xl: 1.5rem;
  --radius-full: 9999px;
}

/* ==========================================
   Reset & Base Styles
   ========================================== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Open Sans', sans-serif;
  background-color: var(--background);
  color: var(--foreground);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  line-height: 1.2;
}

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

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

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

/* ==========================================
   Utility Classes
   ========================================== */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

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

.hidden {
  display: none !important;
}

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

.icon {
  width: 1.25rem;
  height: 1.25rem;
  flex-shrink: 0;
}

/* ==========================================
   Animations
   ========================================== */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(10px);
  }
}

@keyframes ping {
  75%, 100% {
    transform: scale(2);
    opacity: 0;
  }
}

@keyframes scaleIn {
  from {
    transform: scale(0);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

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

.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }
.delay-5 { animation-delay: 1s; }

.animate-on-scroll {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ==========================================
   Buttons
   ========================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  border-radius: var(--radius);
  transition: all 0.3s ease;
  white-space: nowrap;
}

.btn-hero {
  background: var(--gradient-cta);
  color: var(--primary);
  padding: 1rem 2rem;
  font-size: 1rem;
  box-shadow: var(--shadow-gold);
}

.btn-hero:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px -4px hsla(43, 94%, 53%, 0.5);
}

.btn-hero .icon {
  transition: transform 0.3s ease;
}

.btn-hero:hover .icon {
  transform: translateX(4px);
}

.btn-outline-light {
  background: transparent;
  color: #ffffff;
  border: 2px solid #ffffff;
  padding: 1rem 2rem;
  font-size: 1rem;
}

.btn-outline-light:hover {
  background: #ffffff;
  color: var(--primary);
  border-color: #ffffff;
}

.btn-whatsapp {
  background-color: var(--whatsapp);
  color: white;
  padding: 0.75rem 1.5rem;
  font-size: 0.875rem;
}

.btn-whatsapp:hover {
  background-color: hsl(142, 70%, 40%);
  transform: translateY(-2px);
}

.btn-instagram {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  color: white;
  padding: 0.75rem 1.5rem;
  font-size: 0.875rem;
}

.btn-instagram:hover {
  background: linear-gradient(45deg, #e6683c, #dc2743, #cc2366, #bc1888, #f09433);
  transform: translateY(-2px);
}

.btn-facebook {
  background-color: #1877f2;
  color: white;
  padding: 0.75rem 1.5rem;
  font-size: 0.875rem;
}

.btn-facebook:hover {
  background-color: #0d65d9;
  transform: translateY(-2px);
}

.btn-outline-sm {
  background: transparent;
  color: var(--primary);
  border: 1px solid var(--border);
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
}

.btn-outline-sm:hover {
  border-color: var(--primary);
  background: var(--primary);
  color: white;
}

.btn-outline-sm .icon {
  transition: transform 0.3s ease;
}

.btn-outline-sm:hover .icon {
  transform: translateX(4px);
}

.btn-cta {
  background: var(--gradient-cta);
  color: var(--primary);
  padding: 1rem 2rem;
  font-size: 1rem;
  box-shadow: var(--shadow-gold);
}

.btn-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px -4px hsla(43, 94%, 53%, 0.5);
}

/* ==========================================
   Badge
   ========================================== */
.badge {
  display: inline-block;
  background: hsla(43, 94%, 53%, 0.1);
  color: var(--accent);
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.875rem;
  padding: 0.5rem 1rem;
  border-radius: var(--radius-full);
  margin-bottom: 1.5rem;
}

/* ==========================================
   Section Styles
   ========================================== */
.section-header {
  text-align: center;
  max-width: 48rem;
  margin: 0 auto 4rem;
}

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

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

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

.section-subtitle {
  color: var(--muted-foreground);
  font-size: 1.125rem;
}

/* ==========================================
   Header
   ========================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: var(--primary);
  transition: all 0.3s ease;
  animation: slideDown 0.5s ease;
}

.header.scrolled {
  background: var(--primary);
  box-shadow: var(--shadow-lg);
}

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

.logo img {
  height: 3.5rem;
  width: auto;
  transition: all 0.3s ease;
}

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

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

.nav-link {
  color: white;
  font-weight: 500;
  transition: color 0.3s ease;
}

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

.header-cta {
  display: none;
}

@media (min-width: 768px) {
  .header-cta {
    display: flex;
    align-items: center;
    gap: 1rem;
  }
}

.mobile-menu-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem;
  color: white;
}

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

.mobile-menu-btn .icon {
  width: 1.5rem;
  height: 1.5rem;
}

.mobile-menu {
  background: var(--primary);
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: var(--shadow-lg);
  animation: slideDown 0.3s ease;
}

@media (min-width: 1024px) {
  .mobile-menu {
    display: none !important;
  }
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 1rem;
}

.mobile-nav-link {
  text-align: left;
  padding: 0.75rem 1rem;
  color: white;
  font-weight: 500;
  border-radius: var(--radius);
  transition: background 0.3s ease;
}

.mobile-nav-link:hover {
  background: rgba(255, 255, 255, 0.1);
}

.mobile-cta {
  margin-top: 1rem;
  width: 100%;
}

/* ==========================================
   Hero Section
   ========================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: url('assets/imagens/Fundo-adap.jpeg') center center / cover no-repeat;
  padding-bottom: 3rem;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1;
}

.hero-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%238B1E2B' fill-opacity='0.4'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  z-index: 2;
}

.hero-container {
  position: relative;
  z-index: 10;
  padding-top: 5rem;
}

.hero-content {
  max-width: 56rem;
  margin: 0 auto;
  text-align: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: var(--radius-full);
  padding: 0.5rem 1.5rem;
  margin-top: 3rem;
  margin-bottom: 2rem;
}

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

.hero-badge span {
  color: #ffffff;
  font-size: 0.875rem;
  font-weight: 500;
}

.hero-title {
  font-weight: 800;
  font-size: 2.25rem;
  color: #ffffff;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

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

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

@media (min-width: 1280px) {
  .hero-title {
    font-size: 4.5rem;
  }
}

.hero-title .text-accent {
  display: block;
  margin-top: 0.5rem;
}

.hero-subtitle {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.9);
  max-width: 42rem;
  margin: 0 auto 2.5rem;
}

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

.hero-subtitle strong {
  color: var(--accent);
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
  align-items: center;
  margin-bottom: 4rem;
}

@media (min-width: 640px) {
  .hero-buttons {
    flex-direction: row;
  }
}

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

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

.hero-feature {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-xl);
  padding: 1rem;
}

.hero-feature-icon {
  flex-shrink: 0;
  width: 3rem;
  height: 3rem;
  background: hsla(43, 94%, 53%, 0.2);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-feature-icon svg {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--accent);
}

.hero-feature-text {
  text-align: left;
}

.hero-feature-text h3 {
  color: #ffffff;
  font-weight: 700;
  font-size: 1rem;
}

.hero-feature-text p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.875rem;
}

.scroll-indicator {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2rem 0;
  background: var(--background);
  z-index: 20;
}

.scroll-mouse {
  width: 1.5rem;
  height: 2.5rem;
  border: 2px solid var(--primary);
  border-radius: var(--radius-full);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 0.25rem;
  animation: bounce 1.5s infinite;
}

.scroll-wheel {
  width: 0.375rem;
  height: 0.75rem;
  background: var(--primary);
  border-radius: var(--radius-full);
}

/* ==========================================
   About Section
   ========================================== */
.about {
  position: relative;
  padding: 5rem 0;
  background: var(--background);
  overflow: hidden;
}

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

.about-decoration {
  position: absolute;
  top: 0;
  right: 0;
  width: 33%;
  height: 100%;
  background: linear-gradient(to left, hsla(0, 0%, 91%, 0.5), transparent);
}

.about-grid {
  display: grid;
  gap: 4rem;
  align-items: center;
}

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

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

.about-text {
  color: var(--muted-foreground);
  font-size: 1.125rem;
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

.about-text strong {
  color: var(--foreground);
}

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

.value-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.value-icon {
  width: 2.5rem;
  height: 2.5rem;
  background: hsla(355, 61%, 21%, 0.1);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
}

.value-icon svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--primary);
}

.value-item span {
  font-weight: 500;
  color: var(--foreground);
}

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

.stat-card {
  background: var(--card);
  border-radius: var(--radius-xl);
  padding: 2rem;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
  text-align: center;
}

.stat-value {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 2.25rem;
  color: var(--accent);
  margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
  .stat-value {
    font-size: 3rem;
  }
}

.stat-label {
  color: var(--muted-foreground);
  font-weight: 500;
}

/* Missao, Visao e Valores */
.mvv-section {
  display: grid;
  gap: 1.5rem;
  margin-top: 4rem;
  align-items: stretch;
}

@media (min-width: 768px) {
  .mvv-section {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}

.mvv-item {
  background: var(--card);
  border-radius: var(--radius-xl);
  padding: 1.5rem;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

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

.mvv-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.mvv-icon {
  width: 3.5rem;
  height: 3.5rem;
  background: hsla(355, 61%, 21%, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.mvv-icon svg {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--primary);
}

.mvv-item h3 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--primary);
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.mvv-item > p {
  color: var(--muted-foreground);
  font-size: 0.9rem;
  line-height: 1.7;
  flex-grow: 1;
}

.mvv-values-list {
  list-style: none;
  padding: 0;
  margin: 0;
  flex-grow: 1;
}

.mvv-values-list li {
  color: var(--muted-foreground);
  font-size: 0.85rem;
  line-height: 1.5;
  margin-bottom: 0.5rem;
  padding-left: 1rem;
  position: relative;
}

.mvv-values-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.45rem;
  width: 5px;
  height: 5px;
  background: var(--accent);
  border-radius: 50%;
}

.mvv-values-list li strong {
  color: var(--foreground);
  display: block;
  margin-bottom: 0.15rem;
}

/* ==========================================
   Equipment Section
   ========================================== */
.equipment {
  padding: 5rem 0;
  background: hsla(0, 0%, 91%, 0.3);
}

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

.equipment-search {
  position: relative;
  max-width: 500px;
  margin: 2rem auto 0;
}

.search-input {
  width: 100%;
  padding: 1rem 1rem 1rem 3rem;
  border: 2px solid var(--border);
  border-radius: var(--radius-full);
  font-family: 'Open Sans', sans-serif;
  font-size: 1rem;
  color: var(--foreground);
  background: var(--card);
  outline: none;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.search-input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px hsla(355, 61%, 21%, 0.15);
}

.search-input::placeholder {
  color: var(--muted-foreground);
}

.search-icon {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  width: 1.25rem;
  height: 1.25rem;
  color: var(--muted-foreground);
  pointer-events: none;
}

.equipment-no-results {
  text-align: center;
  padding: 3rem 1rem;
  color: var(--muted-foreground);
  font-size: 1.1rem;
  display: none;
  grid-column: 1 / -1;
}

.equipment-grid {
  display: grid;
  gap: 2rem;
  margin-bottom: 3rem;
}

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

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

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

.equipment-card:hover {
  box-shadow: var(--shadow-lg);
}

.equipment-card-featured {
  border: 2px solid var(--primary);
  position: relative;
}

.equipment-badge {
  display: inline-block;
  background: var(--primary);
  color: white;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.equipment-image {
  height: 220px;
  overflow: hidden;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.equipment-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  transition: transform 0.3s ease;
}

.equipment-image img.img-center {
  object-fit: contain;
  object-position: center;
  background-color: #ffffff;
}

.equipment-image-dual {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 0.5rem;
  padding: 0.25rem;
  background-color: #ffffff;
}

.equipment-image-dual img {
  width: 50%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.equipment-image-dual.no-zoom img {
  object-fit: contain;
}

.equipment-image-stacked {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 0.5rem;
  background-color: #ffffff;
}

.equipment-image-stacked img {
  width: 100%;
  height: 50%;
  object-fit: contain;
  object-position: center;
}

.equipment-card:hover .equipment-image img {
  transform: scale(1.02);
}

.equipment-content {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.equipment-content h3 {
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--foreground);
  margin-bottom: 0.5rem;
}

.equipment-content p {
  color: var(--muted-foreground);
  margin-bottom: 1rem;
  flex-grow: 1;
}

.equipment-content .btn {
  margin-top: auto;
  align-self: flex-start;
}

.equipment-cta {
  background: var(--primary);
  border-radius: var(--radius-xl);
  padding: 2rem;
  text-align: center;
}

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

.equipment-cta h3 {
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--primary-foreground);
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .equipment-cta h3 {
    font-size: 1.875rem;
  }
}

.equipment-cta p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 1.5rem;
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
}

/* Equipment Show More */
.equipment-card.hidden {
  display: none;
}

.equipment-show-more {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.btn-show-more {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--primary);
  color: white;
  padding: 1rem 2rem;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  border: none;
  transition: all 0.3s ease;
}

.btn-show-more:hover {
  background: var(--wine-light);
  transform: translateY(-2px);
}

.btn-show-more svg {
  width: 1.25rem;
  height: 1.25rem;
  transition: transform 0.3s ease;
}

.btn-show-more.expanded svg {
  transform: rotate(180deg);
}

/* ==========================================
   Differentials Section
   ========================================== */
.differentials {
  padding: 5rem 0;
  background: var(--background);
}

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

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

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

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

.differential-card {
  position: relative;
  background: var(--card);
  border-radius: var(--radius-xl);
  padding: 2rem;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
  transition: all 0.3s ease;
  overflow: hidden;
}

.differential-card:hover {
  border-color: hsla(43, 94%, 53%, 0.3);
}

.differential-icon {
  width: 3.5rem;
  height: 3.5rem;
  background: linear-gradient(to bottom right, var(--primary), var(--wine-light));
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: transform 0.3s ease;
}

.differential-card:hover .differential-icon {
  transform: scale(1.1);
}

.differential-icon svg {
  width: 1.75rem;
  height: 1.75rem;
  color: var(--primary-foreground);
}

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

.differential-card p {
  color: var(--muted-foreground);
  line-height: 1.75;
}

.differential-accent {
  position: absolute;
  bottom: 0;
  left: 2rem;
  right: 2rem;
  height: 0.25rem;
  background: linear-gradient(to right, var(--accent), var(--gold-light));
  border-radius: var(--radius-full);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.differential-card:hover .differential-accent {
  opacity: 1;
}

/* ==========================================
   Contact Section
   ========================================== */
.contact {
  padding: 5rem 0;
  background: hsla(0, 0%, 91%, 0.3);
}

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

.contact-grid {
  display: grid;
  gap: 3rem;
  align-items: start;
}

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

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

.contact-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: var(--card);
  border-radius: var(--radius-xl);
  padding: 1.5rem;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}

.contact-card-icon {
  flex-shrink: 0;
  width: 3rem;
  height: 3rem;
  background: hsla(355, 61%, 21%, 0.1);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-card-icon svg {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--primary);
}

.contact-card-content h3 {
  font-weight: 700;
  font-size: 1.125rem;
  color: var(--foreground);
  margin-bottom: 0.25rem;
}

.contact-card-content p {
  color: var(--foreground);
}

.contact-card-content span {
  color: var(--muted-foreground);
}

.contact-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding-top: 1rem;
}

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

.contact-buttons .btn {
  flex: 1;
}

.contact-map {
  background: var(--card);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}

.map-container iframe {
  filter: grayscale(100%);
  transition: filter 0.5s ease;
}

.map-container:hover iframe {
  filter: grayscale(0%);
}

.map-info {
  padding: 1.5rem;
}

.map-info h3 {
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--foreground);
  margin-bottom: 0.5rem;
}

.map-info p {
  color: var(--muted-foreground);
}

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

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

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

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

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

@media (min-width: 768px) {
  .footer-col {
    text-align: left;
  }
}

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

@media (min-width: 768px) {
  .footer-brand {
    align-items: flex-start;
  }
}

.footer-logo {
  height: 4rem;
  width: auto;
}

.footer-jesus {
  color: var(--accent);
  font-weight: 600;
  font-size: 0.9rem;
  margin: 0.5rem 0;
  font-style: italic;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.875rem;
}

.footer-col h3 {
  color: var(--accent);
  font-weight: 700;
  font-size: 1.125rem;
  margin-bottom: 1rem;
}

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

.footer-link {
  color: rgba(255, 255, 255, 0.8);
  text-align: left;
  transition: color 0.3s ease;
}

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

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

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.8);
  transition: color 0.3s ease;
  justify-content: center;
}

@media (min-width: 768px) {
  .footer-contact-item {
    justify-content: flex-start;
  }
}

.footer-contact-item:hover {
  color: var(--accent);
}

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

.footer-location-item {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.8);
  justify-content: center;
}

@media (min-width: 768px) {
  .footer-location-item {
    justify-content: flex-start;
  }
}

.footer-location-item .icon {
  margin-top: 0.25rem;
  flex-shrink: 0;
}

.footer-location-item span {
  font-size: 0.875rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

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

.footer-heart {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.875rem;
}

.footer-heart .heart {
  color: var(--accent);
  width: 1rem;
  height: 1rem;
}

.footer-love {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
}

.footer-copyright {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.875rem;
  text-align: center;
}

@media (min-width: 768px) {
  .footer-copyright {
    text-align: right;
  }
}

/* ==========================================
   WhatsApp Float Button
   ========================================== */
.whatsapp-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 50;
  width: 4rem;
  height: 4rem;
  background-color: var(--whatsapp);
  border-radius: 50%;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: scaleIn 0.5s ease 1s forwards;
  opacity: 0;
  transform: scale(0);
  overflow: hidden;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 16px 48px -8px hsla(142, 70%, 45%, 0.4);
}

.whatsapp-float svg {
  width: 2rem;
  height: 2rem;
  color: white;
}

.whatsapp-pulse {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background-color: var(--whatsapp);
  animation: ping 1.5s cubic-bezier(0, 0, 0.2, 1) infinite;
  opacity: 0.3;
}

/* ==========================================
   Responsive Adjustments
   ========================================== */
@media (max-width: 640px) {
  .hero-buttons .btn {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .footer-grid {
    text-align: center;
  }

  .footer-column {
    align-items: center;
  }

  .footer-nav {
    align-items: center;
  }

  .footer-contact-item,
  .footer-location-item {
    justify-content: center;
  }
}
