/* ========== VARIÁVEIS E RESET ========== */
:root {
    --gold: #D4AF37;
    --gold-light: #F4E4C1;
    --gold-dark: #B8941E;
    --black: #0A0A0A;
    --dark-gray: #1A1A1A;
    --white: #FFFFFF;
    --cream: #FAF8F3;
    --shadow: rgba(0, 0, 0, 0.3);
    --shadow-light: rgba(0, 0, 0, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background: var(--black);
    color: var(--white);
    overflow-x: hidden;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ========== HERO SECTION LUXUOSO ========== */
.hero-luxury {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0A0A0A 0%, #1A1A1A 50%, #0A0A0A 100%);
    overflow: hidden;
}

.hero-overlay-luxury {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(212, 175, 55, 0.08) 0%, transparent 50%);
    animation: pulseGlow 8s ease-in-out infinite;
}

@keyframes pulseGlow {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

.hero-content-luxury {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 40px 20px;
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.logo-container-luxury {
    margin-bottom: 30px;
    animation: scaleIn 1.2s ease-out;
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.logo-luxury {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    border: 4px solid var(--gold);
    box-shadow: 0 0 40px rgba(212, 175, 55, 0.4), 0 0 80px rgba(212, 175, 55, 0.2);
    object-fit: cover;
    transition: all 0.4s ease;
}

.logo-luxury:hover {
    transform: scale(1.05) rotate(5deg);
    box-shadow: 0 0 60px rgba(212, 175, 55, 0.6), 0 0 120px rgba(212, 175, 55, 0.3);
}

.hero-title-luxury {
    font-family: 'Playfair Display', serif;
    font-size: 4.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 50%, var(--gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
    letter-spacing: 2px;
    text-shadow: 0 0 30px rgba(212, 175, 55, 0.3);
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% { filter: brightness(1); }
    50% { filter: brightness(1.2); }
}

.hero-subtitle-luxury {
    font-size: 1.4rem;
    color: var(--gold-light);
    margin-bottom: 40px;
    font-weight: 300;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.hero-badges {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.badge-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(212, 175, 55, 0.1);
    padding: 12px 24px;
    border-radius: 50px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.badge-item:hover {
    background: rgba(212, 175, 55, 0.2);
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.3);
}

.badge-item i {
    color: var(--gold);
    font-size: 1.2rem;
}

.badge-item span {
    font-size: 0.9rem;
    color: var(--white);
}

.cta-button-luxury {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: var(--black);
    padding: 18px 45px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.cta-button-luxury::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.cta-button-luxury:hover::before {
    left: 100%;
}

.cta-button-luxury:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.6);
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-indicator i {
    color: var(--gold);
    font-size: 2rem;
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(10px); }
}

/* ========== UNIDADES SECTION ========== */
.units-section {
    padding: 100px 0;
    background: var(--dark-gray);
}

.section-title-luxury {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    text-align: center;
    margin-bottom: 60px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.units-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.unit-card {
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.9) 0%, rgba(10, 10, 10, 0.9) 100%);
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.unit-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.unit-card:hover::before {
    opacity: 1;
}

.unit-card:hover {
    transform: translateY(-10px);
    border-color: var(--gold);
    box-shadow: 0 20px 50px rgba(212, 175, 55, 0.3);
}

.unit-flag {
    font-size: 4rem;
    margin-bottom: 20px;
}

.unit-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 10px;
}

.unit-location {
    color: var(--gold-light);
    font-size: 1.1rem;
    margin-bottom: 15px;
}

.unit-description {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 30px;
}

.unit-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--white);
    font-size: 0.95rem;
}

.feature-item i {
    color: var(--gold);
}

/* ========== SERVICES SECTION ========== */
.services-section-luxury {
    padding: 100px 0;
    background: var(--black);
}

.section-header-luxury {
    text-align: center;
    margin-bottom: 60px;
}

.section-tag {
    display: inline-block;
    color: var(--gold);
    font-size: 0.9rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 15px;
    font-weight: 600;
}

.section-description {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.services-grid-luxury {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

.service-card-luxury {
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.95) 0%, rgba(10, 10, 10, 0.95) 100%);
    border: 2px solid rgba(212, 175, 55, 0.2);
    border-radius: 20px;
    padding: 35px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.service-card-luxury::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.service-card-luxury:hover::after {
    opacity: 1;
}

.service-card-luxury:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: var(--gold);
    box-shadow: 0 25px 60px rgba(212, 175, 55, 0.4);
}

.service-icon-luxury {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    font-size: 2rem;
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.3);
}

.service-card-luxury h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: var(--gold);
    margin-bottom: 15px;
}

.service-card-luxury p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 25px;
    line-height: 1.7;
}

.service-details-luxury {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    padding: 15px 0;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.service-duration-luxury {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--gold-light);
    font-size: 0.95rem;
}

.service-price-luxury {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--gold);
    font-family: 'Playfair Display', serif;
}

.btn-book-luxury {
    width: 100%;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: var(--black);
    border: none;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
    position: relative;
    z-index: 1;
}

