.applus-header-text {
	color: var(--color-primary) !important;
}

/*Apps Overview*/

.btn-custom {
    background-color: #746660; 
    color: #FFFFFF; 
    font-family: Tahoma, sans-serif; 
    font-size: 14px; 
    font-weight: 700; 
    line-height: 20px; 
    text-align: center; 
    border: none; 
    padding: 10px; 
    cursor: pointer;
    border-radius: 4px; 
}

.btn-custom:hover {
    opacity: 0.9; 
}

.custom-header-container {
    width: 237px; 
    height: auto; 
    gap: 10px;
    opacity: 1;
}

.custom-header-container h5 {
    font-family: Tahoma, sans-serif;
    font-size: 24px;
    font-weight: 700;
    line-height: 28.97px;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
}

.custom-paragraph {
    width: 237px; 
    height: auto; 
    gap: 10px;
    font-family: Tahoma, sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
}

.bold {
    font-weight: 700;
}

.card-body {
padding: 0;
}

:root {
    --orange-color: #ff6900;
    --orange-light-color: #ffe0cc59;
    --orange-dark-color: #cc4b02;
    --brown-color: #746660;
    --brown-dark-color: #5c4f4c;
    --light-braun: #f9f8f7;
    --braun: #e3e1de;
    --white-color: white;
    --black-color: #343a40;
    --gray-color: #656D76;
    --primary-color: var(--orange-color);
    --primary-hover-color: var(--orange-dark-color);
    --secondary-color: var(--brown-color);
    --secondary-hover-color: var(--brown-dark-color);
    --font-size: 16px;
    --font-family: Tahoma;
    --font-style: italic;
    --page-width: 1440px;
    --navbar-height: 70px;
}

html {
    scroll-padding-top: calc(var(--navbar-height) + 20px);
}

.content-page {
    margin-left: 0 !important;
    overflow: hidden;
    padding: var(--navbar-height) 0 55px 0;
    min-height: calc(100vh - var(--navbar-height)) !important;
}

.navbar {
    background-color: white;
}

.footer {
    left: 0;
}

body {
    color: var(--black-color);
    position: relative;
}

.page-content {
    margin: 0;
}

.featured-badge {
    padding-right: .6em;
    padding-left: .6em;

    font-size: 0.75rem;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
    border-radius: 6px;
    background-color: rgba(255, 105, 0, 0.05);
    -webkit-box-shadow: none;
    box-shadow: none;
}

.featured-box {
    background: var(--primary-color);
    border-radius: 10px;
    height: 2.5rem;
    width: 2.5rem;
}

.featured-box .mdi {
    font-size: 1.5rem;
    color: var(--white-color);
}

.simple-card {
    background-color: var(--light-braun);
    border-radius: 0.625rem;
    padding: 2rem;
    height: 100%;
}

.simple-card-image {
    border-radius: 0.625rem;
}

.price-card {
    height: 100%;
    border: 2px solid var(--braun);
    border-radius: 24px;
    padding: 2em;
}

.price-card.highlighted {
    border: 2px solid var(--primary-color);
}

.price-card .price-card-title {
    font-size: 1.5rem;
    font-weight: bold;
}

.price-card-cost {
    font-size: 2rem;
    font-weight: bold;
}

.price-card .price-header {
    height: 5rem;
}

.price-card .price-tag {
    font-size: 2rem;
    font-weight: bold;
}

.price-card .btn {
    width: 100%;
}

.apps-and-services .item {
    padding: 0.875rem;
    color: var(--black-color);
    height: 100%;
    width: 100%;
}

.apps-and-services .btn.item:hover {
    background-color: var(--orange-light-color);
}

