@import url("https://fonts.googleapis.com/css2?family=Gabarito:wght@400..900&display=swap");

:root {
  --bg: #0b0b0c;
  --bg-2: #111114;
  --text: #f5f5f7;
  --muted: #b7b7bd;
  --card: #f3f3f5;
  --card-2: #ffffff;
  --pill: #ef2b2b;
  --pill-2: #ff3b30;
  --shadow: 0 18px 50px rgba(0, 0, 0, 0.25);
  --radius: 18px;
  --radius-lg: 28px;
  --container: 1920px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: "Gabarito", system-ui, -apple-system, Segoe UI, Roboto, Inter,
    Arial, sans-serif;
  color: #111;
  overflow-x: hidden;
}

html {
  font-size: 93.75%;
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

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

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

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

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  padding: 1.125rem 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0));
  backdrop-filter: saturate(180%) blur(0.625rem);
  transition: background 0.3s ease;
}

.header .container {
  padding: 0 2.5rem;
}

.header.scrolled {
  background: rgba(0, 0, 0, 0.95);
}

.header .row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

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

.brand img {
  height: 2.5rem;
  width: auto;
  object-fit: contain;
}

@media (min-width: 769px) {
  .brand {
    padding-top: 1rem;
  }
}

.brand img:first-child {
  width: 2.5rem;
  height: 2.5rem;
}

.brand-badge {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0.5rem 0.75rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 0.0625rem solid rgba(255, 255, 255, 0.1);
  color: var(--text);
}

.brand-badge small {
  opacity: 0.75;
}

.nav {
  display: flex;
  gap: 2rem;
  align-items: center;
  padding-top: 1rem;
  color: var(--text);
}

.nav a {
  opacity: 0.86;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

.nav a:hover {
  opacity: 1;
  border-color: var(--pill);
}

.nav a.active {
  background: var(--pill);
  opacity: 1;
  padding: 0.5rem 1rem;
  border-color: var(--pill);
}

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 0.3125rem;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.3125rem;
  z-index: 100;
}

.mobile-menu-btn span {
  width: 1.5rem;
  height: 0.125rem;
  background: var(--text);
  border-radius: 0.125rem;
  transition: all 0.3s ease;
}

.hero {
  min-height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  padding-top: 5.625rem;
  color: var(--text);
  background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.85)),
    url("./assets/hero.png") center/cover no-repeat;
}

@supports (
  background-image:
    image-set(url("./assets/hero-1280.webp") type("image/webp") 1x)
) {
  .hero {
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.85)),
      image-set(
          url("./assets/hero-1280.webp") type("image/webp") 1x,
          url("./assets/hero-1920.webp") type("image/webp") 2x,
          url("./assets/hero.png") type("image/png") 1x
        )
        center/cover no-repeat;
  }
}

.hero .content {
  max-width: 760px;
  width: 100%;
  text-align: center;
  margin: 0 auto;
  padding: 0 1rem;
}

.hero h1 {
  font-size: 3.5rem;
  line-height: 1.05;
  margin: 0 0 0.875rem;
}

.hero p {
  margin: 0 0 1.375rem;
  color: var(--muted);
  font-size: 1rem;
}

.hero .hero-subtitle {
  color: var(--text);
  font-size: 2rem;
  font-weight: 700;
  max-width: 47.5rem;
  margin: 1rem auto 1.375rem;
  line-height: 1.3;
}

.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 3rem;
  padding: 0 2.8rem;
  border-radius: 999px;
  background: var(--pill);
  color: white;
  font-size: 1.5rem;
  font-weight: 650;
  box-shadow: 0 0.75rem 1.875rem rgba(239, 43, 43, 0.25);
  margin-top: 3rem;
  transition: all 0.3s ease;
}

.cta:hover {
  background: var(--pill-2);
  transform: scale(1.05);
}

.section {
  padding: 4.75rem 0;
  background: #fff;
}

