/* =====================
   HERO SECTION
   ===================== */
.hero-section {
  height: 100vh;
  background: linear-gradient(135deg, #0f1b3f 0%, #1a2856 100%);
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  margin-top: -70px;
  padding-top: 70px;
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(15, 27, 63, 0.7) 0%, rgba(15, 27, 63, 0.4) 50%, rgba(15, 27, 63, 0) 100%);
  z-index: 2;
}

.hero-left {
  animation: slideInFromLeft 1s ease-out forwards;
  opacity: 0;
}

.hero-right {
  animation: slideInFromRight 1s ease-out forwards;
  animation-delay: 0.3s;
  opacity: 0;
  position: relative;
  z-index: 3;
}

/* Animação - Imagem vindo da esquerda */
@keyframes slideInFromLeft {
  from {
    opacity: 0;
    transform: translateX(-100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Animação - Conteúdo vindo da direita */
@keyframes slideInFromRight {
  from {
    opacity: 0;
    transform: translateX(100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.cards-image {
  max-width: 100%;
  height: auto;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3));
  animation: floatCards 3s ease-in-out infinite;
}

.cards-video {
  max-width: 100%;
  height: auto;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3));
}

/* Animação flutuante suave dos cartões */
@keyframes floatCards {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}

.hero-content {
  padding: 40px 20px;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  color: white;
  line-height: 1.1;
  margin-bottom: 20px;
  letter-spacing: -1px;
}

.hero-title .highlight {
  color: #00d4ff;
  background: linear-gradient(135deg, #00d4ff, #0fa0e9);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.3rem;
  color: #ffffff;
  margin-bottom: 40px;
  line-height: 1.5;
  font-weight: 300;
}

.btn-cta {
  display: inline-block;
  padding: 14px 40px;
  background-color: #00d4ff;
  color: #0f1b3f;
  border: none;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(0, 212, 255, 0.3);
}

.btn-cta:hover {
  background-color: #00b8d4;
  color: #0f1b3f;
  transform: translateY(-2px);
  box-shadow: 0 6px 30px rgba(0, 212, 255, 0.5);
}

/* Responsivo */
@media (max-width: 991px) {
  .hero-section {
    height: auto;
    padding: 100px 0 50px;
  }

  .hero-left {
    margin-bottom: 40px;
  }
  .hero-title {
    font-size: 2.5rem;
  }

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

  .cards-image {
    max-width: 90%;
  }
}

@media (max-width: 576px) {
  .hero-title {
    font-size: 2rem;
  }

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

  .btn-cta {
    padding: 12px 30px;
    font-size: 0.9rem;
  }

  .hero-content {
    padding: 20px 0;
    text-align: center;
  }

  .cards-image {
    max-width: 100%;
  }
}

/* =====================
   WHATSAPP BUTTON
   ===================== */

/* Compensar navbar fixo */
body {
  padding-top: 0;
}

body.abra-conta-page {
  padding-top: 0;
}

.btn-access {
  display: inline-flex;
  align-items: center;
  background: #ffffff;
  border: 1px solid rgba(15, 27, 63, 0.1);
  color: #0f1b3f;
  padding: 8px 16px;
  border-radius: 999px;
  font-weight: 600;
  line-height: 1.2;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  transition: all 0.2s ease;
}

.btn-access:hover,
.btn-access:focus {
  background: #f5f7fb;
  border-color: rgba(15, 27, 63, 0.2);
  color: #0f1b3f;
  text-decoration: none;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
}

.btn-access:focus {
  outline: none;
}

.whatsapp-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background-color: #25d366;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
  z-index: 1000;
}

.whatsapp-btn:hover {
  background-color: #20ba58;
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
  color: white;
}

/* Responsivo */
@media (max-width: 768px) {
  .whatsapp-btn {
    bottom: 20px;
    right: 20px;
    width: 55px;
    height: 55px;
    font-size: 28px;
  }
}

/* =====================
   DESCOMPLICANDO SECTION
   ===================== */
.descomplicando-section {
  padding: 80px 20px;
  background: #f8f9fa;
}

.descomplicando-header {
  text-align: center;
  background: #0c183d;
  padding: 60px 20px;
  margin: -80px -20px 60px -20px;
  margin-bottom: 60px;
}

.descomplicando-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #00d4ff;
  letter-spacing: 1px;
  margin: 0;
}

/* Cards Scale Container */
.cards-container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 80px;
  min-height: 400px;
  perspective: 1000px;
}

.cards-scale {
  max-width: 100%;
  height: auto;
  transform-origin: center;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.15));
}

/* Benefícios Section */
.beneficios-section {
  max-width: 1200px;
  margin: 0 auto;
}

.beneficios-title {
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  color: #00d4ff;
  margin-bottom: 50px;
  letter-spacing: 1px;
}

.beneficios-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  background: linear-gradient(135deg, #0f1b3f 0%, #1a2856 100%);
  padding: 50px;
  border-radius: 20px;
}

.beneficio-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  color: white;
  transition: transform 0.3s ease;
}

.beneficio-item:hover {
  transform: translateY(-10px);
}

.beneficio-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #00d4ff, #0fa0e9);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: white;
  flex-shrink: 0;
  font-size: 32px;
}

.beneficio-text {
  font-size: 0.95rem;
  line-height: 1.4;
  margin: 0;
  font-weight: 500;
}

/* Responsivo */
@media (max-width: 1024px) {
  .beneficios-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    padding: 30px;
  }

  .descomplicando-header h2 {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .descomplicando-section {
    padding: 40px 15px;
  }

  .descomplicando-header {
    margin: -40px -15px 40px -15px;
    padding: 40px 15px;
  }

  .descomplicando-header h2 {
    font-size: 1.5rem;
  }

  .beneficios-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    padding: 20px;
  }

  .beneficio-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 15px;
  }

  .beneficio-icon svg {
    width: 26px;
    height: 26px;
  }

  .beneficio-text {
    font-size: 0.85rem;
  }
}

@media (max-width: 576px) {
  .beneficios-grid {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 15px;
  }

  .descomplicando-header h2 {
    font-size: 1.2rem;
  }

  .beneficios-title {
    font-size: 1.5rem;
    margin-bottom: 30px;
  }
}

/* =====================
   SOBRE NÓS SECTION
   ===================== */
.sobre-nos-section {
  padding: 80px 20px;
  background: white;
}

.sobre-nos-content {
  padding: 40px 20px;
}

.sobre-nos-subtitle {
  font-size: 0.9rem;
  font-weight: 600;
  color: #00d4ff;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
}

.sobre-nos-subtitle::after {
  content: '';
  width: 30px;
  height: 3px;
  background-color: #00d4ff;
  margin-left: 10px;
  border-radius: 2px;
}

.sobre-nos-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #0f1b3f;
  line-height: 1.2;
  margin-bottom: 25px;
}