.btn-book-luxury:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.5);
}

/* ========== AWARDS SECTION ========== */
.awards-section {
    padding: 100px 0;
    background: var(--dark-gray);
}

.awards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.award-item {
    text-align: center;
    padding: 30px;
    background: rgba(212, 175, 55, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: all 0.3s ease;
}

.award-item:hover {
    transform: translateY(-5px);
    background: rgba(212, 175, 55, 0.1);
    border-color: var(--gold);
}

.award-item i {
    font-size: 3rem;
    color: var(--gold);
    margin-bottom: 15px;
}

.award-item h4 {
    color: var(--white);
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.award-item p {
    color: var(--gold-light);
    font-size: 0.9rem;
}

/* ========== CTA SECTION ========== */
.cta-section-luxury {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--black) 0%, var(--dark-gray) 100%);
    text-align: center;
}

.cta-content-luxury h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 20px;
}

.cta-content-luxury p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 30px;
}

.urgency-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 59, 48, 0.2);
    border: 2px solid rgba(255, 59, 48, 0.5);
    padding: 12px 30px;
    border-radius: 50px;
    color: #FF3B30;
    font-weight: 700;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.urgency-badge i {
    font-size: 1.2rem;
}

/* ========== MODAL LUXUOSO ========== */
.modal-luxury {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.modal-content-luxury {
    position: relative;
    background: linear-gradient(135deg, var(--dark-gray) 0%, var(--black) 100%);
    margin: 5% auto;
    padding: 0;
    border: 2px solid var(--gold);
    border-radius: 25px;
    width: 90%;
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 30px 80px rgba(212, 175, 55, 0.4);
    animation: slideDown 0.4s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-header-luxury {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2) 0%, transparent 100%);
    padding: 30px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.3);
}

.modal-header-luxury h2 {
    font-family: 'Playfair Display', serif;
    color: var(--gold);
    font-size: 2rem;
    margin-bottom: 10px;
}

.modal-subtitle {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

.close-luxury {
    position: absolute;
    top: 20px;
    right: 25px;
    color: var(--gold);
    font-size: 35px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.close-luxury:hover {
    color: var(--gold-light);
    transform: rotate(90deg);
}

.booking-form-luxury {
    padding: 30px;
}

.form-group-luxury {
    margin-bottom: 25px;
}

.form-group-luxury label {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--gold-light);
    font-weight: 600;
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.form-group-luxury label i {
    color: var(--gold);
}

.form-group-luxury input,
.form-group-luxury select,
.form-group-luxury textarea {
    width: 100%;
    padding: 14px 18px;
    background: rgba(26, 26, 26, 0.8);
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 12px;
    color: var(--white);
    font-size: 1rem;
    font-family: 'Montserrat', sans-serif;
    transition: all 0.3s ease;
}

.form-group-luxury input:focus,
.form-group-luxury select:focus,
.form-group-luxury textarea:focus {
    outline: none;
    border-color: var(--gold);
    background: rgba(26, 26, 26, 1);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.2);
}

.form-row-luxury {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.price-display-luxury {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(212, 175, 55, 0.05) 100%);
    border: 2px solid var(--gold);
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    margin: 30px 0;
}

.price-label {
    display: block;
    color: var(--gold-light);
    font-size: 0.9rem;
    margin-bottom: 8px;
}

.price-value-luxury {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gold);
}

.error-message {
    display: none;
    color: #FF3B30;
    font-size: 0.85rem;
    margin-top: 5px;
}

.btn-submit-luxury {
    width: 100%;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: var(--black);
    border: none;
    padding: 18px 30px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 30px;
}

.btn-submit-luxury:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.6);
}

/* ========== NOTIFICATION ========== */
.notification-luxury {
    position: fixed;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: var(--black);
    padding: 20px 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.5);
    font-weight: 600;
    z-index: 2000;
    opacity: 0;
    transform: translateX(400px);
    transition: all 0.4s ease;
}

.notification-luxury.show {
    opacity: 1;
    transform: translateX(0);
}

