:root {
  --dark: #0A0A0A;
  --dark2: #0F0F0F;
  --card: #141414;
  --red: #7A1D1D;
  --red-dark: #5A1010;
  --red-darker: #3A0808;
  --red-light: #C84A4A;
  --gray: #A1A1AA;
  --gold: #C9A84C;
  --whatsapp: #25D366;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
  margin: 0;
  background: var(--dark);
  color: #fff;
  font-family: 'Inter', sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  width: 100%;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  width: 100%;
  overflow-x: hidden;
}

.font-serif {
  font-family: 'Playfair Display', serif;
}

/* Top bar */
.top-bar {
  background: linear-gradient(135deg, var(--red-darker), var(--red-dark), var(--red-darker));
  text-align: center;
  padding: 6px 10px;
  font-size: clamp(9px, 2vw, 11px);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Header */
header {
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  padding: clamp(20px, 6vw, 40px) clamp(12px, 4vw, 20px) clamp(20px, 5vw, 32px);
  text-align: center;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
}

header::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.08;
  background-image:
    radial-gradient(circle at 20% 50%, white 1px, transparent 1px),
    radial-gradient(circle at 80% 30%, white 1px, transparent 1px);
  background-size: 30px 30px, 40px 40px;
  pointer-events: none;
}

header::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--gold), var(--red-light), var(--gold), transparent);
  opacity: 0.3;
}

.logo {
  width: min(25vh, 180px);
  height: auto;
  margin-bottom: 8px;
  max-width: 100%;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.3));
}

@media (max-width: 480px) {
  .logo {
    width: min(18vh, 120px);
  }
}

@media (min-width: 768px) {
  .logo {
    width: min(35vh, 280px);
  }
}

.subtitle-line {
  margin-top: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(6px, 2vw, 12px);
  font-size: clamp(8px, 1.8vw, 10px);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  position: relative;
  z-index: 1;
  font-weight: 500;
  flex-wrap: wrap;
}

.subtitle-line .line {
  height: 1px;
  width: clamp(15px, 4vw, 30px);
}

.subtitle-line .line.left {
  background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.2));
}

.subtitle-line .line.right {
  background: linear-gradient(to left, transparent, rgba(255, 255, 255, 0.2));
}

/* Header Badge */
.header-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  padding: 6px 16px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 20px;
  font-size: clamp(10px, 2vw, 12px);
  color: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

/* Hero */
.hero {
  background: linear-gradient(180deg, var(--dark) 0%, var(--dark2) 100%);
  flex: 1;
  width: 100%;
}

.hero-inner {
  max-width: 480px;
  margin: 0 auto;
  padding: clamp(16px, 4vw, 24px) clamp(12px, 3vw, 16px) clamp(24px, 6vw, 32px);
  width: 100%;
}

@media (min-width: 768px) {
  .hero-inner {
    max-width: 720px;
    padding: 40px 24px 48px;
  }
}

/* Title Block */
.title-block {
  text-align: center;
  margin-bottom: clamp(20px, 5vw, 28px);
  width: 100%;
}

.title-block h2 {
  font-size: clamp(1.3rem, 5vw, 1.6rem);
  font-weight: 800;
  line-height: 1.1;
  margin: 0;
  letter-spacing: -0.02em;
  word-break: break-word;
}

@media (min-width: 768px) {
  .title-block h2 {
    font-size: 2.4rem;
  }
}

.title-block h2.accent {
  color: var(--red-light);
  margin-top: -2px;
}

.divider {
  margin-top: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(6px, 2vw, 10px);
}

.divider .line {
  height: 1px;
  width: clamp(20px, 6vw, 40px);
}

.divider .line.left {
  background: linear-gradient(to right, transparent, var(--red-light));
}

.divider .line.right {
  background: linear-gradient(to left, transparent, var(--red-light));
}

.divider .diamond {
  height: clamp(4px, 1.5vw, 6px);
  width: clamp(4px, 1.5vw, 6px);
  background: var(--red-light);
  transform: rotate(45deg);
  flex-shrink: 0;
}