.section.alt {
  background: #fafafa;
}

.section.alt.apple-site-section {
  background: #efefef;
}

.section h2 {
  margin: 0 0 0.625rem;
  text-align: center;
  font-size: 2.625rem;
  font-weight: 800;
  color: #111;
  margin-bottom: 24px;
}

.section .lead {
  max-width: 51.25rem;
  margin: 0 auto 2.25rem;
  text-align: center;
  color: #666;
  font-size: 0.875rem;
  line-height: 1.6;
}

.cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.125rem;
}

.card {
  background: var(--card);
  border-radius: var(--radius);
  padding: 1.125rem 1.5rem 1.25rem;
  min-height: 8.75rem;
  max-width: 20rem;
}

.dot {
  width: 1rem;
  height: 1rem;
  border-radius: 999px;
  background: var(--pill);
  margin-bottom: 0.75rem;
}

.card h3 {
  margin: 0 0 0.5rem;
  font-size: 1rem;
}

.card p {
  margin: 0;
  color: #666;
  font-size: 0.75rem;
  line-height: 1.5;
}

/* Soluções Section Styles */
.solucoes-section {
  padding: 54px 20px;
  font-family: "Gabarito", system-ui, -apple-system, Segoe UI, Roboto, Inter,
    Arial, sans-serif;
}

.solucoes-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.solucoes-lead {
  font-size: clamp(1.125rem, 0.9vw + 1rem, 1.5rem) !important;
  line-height: 1.6;
  color: #666;
  max-width: 900px;
  margin: 0 auto 24px auto;
}

.solucoes-emphasis {
  font-size: 1.125rem;
  font-weight: 700;
  color: #111;
  max-width: 900px;
  margin: 0 auto 60px auto;
  line-height: 1.5;
}

.solucoes-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
  text-align: left;
}

.solucao-card {
  background-color: #f2f2f2;
  border-radius: 32px;
  padding: 34px 28px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.solucao-card:hover {
  transform: scale(1.05);
}

.solucao-dot {
  width: 40px;
  height: 40px;
  background-color: #ea3737;
  border-radius: 50%;
  margin-bottom: 20px;
  transition: transform 0.3s ease;
}

@keyframes pulse {
  from {
    transform: scale(1);
  }

  to {
    transform: scale(1.2);
  }
}

.solucao-card:hover .solucao-dot {
  transform: scale(1.1);
  animation: pulse 0.6s ease-in-out infinite alternate;
}

.solucao-card h3 {
  font-size: 1.375rem;
  font-weight: 800;
  color: #000;
  margin-bottom: 14px;
  transition: color 0.3s ease;
}

.solucao-card:hover h3 {
  color: #ea3737;
}

.solucao-card p {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: #555;
  margin: 0;
}

.solucoes-footer {
  font-size: 0.875rem;
  color: #888;
  margin-top: 40px;
  font-style: italic;
}

.about {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1.375rem;
  align-items: center;
  background: #f2f2f4;
  border-radius: var(--radius-lg);
  padding: 1.625rem;
  font-family: "Gabarito", system-ui, -apple-system, Segoe UI, Roboto, Inter,
    Arial, sans-serif;
}

.about p {
  color: #444;
  font-size: 0.8125rem;
  line-height: 1.65;
  margin: 0 0 0.75rem;
}

.kpis {
  display: flex;
  gap: 0.625rem;
  flex-wrap: wrap;
  margin-top: 0.875rem;
}

.kpi {
  background: #fff;
  border-radius: 999px;
  padding: 0.5rem 0.75rem;
  font-size: 0.75rem;
  color: #222;
  border: 0.0625rem solid rgba(0, 0, 0, 0.06);
}

.about .photo {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.banner {
  padding: 3rem 1.25rem;
  background: #1a1a1a;
  color: var(--text);
  text-align: center;
  font-size: clamp(1.5rem, 5vw, 2.5rem);
  font-weight: 700;
  line-height: 1.2;
  width: 100%;
  max-width: none;
  margin: 0;
  overflow-wrap: anywhere;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.banner.visible {
  opacity: 1;
  transform: translateY(0);
}

.contact {
  display: grid;
  grid-template-columns: 1fr 1fr 1.25fr;
  gap: 1.125rem;
  align-items: stretch;
  margin-top: 1.5rem;
}

.box {
  background: #f2f2f4;
  border-radius: var(--radius-lg);
  padding: 1.125rem;
  box-shadow: 0 0.625rem 1.875rem rgba(0, 0, 0, 0.08);
}

.box h4 {
  margin: 0 0 0.5rem;
  font-size: 0.875rem;
}

.box p {
  margin: 0;
  color: #555;
  font-size: 0.75rem;
  line-height: 1.5;
}

.btn {
  margin-top: 0.75rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 2.375rem;
  padding: 0 0.875rem;
  border-radius: 999px;
  background: var(--pill);
  color: #fff;
  font-weight: 650;
  font-size: 0.75rem;
}

.map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 0.625rem 1.875rem rgba(0, 0, 0, 0.12);
  min-height: 13.75rem;
}

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

.footer {
  background: #0b0b0c;
  color: var(--text);
  padding: 2.125rem 0;
  margin-top: 0;
}

.footer .row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.footer small {
  color: #9c9ca3;
}

.irp-hero {
  background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.85)),
    url("./assets/hero-irp.png") center/cover no-repeat;
}