.sobre-nos-text {
  font-size: 1.1rem;
  color: #666;
  line-height: 1.6;
  margin-bottom: 40px;
}

.btn-conecta {
  display: inline-flex;
  align-items: center;
  padding: 14px 30px;
  background-color: #00d4ff;
  color: #0f1b3f;
  border: none;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(0, 212, 255, 0.3);
}

.btn-conecta:hover {
  background-color: #00b8d4;
  color: #0f1b3f;
  transform: translateX(5px);
  box-shadow: 0 6px 30px rgba(0, 212, 255, 0.5);
  text-decoration: none;
}

.sobre-nos-image {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
}

.sobre-nos-image img {
  max-width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

/* Responsivo */
@media (max-width: 991px) {
  .sobre-nos-section {
    padding: 60px 20px;
  }

  .sobre-nos-content {
    padding: 30px 20px;
    margin-bottom: 40px;
  }

  .sobre-nos-title {
    font-size: 2rem;
  }

  .sobre-nos-text {
    font-size: 1rem;
  }
}

@media (max-width: 768px) {
  .sobre-nos-section {
    padding: 40px 15px;
  }

  .sobre-nos-content {
    padding: 20px 0;
  }

  .sobre-nos-title {
    font-size: 1.8rem;
  }

  .sobre-nos-subtitle {
    font-size: 0.85rem;
  }

  .sobre-nos-text {
    font-size: 0.95rem;
  }
}

@media (max-width: 576px) {
  .sobre-nos-section {
    padding: 30px 15px;
  }

  .sobre-nos-title {
    font-size: 1.5rem;
  }

  .sobre-nos-subtitle {
    font-size: 0.8rem;
  }

  .sobre-nos-text {
    font-size: 0.9rem;
    margin-bottom: 25px;
  }

  .btn-conecta {
    padding: 12px 25px;
    font-size: 0.9rem;
  }
}

/* =====================
   VÍDEO CORRETORES SECTION
   ===================== */
.video-corretores-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, #0f1b3f 0%, #1a2856 100%);
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-card-wrapper {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  width: 100%;
}

.video-card {
  position: relative;
  width: 100%;
  height: 400px;
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 40px;
  box-shadow: 0 15px 50px rgba(0, 212, 255, 0.2);
  cursor: pointer;
  transition: transform 0.3s ease;
}

.video-card:hover {
  transform: translateY(-10px);
}

.video-card-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.video-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  background: rgba(0, 212, 255, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 40px;
  transition: all 0.3s ease;
  z-index: 10;
}

.video-play-btn:hover {
  background: #00d4ff;
  transform: translate(-50%, -50%) scale(1.1);
  box-shadow: 0 10px 30px rgba(0, 212, 255, 0.5);
}

.video-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: #00d4ff;
  margin-bottom: 30px;
  letter-spacing: 0.5px;
}

.video-benefit {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-bottom: 40px;
  padding: 30px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  border: 1px solid rgba(0, 212, 255, 0.2);
}

.video-benefit-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #00d4ff, #0fa0e9);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 36px;
  margin-bottom: 15px;
  flex-shrink: 0;
}

.video-benefit-text {
  font-size: 1rem;
  font-weight: 600;
  color: white;
  line-height: 1.5;
  margin: 0;
}

.btn-saiba-mais {
  display: inline-flex;
  align-items: center;
  padding: 14px 35px;
  background-color: #00d4ff;
  color: #0f1b3f;
  border: none;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(0, 212, 255, 0.3);
}

.btn-saiba-mais:hover {
  background-color: #00b8d4;
  color: #0f1b3f;
  transform: translateX(5px);
  box-shadow: 0 6px 30px rgba(0, 212, 255, 0.5);
  text-decoration: none;
}

/* Responsivo */
@media (max-width: 768px) {
  .video-corretores-section {
    padding: 60px 15px;
    min-height: auto;
  }

  .video-card {
    height: 300px;
    margin-bottom: 30px;
  }

  .video-play-btn {
    width: 70px;
    height: 70px;
    font-size: 32px;
  }

  .video-title {
    font-size: 1.5rem;
    margin-bottom: 20px;
  }

  .video-benefit {
    padding: 20px;
    margin-bottom: 30px;
  }

  .video-benefit-icon {
    width: 60px;
    height: 60px;
    font-size: 30px;
  }

  .video-benefit-text {
    font-size: 0.95rem;
  }

  .btn-saiba-mais {
    padding: 12px 30px;
    font-size: 0.95rem;
  }
}

@media (max-width: 576px) {
  .video-corretores-section {
    padding: 40px 15px;
  }

  .video-card {
    height: 250px;
  }

  .video-play-btn {
    width: 60px;
    height: 60px;
    font-size: 28px;
  }

  .video-title {
    font-size: 1.3rem;
  }

  .video-benefit {
    padding: 15px;
  }

  .video-benefit-icon {
    width: 50px;
    height: 50px;
    font-size: 24px;
  }

  .btn-saiba-mais {
    padding: 11px 25px;
    font-size: 0.9rem;
  }
}

/* =====================
   CONTAS SECTION
   ===================== */
.contas-section {
  padding: 80px 20px;
  background: #f8f9fa;
}

.contas-title {
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  color: #0f1b3f;
  margin-bottom: 60px;
  letter-spacing: 0.5px;
}

.contas-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
}

.conta-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.conta-image-wrapper {
  width: 100%;
  max-width: 280px;
  height: 300px;
  border-radius: 30px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  margin-bottom: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.pf-background,
.pj-background {
  background: linear-gradient(135deg, #00d4ff 0%, #00b8d4 100%);
}

.conta-image {
  max-width: 85%;
  height: auto;
  object-fit: contain;
}

.conta-name {
  font-size: 1.5rem;
  font-weight: 700;
  color: #0f1b3f;
  margin-bottom: 15px;
}

.conta-description {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.6;
  margin-bottom: 25px;
  min-height: 50px;
}

.btn-conta-saiba {
  display: inline-block;
  padding: 12px 35px;
  background-color: #00d4ff;
  color: #0f1b3f;
  border: none;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 212, 255, 0.25);
}

.btn-conta-saiba:hover {
  background-color: #00b8d4;
  color: #0f1b3f;
  transform: translateY(-3px);
  box-shadow: 0 6px 25px rgba(0, 212, 255, 0.4);
  text-decoration: none;
}

/* Responsivo */
@media (max-width: 991px) {
  .contas-section {
    padding: 60px 20px;
  }

  .contas-title {
    font-size: 1.8rem;
    margin-bottom: 50px;
  }

  .contas-grid {
    gap: 30px;
  }

  .conta-image-wrapper {
    max-width: 250px;
    height: 270px;
  }
}

@media (max-width: 768px) {
  .contas-section {
    padding: 50px 15px;
  }

  .contas-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contas-title {
    font-size: 1.5rem;
    margin-bottom: 40px;
  }

  .conta-image-wrapper {
    max-width: 220px;
    height: 250px;
    margin-bottom: 25px;
  }

  .conta-name {
    font-size: 1.3rem;
  }

  .conta-description {
    font-size: 0.9rem;
  }

  .btn-conta-saiba {
    padding: 11px 30px;
    font-size: 0.9rem;
  }
}

@media (max-width: 576px) {
  .contas-section {
    padding: 40px 15px;
  }

  .contas-title {
    font-size: 1.3rem;
    margin-bottom: 30px;
  }

  .conta-image-wrapper {
    max-width: 200px;
    height: 230px;
  }

  .conta-name {
    font-size: 1.2rem;
    margin-bottom: 12px;
  }

  .conta-description {
    font-size: 0.85rem;
    margin-bottom: 20px;
  }

  .btn-conta-saiba {
    padding: 10px 25px;
    font-size: 0.85rem;
  }
}

/* =====================
   APLICATIVO SECTION
   ===================== */
.aplicativo-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, #0f1b3f 0%, #1a2856 100%);
}