.title-block p {
  margin-top: 12px;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
  font-size: clamp(12px, 3vw, 13px);
  color: var(--gray);
  line-height: 1.7;
  font-weight: 400;
  padding: 0 4px;
}

/* Trust Badges */
.trust-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(8px, 2vw, 16px);
  margin-top: 12px;
  font-size: clamp(10px, 2.5vw, 12px);
  color: var(--gray);
}

.trust-badges span {
  background: rgba(255, 255, 255, 0.03);
  padding: 4px 12px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

/* CTA Button */
.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
  padding: 14px 32px;
  background: linear-gradient(135deg, var(--whatsapp), #1a8a4a);
  color: #fff;
  border: none;
  border-radius: 12px;
  font-size: clamp(14px, 3vw, 16px);
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
}

.cta-button svg {
  width: 22px;
  height: 22px;
  stroke: #fff;
}

/* Media Carousel */
.media-carousel {
  border-radius: clamp(12px, 3vw, 16px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 20px 60px -20px rgba(0, 0, 0, 0.8);
  margin-bottom: clamp(20px, 5vw, 28px);
  position: relative;
  background: var(--dark2);
  width: 100%;
}

.carousel-container {
  position: relative;
  width: 100%;
  height: clamp(200px, 50vw, 280px);
  overflow: hidden;
  background: var(--dark);
}

@media (min-width: 768px) {
  .carousel-container {
    height: 380px;
  }
}

.carousel-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--dark);
}

.carousel-slide.active {
  opacity: 1;
}

.carousel-slide img,
.carousel-slide video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.carousel-slide video {
  background: #000;
}

.carousel-slide .media-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: clamp(10px, 3vw, 16px) clamp(12px, 3vw, 20px);
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, transparent 100%);
  color: #fff;
  font-size: clamp(9px, 2vw, 11px);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 500;
}

.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(8px, 2vw, 14px);
  padding: clamp(8px, 2vw, 12px) clamp(10px, 2.5vw, 16px);
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.carousel-btn {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
  width: clamp(30px, 7vw, 34px);
  height: clamp(30px, 7vw, 34px);
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  padding: 0;
  flex-shrink: 0;
}

.carousel-btn svg {
  width: clamp(14px, 3.5vw, 18px);
  height: clamp(14px, 3.5vw, 18px);
}

.carousel-btn:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.2);
  transform: scale(1.05);
}

.carousel-btn:active {
  transform: scale(0.95);
}

.carousel-dots {
  display: flex;
  gap: clamp(4px, 1.5vw, 6px);
  flex: 1;
  justify-content: center;
}

.carousel-dot {
  width: clamp(6px, 1.8vw, 8px);
  height: clamp(6px, 1.8vw, 8px);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
  flex-shrink: 0;
}

.carousel-dot.active {
  background: var(--red-light);
  width: clamp(18px, 5vw, 24px);
  border-radius: 4px;
}

.carousel-dot:hover {
  background: rgba(255, 255, 255, 0.3);
}

/* Differentials */
.differentials {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(8px, 2vw, 12px);
  margin-bottom: clamp(24px, 5vw, 32px);
}

@media (max-width: 400px) {
  .differentials {
    grid-template-columns: 1fr;
  }
}

.differential-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease;
}

.differential-item:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(122, 29, 29, 0.2);
  transform: translateY(-2px);
}

.diff-icon {
  font-size: clamp(20px, 5vw, 28px);
  flex-shrink: 0;
}

.diff-content h4 {
  font-size: clamp(11px, 2.5vw, 13px);
  margin: 0;
  color: #fff;
}

.diff-content p {
  font-size: clamp(9px, 2vw, 11px);
  color: var(--gray);
  margin: 2px 0 0;
}

/* Section header */
.section-header {
  display: flex;
  align-items: center;
  gap: clamp(6px, 2vw, 10px);
  margin-bottom: clamp(12px, 3vw, 16px);
  padding: 0 2px;
  width: 100%;
}

