/* Base Styles & Variables */
:root {
  --primary: #c0001a;
  /* Deep Burgundy/Red */
  --primary-light: #c0001a;
  --secondary: #d1ab73;
  /* Gold Accent */
  --secondary-hover: #b89158;
  --text-dark: #1a1a1a;
  --text-light: #fff6cf;
  /* Off-white / pale yellow */
  --bg-light: #f9f9f9;
  --bg-white: #ffffff;
  --font-body: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  --font-heading: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

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

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background-color: var(--bg-white);
  line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
}

h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  font-weight: 800;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

ul {
  list-style: none;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

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

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 1.5rem;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  border-radius: 4px;
  transition: all 0.3s;
  cursor: pointer;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: #FFF;
  border: none;
}

.btn-primary:hover {
  background: linear-gradient(135deg, #b89158 0%, #8b6630 100%);
  color: white;
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 1px solid var(--primary);
}

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

.btn-dark {
  background: var(--primary);
  color: var(--text-light);
  border: none;
}

.btn-dark:hover {
  background: var(--primary-light);
}

.section-subtitle {
  display: block;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

/* Topbar */
.topbar {
  background-color: #c0001a;
  color: #ffffff;
  font-size: 0.8rem;
  font-weight: 500;
  padding: 0.45rem 0;
  z-index: 200;
  position: relative;
}

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

.topbar-left {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.topbar-left a {
  color: #ffffff;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  text-decoration: none;
  opacity: 0.92;
  transition: opacity 0.2s;
}

.topbar-left a:hover {
  opacity: 1;
  color: #ffffff;
}

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

.topbar-right a {
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.15);
  transition: background-color 0.2s, transform 0.2s;
  font-size: 0.8rem;
  text-decoration: none;
}

.topbar-right a:hover {
  background-color: rgba(255, 255, 255, 0.3);
  transform: scale(1.1);
  color: #ffffff;
}

/* Header */
.header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  padding: 1.5rem 0;
  color: var(--text-dark);
  background-color: #FFF;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.07);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-heading);
  font-size: 1.2rem;
  line-height: 1.1;
  text-transform: uppercase;
}

.logo-img {
  height: 60px;
  width: auto;
  object-fit: contain;
}

.nav ul {
  display: flex;
  gap: 2rem;
}

/* Dropdown Menu */
.nav .dropdown {
  position: relative;
}

.nav .dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #ffffff;
  min-width: 220px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  padding: 0;
  border-radius: 4px;
  overflow: hidden;
  z-index: 100;
}

.nav .dropdown:hover .dropdown-menu {
  display: block;
}

.nav .dropdown-menu li {
  text-align: left;
}

.nav .dropdown-menu li a {
  padding: 1rem 1.5rem;
  color: var(--text-dark);
  border-bottom: 1px solid #f0f0f0;
  font-size: 0.95rem;
  display: block;
}

.nav .dropdown-menu li:last-child a {
  border-bottom: none;
}

.nav .dropdown-menu li a:hover {
  background: var(--bg-light);
  color: var(--primary);
}

.nav a {
  font-size: 0.9rem;
  font-weight: 500;
  padding-bottom: 4px;
  position: relative;
}

.nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--primary);
  transition: width 0.3s;
}

.nav a:hover::after {
  width: 100%;
}

.nav a:hover {
  color: var(--primary);
}

/* Hero Section */
.hero {
  position: relative;
  background-size: cover;
  background-position: center top;
  background-attachment: fixed;
  color: #ffffff;
  padding-top: 6rem;
  padding-bottom: 6rem;
  min-height: 80vh;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero-container {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  width: 100%;
}

.hero-image-wrapper {
  display: none;
}

.hero-img {
  display: none;
}

.hero-content {
  width: 60%;
  text-align: right;
  padding-left: 2rem;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.hero-content h1 {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  color: #ffffff;
}

.hero-content h1 span {
  color: var(--secondary);
}

.hero-subtitle {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 2.5rem;
  line-height: 1.6;
}

/* Scroll Indicator */
.scroll-down-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  animation: bounce 2s infinite;
}

.scroll-down-indicator:hover {
  color: #ffffff;
}

.mouse {
  width: 26px;
  height: 40px;
  border: 2px solid rgba(255, 255, 255, 0.8);
  border-radius: 20px;
  position: relative;
  margin-bottom: 8px;
}

.wheel {
  width: 4px;
  height: 8px;
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: 2px;
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  animation: scrollWheel 2s infinite;
}

@keyframes scrollWheel {
  0% {
    top: 6px;
    opacity: 1;
  }

  100% {
    top: 20px;
    opacity: 0;
  }
}

@keyframes bounce {

  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translate(-50%, 0);
  }

  40% {
    transform: translate(-50%, -10px);
  }

  60% {
    transform: translate(-50%, -5px);
  }
}