.aplicativo-image {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  order: -1;
}

.aplicativo-image img {
  max-width: 100%;
  height: auto;
  filter: drop-shadow(0 20px 40px rgba(0, 212, 255, 0.2));
}

.aplicativo-content {
  padding: 40px 20px;
}

.aplicativo-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #00d4ff;
  margin-bottom: 40px;
  letter-spacing: 2px;
}

.aplicativo-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.feature-column {
  display: flex;
  flex-direction: column;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.feature-list li {
  color: white;
  font-size: 1.05rem;
  line-height: 2;
  padding-left: 25px;
  position: relative;
  font-weight: 500;
}

.feature-list li:before {
  content: "•";
  color: #00d4ff;
  font-size: 1.5rem;
  position: absolute;
  left: 0;
  top: -2px;
  font-weight: bold;
}

.btn-aplicativo {
  display: inline-block;
  padding: 14px 40px;
  background-color: #00d4ff;
  color: #0f1b3f;
  border: none;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(0, 212, 255, 0.3);
}

.btn-aplicativo:hover {
  background-color: #00b8d4;
  color: #0f1b3f;
  transform: translateY(-2px);
  box-shadow: 0 6px 30px rgba(0, 212, 255, 0.5);
  text-decoration: none;
}

/* Responsivo */
@media (max-width: 991px) {
  .aplicativo-section {
    padding: 60px 20px;
  }

  .aplicativo-title {
    font-size: 2rem;
    margin-bottom: 30px;
  }

  .aplicativo-features {
    gap: 30px;
    margin-bottom: 30px;
  }

  .feature-list li {
    font-size: 1rem;
    line-height: 1.8;
  }
}

@media (max-width: 768px) {
  .aplicativo-section {
    padding: 50px 15px;
  }

  .aplicativo-image {
    padding: 30px 0;
    margin-bottom: 30px;
  }

  .aplicativo-content {
    padding: 30px 0;
  }

  .aplicativo-title {
    font-size: 1.8rem;
    margin-bottom: 25px;
  }

  .aplicativo-features {
    gap: 20px;
    margin-bottom: 25px;
  }

  .feature-list li {
    font-size: 0.95rem;
    line-height: 1.7;
  }

  .btn-aplicativo {
    padding: 12px 35px;
    font-size: 0.95rem;
  }
}

@media (max-width: 576px) {
  .aplicativo-section {
    padding: 40px 15px;
  }

  .aplicativo-title {
    font-size: 1.5rem;
  }

  .aplicativo-features {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .feature-list li {
    font-size: 0.9rem;
    line-height: 1.6;
  }

  .btn-aplicativo {
    padding: 11px 30px;
    font-size: 0.9rem;
  }
}

/* =====================
   BAIXE O APP - HERO SECTION
   ===================== */
.app-hero-section {
  min-height: 100vh;
  background: linear-gradient(90deg, #f5f5f5 0%, #f5f5f5 50%, white 50%, white 100%);
  display: flex;
  align-items: center;
  padding-top: 70px;
  margin-top: -70px;
}

.app-hero-section .container-fluid {
  padding: 0;
}

.app-hero-section .row {
  margin: 0;
}

.app-image-col {
  background-image: url('../assets/img/happy-teen-holding-cellphone-and-smiling-with-hair-2021-08-26-23-05-23-utc-scaled-1.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 100vh;
  position: relative;
  order: -1;
}

.app-content {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 40px;
  background: white;
  min-height: 100vh;
}

.app-content-wrapper {
  max-width: 500px;
  width: 100%;
}

.app-title {
  font-size: 2.8rem;
  font-weight: 700;
  color: #0f1b3f;
  line-height: 1.15;
  margin-bottom: 25px;
}

.app-highlight {
  color: #0f1b3f;
}

.app-subtitle {
  font-size: 1.1rem;
  color: #666;
  line-height: 1.6;
  margin-bottom: 50px;
}

.app-buttons {
  display: flex;
  flex-direction: row;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
}

.app-btn {
  display: inline-block;
  transition: all 0.3s ease;
  text-decoration: none;
  flex: 0 1 auto;
}

.app-btn img {
  max-width: 200px;
  height: auto;
  display: block;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.1));
  transition: filter 0.3s ease;
}

.app-btn:hover img {
  filter: drop-shadow(0 6px 20px rgba(0, 0, 0, 0.15));
}

/* Responsivo */
@media (max-width: 991px) {
  .app-hero-section {
    min-height: auto;
  }

  .app-image-col {
    min-height: 400px;
  }

  .app-content {
    min-height: auto;
    padding: 50px 30px;
  }

  .app-title {
    font-size: 2.2rem;
  }

  .app-subtitle {
    font-size: 1rem;
  }
}

@media (max-width: 768px) {
  .app-hero-section {
    background: white;
    padding-top: 70px;
  }

  .app-image-col {
    min-height: 350px;
    background-position: center;
  }

  .app-content {
    min-height: auto;
    padding: 40px 20px;
  }

  .app-content-wrapper {
    max-width: 100%;
  }

  .app-title {
    font-size: 1.8rem;
    margin-bottom: 20px;
  }

  .app-subtitle {
    font-size: 0.95rem;
    margin-bottom: 30px;
  }

  .app-buttons {
    gap: 15px;
  }

  .app-btn img {
    max-width: 180px;
  }
}

@media (max-width: 576px) {
  .app-image-col {
    min-height: 300px;
  }

  .app-content {
    padding: 30px 15px;
  }

  .app-title {
    font-size: 1.5rem;
  }

  .app-subtitle {
    font-size: 0.9rem;
    line-height: 1.5;
  }

  .app-buttons {
    gap: 12px;
  }

  .app-btn img {
    max-width: 150px;
  }
}

/* =====================
   ABRA SUA CONTA - HERO SECTION
   ===================== */
.abra-conta-hero {
  background: white;
  display: flex;
  align-items: center;
}

.abra-conta-hero .container-fluid {
  padding: 0;
}

.abra-conta-hero .row {
  margin: 0;
}

.abra-conta-image-col {
  background-image: url('../assets/img/meninas-mensagens-via-aplicativo-movel-usa-conexao-de-smartphone-para-lazer-gosta-de-rede-de-midia-social-na-cidade-vestida-casualmente-usa-smartwatch-fica-ao-ar-livre-navega-site-1.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 500px;
}

.abra-conta-content {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 40px;
  background: white;
}

.content-wrapper {
  max-width: 600px;
}

.abra-conta-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #0f1b3f;
  line-height: 1.2;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 20px;
}

.abra-conta-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 80px;
  height: 4px;
  background: #00d4ff;
  border-radius: 2px;
}

.abra-conta-subtitle {
  font-size: 1.1rem;
  color: #666;
  line-height: 1.8;
  margin-bottom: 40px;
}

.abra-conta-subtitle strong {
  color: #0f1b3f;
  font-weight: 700;
}

.btn-venha-mountpay {
  display: inline-block;
  padding: 16px 45px;
  background-color: #00d4ff;
  color: #0f1b3f;
  border: none;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(0, 212, 255, 0.3);
}

.btn-venha-mountpay:hover {
  background-color: #00b8d4;
  color: #0f1b3f;
  transform: translateY(-3px);
  box-shadow: 0 6px 30px rgba(0, 212, 255, 0.5);
  text-decoration: none;
}

/* Responsivo */
@media (max-width: 991px) {
  .abra-conta-hero {
    min-height: auto;
  }

  .abra-conta-image-col {
    min-height: 400px;
  }

  .abra-conta-content {
    padding: 50px 30px;
  }

  .abra-conta-title {
    font-size: 2rem;
  }

  .abra-conta-subtitle {
    font-size: 1rem;
  }
}

@media (max-width: 768px) {
  .abra-conta-image-col {
    min-height: 350px;
  }

  .abra-conta-content {
    padding: 40px 20px;
  }

  .abra-conta-title {
    font-size: 1.8rem;
    margin-bottom: 20px;
    padding-bottom: 15px;
  }

  .abra-conta-title::after {
    width: 60px;
    height: 3px;
  }

  .abra-conta-subtitle {
    font-size: 0.95rem;
    margin-bottom: 30px;
  }

  .btn-venha-mountpay {
    padding: 14px 35px;
    font-size: 0.95rem;
  }
}

@media (max-width: 576px) {
  .abra-conta-image-col {
    min-height: 300px;
  }

  .abra-conta-content {
    padding: 30px 20px;
  }

  .abra-conta-title {
    font-size: 1.5rem;
  }

  .abra-conta-subtitle {
    font-size: 0.9rem;
    line-height: 1.6;
  }

  .btn-venha-mountpay {
    padding: 12px 30px;
    font-size: 0.9rem;
    width: 100%;
    text-align: center;
  }
}

/* =====================
   ABRA SUA CONTA - SEGUNDA SEÇÃO
   ===================== */
.abra-conta-second-hero {
  min-height: 100vh;
  background-image: url('../assets/img/happy-teen-holding-cellphone-and-smiling-with-hair-2021-08-26-23-05-23-utc-scaled-1.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.overlay-dark {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 27, 63, 0.6);
  z-index: 1;
}

.second-hero-content {
  position: relative;
  z-index: 2;
  padding: 40px;
}

.second-hero-title {
  font-size: 3rem;
  font-weight: 700;
  color: white;
  margin-bottom: 30px;
  line-height: 1.2;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.second-hero-text {
  font-size: 1.3rem;
  color: white;
  margin-bottom: 40px;
  line-height: 1.6;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.btn-abra-conta {
  display: inline-block;
  padding: 16px 50px;
  background-color: #00d4ff;
  color: #0f1b3f;
  border: none;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.1rem;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(0, 212, 255, 0.4);
}

.btn-abra-conta:hover {
  background-color: white;
  color: #0f1b3f;
  transform: translateY(-3px);
  box-shadow: 0 6px 30px rgba(255, 255, 255, 0.3);
  text-decoration: none;
}

/* Responsivo */
@media (max-width: 991px) {
  .abra-conta-second-hero {
    background-attachment: scroll;
  }

  .second-hero-title {
    font-size: 2.5rem;
  }

  .second-hero-text {
    font-size: 1.1rem;
  }

  .btn-abra-conta {
    padding: 14px 40px;
    font-size: 1rem;
  }
}

@media (max-width: 768px) {
  .second-hero-content {
    padding: 30px 20px;
  }

  .second-hero-title {
    font-size: 2rem;
    margin-bottom: 25px;
  }

  .second-hero-text {
    font-size: 1rem;
    margin-bottom: 30px;
  }

  .btn-abra-conta {
    padding: 13px 35px;
    font-size: 0.95rem;
  }
}

@media (max-width: 576px) {
  .second-hero-title {
    font-size: 1.7rem;
  }

  .second-hero-text {
    font-size: 0.95rem;
  }

  .btn-abra-conta {
    padding: 12px 30px;
    font-size: 0.9rem;
    width: 100%;
  }
}

/* =====================
   CONTA PJ - SEÇÃO 1
   ===================== */
.conta-pj-hero {
  min-height: 50vh;
  background: white;
  display: flex;
  align-items: center;
  padding: 40px 0;
}

.conta-pj-hero .row {
  height: 100%;
}

.conta-pj-content {
  padding: 30px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.conta-pj-label {
  font-size: 0.85rem;
  font-weight: 700;
  color: #0f1b3f;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 20px;
  margin: 0 0 15px 0;
}

.conta-pj-title {
  font-size: 3rem;
  font-weight: 700;
  color: #0f1b3f;
  line-height: 1.2;
  margin-bottom: 25px;
  letter-spacing: -1px;
}

.conta-pj-title::after {
  content: '';
  display: block;
  width: 120px;
  height: 4px;
  background-color: #00d4ff;
  margin-top: 20px;
  border-radius: 2px;
}

.conta-pj-text {
  font-size: 1.1rem;
  color: #666;
  line-height: 1.6;
  margin-bottom: 40px;
  max-width: 500px;
}

.btn-conta-pj {
  display: inline-block;
  padding: 14px 35px;
  background-color: #00d4ff;
  color: #0f1b3f;
  border: none;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(0, 212, 255, 0.3);
  max-width: fit-content;
}

.btn-conta-pj:hover {
  background-color: #00b8d4;
  color: #0f1b3f;
  transform: translateY(-2px);
  box-shadow: 0 6px 30px rgba(0, 212, 255, 0.5);
  text-decoration: none;
}

.conta-pj-image {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px;
}

.conta-pj-image img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

/* Responsivo */
@media (max-width: 991px) {
  .conta-pj-hero {
    padding: 60px 0;
  }

  .conta-pj-content {
    padding: 40px 30px;
  }

  .conta-pj-title {
    font-size: 2.2rem;
  }

  .conta-pj-text {
    font-size: 1rem;
  }
}

@media (max-width: 768px) {
  .conta-pj-hero {
    min-height: auto;
    padding: 40px 0;
  }

  .conta-pj-hero .row {
    flex-direction: column;
  }

  .conta-pj-image {
    padding: 30px;
    order: -1;
  }

  .conta-pj-content {
    padding: 40px 20px;
    text-align: center;
  }

  .conta-pj-title {
    font-size: 1.8rem;
  }

  .conta-pj-title::after {
    margin-left: auto;
    margin-right: auto;
  }

  .conta-pj-text {
    max-width: 100%;
  }
}

@media (max-width: 576px) {
  .conta-pj-content {
    padding: 30px 20px;
  }

  .conta-pj-label {
    font-size: 0.75rem;
  }

  .conta-pj-title {
    font-size: 1.5rem;
    margin-bottom: 15px;
  }

  .conta-pj-text {
    font-size: 0.95rem;
    margin-bottom: 25px;
  }

  .btn-conta-pj {
    padding: 12px 30px;
    font-size: 0.9rem;
  }
}

/* =====================
   SOLUÇÕES SECTION
   ===================== */
.solucoes-section {
  min-height: 50vh;
  background-image: url('../assets/img/conta-digital-pj-mountbank-1024x650.jpg.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  position: relative;
  padding: 40px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.solucoes-section-pg-conta-pf {
  min-height: 50vh;
  background-image: url('../assets/img/hannah-busing-2toj_4L8M2M-unsplash-1.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  position: relative;
  padding: 40px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.overlay-solucoes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(15, 27, 63, 0.75) 0%, rgba(15, 27, 63, 0.6) 100%);
  z-index: 1;
}

.solucoes-container {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  width: 100%;
}

.solucoes-title {
  text-align: center;
  font-size: 2.2rem;
  font-weight: 700;
  color: #00d4ff;
  margin-bottom: 30px;
  letter-spacing: 1px;
}

.solucoes-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.solucao-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(0, 212, 255, 0.2);
  border-radius: 15px;
  padding: 25px;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 150px;
}

.solucao-card:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(0, 212, 255, 0.4);
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 212, 255, 0.2);
}

.solucao-card-inner {
  text-align: center;
}

.solucao-card-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: white;
  margin-bottom: 15px;
  letter-spacing: 0.5px;
}

.solucao-card-text {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  margin: 0;
}

/* Responsivo */
@media (max-width: 991px) {
  .solucoes-section {
    padding: 60px 20px;
    min-height: auto;
  }

  .solucoes-title {
    font-size: 1.8rem;
    margin-bottom: 40px;
  }

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

  .solucao-card {
    padding: 30px;
    min-height: 180px;
  }

  .solucao-card-title {
    font-size: 1.2rem;
  }

  .solucao-card-text {
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  .solucoes-section {
    padding: 50px 20px;
    background-attachment: scroll;
  }

  .solucoes-title {
    font-size: 1.5rem;
    margin-bottom: 35px;
  }

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

  .solucao-card {
    padding: 25px;
    min-height: 150px;
  }

  .solucao-card-title {
    font-size: 1.1rem;
    margin-bottom: 12px;
  }

  .solucao-card-text {
    font-size: 0.85rem;
  }
}

@media (max-width: 576px) {
  .solucoes-section {
    padding: 40px 15px;
  }

  .solucoes-title {
    font-size: 1.3rem;
    margin-bottom: 30px;
  }

  .solucoes-grid {
    gap: 20px;
  }

  .solucao-card {
    padding: 20px;
    min-height: 140px;
  }

  .solucao-card-title {
    font-size: 1rem;
  }

  .solucao-card-text {
    font-size: 0.8rem;
    line-height: 1.5;
  }
}

/* =====================
   MAIS VANTAGENS SECTION
   ===================== */
.mais-vantagens-section {
  background: white;
  padding: 60px 20px;
}

.vantagens-top {
  text-align: center;
  margin-bottom: 60px;
}

.vantagens-title {
  font-size: 2rem;
  font-weight: 700;
  color: #0f1b3f;
  margin-bottom: 40px;
  letter-spacing: 1px;
}

.vantagens-icons {
  display: flex;
  justify-content: center;
  gap: 80px;
  flex-wrap: wrap;
}

.vantagem-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.vantagem-icon-circle {
  width: 100px;
  height: 100px;
  background: #00d4ff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
  transition: all 0.3s ease;
}

.vantagem-icon-circle i {
  font-size: 48px;
  color: white;
}

.vantagem-icon-circle:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 30px rgba(0, 212, 255, 0.3);
}

.vantagem-label {
  font-size: 1rem;
  font-weight: 600;
  color: #0f1b3f;
  margin: 0;
}

/* Conta PJ Para Todos */
.conta-pj-para-todos {
  background: linear-gradient(135deg, #0f1b3f 0%, #1a2856 100%);
  padding: 50px 40px;
  border-radius: 20px;
  text-align: center;
  margin-bottom: 60px;
}

.conta-pj-para-todos-title {
  font-size: 2rem;
  font-weight: 700;
  color: white;
  margin-bottom: 40px;
  line-height: 1.3;
}

.conta-tipos {
  display: flex;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
}

.conta-tipo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.conta-tipo i {
  font-size: 48px;
  color: #00d4ff;
}

.conta-tipo span {
  font-size: 1.1rem;
  font-weight: 700;
  color: white;
  letter-spacing: 1px;
}

/* Cartão Section */
.cartao-section {
  padding: 40px 0;
}

.cartao-image {
  padding: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.cartao-image img {
  max-width: 100%;
  height: auto;
  filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.15));
}

.cartao-content {
  padding: 20px;
}

.cartao-title {
  font-size: 2rem;
  font-weight: 700;
  color: #0f1b3f;
  margin-bottom: 20px;
  line-height: 1.3;
}

.cartao-text {
  font-size: 1rem;
  color: #666;
  line-height: 1.6;
  margin-bottom: 15px;
}

.cartao-destaque {
  font-size: 1rem;
  font-weight: 600;
  color: #0f1b3f;
  margin-bottom: 30px;
}

.btn-cartao-mountpay {
  display: inline-block;
  padding: 14px 35px;
  background-color: #00d4ff;
  color: white;
  border: none;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(0, 212, 255, 0.3);
}

.btn-cartao-mountpay:hover {
  background-color: #00b8d4;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 6px 30px rgba(0, 212, 255, 0.5);
  text-decoration: none;
}

/* Responsivo */
@media (max-width: 991px) {
  .mais-vantagens-section {
    padding: 50px 20px;
  }

  .vantagens-title {
    font-size: 1.8rem;
  }

  .vantagens-icons {
    gap: 50px;
  }

  .conta-pj-para-todos-title {
    font-size: 1.7rem;
  }

  .conta-tipos {
    gap: 40px;
  }

  .cartao-title {
    font-size: 1.7rem;
  }
}

@media (max-width: 768px) {
  .mais-vantagens-section {
    padding: 40px 15px;
  }

  .vantagens-title {
    font-size: 1.5rem;
    margin-bottom: 30px;
  }

  .vantagens-icons {
    gap: 40px;
  }

  .vantagem-icon-circle {
    width: 80px;
    height: 80px;
  }

  .vantagem-icon-circle i {
    font-size: 36px;
  }

  .conta-pj-para-todos {
    padding: 40px 20px;
    margin-bottom: 40px;
  }

  .conta-pj-para-todos-title {
    font-size: 1.4rem;
    margin-bottom: 30px;
  }

  .conta-tipos {
    gap: 30px;
  }

  .conta-tipo i {
    font-size: 36px;
  }

  .conta-tipo span {
    font-size: 1rem;
  }

  .cartao-section {
    padding: 20px 0;
  }

  .cartao-image {
    margin-bottom: 20px;
  }

  .cartao-title {
    font-size: 1.4rem;
  }

  .cartao-text {
    font-size: 0.95rem;
  }

  .cartao-destaque {
    font-size: 0.95rem;
  }
}

@media (max-width: 576px) {
  .vantagens-title {
    font-size: 1.3rem;
  }

  .vantagens-icons {
    gap: 30px;
  }

  .vantagem-icon-circle {
    width: 70px;
    height: 70px;
  }

  .vantagem-icon-circle i {
    font-size: 32px;
  }

  .vantagem-label {
    font-size: 0.9rem;
  }

  .conta-pj-para-todos {
    padding: 30px 15px;
  }

  .conta-pj-para-todos-title {
    font-size: 1.2rem;
  }

  .conta-tipos {
    gap: 25px;
  }

  .conta-tipo i {
    font-size: 32px;
  }

  .conta-tipo span {
    font-size: 0.9rem;
  }

  .cartao-title {
    font-size: 1.2rem;
  }

  .cartao-text,
  .cartao-destaque {
    font-size: 0.85rem;
  }

  .btn-cartao-mountpay {
    padding: 12px 30px;
    font-size: 0.9rem;
    width: 100%;
  }
}

/* =====================
   CORRETOR PAGE
   ===================== */
.corretor-page {
  padding: 0;
}

/* Hero Section */
.corretor-hero {
  min-height: 50vh;
  display: flex;
  align-items: center;
}

.corretor-image-left,
.corretor-image-right {
  height: 50vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.corretor-image-left img,
.corretor-image-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.corretor-content-right,
.corretor-content-left {
  background: linear-gradient(135deg, #0f1b3f 0%, #1a2856 100%);
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 40px;
}

.corretor-text-wrapper {
  max-width: 600px;
  width: 100%;
}

.corretor-subtitle {
  font-size: 1rem;
  font-weight: 400;
  color: white;
  margin-bottom: 20px;
  letter-spacing: 0.5px;
}

.corretor-title {
  font-size: 2.8rem;
  font-weight: 700;
  color: white;
  line-height: 1.2;
  margin-bottom: 35px;
  letter-spacing: -0.5px;
}

.btn-corretor-cta {
  display: inline-block;
  padding: 14px 40px;
  background-color: #00d4ff;
  color: #0f1b3f;
  border: none;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(0, 212, 255, 0.3);
}

.btn-corretor-cta:hover {
  background-color: #00b8d4;
  color: #0f1b3f;
  transform: translateY(-2px);
  box-shadow: 0 6px 30px rgba(0, 212, 255, 0.5);
  text-decoration: none;
}

/* Vantagens Section */
.corretor-vantagens {
  min-height: 40vh;
  background-image: url('../assets/img/laboratorio-de-informatica-moderno-e-equipado-1.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
}

.corretor-vantagens-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 27, 63, 0.75);
  z-index: 1;
}

.corretor-vantagens-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.corretor-vantagens-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: white;
  line-height: 1.3;
  margin: 0;
  letter-spacing: 0.5px;
}

/* Responsivo */
@media (max-width: 991px) {
  .corretor-hero {
    min-height: auto;
  }

  .corretor-image-left,
  .corretor-image-right {
    height: 40vh;
    min-height: 300px;
  }

  .corretor-content-right,
  .corretor-content-left {
    min-height: auto;
    padding: 50px 30px;
  }

  .corretor-title {
    font-size: 2.2rem;
  }

  .corretor-subtitle {
    font-size: 0.95rem;
  }

  .corretor-vantagens {
    min-height: 35vh;
    padding: 50px 20px;
  }

  .corretor-vantagens-title {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .corretor-hero .row {
    flex-direction: column;
  }

  .corretor-hero-reverse .row {
    flex-direction: column;
  }

  .corretor-image-left,
  .corretor-image-right {
    height: 35vh;
    min-height: 250px;
    order: -1;
  }

  .corretor-content-right,
  .corretor-content-left {
    padding: 40px 20px;
  }

  .corretor-text-wrapper {
    text-align: center;
  }

  .corretor-title {
    font-size: 1.8rem;
  }

  .corretor-subtitle {
    font-size: 0.9rem;
    margin-bottom: 15px;
  }

  .btn-corretor-cta {
    padding: 12px 35px;
    font-size: 0.95rem;
  }

  .corretor-vantagens {
    min-height: 30vh;
    padding: 40px 15px;
  }

  .corretor-vantagens-title {
    font-size: 1.5rem;
  }
}

@media (max-width: 576px) {
  .corretor-image-left,
  .corretor-image-right {
    height: 30vh;
    min-height: 200px;
  }

  .corretor-content-right,
  .corretor-content-left {
    padding: 30px 15px;
  }

  .corretor-title {
    font-size: 1.5rem;
    margin-bottom: 25px;
  }

  .corretor-subtitle {
    font-size: 0.85rem;
  }

  .btn-corretor-cta {
    padding: 12px 30px;
    font-size: 0.9rem;
    width: 100%;
  }

  .corretor-vantagens {
    min-height: 25vh;
    padding: 30px 15px;
  }

  .corretor-vantagens-title {
    font-size: 1.2rem;
  }
}

/* =====================
   SOBRE NÓS PAGE
   ===================== */
.sobre-nos-page {
  padding: 0;
}

/* Hero Section */
.sobre-hero {
  background: white;
  padding: 80px 0;
}

.sobre-hero-content {
  padding: 20px;
}

.sobre-hero-title {
  font-size: 2rem;
  font-weight: 700;
  color: #0f1b3f;
  line-height: 1.3;
  margin-bottom: 25px;
  letter-spacing: -0.5px;
}

.sobre-hero-text {
  font-size: 1rem;
  color: #333;
  line-height: 1.7;
  margin-bottom: 20px;
}

.sobre-hero-text strong {
  color: #0f1b3f;
  font-weight: 700;
}

.sobre-hero-image {
  padding: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.sobre-hero-image img {
  max-width: 100%;
  height: auto;
  filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.15));
}

/* MVV Section (Missão, Visão, Valores) */
.sobre-mvv {
  min-height: 60vh;
  background-image: url('../assets/img/patrick-tomasso-gMes5dNykus-unsplash-1.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  position: relative;
  padding: 80px 0;
  display: flex;
  align-items: center;
}

.sobre-mvv-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(15, 27, 63, 0.85) 0%, rgba(26, 40, 86, 0.8) 100%);
  z-index: 1;
}

.sobre-mvv .container {
  position: relative;
  z-index: 2;
}

.mvv-card {
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(0, 212, 255, 0.3);
  border-radius: 20px;
  padding: 40px 30px;
  backdrop-filter: blur(10px);
  min-height: 350px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  transition: all 0.3s ease;
}

.mvv-card:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(0, 212, 255, 0.5);
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 212, 255, 0.2);
}