.notification-luxury.success {
    background: linear-gradient(135deg, #34C759 0%, #30A14E 100%);
    color: white;
}

.notification-luxury.error {
    background: linear-gradient(135deg, #FF3B30 0%, #D70015 100%);
    color: white;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 768px) {
    /* Hero Section - Reduzir altura drasticamente */
    .hero-luxury {
        min-height: 60vh;
        padding: 15px 0;
    }
    
    .hero-content-luxury {
        padding: 15px 10px;
    }
    
    .hero-title-luxury {
        font-size: 2rem;
        margin-bottom: 10px;
    }
    
    .hero-subtitle-luxury {
        font-size: 0.9rem;
        margin-bottom: 20px;
    }
    
    .logo-luxury {
        width: 100px;
        height: 100px;
        margin-bottom: 15px;
    }
    
    .logo-container-luxury {
        margin-bottom: 20px;
    }
    
    .hero-badges {
        flex-direction: column;
        gap: 10px;
    }
    
    .badge-luxury {
        padding: 8px 15px;
        font-size: 0.75rem;
    }
    
    .cta-button-luxury {
        padding: 12px 30px;
        font-size: 0.9rem;
    }
    
    /* Seções - Reduzir padding drasticamente */
    .units-section,
    .services-section-luxury,
    .awards-section {
        padding: 20px 0;
    }
    
    .section-title-luxury {
        font-size: 1.5rem;
        margin-bottom: 15px;
    }
    
    .section-header-luxury {
        margin-bottom: 15px;
    }
    
    .section-tag {
        font-size: 0.75rem;
        letter-spacing: 2px;
        margin-bottom: 10px;
    }
    
    .section-description {
        font-size: 0.95rem;
    }
    
    /* Cards - Grid 2x1 para unidades */
    .units-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .unit-card {
        padding: 15px;
    }
    
    .unit-flag {
        font-size: 2rem;
        margin-bottom: 10px;
    }
    
    .unit-card h3 {
        font-size: 1.2rem;
    }
    
    .unit-card p {
        font-size: 0.75rem;
    }
    
    .feature-item {
        font-size: 0.7rem;
    }
    
    /* Services Grid - 2 COLUNAS para ver mais cards */
    .services-grid-luxury {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .service-card-luxury {
        padding: 12px;
    }
    
    .service-icon-luxury {
        width: 35px;
        height: 35px;
        font-size: 1.2rem;
        margin-bottom: 8px;
    }
    
    .service-card-luxury h3 {
        font-size: 0.95rem;
        margin-bottom: 6px;
        line-height: 1.2;
    }
    
    .service-card-luxury p {
        font-size: 0.7rem;
        margin-bottom: 8px;
        line-height: 1.3;
        /* Limitar altura da descrição - 2 linhas apenas */
        max-height: 2.6em;
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
    }
    
    .service-details-luxury {
        margin-bottom: 8px;
        padding: 6px 0;
        flex-direction: column;
        gap: 4px;
    }
    
    .service-duration-luxury {
        font-size: 0.7rem;
    }
    
    .service-price-luxury {
        font-size: 1rem;
    }
    
    .btn-book-luxury {
        padding: 8px 12px;
        font-size: 0.75rem;
        width: 100%;
    }
    
    /* Modal - Otimizar para mobile */
    .modal-content-luxury {
        width: 95%;
        margin: 5% auto;
        max-height: 85vh;
        padding: 0;
    }
    
    .modal-header-luxury {
        padding: 20px;
    }
    
    .modal-header-luxury h2 {
        font-size: 1.5rem;
    }
    
    .modal-subtitle {
        font-size: 0.85rem;
    }
    
    .booking-form-luxury {
        padding: 20px;
    }
    
    .form-group-luxury {
        margin-bottom: 15px;
    }
    
    .form-group-luxury label {
        font-size: 0.9rem;
        margin-bottom: 6px;
    }
    
    .form-group-luxury input,
    .form-group-luxury select,
    .form-group-luxury textarea {
        padding: 10px;
        font-size: 0.9rem;
    }
    
    .form-row-luxury {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .price-display-luxury {
        padding: 15px;
    }
    
    .price-value-luxury {
        font-size: 1.8rem;
    }
    
    .submit-btn-luxury {
        padding: 12px;
        font-size: 0.95rem;
    }
    
    /* Awards Section - Compactar */
    .awards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }
    
    .award-card {
        padding: 10px;
    }
    
    .award-card h4 {
        font-size: 0.75rem;
    }
    
    .award-year {
        font-size: 0.65rem;
    }
    
    /* CTA Final - Reduzir */
    .cta-section-luxury {
        padding: 20px 0;
    }
    
    .cta-content h2 {
        font-size: 1.3rem;
        margin-bottom: 10px;
    }
    
    .urgency-badge {
        padding: 6px 12px;
        font-size: 0.7rem;
    }
}

/* ========== DESCRIÇÕES EXPANSÍVEIS ========== */
.service-description-container {
    margin: 15px 0;
}

.service-description {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 8px;
}

.desc-short, .desc-full {
    transition: opacity 0.3s ease;
}

.btn-read-more {
    background: transparent;
    border: none;
    color: var(--gold);
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 4px 0;
    margin-top: 4px;
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
    position: relative;
    z-index: 10;
    pointer-events: auto;
}

.btn-read-more:hover {
    color: var(--gold-light);
    transform: translateX(3px);
}

.btn-read-more i {
    font-size: 0.75rem;
    transition: transform 0.3s ease;
}

.btn-read-more:hover i {
    transform: translateY(2px);
}

/* Animação suave para o ícone quando expandido */
.btn-read-more i.fa-chevron-up {
    transform: rotate(0deg);
}

.btn-read-more i.fa-chevron-down {
    transform: rotate(0deg);
}

/* ========== SMOOTH SCROLL ========== */
html {
    scroll-behavior: smooth;
}

/* ========== SCROLLBAR CUSTOMIZADO ========== */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: var(--black);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--gold-light);
}