.section-header .line {
  flex: 1;
  height: 1px;
  background: rgba(255, 255, 255, 0.06);
  min-width: 10px;
}

.section-header span.label {
  font-size: clamp(9px, 2vw, 10px);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gray);
  white-space: nowrap;
  font-weight: 500;
}

/* Services */
.services {
  display: flex;
  flex-direction: column;
  gap: clamp(8px, 2vw, 10px);
  width: 100%;
  margin-bottom: clamp(24px, 5vw, 32px);
}

.service-card {
  background: linear-gradient(135deg, var(--card), var(--dark2));
  border-radius: clamp(10px, 2.5vw, 14px);
  overflow: hidden;
  display: flex;
  flex-direction: row;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease;
  position: relative;
  width: 100%;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: clamp(10px, 2.5vw, 14px);
  padding: 1px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), transparent);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.service-card:hover {
  border-color: rgba(122, 29, 29, 0.3);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.service-image {
  flex-shrink: 0;
  width: clamp(70px, 20vw, 90px);
  position: relative;
}

@media (min-width: 768px) {
  .service-image {
    width: 140px;
  }
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.service-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, transparent, var(--dark2) 85%);
}

.service-content {
  padding: clamp(10px, 2.5vw, 14px) clamp(10px, 2.5vw, 14px) clamp(10px, 2.5vw, 14px) clamp(6px, 1.5vw, 10px);
  display: flex;
  align-items: flex-start;
  gap: clamp(6px, 1.5vw, 10px);
  flex: 1;
  position: relative;
  z-index: 1;
  min-width: 0;
}

@media (min-width: 768px) {
  .service-content {
    padding: 18px 20px 18px 14px;
    gap: 14px;
  }
}