.mvv-card-title {
  font-size: 1.6rem;
  font-weight: 700;
  color: #00d4ff;
  margin-bottom: 20px;
  letter-spacing: 0.5px;
  text-align: center;
}

.mvv-card-text {
  font-size: 0.95rem;
  color: white;
  line-height: 1.7;
  margin-bottom: 15px;
  text-align: center;
}

.mvv-card-text:last-child {
  margin-bottom: 0;
}

/* Responsivo */
@media (max-width: 991px) {
  .sobre-hero {
    padding: 60px 0;
  }

  .sobre-hero-title {
    font-size: 1.7rem;
  }

  .sobre-hero-text {
    font-size: 0.95rem;
  }

  .sobre-mvv {
    min-height: auto;
    padding: 60px 0;
  }

  .mvv-card {
    padding: 35px 25px;
    min-height: 320px;
  }

  .mvv-card-title {
    font-size: 1.4rem;
  }
}

@media (max-width: 768px) {
  .sobre-hero {
    padding: 50px 0;
  }

  .sobre-hero-content {
    padding: 15px;
    text-align: center;
    margin-bottom: 30px;
  }

  .sobre-hero-title {
    font-size: 1.5rem;
    margin-bottom: 20px;
  }

  .sobre-hero-text {
    font-size: 0.9rem;
  }

  .sobre-hero-image {
    padding: 15px;
  }

  .sobre-mvv {
    padding: 50px 0;
    background-attachment: scroll;
  }

  .mvv-card {
    padding: 30px 20px;
    min-height: 280px;
    margin-bottom: 20px;
  }

  .mvv-card-title {
    font-size: 1.3rem;
    margin-bottom: 15px;
  }

  .mvv-card-text {
    font-size: 0.9rem;
  }
}