/* Sobre Section */
.sobre {
  padding: 6rem 0;
  background-color: var(--bg-white);
}

.sobre-container {
  display: flex;
  align-items: center;
  gap: 4rem;
}

.sobre-image {
  flex: 1;
  position: relative;
  padding: 1rem;
}

.sobre-image .image-border {
  position: absolute;
  top: 0;
  left: 0;
  width: 90%;
  height: 90%;
  border: 2px solid var(--primary);
  border-bottom: none;
  border-right: none;
  z-index: 0;
}

.sobre-image img {
  position: relative;
  z-index: 1;
  border-radius: 4px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  margin-top: 1.5rem;
  margin-left: 1.5rem;
}

.sobre-content {
  flex: 1;
}

.sobre-content h2 {
  color: var(--primary);
  font-size: 3rem;
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

.sobre-content p {
  color: #555;
  margin-bottom: 2rem;
  font-size: 1.05rem;
}

.sobre-list {
  margin-bottom: 2.5rem;
}

.sobre-list li {
  margin-bottom: 0.8rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: var(--primary);
  font-weight: 500;
}

.sobre-list i {
  color: var(--primary);
}

/* Penal Section */
.penal {
  background-color: #f4f6fa;
  padding: 6rem 0;
  color: var(--text-dark);
}

.section-header.dark h2,
.penal h2 {
  color: var(--text-dark);
}

.section-header.dark h2 strong,
.penal h2 strong {
  font-weight: 900;
  color: var(--primary);
}

.penal-container {
  display: flex;
  gap: 4rem;
  align-items: flex-start;
}

.penal-sidebar {
  flex: 1;
  max-width: 350px;
  position: sticky;
  top: 100px;
}

.penal-sidebar p {
  color: #555;
  margin: 1.5rem 0 2rem;
  line-height: 1.6;
}

.penal-list {
  flex: 2;
}

.penal-list ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.2rem;
}

.penal-list li {
  background: #ffffff;
  padding: 1.5rem 1.5rem;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
  font-weight: 700;
  color: var(--text-dark);
  transition: all 0.3s;
  border: 1px solid #eee;
}

.penal-list li:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
  border-color: var(--primary);
}

.penal-list li i {
  color: var(--primary);
  font-size: 1.2rem;
}

/* Penal Card Link — layout coluna */
.penal-card-link {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  text-decoration: none;
  color: inherit;
  height: 100%;
}

.penal-card-titulo {
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-dark);
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  line-height: 1.4;
}

.penal-card-titulo i {
  color: var(--primary);
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.penal-card-resumo {
  font-size: 0.88rem;
  font-weight: 400;
  color: #666;
  line-height: 1.5;
  padding-left: 1.6rem;
  flex: 1;
}

/* Trabalhista Section */
.trabalhista {
  background: #ffffff;
  padding: 6rem 0;
}

.trabalhista-container {
  display: block;
}

.trabalhista-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3rem;
}

.trabalhista-header h2 {
  color: var(--text-dark);
  font-size: 3rem;
  line-height: 1.1;
}

.trabalhista-header h2 strong {
  font-weight: 900;
  color: var(--primary);
}

.trabalhista-header p {
  color: #555;
  margin: 1.5rem 0 2rem;
}

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

.servico-card {
  background-color: var(--bg-white);
  border: 1px solid #eee;
  border-radius: 8px;
  padding: 2.5rem 2rem;
  transition: all 0.3s;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
  display: flex;
  flex-direction: column;
}

.servico-card:hover {
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
  transform: translateY(-5px);
  border-color: var(--primary);
}

