:root {
  --color-red: #c50000;
  --color-green: #17a957;
  --color-black: #111111;
  --color-gray: #f4f4f4;
  --radius: 14px;
  --shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
  --container: 1200px;
  --header-h: 84px;
  --header-bg: #cf0f15;
  --header-shadow: 0 6px 20px rgba(0, 0, 0, 0.18);
  --pill-radius: 999px;
  --card-radius: 16px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  color: var(--color-black);
  background: linear-gradient(135deg, #fafafa 0%, #f0f0f0 50%, #fafafa 100%);
  background-attachment: fixed;
  line-height: 1.5;
  padding-top: var(--header-h);
  position: relative;
}

body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    linear-gradient(rgba(197, 0, 0, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(197, 0, 0, 0.02) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
  z-index: -1;
}

@media (max-width: 767px) {
  body {
    background: #f5f5f5;
  }

  body::before {
    background-image: none;
  }
}

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

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

button {
  font: inherit;
  border: none;
  background: none;
}

:focus-visible {
  outline: 3px solid var(--color-black);
  outline-offset: 2px;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  padding: 64px 0;
}

.section-header {
  margin-bottom: 32px;
}

.section-title {
  font-size: clamp(1.7rem, 3vw, 2.6rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.section-subtitle {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--color-red);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 6px;
}

.grid {
  display: grid;
  gap: 24px;
}

.card {
  background: #ffffff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid rgba(0, 0, 0, 0.06);
  overflow: hidden;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  cursor: pointer;
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.18);
}

.btn--whatsapp {
  background: #16a34a;
  color: #ffffff;
}

.btn--instagram {
  background: linear-gradient(135deg, #7c3aed, #ec4899, #f97316);
  color: #ffffff;
}

.btn--primary {
  background: var(--color-red);
  color: #ffffff;
  border: 2px solid var(--color-black);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background: var(--header-bg);
  box-shadow: var(--header-shadow);
}

.header__content {
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 0;
}

.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.92);
  border-radius: 14px;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.12);
}

.logo img {
  height: 36px;
  width: auto;
  max-width: 220px;
  display: block;
  object-fit: contain;
}

.header__actions {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: flex-end;
}

.header__actions .btn {
  border-radius: var(--pill-radius);
  padding: 10px 14px;
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: none;
  letter-spacing: 0;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(6px);
  transform: translateY(0);
  transition: transform 0.15s ease, box-shadow 0.15s ease, filter 0.15s ease;
}

.header__actions .btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  filter: brightness(1.03);
}

.header__actions .btn:active {
  transform: translateY(0);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.14);
}

.header__actions .btn img {
  width: 18px;
  height: 18px;
}

.hero {
  position: relative;
}

.hero__media {
  position: relative;
  min-height: 68vh;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  color: #ffffff;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 640px;
}

.hero__title {
  font-size: clamp(2.4rem, 6vw, 4.5rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.hero__subtitle {
  font-size: 1.1rem;
  font-weight: 700;
  color: #ffffff;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.hero__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.55);
  color: #ffffff;
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
}

.hero__arrow--prev {
  left: 16px;
}

.hero__arrow--next {
  right: 16px;
}

.hero__strip {
  background: var(--color-red);
  color: #ffffff;
  text-align: center;
  font-weight: 800;
  letter-spacing: 2px;
  padding: 12px 0;
  text-transform: uppercase;
}

.services-grid {
  grid-template-columns: 1fr;
}

.service-card {
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: block;
  text-decoration: none;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.18);
}

.service-card:active {
  transform: translateY(-4px);
}

.service-card img {
  height: 180px;
  width: 100%;
  object-fit: cover;
}

.service-card__content {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.service-card__content h3 {
  font-size: 1.2rem;
  font-weight: 800;
  text-transform: uppercase;
}

.service-card__content p {
  font-size: 0.95rem;
  color: #444444;
}

.service-card__content .btn {
  align-self: stretch;
  justify-content: center;
  border-radius: 12px;
  font-size: 0.85rem;
  padding: 10px 16px;
  letter-spacing: 0.6px;
}

.service-card__content .btn img {
  width: 18px;
  height: 18px;
}

.brands-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 24px;
}

.brand-item {
  background: #ffffff;
  border-radius: var(--radius);
  padding: 16px 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
}

.brand-item img {
  max-width: 100px;
  max-height: 50px;
  object-fit: contain;
}

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

.why-card {
  padding: 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.why-card__icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--color-gray);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}

.tradition-card {
  margin-top: 32px;
  background: #f9f9f9;
  border-radius: var(--radius);
  display: grid;
  grid-template-columns: 8px 1fr;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.tradition-card__bar {
  background: var(--color-red);
}

.tradition-card div:last-child {
  padding: 24px;
}

.tradition-card h3 {
  font-size: 1.4rem;
  margin-bottom: 8px;
}

.tradition-card p {
  margin-bottom: 12px;
}

.tradition-card p:last-child {
  margin-bottom: 0;
}

.testimonials-grid {
  grid-template-columns: 1fr;
}

.testimonial-card {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.testimonial-card__header {
  display: flex;
  align-items: center;
  gap: 16px;
}

.testimonial-card__foto {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.testimonial-card__info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.testimonial-card__nome {
  font-size: 1rem;
}

.testimonial-card__stars {
  display: flex;
  gap: 4px;
}

.testimonial-card__stars img {
  width: 16px;
  height: 16px;
}

.testimonial-card p {
  color: #444444;
}

.location-grid {
  grid-template-columns: 1fr;
}

.location-card {
  overflow: hidden;
}

.location-card > a {
  display: block;
}

.location-card__content {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.location-card__item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: #444444;
}

.location-card__item a {
  color: inherit;
  text-decoration: none;
}

.location-card__item a:hover {
  text-decoration: underline;
}

.location-card__item--schedule span {
  line-height: 1.6;
}

.map-card {
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 320px;
  box-shadow: var(--shadow);
}

.map-card iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.site-footer {
  padding: 28px 0;
  background: var(--color-black);
  color: #ffffff;
  text-align: center;
}

.floating-action {
  position: fixed;
  bottom: 22px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.25);
  z-index: 120;
}

.floating-action--left {
  left: 20px;
  background: #f59f00;
}

.floating-action--right {
  right: 20px;
  background: var(--color-green);
}

.floating-action img {
  width: 28px;
  height: 28px;
}

section {
  scroll-margin-top: 110px;
}
