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

html, body {
  font-family: 'Inter', sans-serif;
  background: #ffffff;
  color: #1a1a1a;
  width: 100%;
  max-width: 430px;
  margin: 0 auto;
  overflow-x: hidden;
}

/* ──────────── BANNER ──────────── */
.banner {
  position: relative;
  background-image: url('images/logorocha.jpg');
  background-size: cover;
  background-position: center;
  min-height: 300px;
}

.banner-wave {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 50px;
  z-index: 2;
}

.banner-wave svg {
  width: 100%;
  height: 100%;
  display: block;
}

/* ──────────── REDES SOCIAIS ──────────── */
.social-bar {
  display: flex;
  justify-content: center;
  gap: 28px;
  background: #ffffff;
  padding: 18px 20px 8px;
}

.social-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  text-decoration: none;
  color: #04006a;
  font-size: 11px;
  font-weight: 600;
}

.social-link svg {
  width: 28px;
  height: 28px;
  color: #04006a;
  transition: transform 0.15s ease;
}

.social-link:active svg {
  transform: scale(0.9);
}

/* ──────────── TÓPICOS ──────────── */
.topics-section {
  background: #ffffff;
  padding: 36px 20px 40px;
}

.topics-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-auto-rows: 1fr;
  gap: 12px;
  margin-bottom: 36px;
}


.topic-card {
  position: relative;
  overflow: hidden;
  z-index: 1;
  background: #f4f8ff;
  border: 1.5px solid #04006a;
  border-radius: 14px;
  padding: 12px 10px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  min-height: 64px;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.topic-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent 0%,
    rgba(255, 255, 255, 0) 30%,
    rgba(255, 255, 255, 0.7) 50%,
    rgba(255, 255, 255, 0) 70%,
    transparent 100%
  );
  animation: shine 2.8s ease-in-out infinite;
}

.topic-card:nth-child(2)::after { animation-delay: 0.7s; }
.topic-card:nth-child(3)::after { animation-delay: 1.4s; }
.topic-card:nth-child(4)::after { animation-delay: 2.1s; }

@keyframes shine {
  0%   { left: -75%; }
  55%  { left: 125%; }
  100% { left: 125%; }
}

.topic-card:active {
  transform: scale(0.97);
  box-shadow: 0 2px 10px rgba(21, 101, 192, 0.18);
}

.topic-card p {
  font-size: 11.5px;
  font-weight: 600;
  color: #04006a;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  line-clamp: 2;
  overflow: hidden;
}

/* ──────────── PHONE DISPLAY ──────────── */
.phone-display {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #ffffff;
  border: 2px solid #25d366;
  border-radius: 50px;
  padding: 10px 22px;
  margin: 20px auto 10px;
  width: fit-content;
  color: #1a1a1a;
  font-size: 14px;
  font-weight: 700;
}

.phone-display svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

/* ──────────── WHATSAPP BTN ──────────── */
.whatsapp-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #25d366;
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  border-radius: 50px;
  padding: 13px 24px;
  margin: 0 auto 32px;
  width: fit-content;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.4);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.whatsapp-btn:active {
  transform: scale(0.96);
  box-shadow: 0 2px 8px rgba(37, 211, 102, 0.3);
}

.whatsapp-icon {
  width: 22px;
  height: 22px;
}

/* ──────────── SOBRE A EMPRESA ──────────── */
.about-text {
  margin-bottom: 36px;
  padding: 0 2px;
  text-align: center;
}

.about-text h2 {
  font-size: 18px;
  font-weight: 700;
  color: #04006a;
  margin-bottom: 12px;
  position: relative;
  padding-bottom: 10px;
}

.about-text h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 3px;
  background: #04006a;
  border-radius: 2px;
}

.about-text p {
  font-size: 13.5px;
  color: #444;
  line-height: 1.75;
}

/* ──────────── DIFERENCIAIS ──────────── */
.differentials {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 8px;
}

.differential-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.diff-icon-wrap {
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.diff-img {
  width: 70px;
  height: 70px;
  object-fit: contain;
}

.diff-label {
  font-size: 11.5px;
  font-weight: 600;
  color: #04006a;
  text-align: center;
  line-height: 1.5;
}

/* ──────────── MAPA ──────────── */
.map-section {
  background: #ffffff;
  padding: 32px 0 36px;
}

.map-title {
  font-size: 16px;
  font-weight: 700;
  color: #04006a;
  text-align: center;
  line-height: 1.4;
  position: relative;
  padding-bottom: 12px;
  margin-bottom: 20px;
}

.map-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 3px;
  background: #04006a;
  border-radius: 2px;
}

.map-wrapper {
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(4, 0, 106, 0.12);
}

.map-wrapper iframe {
  width: 100%;
  height: 240px;
  display: block;
  border: 0;
}

/* ──────────── FOOTER ──────────── */
.footer-link {
  color: inherit;
  text-decoration: none;
}

.footer {
  background: #ffffff;
  color: #04006a;
  text-align: center;
  padding: 20px 16px;
  font-size: 11px;
  margin-top: 0;
}