.icon-wrapper {
  width: 50px;
  height: 50px;
  background-color: rgba(92, 4, 24, 0.1);
  /* Light red background */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
}

.servico-card h3 {
  color: var(--text-dark);
  font-size: 1.25rem;
  margin-bottom: 0.8rem;
  font-family: var(--font-heading);
}

.servico-card p {
  color: #666;
  font-size: 0.9rem;
  flex: 1;
}

/* Saiba Mais — Card (Layout 1) */
.card-saiba-mais {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 1.25rem;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--primary);
  transition: gap 0.2s, color 0.2s;
}

.servico-card:hover .card-saiba-mais {
  gap: 0.7rem;
  color: var(--primary);
}

/* Saiba Mais — Lista (Layout 2) */
.saiba-mais-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--primary);
  white-space: nowrap;
  opacity: 0.7;
  transition: opacity 0.2s, gap 0.2s;
  flex-shrink: 0;
  padding-left: 1.6rem;
}

.penal-list li:hover .saiba-mais-link {
  opacity: 1;
  gap: 0.7rem;
}

/* Footer */
.footer {
  background-color: var(--primary);
  color: var(--text-light);
  padding: 4rem 0 0;
}

/* Utilities */
.text-center {
  text-align: center;
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1.1rem;
}

/* Animations */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

/* FAQ */
.faq {
  background-color: var(--bg-white);
  padding: 6rem 0;
}

.faq h2 {
  color: var(--primary);
  margin-bottom: 3rem;
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid #eee;
  padding: 1.5rem 0;
  cursor: pointer;
  transition: background-color 0.3s;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: var(--text-dark);
}

.faq-answer {
  display: none;
  padding-top: 1rem;
  color: #555;
  font-size: 1rem;
  line-height: 1.6;
}

.faq-item.active .faq-answer {
  display: block;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.faq-icon {
  transition: transform 0.3s;
  color: var(--primary);
}

/* Depoimentos */
.depoimentos {
  background-color: #fcfbf9;
  padding: 6rem 0;
}

.depoimentos h2 {
  color: var(--primary);
  margin-bottom: 4rem;
}

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

.depoimento-card {
  background: var(--bg-white);
  padding: 2.5rem 2rem;
  border-radius: 8px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
  border-top: 4px solid var(--primary);
  position: relative;
  transition: transform 0.3s;
}

.depoimento-card:hover {
  transform: translateY(-5px);
}

.quote-icon {
  font-size: 2.5rem;
  color: rgba(92, 4, 24, 0.2);
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
}

.depoimento-text {
  font-style: italic;
  color: #666;
  margin-bottom: 2rem;
  margin-top: 1rem;
  position: relative;
  z-index: 1;
}

.depoimento-author {
  font-weight: 600;
  color: var(--primary);
  font-family: var(--font-heading);
  font-size: 1.1rem;
}

/* CTA Reforco */
.cta-reforco {
  background: #f4f6fa;
  padding: 6rem 0;
  color: var(--text-dark);
  text-align: center;
}

.cta-reforco-content {
  max-width: 800px;
  margin: 0 auto;
}

.cta-reforco h2 {
  color: var(--primary);
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.cta-reforco p {
  font-size: 1.1rem;
  margin-bottom: 2.5rem;
  color: #555;
}

.reforco-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem 2.5rem;
  margin-bottom: 3.5rem;
}

.reforco-list li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 500;
  font-size: 1.05rem;
}

.reforco-list i {
  color: var(--primary);
}