@supports (
  background-image:
    image-set(url("./assets/hero-irp-1280.webp") type("image/webp") 1x)
) {
  .irp-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.85)),
      image-set(
          url("./assets/hero-irp-1280.webp") type("image/webp") 1x,
          url("./assets/hero-irp-1920.webp") type("image/webp") 2x,
          url("./assets/hero-irp.png") type("image/png") 1x
        )
        center/cover no-repeat;
  }
}

.irp-word {
  position: relative;
  display: inline-block;
  font-size: 6.875rem;
  letter-spacing: 0.02em;
  font-weight: 900;
  margin: 0;
  line-height: 1;
}

.tag {
  position: absolute;
  background: var(--pill);
  color: #fff;
  font-weight: 750;
  font-size: 0.75rem;
  padding: 0.375rem 0.625rem;
  border-radius: 999px;
  box-shadow: 0 0.625rem 1.25rem rgba(239, 43, 43, 0.25);
}

.tag.repair {
  top: -1rem;
  left: 50%;
  transform: translateX(-50%);
}

.tag.independent {
  left: -0.625rem;
  top: 46%;
}

.tag.provider {
  right: -0.625rem;
  top: 46%;
}

.irp-sub {
  margin-top: 0.625rem;
  letter-spacing: 0.28em;
  text-transform: lowercase;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.7);
}

.irp-split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1.5rem;
  align-items: center;
}

.pills {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  margin-top: 0.875rem;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  background: #f2f2f4;
  border-radius: 999px;
  padding: 0.625rem 0.875rem;
  font-size: 0.75rem;
  border: 0.0625rem solid rgba(0, 0, 0, 0.06);
}

.stamp {
  display: flex;
  justify-content: center;
  align-items: center;
}

.callout {
  background: #efefef;
  border-radius: var(--radius-lg);
  padding: 1.5rem;
}

.callout h3 {
  margin: 0 0 0.5rem;
}

.callout p {
  margin: 0 0 0.875rem;
  color: #444;
  font-size: 0.8125rem;
  line-height: 1.6;
}

/* IRP Page Specific Styles */
.irp-title {
  text-align: left;
  margin: 0 0 6px;
}

.irp-subtitle {
  color: #666;
  font-size: 13px;
  margin-bottom: 12px;
}

.irp-description {
  color: #444;
  font-size: 13px;
  line-height: 1.65;
  margin: 0;
}

.spacer-sm {
  height: 10px;
}