/* =====================
   POLÍTICAS DE PRIVACIDADE PAGE
   ===================== */
.politicas-section {
  background: #f8f9fa;
  padding: 80px 0;
  min-height: calc(100vh - 70px);
}

.politicas-header {
  text-align: center;
  margin-bottom: 50px;
}

.politicas-main-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #0f1b3f;
  margin-bottom: 15px;
  letter-spacing: -0.5px;
  line-height: 1.2;
}

.politicas-update {
  font-size: 0.95rem;
  color: #666;
  font-style: italic;
  margin: 0;
}

.politicas-intro {
  background: white;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  margin-bottom: 40px;
  border-left: 4px solid #00d4ff;
}

.politicas-intro p {
  font-size: 1.05rem;
  color: #333;
  line-height: 1.7;
  margin: 0;
}

.politicas-item {
  background: white;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  margin-bottom: 30px;
}

.politicas-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: #0f1b3f;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 2px solid #00d4ff;
}

.politicas-text {
  font-size: 1rem;
  color: #333;
  line-height: 1.7;
  margin-bottom: 20px;
}

.politicas-subitem {
  margin-bottom: 25px;
  padding-left: 20px;
  border-left: 3px solid #e0e0e0;
}

.politicas-subtitle {
  font-size: 1.1rem;
  font-weight: 700;
  color: #00d4ff;
  margin-bottom: 10px;
}