.footer-container {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-col p {
  color: #fff;
  margin-top: 1rem;
  font-size: 0.95rem;
}



.footer-col h4 {
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: #fff;
}

.footer-col ul li {
  margin-bottom: 1rem;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-col ul li i {
  color: var(--bg-white);
}

.footer-col ul li a:hover {
  color: var(--bg-white);
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--text-light);
  transition: all 0.3s;
}

.social-links a:hover {
  background-color: var(--bg-white);
  color: var(--primary);
}

.footer-bottom {
  background-color: rgba(0, 0, 0, 0.2);
  padding: 1.5rem 0;
  text-align: center;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
}

/* Responsive */
.mobile-menu-toggle {
  display: none;
  background: transparent;
  border: none;
  font-size: 1.8rem;
  color: var(--primary);
  cursor: pointer;
}

@media (max-width: 900px) {
  .topbar {
    display: none;
  }

  .mobile-menu-toggle {
    display: block;
  }

  .header-container {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    position: relative;
  }

  .nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #fff;
    padding: 1rem 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  }

  .nav.active {
    display: block;
  }

  .nav ul {
    flex-direction: column;
    gap: 0;
  }

  .nav ul li {
    text-align: center;
    border-bottom: 1px solid #eee;
  }

  .nav ul li:last-child {
    border-bottom: none;
  }

  .nav ul li a {
    display: block;
    padding: 1rem;
  }

  .nav .dropdown-menu {
    display: none;
    position: static;
    box-shadow: none;
    background: #f9f9f9;
  }

  .nav .dropdown.open .dropdown-menu {
    display: block;
  }

  .nav .dropdown-menu li a {
    padding-left: 2rem;
  }

  .hide-mobile {
    display: none !important;
  }

  .hero-interna {
    padding-top: 8rem !important;
    /* Clears header when breadcrumb is hidden */
  }

  .penal-featured-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .penal-featured-item.item-large {
    grid-column: span 2;
  }

  .penal-featured-item.item-small {
    grid-column: span 1;
  }

  .hero-container,
  .sobre-container,
  .penal-card,
  .penal-card.reverse,
  .trabalhista-container,
  .penal-container {
    flex-direction: column;
  }

  .penal-sidebar {
    max-width: 100%;
    position: static;
  }

  .penal-list ul {
    grid-template-columns: 1fr;
  }

  .hero-content {
    width: 100%;
    text-align: center;
    align-items: center;
    padding: 2rem 0;
  }

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

  .footer-container {
    grid-template-columns: 1fr 1fr;
  }

  .penal-card .card-image,
  .penal-card .card-content {
    flex-basis: 100%;
    max-width: 100%;
  }

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

  .reforco-list {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
}

@media (max-width: 768px) {
  .logo-img {
    height: 45px;
  }

  .cta-reforco .btn-lg {
    font-size: 0.95rem;
    padding: 0.8rem 1rem;
    display: block;
    width: 100%;
  }

  .cta-reforco .btn-lg .fa-whatsapp {
    display: none;
  }

  .chamada-destaque .chamada-title {
    font-size: 1.8rem !important;
  }
}

@media (max-width: 600px) {
  .penal-featured-grid {
    grid-template-columns: 1fr;
  }

  .penal-featured-item.item-large,
  .penal-featured-item.item-small {
    grid-column: span 1;
  }

  .hero-bg-text {
    font-size: 20vw;
  }

  .hero-content h1 {
    font-size: 2rem;
  }

  .sobre-content h2,
  .trabalhista-sidebar h2 {
    font-size: 2.2rem;
  }

  .footer-container {
    grid-template-columns: 1fr;
  }
}

/* WhatsApp Floating Button */
.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 40px;
  right: 40px;
  background-color: #25d366;
  color: #FFF;
  border-radius: 50px;
  text-align: center;
  font-size: 32px;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}

.whatsapp-float i {
  margin-top: 2px;
}

.whatsapp-float.pulse {
  animation: whatsapp-pulse 2s infinite;
}

.whatsapp-float:hover {
  background-color: #20ba56;
  color: #fff;
  transform: scale(1.05);
}

@keyframes whatsapp-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  }

  70% {
    box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}


/* Custom additions */
.footer .logo-img {
  filter: brightness(0) invert(1);
}

/* Chamada Destaque */
.chamada-destaque {
  background: linear-gradient(to right, rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.6)), url('https://images.unsplash.com/photo-1504328345606-18bbc8c9d7d1?ixlib=rb-4.0.3&auto=format&fit=crop&w=1200&q=80');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  padding: 8rem 0;
  color: #ffffff;
}

.chamada-title {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 900;
  color: #ffffff;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.chamada-subtitle {
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.9);
  max-width: 800px;
  margin: 0 auto;
}

.mt-4 {
  margin-top: 2rem;
}

.btn-outline-light {
  background: transparent;
  color: #ffffff;
  border: 2px solid #ffffff;
}

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