.spacer-md {
  height: 14px;
}

.center-card-irp {
  text-align: center;
}

.irp-logo {
  width: 54px;
  height: 54px;
  margin: 6px auto 10px;
}

/* Responsive */
@media (max-width: 980px) {
  .cards {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

  .hero h1 {
    font-size: 2.625rem;
  }

  .irp-word {
    font-size: 5.375rem;
  }

  .solucoes-cards {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
}

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

  .nav {
    position: fixed;
    top: 0;
    right: 0;
    width: 17.5rem;
    height: 100vh;
    background: var(--bg-2);
    flex-direction: column;
    align-items: flex-start;
    padding: 7.5rem 1.5rem 1.5rem;
    transition: transform 0.3s ease;
    transform: translateX(100%);
    box-shadow: -0.3125rem 0 1.25rem rgba(0, 0, 0, 0.3);
  }

  .nav.active {
    transform: translateX(0);
  }

  .nav a {
    width: 100%;
    padding: 1rem 0;
    border-radius: 0.5rem;
    font-size: 1.125rem;
    text-align: left;
    color: var(--text);
  }

  .nav a.active {
    padding: 1rem 0.875rem;
  }

  .header {
    background: rgba(0, 0, 0, 0.9);
    width: 100%;
  }

  .header.scrolled {
    background: rgba(0, 0, 0, 0.98);
  }

  .brand img {
    height: 2rem;
  }

  .brand img:first-child {
    width: 2rem;
    height: 2rem;
  }

  .hero-subtitle {
    font-size: 1.25rem;
  }

  .irp-word {
    font-size: 4rem;
  }

  .irp-split {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .solucoes-section {
    padding: 40px 20px;
  }

  .solucao-card {
    padding: 30px 24px;
  }
}

@media (max-width: 560px) {
  .cards {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    font-size: 1.75rem;
  }

  .irp-word {
    font-size: 3rem;
  }

  .hero-subtitle {
    font-size: 1.1rem;
  }

  .hero .content {
    padding: 0 0.5rem;
  }

  .cta {
    font-size: 1rem;
    padding: 0 1.5rem;
    height: 2.75rem;
  }

  .solucoes-cards {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .solucao-card {
    padding: 24px 20px;
  }

  .solucoes-lead {
    font-size: 1.125rem !important;
  }

  .solucoes-emphasis {
    font-size: 1rem !important;
  }

  .section h2 {
    font-size: 1.75rem;
  }
}

/* About Section Styles */
.about-section {
  background-color: #f2f2f2;
  padding: 5rem 0;
  font-family: "Gabarito", system-ui, -apple-system, Segoe UI, Roboto, Inter,
    Arial, sans-serif;
}

.about-container {
  max-width: 950px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: stretch;
}

.about-content {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.about-title {
  text-align: left !important;
  margin: 0 0 1.5rem;
  font-size: 2.25rem;
  font-weight: 800;
  color: #111;
  letter-spacing: -0.02em;
}

.about-text {
  font-size: 1.3rem;
  line-height: 1.6;
  color: #86868b;
  margin-bottom: 1rem;
}

.about-text-emphasis {
  font-size: 1.3rem;
  line-height: 1.5;
  color: #1d1d1f;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.about-strong {
  color: #1d1d1f;
  font-weight: 700;
}

.about-kpis {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: flex-start;
  align-items: center;
  margin-top: auto;
}

.about-kpi {
  background-color: #e3e3e3;
  color: #1d1d1f;
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.95rem;
  display: inline-block;
}

.about-image {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  max-width: 100%;
}

.about-image picture {
  display: block;
  width: 100%;
}

.about-image img {
  width: 100%;
  height: auto;
  max-width: 100%;
  max-height: none;
  border-radius: 2rem;
  display: block;
  object-fit: contain;
}

@media (max-width: 991px) {
  .about-grid {
    grid-template-columns: 1fr !important;
    gap: 3rem !important;
  }

  .about-text,
  .about-text-emphasis {
    font-size: 1.1rem;
  }

  .about-image img {
    max-height: 400px;
    width: 100%;
    object-fit: cover;
  }
}

/* Footer Styles */
.footer {
  background-color: #000000;
  color: #ffffff;
  padding: 40px 0;
  font-family: "Gabarito", system-ui, -apple-system, Segoe UI, Roboto, Inter,
    Arial, sans-serif;
}

.footer-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 40px;
  flex-wrap: wrap;
  gap: 30px;
}

.brand-group {
  display: flex;
  align-items: center;
  gap: 15px;
  flex: 1;
  min-width: 200px;
}

.brand-logo {
  height: 40px;
  width: auto;
  object-fit: contain;
}

.custom-icon {
  height: 50px;
  width: auto;
}

.footer .center-text {
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.5px;
  text-align: center;
  flex: 0 0 auto;
  padding: 0 20px;
}

.social-box {
  background-color: transparent;
  padding: 10px 20px;
  display: flex;
  gap: 15px;
  border-radius: 4px;
  flex: 1;
  min-width: 200px;
  justify-content: flex-end;
}

.social-link {
  color: #ffffff;
  opacity: 0.8;
  transition: opacity 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
}

.social-link:hover {
  opacity: 1;
  border-color: #fff;
}

.footer-divider {
  border: 0;
  border-top: 1px solid #333333;
  margin: 0;
  margin-bottom: 30px;
}

.footer-bottom {
  text-align: center;
  font-size: 12px;
  color: #cccccc;
  font-weight: 300;
}

.footer-bottom.center-text {
  font-size: 12px;
  font-weight: 300;
  letter-spacing: normal;
}

.footer-bottom.center-text {
  flex: 1 1 100%;
  width: 100%;
  text-align: center;
}

@media (max-width: 991px) {
  .footer-top {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .footer .center-text {
    order: 2;
    margin: 20px 0;
    width: 100%;
  }

  .brand-group {
    order: 1;
    justify-content: center;
    flex: none;
    width: 100%;
  }

  .social-box {
    order: 3;
    justify-content: center;
    flex: none;
    width: 100%;
  }

  .footer-bottom {
    font-size: 11px;
    padding: 0 1rem;
  }
}

/* Contact Section Styles */
#contato {
  font-family: "Gabarito", system-ui, -apple-system, Segoe UI, Roboto, Inter,
    Arial, sans-serif;
  padding: 3.5rem 0;
  background-color: #fff;
  color: #111;
}

#contato .container {
  max-width: 75%;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.contact-section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.contact-section-header h2 {
  font-size: 2.5rem;
  font-weight: 800;
  margin: 0 0 0.5rem 0;
  color: #111;
}

.contact-section-header p {
  color: #888;
  font-size: 1.1rem;
  margin: 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;

  /* align-items: stretch; */
}

@media (min-width: 768px) and (max-width: 991px) {
  .contact-grid {
    grid-template-columns: minmax(320px, 380px) 1fr;
    grid-template-areas:
      "left left"
      "center map";
    align-items: stretch;
  }

  .contact-grid .left-column {
    grid-area: left;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-template-rows: 1fr;
    height: auto;
  }

  .contact-grid .center-card {
    grid-area: center;
  }

  .contact-grid .map-wrapper {
    grid-area: map;
  }
}

@media (min-width: 992px) {
  .contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 1.5rem;
    align-items: stretch;
  }
}

.card-gray {
  background-color: #f2f4f6;
  border-radius: 30px;
  padding: 2rem;
  box-sizing: border-box;
}

.left-column {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  flex: 1;
  height: 100%;
  min-height: 100%;
  justify-content: space-between;
}

@media (min-width: 992px) {
  .left-column {
    display: grid;
    grid-template-rows: repeat(3, 1fr);
    height: 100%;
    min-height: 0;
    justify-content: initial;
  }
}

.info-card {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  position: relative;
  flex: 1;
}

@media (min-width: 992px) {
  .info-card {
    height: 100%;
    min-height: 0;
  }
}

.info-card .icon-col {
  flex-shrink: 0;
  padding-top: 0.25rem;
}

.red-dot {
  width: 32px;
  height: 32px;
  background-color: #ef4444;
  border-radius: 50%;
  display: block;
}

.info-content h4 {
  font-size: 1rem;
  font-weight: 800;
  margin: 0 0 0.25rem 0;
  color: #000;
}

.info-content p {
  font-size: 1rem;
  line-height: 1.5;
  margin: 0 0 0.5rem 0;
  color: #333;
  font-weight: 500;
}

.info-content .address-lines {
  font-weight: 500;
  color: #000;
  font-size: 1.1rem;
  line-height: 1.4;
}

.btn-red {
  display: inline-block;
  background-color: #ef4444;
  color: #fff;
  text-decoration: none;
  padding: 0.6rem 1.25rem;
  border-radius: 99px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: background-color 0.2s;
  margin-top: 0.5rem;
  text-align: center;
  transition: transform 0.3s ease;
}

.btn-red:hover {
  background-color: #dc2626;
  transform: scale(1.05);
}

.btn-full {
  display: block;
  width: 100%;
  max-width: 250px;
  margin-left: auto;
  margin-right: auto;
  padding: 0.8rem 1.5rem;
}

.center-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex: 1;
  padding: 3rem 2rem;
}

@media (min-width: 992px) {
  .center-card {
    height: 100%;
    min-height: 0;
  }
}

.center-card img {
  width: 150px;
  height: auto;
  margin-bottom: 2rem;
  margin-top: 4rem;
}

.center-card h4 {
  font-size: 1.25rem;
  font-weight: 800;
  margin: 0 0 1rem 0;
  color: #000;
}

.center-card p {
  color: #666;
  margin-bottom: 2rem;
  font-size: 1rem;
  line-height: 1.6;
  max-width: 280px;
}

.map-wrapper {
  width: 100%;
  flex: 1;
  min-height: 400px;
  border-radius: 30px;
  overflow: hidden;
  position: relative;
}

@media (min-width: 992px) {
  .map-wrapper {
    height: 100%;
    min-height: 0;
  }
}

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

@media (max-width: 991px) {
  #contato .container {
    max-width: 100%;
  }
}

