:root {
    --bs-body-bg: #ffffff;
    --bs-body-color: #212529;
    --bs-secondary-color: #6c757d;
    --bs-tertiary-bg: #f8f9fa;
}

body {
   position: relative;
   padding-top: 56px;
   background-color: var(--bs-body-bg);
   color: var(--bs-body-color);
}
section {
   padding-top: 100px;
   padding-bottom: 100px;
   margin-top: -56px;
}
#acasa {
    padding-top: 0;
    margin-top: 0;
}
header#hero {
    margin-top: -56px;
    padding-top: 100px;
    padding-bottom: 100px;
    background-color: var(--bs-tertiary-bg);
    color: var(--bs-body-color);
}
header#hero h1, header#hero h2, header#hero p {
   color: var(--bs-body-color);
}
.feature {
   display: inline-flex;
   align-items: center;
   justify-content: center;
   height: 4rem;
   width: 4rem;
   font-size: 2rem;
   background-color: rgba(var(--bs-primary-rgb, 13, 110, 253), 0.1);
   color: var(--bs-primary, #0d6efd);
   border-radius: 0.5rem;
}
.card {
   background-color: var(--bs-body-bg);
   border: 1px solid var(--bs-border-color);
   transition: transform 0.3s ease, box-shadow 0.3s ease;
   border-radius: 0.5rem;
}
.card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}
.text-muted {
   color: var(--bs-secondary-color, #6c757d) !important;
}
a {
   color: var(--bs-primary, #0d6efd);
}
a:hover {
   color: var(--bs-link-hover-color, #0a58ca);
}
.btn-outline-light {
   color: #f8f9fa;
   border-color: #f8f9fa;
}
.btn-outline-light:hover {
   color: #16161a;
   background-color: #f8f9fa;
   border-color: #f8f9fa;
}

.animated-section > * {
   opacity: 0;
   transform: translateY(20px);
   transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.animated-section.is-visible > * {
    opacity: 1;
    transform: translateY(0);
}
.animated-section.is-visible > *:nth-child(2) { transition-delay: 0.1s; }
.animated-section.is-visible > *:nth-child(3) { transition-delay: 0.2s; }
.animated-section.is-visible > *:nth-child(4) { transition-delay: 0.3s; }
.animated-section.is-visible > *:nth-child(5) { transition-delay: 0.4s; }

.modal-content {
    background-color: var(--bs-body-bg);
    border: 1px solid var(--bs-border-color);
    color: var(--bs-body-color);
}
.modal-header {
   border-bottom: 1px solid var(--bs-border-color);
}
.kg-width-wide, .kg-width-full {}