.politicas-list {
  padding-left: 25px;
  margin-bottom: 20px;
}

.politicas-list li {
  font-size: 1rem;
  color: #333;
  line-height: 1.8;
  margin-bottom: 12px;
}

.politicas-note {
  background: #e8f8ff;
  padding: 20px;
  border-radius: 8px;
  border-left: 4px solid #00d4ff;
  margin-top: 20px;
}

.politicas-note p {
  font-size: 0.95rem;
  color: #0f1b3f;
  margin: 0;
}

.politicas-contact {
  background: #f8f9fa;
  padding: 20px;
  border-radius: 8px;
  margin-top: 15px;
}

.politicas-contact p {
  font-size: 1rem;
  color: #333;
  margin-bottom: 10px;
}

.politicas-contact p:last-child {
  margin-bottom: 0;
}

.politicas-disclaimer {
  background: #fff3cd;
  border: 1px solid #ffc107;
  border-radius: 10px;
  padding: 25px;
  margin-top: 40px;
}

.politicas-disclaimer p {
  font-size: 0.95rem;
  color: #856404;
  margin: 0;
  line-height: 1.7;
}

/* Responsivo */
@media (max-width: 991px) {
  .politicas-section {
    padding: 60px 0;
  }

  .politicas-main-title {
    font-size: 2rem;
  }

  .politicas-item {
    padding: 30px;
  }

  .politicas-title {
    font-size: 1.5rem;
  }

  .politicas-text {
    font-size: 0.95rem;
  }
}