/* IRP Page Styles */
.section-irp {
  padding: 4rem 1.5rem;
  background-color: #ffffff;
  font-family: "Gabarito", system-ui, -apple-system, Segoe UI, Roboto, Inter,
    Arial, sans-serif;
  color: #1d1d1f;
}

.irp-container {
  max-width: 1140px;
  margin: 0 auto;
}

.irp-split {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3rem;
}

/* Typography */
.irp-content {
  flex: 1;
  width: 100%;
}

.irp-title {
  font-size: 2.25rem;

  /* ~36px */
  font-weight: 800;
  color: #000000;
  margin: 0 0 0.5rem 0;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.irp-subtitle {
  font-size: 1.25rem;

  /* ~20px */
  font-weight: 400;
  color: #111;
  margin-bottom: 2rem;
  line-height: 1.4;
}

.irp-description {
  font-size: 1rem;
  line-height: 1.65;
  color: #86868b;
  margin-bottom: 2.5rem;
  max-width: 600px;
}

/* Pills Component */
.pills {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: flex-start;
}

.pill {
  background-color: #e8e8ed;

  /* Apple-ish light gray */
  color: #000;
  padding: 0.8rem 1.75rem;
  border-radius: 9999px;

  /* Fully rounded */
  font-weight: 700;
  font-size: 0.95rem;
  line-height: 1.2;
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.pill:hover {
  background-color: #d2d2d7;
  transform: translateX(4px);
}

/* Image Side */
.irp-image-col {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.irp-image-col img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 400px;

  /* Subtle drop shadow for depth */
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.1));
  border-radius: 4px;
  object-fit: contain;
}