.service-icon-wrap {
  flex-shrink: 0;
  width: clamp(30px, 8vw, 36px);
  height: clamp(30px, 8vw, 36px);
  border-radius: clamp(6px, 1.5vw, 8px);
  background: rgba(122, 29, 29, 0.15);
  border: 1px solid rgba(122, 29, 29, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.service-card:hover .service-icon-wrap {
  background: rgba(122, 29, 29, 0.25);
  border-color: rgba(122, 29, 29, 0.4);
}

.service-icon-wrap svg {
  width: clamp(14px, 3.5vw, 18px);
  height: clamp(14px, 3.5vw, 18px);
  stroke: var(--red-light);
}

.service-text {
  flex: 1;
  min-width: 0;
}

.service-text h3 {
  font-size: clamp(11px, 2.8vw, 13px);
  font-weight: 700;
  letter-spacing: 0.05em;
  margin: 0;
  color: #fff;
  word-break: break-word;
}

@media (min-width: 768px) {
  .service-text h3 {
    font-size: 16px;
  }
}

.service-text p {
  font-size: clamp(10px, 2.3vw, 11px);
  color: var(--gray);
  line-height: 1.5;
  margin: 2px 0 0;
  word-break: break-word;
}

@media (min-width: 768px) {
  .service-text p {
    font-size: 13px;
  }
}

.service-number {
  font-size: clamp(16px, 4vw, 20px);
  font-weight: 700;
  line-height: 1;
  color: rgba(122, 29, 29, 0.3);
  flex-shrink: 0;
  margin-top: 2px;
}

/* Benefits Section */
.benefits-section {
  margin-bottom: clamp(24px, 5vw, 32px);
}

.benefits-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(8px, 2vw, 12px);
}

@media (max-width: 480px) {
  .benefits-grid {
    grid-template-columns: 1fr;
  }
}

.benefit-card {
  text-align: center;
  padding: clamp(16px, 4vw, 20px);
  background: rgba(255, 255, 255, 0.03);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease;
}

.benefit-card:hover {
  background: rgba(255, 255, 255, 0.06);
  transform: translateY(-4px);
  border-color: rgba(122, 29, 29, 0.2);
}

.benefit-icon {
  font-size: clamp(28px, 7vw, 36px);
  margin-bottom: 8px;
  display: block;
}

.benefit-card h4 {
  font-size: clamp(12px, 2.8vw, 14px);
  margin: 0 0 6px;
  color: #fff;
}

.benefit-card p {
  font-size: clamp(10px, 2.3vw, 12px);
  color: var(--gray);
  line-height: 1.5;
  margin: 0;
}

/* Testimonials */
.testimonials-section {
  margin-bottom: clamp(24px, 5vw, 32px);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(12px, 3vw, 16px);
}

@media (min-width: 600px) {
  .testimonials-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 900px) {
  .testimonials-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 12px;
  padding: clamp(16px, 4vw, 20px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  background: rgba(255, 255, 255, 0.06);
  transform: translateY(-2px);
}

.stars {
  color: var(--gold);
  font-size: clamp(14px, 3vw, 18px);
  margin-bottom: 8px;
}

.testimonial-card p {
  font-size: clamp(12px, 2.8vw, 14px);
  color: var(--gray);
  line-height: 1.6;
  margin: 0 0 12px;
  font-style: italic;
}

.testimonial-author {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 10px;
}

.testimonial-author strong {
  display: block;
  font-size: clamp(12px, 2.5vw, 14px);
  color: #fff;
}

.testimonial-author span {
  font-size: clamp(10px, 2vw, 12px);
  color: var(--gray);
}

/* FAQ */
.faq-section {
  margin-bottom: clamp(16px, 3vw, 24px);
}

.faq-grid {
  display: flex;
  flex-direction: column;
  gap: clamp(6px, 1.5vw, 10px);
}

.faq-item {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: rgba(255, 255, 255, 0.08);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: clamp(12px, 3vw, 16px) clamp(14px, 3.5vw, 18px);
  background: transparent;
  border: none;
  color: #fff;
  font-size: clamp(12px, 2.8vw, 14px);
  font-weight: 500;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  text-align: left;
  gap: 12px;
  transition: all 0.3s ease;
}

.faq-question:hover {
  color: var(--red-light);
}

.faq-question svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  transition: transform 0.3s ease;
  stroke: var(--gray);
}

.faq-item.open .faq-question svg {
  transform: rotate(180deg);
  stroke: var(--red-light);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.open .faq-answer {
  max-height: 200px;
}

.faq-answer p {
  padding: 0 clamp(14px, 3.5vw, 18px) clamp(12px, 3vw, 16px);
  font-size: clamp(11px, 2.5vw, 13px);
  color: var(--gray);
  line-height: 1.6;
  margin: 0;
}

/* ============================================ */
/* FOOTER */
/* ============================================ */
footer {
  position: relative;
  overflow: hidden;
  border-top: 2px solid rgba(122, 29, 29, 0.3);
  width: 100%;
}

.footer-video-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
}

.footer-video-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.6;
}

.footer-video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
      rgba(10, 10, 10, 0.95) 0%,
      rgba(58, 8, 8, 0.9) 30%,
      rgba(90, 16, 16, 0.85) 60%,
      rgba(10, 10, 10, 0.95) 100%);
}

.footer-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
  padding: clamp(32px, 8vw, 48px) clamp(12px, 4vw, 20px) clamp(24px, 6vw, 32px);
  width: 100%;
}

.footer-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 3px;
  justify-content: center;
  margin-bottom: clamp(20px, 5vw, 28px);
  background: rgba(0, 0, 0, 0.3);
  border-radius: clamp(10px, 2.5vw, 12px);
  padding: clamp(3px, 1vw, 4px);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.06);
  width: 100%;
}

.footer-tab {
  background: transparent;
  border: none;
  color: rgba(255, 255, 255, 0.5);
  padding: clamp(6px, 2vw, 10px) clamp(10px, 3vw, 20px);
  border-radius: 8px;
  cursor: pointer;
  font-size: clamp(10px, 2.5vw, 13px);
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  transition: all 0.3s ease;
  flex: 1;
  min-width: 60px;
  text-align: center;
  letter-spacing: 0.05em;
  touch-action: manipulation;
}