@media (max-width: 768px) {
  .politicas-section {
    padding: 50px 0;
  }

  .politicas-header {
    margin-bottom: 40px;
  }

  .politicas-main-title {
    font-size: 1.7rem;
  }

  .politicas-update {
    font-size: 0.9rem;
  }

  .politicas-intro {
    padding: 25px;
    margin-bottom: 30px;
  }

  .politicas-intro p {
    font-size: 1rem;
  }

  .politicas-item {
    padding: 25px;
    margin-bottom: 25px;
  }

  .politicas-title {
    font-size: 1.4rem;
    margin-bottom: 15px;
    padding-bottom: 12px;
  }

  .politicas-text {
    font-size: 0.9rem;
  }

  .politicas-subtitle {
    font-size: 1rem;
  }

  .politicas-subitem {
    margin-bottom: 20px;
    padding-left: 15px;
  }

  .politicas-list li {
    font-size: 0.9rem;
  }

  .politicas-note {
    padding: 15px;
  }

  .politicas-note p {
    font-size: 0.9rem;
  }

  .politicas-contact {
    padding: 15px;
  }

  .politicas-contact p {
    font-size: 0.9rem;
  }

  .politicas-disclaimer {
    padding: 20px;
  }

  .politicas-disclaimer p {
    font-size: 0.9rem;
  }
}

