/* src/styles.css */
*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  overflow-x: hidden;
  max-width: 100vw;
  position: relative;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
}
body,
:host {
  overflow-x: hidden;
  max-width: 100%;
  position: relative;
  width: 100%;
  margin: 0;
  padding: 0;
  padding-top: 80px;
  font-family:
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    "Helvetica Neue",
    Arial,
    sans-serif;
  color: #1a1a1a;
  background: #ffffff;
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0.1);
}
app-root {
  display: block;
  min-height: 100vh;
}
section {
  scroll-margin-top: 6rem;
  overflow-x: hidden;
  max-width: 100%;
}
@media (max-width: 768px) {
  html {
    scroll-padding-top: 4rem;
  }
  section {
    scroll-margin-top: 4rem;
  }
}
@media (max-width: 576px) {
  body,
  :host {
    padding-top: 65px;
  }
  html {
    scroll-padding-top: 3.5rem;
  }
  section {
    scroll-margin-top: 3.5rem;
  }
}
.section-pad {
  padding-top: 5rem;
  padding-bottom: 5rem;
  position: relative;
}
.navbar-brand {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.5px;
  color: #000000 !important;
}
.logo-img {
  height: 70px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  transition: transform 0.2s ease;
}
.navbar-brand:hover .logo-img {
  transform: scale(1.05);
}
.display-title {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.2;
  color: #000000;
  letter-spacing: -1px;
  word-wrap: break-word;
  overflow-wrap: break-word;
  max-width: 100%;
}
.lead-text {
  font-size: 1.3rem;
  line-height: 1.9;
  color: #333333;
  word-wrap: break-word;
  overflow-wrap: break-word;
  max-width: 100%;
}
.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #000000;
  letter-spacing: -0.5px;
  word-wrap: break-word;
  overflow-wrap: break-word;
  max-width: 100%;
}
.section-subtitle {
  font-size: 1.1rem;
  color: #666666;
  line-height: 1.8;
}
.feature-icon {
  width: 4rem;
  height: 4rem;
  stroke-width: 1.5;
}
.glass-card {
  background: rgba(255, 255, 255, .95);
  border: 2px solid #000000;
  box-shadow: 8px 8px 0px 0px #000000;
  max-width: 100%;
  overflow-x: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.glass-card:hover {
  transform: translateY(-4px);
  box-shadow: 12px 12px 0px 0px #000000;
}
.btn-custom {
  padding: 0.875rem 2rem;
  font-size: 1.1rem;
  font-weight: 600;
  border: 2px solid #000000;
  transition: all 0.2s ease;
  letter-spacing: 0.5px;
  min-height: 44px;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0.1);
  cursor: pointer;
  touch-action: manipulation;
}
.btn-primary-custom {
  background: #000000;
  color: #ffffff;
}
.btn-primary-custom:hover {
  background: #ffffff;
  color: #000000;
  transform: translateY(-2px);
  box-shadow: 4px 4px 0px 0px #000000;
}
@media (hover: none) and (pointer: coarse) {
  .btn-primary-custom:hover {
    transform: none;
    box-shadow: 2px 2px 0px 0px #000000;
  }
}
.btn-primary-custom:active {
  transform: translateY(0);
  box-shadow: 2px 2px 0px 0px #000000;
}
.btn-outline-custom {
  background: #ffffff;
  color: #000000;
}
.btn-outline-custom:hover {
  background: #000000;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 4px 4px 0px 0px #000000;
}
@media (hover: none) and (pointer: coarse) {
  .btn-outline-custom:hover {
    transform: none;
    box-shadow: 2px 2px 0px 0px #000000;
  }
}
.btn-outline-custom:active {
  transform: translateY(0);
  box-shadow: 2px 2px 0px 0px #000000;
}
.border-custom {
  border: 1px solid #000000 !important;
}
.card-custom {
  border: 2px solid #000000;
  background: #ffffff;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  max-width: 100%;
  overflow-x: hidden;
  cursor: default;
}
.card-custom:hover {
  transform: translateY(-6px);
  box-shadow: 8px 8px 0px 0px #000000;
}
.card-custom:active {
  transform: translateY(-2px);
  box-shadow: 4px 4px 0px 0px #000000;
}
.text-accent {
  color: #666666;
}
.navbar {
  background: #ffffff !important;
  border-bottom: 2px solid #000000;
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  width: 100% !important;
  z-index: 1030 !important;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}