@media (max-width: 400px) {
  .footer-tab {
    font-size: 9px;
    padding: 5px 8px;
    min-width: 45px;
  }
}

.footer-tab:hover {
  color: rgba(255, 255, 255, 0.8);
  background: rgba(255, 255, 255, 0.05);
}

.footer-tab.active {
  color: #fff;
  background: rgba(122, 29, 29, 0.5);
  box-shadow: 0 4px 15px rgba(122, 29, 29, 0.3);
}

.footer-panels {
  min-height: clamp(160px, 40vh, 220px);
  margin-bottom: clamp(16px, 4vw, 24px);
  width: 100%;
}

.footer-panel {
  display: none;
  animation: fadeInPanel 0.4s ease;
  width: 100%;
}

.footer-panel.active {
  display: block;
}

@keyframes fadeInPanel {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: clamp(10px, 3vw, 16px);
  margin-bottom: clamp(8px, 2vw, 12px);
  flex-wrap: wrap;
}

@media (max-width: 480px) {
  .footer-brand {
    flex-direction: column;
    text-align: center;
  }
}

.footer-logo {
  width: clamp(40px, 12vw, 50px);
  height: auto;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  padding: 4px;
}

.footer-brand h3 {
  font-size: clamp(18px, 5vw, 22px);
  margin: 0;
  color: #fff;
}

.footer-tagline {
  font-size: clamp(10px, 2.5vw, 12px);
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin: -2px 0 clamp(6px, 1.5vw, 8px);
}

@media (max-width: 480px) {
  .footer-tagline {
    text-align: center;
  }
}

.footer-description {
  font-size: clamp(12px, 3vw, 14px);
  color: var(--gray);
  line-height: 1.7;
  max-width: 500px;
  margin: 4px 0 clamp(12px, 3vw, 16px);
}

@media (max-width: 480px) {
  .footer-description {
    text-align: center;
  }
}

.footer-social {
  display: flex;
  gap: clamp(8px, 2vw, 12px);
}

@media (max-width: 480px) {
  .footer-social {
    justify-content: center;
  }
}

.footer-social a {
  width: clamp(32px, 9vw, 38px);
  height: clamp(32px, 9vw, 38px);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.5);
  transition: all 0.3s ease;
  text-decoration: none;
}

.footer-social a svg {
  width: clamp(14px, 4vw, 18px);
  height: clamp(14px, 4vw, 18px);
}

.footer-social a:hover {
  background: rgba(122, 29, 29, 0.3);
  border-color: rgba(122, 29, 29, 0.4);
  color: #fff;
  transform: translateY(-2px);
}

.footer-panel h4 {
  font-size: clamp(16px, 4vw, 18px);
  margin: 0 0 clamp(8px, 2vw, 12px);
  color: #fff;
}

.footer-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(4px, 1.5vw, 8px) clamp(10px, 3vw, 16px);
}

@media (max-width: 480px) {
  .footer-list {
    grid-template-columns: 1fr;
  }
}

.footer-list li {
  font-size: clamp(12px, 3vw, 14px);
  color: var(--gray);
  padding: clamp(4px, 1vw, 6px) 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  transition: color 0.3s ease;
}

.footer-list li:hover {
  color: #fff;
}

.footer-contact-info {
  display: flex;
  flex-direction: column;
  gap: clamp(8px, 2vw, 12px);
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: clamp(8px, 2vw, 12px);
  font-size: clamp(12px, 3vw, 14px);
  color: var(--gray);
  transition: color 0.3s ease;
  padding: clamp(4px, 1vw, 6px) 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  word-break: break-word;
}

.footer-contact-item:hover {
  color: #fff;
}

.footer-contact-item svg {
  width: clamp(14px, 3.5vw, 18px);
  height: clamp(14px, 3.5vw, 18px);
  flex-shrink: 0;
  stroke: var(--red-light);
}

