body {
    background: #f8f9fa;
    font-family: 'Ubuntu', sans-serif;
    color: #2c3e50;
    font-size: 15px;
    display: flex;
    flex-direction: column;
    line-height: 1.6;
}

html, body {
    height: 100%;
}

.container {
    max-width: 1000px;
}

a {
    color: #585858;
}

main {
    flex: 1;
}

/* Modern Header */
.modern-header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.header-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: #2c3e50;
    font-size: 24px;
    font-weight: 400;
    transition: all 0.3s ease;
}

.logo-link:hover {
    color: #667eea;
    text-decoration: none;
}

.navbar-logo {
    height: 50px;
    width: auto;
}

.navbar-light {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
}

.navbar-light .navbar-nav .nav-link {
    color: rgba(255, 255, 255, 0.9) !important;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: #ffffff !important;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
}

.navbar-toggler {
    border-color: rgba(255, 255, 255, 0.5) !important;
}

.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(255, 255, 255, 0.9)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}

.logo-link i {
    font-size: 28px;
    color: #667eea;
}

.logo-text {
    font-weight: 400;
}

.logo-text strong {
    font-weight: 700;
}

.header-nav {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav-link-modern {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #2c3e50;
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    padding: 8px 16px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.nav-link-modern:hover {
    background: #f7fafc;
    color: #667eea;
    text-decoration: none;
}

.btn-header-cta {
    display: flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    padding: 10px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

.btn-header-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(102, 126, 234, 0.4);
    color: #fff;
    text-decoration: none;
}

header {
    font-size: 14px;
    border-bottom: 1px solid #dfdfdf;
    padding: 10px 0;
}

h5 {
    font-weight: 400;
}

strong {
    font-weight: 500;
}

.btn {
    font-size: 14px;
    border-radius: 25px;
    padding: 10px 20px;
}

.btn-white {
    background-color: #fff;
    border: 1px solid #dfdfdf;
    color: #585858;
}

.btn-white:hover {
    background-color: #f6f6f6;
}

.btn-white:active {
    background-color: #dfdfdf;
}

.btn-white:focus {
    box-shadow: 0 0 0 .2rem rgb(187 187 187 / 25%);
}

.btn-primary {
    background-color: #00b5cc;
    color: #fff;
    border: none;
}

.btn-primary:hover {
    background-color: #009db1;
}

.btn-primary:active, .btn-primary:visited {
    background-color: #00a3b5 !important;
}

.btn-primary:focus {
    background-color: #0096a5 !important;
    box-shadow: 0 0 0 .2rem rgba(107, 209, 190, 0.25) !important;
}

header nav {
    display: flex;
    white-space: nowrap;
}

header nav a.nav-link {
    color: inherit;
    padding: 10px 10px;
    text-decoration: none;
}

header nav a.nav-link:hover {
    opacity: 0.7;
}

header .logo img {
    height: 35px;
}

.main-title {
    font-size: 40px;
    font-weight: 500;
    color: #00b5cc;
}

.main-subtitle {
    font-size: 20px;
    color: #585858;
}

.search-bar {
    width: 100%;
    position: relative;
    align-items: center;
    height: 70px;
}

.search-bar input:focus-within {
    border-color: #00b5cc;
    box-shadow: 0 0 0 1px #00b5cc;
}

.select-wrapper {
    position: relative;
    display: inline-block;
    border-right: 1px #eaeaea solid;
    height: 100%;
}

.category-select {
    background: none;
    border: none;
    font-size: 15px;
    padding: 0 45px 0 35px;
    height: 100%;
    margin-left: 10px;
    -webkit-appearance: none;
    -moz-animation: none;
    appearance: none;
}

.select-wrapper::after {
    content: "\f0d7";
    font-family: "Font Awesome 6 Pro";
    font-weight: 900;
    position: absolute;
    right: 25px;
    top: 21px;
    pointer-events: none;
    color: #585858;
    font-size: 18px;
}

.category-select:focus {
    outline: none;
}

.search-input {
    width: 100%;
    flex: 1;
    font-size: 26px;
    padding: 0 25px;
    height: 64px;
    outline: none;
    border: 1px solid #d7d7d7;
    border-radius: 55px;
    text-transform: uppercase;
}

.search-input:focus {
    outline: none;
}

.btn-search {
    background-color: #252525;
    color: #fff;
    border: none;
    font-size: 18px;
    padding: 10px 20px;
    margin-right: 10px;
    border-radius: 25px !important;
    font-weight: 500;
    position: absolute;
    right: 0;
    top: 8px;
}

.btn-search:hover {
    background-color: #2e2e2e;
    color: #fff;
}

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

.category-select, .btn-search {
    align-self: center;
}


ul.categories {
    padding: 0;
}

ul.categories li {
    list-style: none;
    text-align: center;
    display: inline-block;
    margin-bottom: 20px;
    width: 100%;
}


ul.categories li:nth-child(9n) {
    margin-right: 0;
}

ul.categories li .btn {
    text-align: center;
    border: 1px #dfdfdf solid;
    border-radius: 20px;
    padding: 20px;
    width: 100%;
}

ul.categories li .btn i {
    display: block;
    color: #00b5cc;
    margin-bottom: 5px;
    font-size: 20px;
}


ul.categories li .btn:hover {
    border-color: #ccc;
    box-shadow: 0px 0px 15px rgba(0,0,0,0.1);
}

.posts {
    padding: 0;
}

.posts li {
    border: 1px #dfdfdf solid;
    border-radius: 12px;
    list-style: none;
    overflow: hidden;
    display: inline-block;
    cursor: pointer;
    margin-bottom: 20px;
    width: 100%;
}

.posts li:hover {
    border-color: #ccc;
    box-shadow: 0px 0px 15px rgba(0,0,0,0.2);
}

.posts li .image img {
    width: 100%;
    object-fit: cover;
    height: 190px;
    width: 100%;
}

.posts li .amount {
    font-size: 16px;
    font-weight: 500;
}

.posts li .title {
    height: 50px;
    overflow: hidden;
    text-overflow: ellipsis;
    word-wrap: break-word;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.date {
    opacity: 0.6;
    font-size: 14px;
}

/* Modern Footer */
.modern-footer {
    background: #2c3e50;
    color: #ecf0f1;
    padding: 40px 0 0;
    margin-top: 60px;
}

.footer-content {
    width: 100%;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 24px;
    font-weight: 400;
    color: #fff;
}

.footer-logo i {
    font-size: 28px;
    color: #667eea;
}

.footer-logo strong {
    font-weight: 700;
}

.footer-description {
    color: #bdc3c7;
    line-height: 1.6;
    margin: 0;
    font-size: 14px;
}

.footer-link {
    color: #bdc3c7 !important;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
}

.footer-link i {
    font-size: 10px;
    color: #667eea;
}

.footer-link:hover {
    color: #667eea !important;
    transform: translateX(4px);
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    color: #bdc3c7;
    font-size: 14px;
}

.contact-item i {
    color: #667eea;
    font-size: 16px;
    width: 20px;
}

.copyright {
    color: #95a5a6;
    font-size: 14px;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #ecf0f1;
    font-size: 18px;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: #667eea;
    color: #fff;
    transform: translateY(-3px);
}

.btn-menu-toggle {
    display: none;
    margin-left: -10px;
    box-shadow: none !important;
    cursor: pointer;
}

.post-slide {
    background-color: #f6f6f6;
    position: relative;
    border-radius: 8px;
    overflow: hidden;
}

.post-slide img {
    width: 100%;
}

.card {
    border-color: #dfdfdf;
    border-radius: 8px;
}

.divisor-bottom {
    border-bottom: 1px #dfdfdf solid;
}

.post-section #informations {
    position: sticky;
    top: 20px;
    overflow: hidden;
}

.post-slide {
    height: 400px;
    text-align: center;
}

.swiper-slide img {
    width: auto !important;
    height: 400px;
}

.swiper-legend {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 14px;
    z-index: 10;
}

.swiper-button-prev,
.swiper-button-next {
    visibility: hidden;
}

.swiper:hover > .swiper-button-prev,
.swiper:hover > .swiper-button-next{
    visibility: visible;
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
    opacity: 0.7;
}

#phone-informations i {
    font-size: 25px;
    margin-left: 5px;
    cursor: pointer;
}

#phone-informations i:hover {
    opacity: 0.7;
}