/* IRP Page Desktop Breakpoint */
@media (min-width: 992px) {
  .section-irp {
    padding: 6rem 2rem;
  }

  .irp-container {
    max-width: 980px;
  }

  .irp-split {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: start;
    column-gap: 2.5rem;
  }

  .irp-content {
    flex: initial;
    width: 100%;
  }

  .irp-image-col {
    flex: initial;
    width: fit-content;
    justify-content: flex-end;
    align-self: center;
    justify-self: end;
  }

  .irp-title {
    font-size: 3rem;

    /* ~48px */
  }

  .irp-subtitle {
    font-size: 1.5rem;

    /* ~24px */
  }

  .irp-description {
    font-size: 1.125rem;

    /* ~18px */
    max-width: 720px;
  }

  .irp-image-col {
    max-width: none;
  }

  .irp-image-col img {
    width: auto;
    height: clamp(320px, 40vw, 400px);
    max-height: 400px;
    object-fit: contain;
  }
}

/* Apple Site Section */
.apple-site-section {
  width: 100%;
}

.apple-site-section h2 {
  font-size: 32px;
  line-height: 1.1;
  font-weight: 800;
  color: #333333;
  margin: 0 0 4px 0;
}

.apple-site-section .sub-title {
  font-size: 24px;
  line-height: 1.25;
  font-weight: 400;
  color: #333333;
  margin: 0 0 24px 0;
}