.footer-address {
  font-size: clamp(12px, 3vw, 14px);
  color: var(--gray);
  line-height: 1.8;
  margin: 0 0 clamp(10px, 2.5vw, 12px);
}

.footer-map-placeholder {
  display: flex;
  align-items: center;
  gap: clamp(8px, 2vw, 10px);
  padding: clamp(10px, 2.5vw, 12px) clamp(12px, 3vw, 16px);
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  border: 1px dashed rgba(255, 255, 255, 0.1);
  cursor: pointer;
  transition: all 0.3s ease;
  color: var(--gray);
  font-size: clamp(11px, 2.8vw, 13px);
}

.footer-map-placeholder svg {
  width: clamp(16px, 4vw, 20px);
  height: clamp(16px, 4vw, 20px);
  stroke: var(--red-light);
  flex-shrink: 0;
}

.footer-map-placeholder:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(122, 29, 29, 0.3);
}

.footer-hours {
  margin-top: clamp(10px, 2.5vw, 12px);
  display: flex;
  gap: clamp(12px, 4vw, 24px);
  flex-wrap: wrap;
}

@media (max-width: 480px) {
  .footer-hours {
    flex-direction: column;
    gap: 4px;
  }
}

.footer-hours p {
  font-size: clamp(11px, 2.8vw, 13px);
  color: var(--gray);
  margin: 0;
}

.footer-hours strong {
  color: #fff;
}

.footer-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  margin: clamp(16px, 4vw, 20px) 0;
}

.contact-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(6px, 2vw, 10px);
  align-items: center;
  justify-content: center;
  margin-bottom: clamp(16px, 4vw, 20px);
  width: 100%;
}

.contact-btn {
  display: flex;
  align-items: center;
  gap: clamp(6px, 1.5vw, 8px);
  font-size: clamp(12px, 2.8vw, 14px);
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  padding: clamp(10px, 2.5vw, 12px) clamp(14px, 4vw, 24px);
  border-radius: 10px;
  justify-content: center;
  transition: all 0.3s ease;
  border: 1px solid transparent;
  min-width: clamp(120px, 30vw, 180px);
  flex: 1;
  max-width: 100%;
  touch-action: manipulation;
}

.contact-btn svg {
  width: clamp(14px, 3.5vw, 18px);
  height: clamp(14px, 3.5vw, 18px);
  flex-shrink: 0;
}

.contact-btn.phone {
  background: rgba(0, 0, 0, 0.4);
  border-color: rgba(255, 255, 255, 0.08);
}

.contact-btn.phone:hover {
  background: rgba(0, 0, 0, 0.6);
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.contact-btn.phone svg {
  stroke: #fff;
}

.contact-btn.whatsapp {
  background: rgba(37, 211, 102, 0.12);
  border-color: rgba(37, 211, 102, 0.15);
}

.contact-btn.whatsapp:hover {
  background: rgba(37, 211, 102, 0.2);
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.1);
}

.contact-btn.whatsapp svg {
  stroke: var(--whatsapp);
}

.footer-bottom {
  text-align: center;
  padding-top: clamp(12px, 3vw, 16px);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom p {
  font-size: clamp(10px, 2.5vw, 12px);
  color: rgba(255, 255, 255, 0.3);
  margin: 0;
}

.footer-dev {
  margin-top: 4px !important;
  font-size: clamp(9px, 2vw, 11px) !important;
  color: rgba(255, 255, 255, 0.15) !important;
}

/* Animações */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.service-card {
  animation: fadeInUp 0.5s ease forwards;
}

.service-card:nth-child(1) {
  animation-delay: 0.1s;
}

.service-card:nth-child(2) {
  animation-delay: 0.2s;
}

.service-card:nth-child(3) {
  animation-delay: 0.3s;
}

/* Scrollbar */
::-webkit-scrollbar {
  width: 4px;
  height: 4px;
}

::-webkit-scrollbar-track {
  background: var(--dark);
}

::-webkit-scrollbar-thumb {
  background: var(--red);
  border-radius: 2px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--red-light);
}