#phone-informations i#whatsapp {
    color: #20a34e
}

#phone-informations #phone {
}

#share-post a {
    padding: 8px 12px;
    margin-right: 5px;
    margin-bottom: 10px;
}

.post-section #left-column .image {
    position: relative;
}

#post-price {
    background-color: #00b5cc;
    color: #fff;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}

#post-author-name {
    color: #00b5cc;
}

#form-message {
    text-align: center;
    background-color: #c41e1e;
    padding: 10px;
    border-radius: 8px;
    margin-top: 20px;
    color: #fff;
    display: none;
}

#form-message.success {
    background-color: #1e7e34;
}

#header-actions .dropdown i {
    background-color: #ececec;
    padding: 12px 10px;
    border-radius: 25px;
    width: 40px;
    height: 40px;
    text-align: center;
}

.dropdown-item {
    font-size: 14px;
    padding: 10px 15px;
}

.dropdown-menu {
    padding: 0;
    border-radius: 8px;
    box-shadow: 0px 0px 10px rgba(0,0,0,0.06);
    overflow: hidden;
}

#header-actions a:hover {
    text-decoration: none
}

.upload-area {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 150px;
    border: 2px dashed #cccccc;
    border-radius: 8px;
    cursor: pointer;
    text-align: center;
    position: relative;
    flex-direction: column;
}