@media (max-width: 576px) {
  .politicas-section {
    padding: 40px 0;
  }

  .politicas-main-title {
    font-size: 1.4rem;
  }

  .politicas-intro {
    padding: 20px;
  }

  .politicas-intro p {
    font-size: 0.9rem;
  }

  .politicas-item {
    padding: 20px;
  }

  .politicas-title {
    font-size: 1.2rem;
  }

  .politicas-text {
    font-size: 0.85rem;
  }

  .politicas-subtitle {
    font-size: 0.95rem;
  }

  .politicas-list {
    padding-left: 20px;
  }

  .politicas-list li {
    font-size: 0.85rem;
    margin-bottom: 10px;
  }

  .politicas-note {
    padding: 15px;
  }

  .politicas-note p {
    font-size: 0.85rem;
  }

  .politicas-contact {
    padding: 15px;
  }

  .politicas-contact p {
    font-size: 0.85rem;
  }

  .politicas-disclaimer {
    padding: 15px;
    margin-top: 30px;
  }

  .politicas-disclaimer p {
    font-size: 0.85rem;
  }
}

@media (max-width: 576px) {
  .sobre-hero {
    padding: 40px 0;
  }

  .sobre-hero-content {
    padding: 10px;
  }

  .sobre-hero-title {
    font-size: 1.3rem;
    margin-bottom: 15px;
  }

  .sobre-hero-text {
    font-size: 0.85rem;
    margin-bottom: 15px;
  }

  .sobre-mvv {
    padding: 40px 0;
  }

  .mvv-card {
    padding: 25px 15px;
    min-height: 260px;
  }

  .mvv-card-title {
    font-size: 1.2rem;
  }

  .mvv-card-text {
    font-size: 0.85rem;
    line-height: 1.6;
  }
}

/* =====================
   TARIFAS PAGE
   ===================== */
.tarifas-page {
  padding: 0;
}

.tarifas-hero {
  background: #081740;
  padding: 80px 0;
}

.tarifas-hero-content {
  padding: 30px 40px;
}

.tarifas-hero-title {
  font-size: 2.8rem;
  font-weight: 700;
  color: white;
  line-height: 1.2;
  margin-bottom: 20px;
}

.tarifas-hero-text {
  font-size: 1rem;
  color: #e8f0ff;
  line-height: 1.6;
  margin: 0;
  max-width: 540px;
}


/* =====================
   CONSIGNADO BENEFITS
   ===================== */
.consignado-benefits {
  background: #041339;
  color: #e8f0ff;
  padding: 70px 0;
}

.consignado-benefits .container-fluid {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}

.consignado-title {
  color: #ffffff;
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.25;
  margin: 0;
  max-width: 460px;
}

.consignado-items .benefit-item {
  gap: 12px;
  color: #e8f0ff;
}

.benefit-icon {
  font-size: 2rem;
  color: #00d4ff;
  line-height: 1;
  flex-shrink: 0;
  margin-top: 2px;
}

.benefit-title,
.benefit-text {
  color: #e8f0ff;
  line-height: 1.4;
}

.benefit-title {
  font-weight: 600;
}

.benefit-text {
  font-size: 1rem;
}

.benefit-accent {
  color: #ff3b57;
  font-weight: 600;
}

.benefit-note {
  font-size: 0.85rem;
  color: #ff3b57;
}

@media (max-width: 991px) {
  .consignado-benefits {
    padding: 60px 20px;
  }

  .consignado-benefits .container-fluid {
    padding: 0 16px;
  }

  .consignado-title {
    font-size: 1.9rem;
    max-width: none;
    text-align: center;
    margin-bottom: 10px;
  }

  .consignado-items {
    margin-top: 10px;
  }

  .benefit-note {
    text-align: center;
  }
}

@media (max-width: 768px) {
  .consignado-title {
    font-size: 1.7rem;
  }

  .benefit-icon {
    font-size: 1.8rem;
  }

  .benefit-title,
  .benefit-text {
    font-size: 0.95rem;
  }
}
.tarifas-hero-image {
  padding: 30px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.tarifas-hero-image img {
  max-width: 100%;
  height: auto;
  filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.2));
}

.tarifas-info {
  background: white;
  padding: 60px 0;
}

.tarifas-info-content {
  padding: 30px 40px;
}

.tarifas-info-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: #0f1b3f;
  line-height: 1.3;
  margin-bottom: 20px;
}

.tarifas-info-divider {
  width: 80px;
  height: 4px;
  background: #00d4ff;
  border-radius: 2px;
  margin-bottom: 20px;
}

.tarifas-info-text {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.6;
  margin: 0;
  max-width: 520px;
}

.tarifas-info-image {
  height: 100%;
  min-height: 320px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.tarifas-info-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Responsivo */
@media (max-width: 991px) {
  .tarifas-hero {
    padding: 60px 0;
  }

  .tarifas-hero-title {
    font-size: 2.2rem;
  }

  .tarifas-hero-content,
  .tarifas-info-content {
    padding: 25px 30px;
  }

  .tarifas-info {
    padding: 50px 0;
  }

  .tarifas-info-title {
    font-size: 1.5rem;
  }
}

@media (max-width: 768px) {
  .tarifas-hero .row,
  .tarifas-info .row {
    flex-direction: column;
  }

  .tarifas-hero-image,
  .tarifas-info-image {
    padding: 20px;
  }

  .tarifas-hero-title {
    font-size: 1.9rem;
    text-align: center;
  }

  .tarifas-hero-text {
    text-align: center;
    margin: 0 auto;
  }

  .tarifas-hero-content,
  .tarifas-info-content {
    text-align: center;
  }

  .tarifas-info-title {
    font-size: 1.4rem;
  }

  .tarifas-info-divider {
    margin-left: auto;
    margin-right: auto;
  }

  .tarifas-info-text {
    margin: 0 auto;
  }
}

@media (max-width: 576px) {
  .tarifas-hero {
    padding: 45px 0;
  }

  .tarifas-hero-content,
  .tarifas-info-content {
    padding: 20px;
  }

  .tarifas-hero-title {
    font-size: 1.6rem;
    margin-bottom: 15px;
  }

  .tarifas-hero-text {
    font-size: 0.95rem;
  }

  .tarifas-info {
    padding: 40px 0;
  }

  .tarifas-info-title {
    font-size: 1.2rem;
  }

  .tarifas-info-text {
    font-size: 0.9rem;
  }
}