nav.navbar {
  position: fixed !important;
}
.navbar.scrolled {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.nav-link {
  color: #1a1a1a !important;
  font-weight: 500;
  transition: all 0.2s ease;
  display: block;
  padding: 0.5rem 1rem;
  cursor: pointer;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0.1);
  position: relative;
  border-radius: 4px;
}
.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background-color: #000000;
  transition: all 0.3s ease;
  transform: translateX(-50%);
}
.nav-item.dropdown > .nav-link.dropdown-toggle::after {
  display: none;
}
.nav-link:hover {
  color: #000000 !important;
  background-color: rgba(0, 0, 0, 0.02);
}
.nav-link:hover::after {
  width: 80%;
}
.nav-link:active {
  background-color: rgba(0, 0, 0, 0.08);
}
.navbar-toggler {
  border: 2px solid #000000 !important;
  padding: 0.4rem 0.6rem;
  transition: all 0.2s ease;
  border-radius: 4px;
}
.navbar-toggler:hover {
  background-color: rgba(0, 0, 0, 0.05);
  transform: none;
}
.navbar-toggler:focus {
  box-shadow: 0 0 0 0.2rem rgba(0, 0, 0, 0.1);
  outline: none;
}
.navbar-toggler:active {
  background-color: rgba(0, 0, 0, 0.1);
  transform: none;
}
.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(0, 0, 0, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='3' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
  width: 1.5em;
  height: 1.5em;
}
.divider-line {
  height: 2px;
  background: #000000;
  margin: 2rem 0;
}
.check-icon {
  color: #000000;
}
.footer-link {
  color: #333333;
  text-decoration: none;
  transition: color 0.2s ease;
}
.footer-link:hover {
  color: #000000;
}
.form-control {
  border: 2px solid #000000;
  padding: 0.75rem 1rem;
  border-radius: 0;
  transition: all 0.2s ease;
}
.form-control:focus {
  border-color: #000000;
  box-shadow: 0 0 0 0.2rem rgba(0, 0, 0, 0.1);
  outline: none;
}
.border-2 {
  border-width: 2px !important;
}
.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 30px;
  right: 30px;
  background-color: #25d366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
  z-index: 1000;
  transition: all 0.3s ease;
  text-decoration: none;
  border: 3px solid #000000;
  max-width: 60px;
  max-height: 60px;
}
.whatsapp-float:hover {
  background-color: #20ba5a;
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}
.whatsapp-float:active {
  transform: scale(0.95);
}
.whatsapp-float svg {
  display: block;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.2));
}
@media (max-width: 768px) {
  .display-title {
    font-size: 2.5rem;
    line-height: 1.1;
  }
  .section-title {
    font-size: 2rem;
  }
  .section-pad {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
  .lead-text {
    font-size: 1.1rem;
    line-height: 1.7;
  }
  .logo-img {
    height: 50px;
  }
  body,
  :host {
    padding-top: 70px;
  }
  .navbar {
    padding: 0.75rem 0;
  }
  .navbar-brand {
    padding: 0.25rem 0;
  }
  .glass-card {
    padding: 2rem !important;
  }
  .glass-card svg {
    width: 120px !important;
    height: 120px !important;
    max-width: 100%;
  }
  .btn-custom {
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
  }
  section {
    scroll-margin-top: 4rem;
  }
  .form-control {
    font-size: 16px;
  }
  .card-custom {
    margin-bottom: 1.5rem;
  }
  .navbar-nav .btn {
    margin-top: 0.75rem;
    margin-bottom: 0.5rem;
    width: 100%;
    max-width: 100%;
    text-align: center;
    display: block;
    box-sizing: border-box;
  }
  .navbar {
    max-width: 100%;
    overflow-x: hidden;
  }
  .navbar-collapse {
    max-width: 100%;
    overflow-x: hidden;
  }
  .navbar-nav {
    max-width: 100%;
    width: 100%;
    overflow-x: hidden;
  }
  .navbar-nav {
    padding: 1rem 0;
  }
  .nav-item {
    width: 100%;
    max-width: 100%;
    display: block;
  }
  .nav-link {
    padding: 0.75rem 1rem !important;
    font-size: 1.1rem;
    width: 100%;
    display: block;
    text-align: left;
    box-sizing: border-box;
  }
  .navbar-nav .btn:hover,
  .navbar-nav .btn:focus {
    transform: none !important;
    box-shadow: 2px 2px 0px 0px #000000 !important;
  }
  .navbar-nav .btn:active {
    transform: translateY(1px) !important;
    box-shadow: 1px 1px 0px 0px #000000 !important;
  }
  .dropdown-menu {
    position: static !important;
    float: none;
    width: 100%;
    margin-top: 0;
    margin-left: 0;
    border: none;
    border-top: 2px solid #000000;
    border-bottom: 2px solid #000000;
    box-shadow: none;
    background-color: rgba(0, 0, 0, 0.02);
  }
  .dropdown-item {
    padding: 0.75rem 2rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  }
  .dropdown-item:last-child {
    border-bottom: none;
  }
  @media (hover: none) and (pointer: coarse) {
    .nav-link:hover::after {
      width: 0 !important;
    }
    .dropdown-item:hover {
      background-color: transparent;
    }
    .dropdown-item:active {
      background-color: rgba(0, 0, 0, 0.1);
    }
  }
  .navbar-nav .nav-item {
    margin-bottom: 0.25rem;
  }
  .navbar-nav .nav-item:last-child {
    margin-bottom: 0;
  }
  .navbar .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .navbar-toggler {
    margin-right: 0;
  }
}
@media (min-width: 577px) and (max-width: 991px) {
  .navbar-nav .btn {
    width: auto;
    min-width: 150px;
  }
  .nav-link {
    padding: 0.65rem 1rem !important;
  }
}
@media (max-width: 576px) {
  .display-title {
    font-size: 2rem;
    line-height: 1.1;
    margin-bottom: 1.5rem !important;
  }
  .section-title {
    font-size: 1.75rem;
  }
  .section-pad {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }
  .lead-text {
    font-size: 1rem;
    line-height: 1.6;
  }
  .logo-img {
    height: 45px;
  }
  .glass-card {
    padding: 1.5rem !important;
  }
  .glass-card svg {
    width: 100px !important;
    height: 100px !important;
    max-width: 100%;
  }
  .btn-custom {
    padding: 0.65rem 1.25rem;
    font-size: 0.95rem;
  }
  .btn-custom.w-100 {
    width: 100% !important;
  }
  .gap-3 {
    gap: 0.75rem !important;
  }
  .gap-4 {
    gap: 1rem !important;
  }
  .check-icon {
    width: 18px !important;
    height: 18px !important;
  }
  .list-unstyled li {
    margin-bottom: 0.75rem;
  }
  footer .row > div {
    margin-bottom: 2rem;
  }
  footer .row > div:last-child {
    margin-bottom: 0;
  }
}
@media (max-width: 480px) {
  .whatsapp-float {
    width: 55px;
    height: 55px;
    bottom: 20px;
    right: 20px;
  }
  .whatsapp-float svg {
    width: 24px;
    height: 24px;
  }
  .display-title {
    font-size: 1.75rem;
  }
  .section-title {
    font-size: 1.5rem;
  }
  .logo-img {
    height: 40px;
  }
  .navbar {
    padding: 0.5rem 0;
  }
  .container {
    padding-left: 1rem;
    padding-right: 1rem;
    max-width: 100%;
    overflow-x: hidden;
  }
  .row {
    margin-left: 0;
    margin-right: 0;
    max-width: 100%;
  }
  [class*=col-] {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
    max-width: 100%;
  }
  img {
    max-width: 100%;
    height: auto;
  }
  .container-fluid,
  .container {
    max-width: 100%;
    overflow-x: hidden;
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .row {
    margin-left: 0;
    margin-right: 0;
    max-width: 100%;
    overflow-x: hidden;
  }
  .row.g-4 {
    margin-left: 0;
    margin-right: 0;
    overflow-x: hidden;
  }
  .row.g-4 > * {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
    max-width: 100%;
    overflow-x: hidden;
  }
  [class*=col-] {
    max-width: 100%;
    overflow-x: hidden;
  }
  .card-custom {
    max-width: 100%;
    overflow-x: hidden;
  }
  svg {
    max-width: 100%;
    height: auto;
  }
  p,
  span,
  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    word-wrap: break-word;
    overflow-wrap: break-word;
    max-width: 100%;
  }
  .lead-text {
    font-size: 0.95rem;
  }
  .section-subtitle {
    font-size: 1rem;
  }
  .btn-custom {
    padding: 0.6rem 1rem;
    font-size: 0.9rem;
  }
  .section-pad {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
  .navbar-nav {
    padding: 0.75rem 0;
    width: 100%;
  }
  .nav-item {
    width: 100%;
    margin-bottom: 0.25rem;
  }
  .nav-link {
    padding: 0.65rem 1rem !important;
    font-size: 1rem;
    width: 100%;
    display: block;
    text-align: left;
  }
  .navbar-nav .btn {
    margin-top: 0.5rem;
    margin-bottom: 0.25rem;
    width: 100%;
    padding: 0.65rem 1.25rem;
  }
  .navbar-nav .btn-primary-custom,
  .navbar-nav .btn-outline-custom {
    transform: none !important;
  }
  .navbar-nav .btn:active {
    transform: translateY(1px) !important;
  }
  .form-label {
    font-size: 0.95rem;
  }
  .glass-card {
    padding: 1.25rem !important;
  }
  .glass-card h3 {
    font-size: 1.25rem;
  }
  .glass-card p {
    font-size: 0.9rem;
  }
}

/* angular:styles/global:styles */
/*# sourceMappingURL=styles.css.map */