.upload-area.dragover, .upload-area:hover {
    background-color: #f0f0f0;
    border-color: #9c9c9c;
}

.upload-area:active {
    background-color: #e6e6e6;
    border-color: #9c9c9c;
}

.upload-area span {
    font-size: 16px;
    color: #777777;
}

.upload-area .icon {
    display: block;
    font-size: 25px;
    margin-bottom: 10px;
}

#image-preview img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    margin-right: 10px;
    margin-bottom: 10px;
    position: relative;
    border: 1px #ccc solid;
    border-radius: 4px;
}

.image-container {
    position: relative;
    display: inline-block;
}

.remove-image {
    position: absolute;
    top: 1px;
    left: 1px;
    background: rgb(255 255 255 / 90%);
    border: none;
    cursor: pointer;
    width: 24px;
    height: 20px;
    text-align: center;
    font-size: 20px;
    line-height: 0;
    padding-top: 9px;
    padding-bottom: 5px;
    border-radius: 3px 0px 0px 0px;
    color: #242424;
}

.remove-image:hover {
    background-color: #dddddd;
}

.page-create-post nav .nav-link {
    display: none !important;
}

.error-label {
    color: #c80f0f;
    font-weight: 400;
    font-size: 13px;
}

.error-input {
    border-color: #c80f0f;
}

a.btn-primary {
    color: #fff;
}

a.btn-primary:hover {
    color: #fff;
}

.badge {
    border-radius: 25px;
    font-weight: 500;
    font-size: 12px;
    padding: 4px 8px;
}

#informations-mobile {
    display: none;
}

#link-register {
    background-color: #f9e4e4;
    padding: 10px;
    border-radius: 8px;
    color: #971515;
    font-weight: 400;
}

#link-register p {
    margin-bottom: 5px;
    font-weight: 500;
}

.modal-close-btn {
    padding: 6px 20px;
}

.modal-message .modal-body i {
    font-size: 60px;
    display: block;
    color: #f39400;
    margin-bottom: 20px;
}
.modal-message.success .modal-body i {
    color: #099f2b;
}

.car-img {
    width: 100%;
    max-width: 400px;
}

/* Modern Hero Section */
#hero-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    min-height: 500px;
    position: relative;
    overflow: hidden;
}

#hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
    opacity: 0.3;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
}

.hero-badge i {
    font-size: 16px;
}

.hero-title {
    font-size: clamp(28px, 5vw, 48px);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #fff;
}

.hero-subtitle {
    font-size: clamp(16px, 3vw, 18px);
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0;
}

.hero-image {
    width: 100%;
    max-width: 550px;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.2));
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

/* Hero CTA Button */
.btn-hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #fff;
    color: #667eea;
    padding: 18px 40px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 10;
    pointer-events: auto;
    cursor: pointer;
}

.btn-hero-cta:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    color: #667eea;
    text-decoration: none;
}

.btn-hero-cta i:first-child {
    font-size: 20px;
}

.btn-hero-cta i:last-child {
    font-size: 18px;
    transition: transform 0.3s ease;
}

.btn-hero-cta:hover i:last-child {
    transform: translateX(4px);
}

/* Modern Search Box */
.search-box {
    position: relative;
}

.search-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    background: #fff;
    border-radius: 60px;
    padding: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.search-icon {
    position: absolute;
    left: 28px;
    color: #667eea;
    font-size: 20px;
    z-index: 1;
}

.search-input-modern {
    flex: 1;
    border: none;
    outline: none;
    padding: 16px 20px 16px 55px;
    font-size: 18px;
    border-radius: 50px;
    color: #2c3e50;
    font-weight: 500;
    text-transform: uppercase;
}

.search-input-modern::placeholder {
    color: #a0aec0;
    font-weight: 400;
}

.btn-search-modern {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    border: none;
    padding: 16px 32px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-search-modern:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.4);
}

.btn-search-modern:active {
    transform: translateY(0);
}

/* Trust Badges */
.trust-badges {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.95);
}

.trust-item i {
    font-size: 18px;
    color: #ffd700;
}

/* Features Section */
#features-section {
    background: #fff;
}

.section-header {
    margin-bottom: 50px;
}

.section-title {
    font-size: clamp(24px, 4vw, 36px);
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: clamp(16px, 2.5vw, 18px);
    color: #718096;
    margin: 0;
}