.apple-site-section .description {
  font-size: 17px;
  line-height: 1.5;
  color: #86868b;
  margin-bottom: 20px;
  max-width: 820px;
}

.apple-site-section .emphasis {
  font-size: 17px;
  line-height: 1.5;
  color: #000000;
  font-weight: 500;
  margin-bottom: 20px;
  max-width: 820px;
}

.apple-site-section .cta-link {
  display: inline-block;
  background-color: #ee3434;
  color: #ffffff;
  text-decoration: none;
  padding: 16px 36px;
  border-radius: 999px;
  font-size: 17px;
  font-weight: 500;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.apple-site-section .cta-link:hover {
  background-color: #dc2626;
  transform: scale(1.05);
}

.whatsapp-fab {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 58px;
  height: 58px;
  border-radius: 999px;
  background: #25d366;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.28);
  z-index: 120;
  transition: transform 0.2s ease, box-shadow 0.2s ease,
    background-color 0.2s ease;
}

.whatsapp-fab:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.34);
  background: #1fb457;
}

.whatsapp-fab:focus-visible {
  outline: 3px solid rgba(255, 255, 255, 0.9);
  outline-offset: 3px;
}

.whatsapp-fab svg {
  width: 28px;
  height: 28px;
}

@media (max-width: 560px) {
  .whatsapp-fab {
    right: 16px;
    bottom: 16px;
    width: 54px;
    height: 54px;
  }
}

/* Apple Site Section - Specific styles */
.apple-site-section .container {
  max-width: 980px;
  margin: 0 auto;
  text-align: left;
}

.apple-site-section h2 {
  text-align: left;
}

.apple-site-section .sub-title {
  text-align: left;
  font-size: 1.5rem;
  color: #333;
  margin-bottom: 1rem;
}

.apple-site-section .description {
  text-align: left;
  max-width: 820px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.apple-site-section .emphasis {
  text-align: left;
  max-width: 820px;
  margin-bottom: 1.5rem;
  font-weight: 600;
  color: #111;
}

.apple-site-section .cta-link {
  display: inline-block;
  background-color: #ef4444;
  color: #ffffff;
  text-decoration: none;
  padding: 1rem 2.25rem;
  border-radius: 999px;
  font-size: 1.0625rem;
  font-weight: 500;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.apple-site-section .cta-link:hover {
  background-color: #dc2626;
  transform: scale(1.05);
}