.btn.primary {
    color: var(--white-color);
    font-weight: bold;
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn.primary:hover {
    color: var(--white-color);
    background-color: var(--primary-hover-color);
    border-color: var(--primary-hover-color);
}

.btn.primary:active {
    color: var(--white-color);
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn.primary:focus {
    color: var(--white-color);
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    box-shadow: 0 0 0 .25rem rgba(255, 105, 0, .5);
}

.btn.secondary {
    color: var(--white-color);
    font-weight: bold;
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
}

.btn.secondary:hover {
    color: var(--white-color);
    background-color: var(--secondary-hover-color);
    border-color: var(--secondary-hover-color);
}

.btn.secondary:active {
    color: var(--white-color);
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
}

.btn.secondary:focus {
    color: var(--white-color);
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 .25rem rgba(116, 102, 96, .5);
}

.price-card .features-title {
    font-size: 0.875rem;
    font-weight: bold;
}

.price-card .feature-item {
    font-size: 0.875rem;
    padding: 5px 5px 5px 0;
}

.price-card .mdi.mdi-check {
    font-size: 1rem;
    color: var(--primary-color);
}

h1 {
    font-size: 2.25rem;
    font-weight: bold;
}

h3 {
    font-size: 1.25rem;
    font-weight: bold;
}

.text.default {
    color: var(--gray-color);
}

.text.primary {
    color: var(--primary-color);
    font-weight: bold;
}

.text.secondary {
    color: var(--secondary-color);
    font-weight: bold;
}

.dropdown-toggle.show {
    color: var(--primary-color) !important;
}

.text-applus{
    color: var(--primary-color);
}

.btn-color-custom {
    background-color: var(--brown-color); 
    color: var(--light-braun);
     
}

.btn-color-custom:hover{
    color: var(--light-braun)!important;
}

.btn-color-custom:focus{
    box-shadow: 0 0 0 .15rem rgba(88, 67, 51, 0.3);
}

.card-btn{
    font-family: Tahoma, sans-serif; 
    font-size: 14px; 
    font-weight: 700; 
    line-height: 20px; 
    text-align: center; 
    border: none; 
    cursor: pointer;
    border-radius: 4px; 
}

.card-btn:hover{
    opacity: .85;
}

.btn-custom:hover {
    opacity: 0.9; 
}

.custom-header-container {
    width: 237px; 
    height: auto; 
    gap: 10px;
    opacity: 1;
}

.custom-header-container h5 {
    font-family: Tahoma, sans-serif;
    font-size: 24px;
    font-weight: 700;
    line-height: 28.97px;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
}

.custom-paragraph {
    width: 237px;
    height: auto;
    gap: 10px;
    font-family: var(--font-family);
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
}

.bold {
    font-weight: 700;
}

.custom-card {
    width: 280px;
    height: 280px;
    padding: 80px 18px 24px 18px;
    gap: 16px;
    border-radius: 24px;
    display: inline-block;
    vertical-align: top;
    background: white;
    box-shadow: rgba(0, 0, 0, 0.30) 0px 5px 13px;
}

.custom-card:hover{
    border-color: var(--primary-hover-color);
}

.card-body {
    padding: 0;
    bottom: 8%;
}

.custom-card-icon{
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: -15%;
    height: 38%;
}

.nav-link{
    color: var(--primary-color);
    font-size: 1rem !important;
}

.nav-simple-link{
    color: var(--primary-color);
}

.nav-link:hover{
    color: var(--primary-color);
}


.custom-image {
    width: 64px;
    height: 63.99px;
    position: relative;
    top: 0.01px;
    left: 0px;
    gap: 0px;
    opacity: 1;
}

.arrow-circle {
    display: flex;
    align-items: center;
    justify-content: center;
}

.custom-circle {
    width: 44px;
    height: 44px;
    padding: 8px 0px 0px 0px;
    gap: 8px;
    border-radius: 50%; /* Círculo completo */
    border: 1px solid transparent;
    opacity: 1;
    position: relative;
}

.custom-circle.left {
    border-color: #CAC3BE;
}

.custom-circle.right {
    border-color: #5C4F4C;
}

.custom-circle.left::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 8px;
    height: 8px;
    border-left: 2px solid #CAC3BE;
    border-bottom: 2px solid #CAC3BE;
    transform: translate(-50%, -50%) rotate(45deg);
}

.custom-circle.right::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 8px;
    height: 8px;
    border-right: 2px solid #5C4F4C;
    border-bottom: 2px solid #5C4F4C;
    transform: translate(-50%, -50%) rotate(-45deg);
}

h3.darkbg {
    color: #343a40;
}