.feature-card {
    background: #fff;
    border: 2px solid #e2e8f0;
    border-radius: 16px;
    padding: 32px;
    height: 100%;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: #667eea;
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.feature-icon i {
    font-size: 28px;
    color: #fff;
}

.feature-title {
    font-size: 20px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 12px;
}

.feature-description {
    font-size: 15px;
    color: #718096;
    line-height: 1.6;
    margin: 0;
}

/* Service Cards */
.service-card {
    background: #fff;
    border-radius: 20px;
    padding: 40px;
    height: 100%;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.service-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 50px rgba(102, 126, 234, 0.25);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
}

.service-icon i {
    font-size: 36px;
    color: #fff;
}

.service-title {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 16px;
}

.service-description {
    font-size: 15px;
    color: #718096;
    line-height: 1.7;
    margin-bottom: 24px;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 0 0 32px 0;
    flex: 1;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #4a5568;
    font-size: 14px;
    margin-bottom: 12px;
    padding: 0;
    border: none;
}

.service-features li i {
    color: #48bb78;
    font-size: 16px;
    flex-shrink: 0;
}

.btn-service {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    padding: 16px 32px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
    margin-top: auto;
}

.btn-service:hover {
    transform: translateX(4px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.5);
    color: #fff;
    text-decoration: none;
}

.btn-service i {
    transition: transform 0.3s ease;
}

.btn-service:hover i {
    transform: translateX(4px);
}

#servicos-section {
    background: #f7fafc;
}

/* CTA Section */
#cta-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
    overflow: hidden;
}

#cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
    opacity: 0.3;
}

.cta-box {
    text-align: center;
    padding: 60px 20px;
    position: relative;
    z-index: 1;
}

.cta-title {
    font-size: clamp(24px, 4.5vw, 40px);
    font-weight: 700;
    color: #fff;
    margin-bottom: 16px;
}

.cta-text {
    font-size: clamp(16px, 2.5vw, 18px);
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 32px;
}

.btn-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #fff;
    color: #667eea;
    padding: 16px 40px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.btn-cta:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    color: #667eea;
    text-decoration: none;
}

.btn-cta i {
    font-size: 20px;
}

.list-group li {
    list-style: none;
    justify-content: space-between;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #d7d7d7;
}

.list-group li:last-child {
    border-bottom: none;
}

.list-group .btn {
    padding: 6px 15px;
}

.btn-secondary {
    background-color: #1747eb;
    border: 0;
}

.btn-secondary:hover {
    background-color: #103bcd;
}

#result-section h3 {
    color: #3646e8;
}

.btn-pay {
    font-size: 18px;
    font-weight: 500;
}

.card-pay {
    border: 3px #3646e8 solid;
}

#order-bump {
    max-width: 500px;
    margin: 0 auto;
    margin-top: 30px;
    margin-bottom: 20px;
    padding: 0;
}

#order-bump li {
    border: 3px dashed #ccc;
    border-radius: 8px;
    list-style: none;
    font-size: 16px;
}

#order-bump li label {
    padding: 25px;
    margin-bottom: 0;
    cursor: pointer;
    width: 100%;
}

#order-bump li input {
    margin-right: 10px;
}

#order-bump h4 {
    margin-bottom: 20px;
}

#order-bump h5 {
    font-weight: 500;
}

#payment-result .qr-code img {
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 5px;
    background-color: #fff;
}

#payment-result .form-control {
    border-radius: 25px;
}

#payment-result .btn-copy {
    background-color: #6c757d;
    color: #fff;
    border: none;
    padding: 10px 20px;
    text-align: center;
    display: inline-block;
    font-size: 14px;
    margin: 4px 2px;
    cursor: pointer;
    border-radius: 4px;
}

#payment-result .btn-copy:hover {
    background-color: #5a6268;
}

/* Navbar - Remove transitions to prevent icon flicker on click */
.navbar-light .navbar-nav .nav-link {
    transition: none !important;
}

.navbar-light .navbar-nav .nav-link i {
    transition: none !important;
}

/* Unlock Modal Styles */
.unlock-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.unlock-modal.active {
    opacity: 1;
    pointer-events: all;
}

.unlock-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
}

.unlock-modal-content {
    position: relative;
    background: white;
    border-radius: 12px;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.unlock-modal.active .unlock-modal-content {
    transform: scale(1);
}

.unlock-modal-header {
    padding: 24px 24px 16px;
    border-bottom: 1px solid #e5e7eb;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.unlock-modal-header h2 {
    margin: 0;
    font-size: 20px;
    font-weight: 600;
    color: #111827;
}

.unlock-modal-close {
    background: none;
    border: none;
    font-size: 28px;
    line-height: 1;
    color: #6b7280;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    transition: background 0.2s ease, color 0.2s ease;
}

.unlock-modal-close:hover {
    background: #f3f4f6;
    color: #111827;
}

.unlock-modal-body {
    padding: 24px;
}

.locked-field {
    color: #9ca3af;
    font-weight: normal;
    letter-spacing: 2px;
}
