/* Combinação de todos os estilos */
@import url("styles.css");
@import url("styles-additional.css");

/* Correções finais para garantir compatibilidade */
.hero-section {
  min-height: 80vh;
  display: flex;
  align-items: center;
}

.about-section .about-image {
  margin-bottom: 30px;
}

@media (max-width: 767.98px) {
  .experience-badge {
    position: relative;
    bottom: 0;
    right: 0;
    margin: 20px auto;
    max-width: 200px;
  }

  .hero-section {
    min-height: auto;
    padding-top: 50px;
    padding-bottom: 60px;
  }

  .hero-buttons .btn {
    margin-bottom: 10px;
  }
}

/* Evitar botões forçando largura maior que a viewport em mobile */
@media (max-width: 575.98px) {
  .btn {
    min-width: 0;
    width: 100%;
  }
  .navbar .container {
    overflow-x: hidden;
  }
}

/* Otimizações para carregamento */
img {
  max-width: 100%;
  height: auto;
}

/* Correções de overflow no mobile */
html,
body {
  overflow-x: hidden;
}

.container,
.container-fluid {
  overflow-x: hidden;
}

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

/* Melhorias de acessibilidade */
:focus {
  outline: 3px solid rgba(201, 42, 42, 0.3);
  outline-offset: 2px;
}

.btn:focus,
.form-control:focus {
  box-shadow: 0 0 0 0.25rem rgba(201, 42, 42, 0.25);
}
