/* ============================================
   UNISIMO - Design System & Global Styles
   Paleta: Dourado (#C9A84C), Cinza Escuro (#2D2D2D)
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&display=swap');

/* ---- CSS Variables / Design Tokens ---- */
:root {
    --gold-50: #FDF8E8;
    --gold-100: #F9ECBE;
    --gold-200: #F0D87A;
    --gold-300: #E6C44B;
    --gold-400: #D4AD3C;
    --gold-500: #C9A84C;
    --gold-600: #B8952F;
    --gold-700: #9A7A20;
    --gold-800: #7B6118;
    --gold-900: #5C4810;

    --dark-50: #F5F5F5;
    --dark-100: #E0E0E0;
    --dark-200: #B0B0B0;
    --dark-300: #808080;
    --dark-400: #555555;
    --dark-500: #3A3A3A;
    --dark-600: #2D2D2D;
    --dark-700: #1F1F1F;
    --dark-800: #141414;
    --dark-900: #0A0A0A;

    --gradient-gold: linear-gradient(135deg, #C9A84C 0%, #E6C44B 50%, #B8952F 100%);
    --gradient-gold-dark: linear-gradient(135deg, #9A7A20 0%, #C9A84C 50%, #7B6118 100%);
    --gradient-dark: linear-gradient(180deg, #1F1F1F 0%, #0A0A0A 100%);
    --gradient-hero: linear-gradient(135deg, rgba(10,10,10,0.95) 0%, rgba(31,31,31,0.9) 40%, rgba(45,45,45,0.85) 100%);

    --shadow-sm: 0 2px 8px rgba(0,0,0,0.12);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.16);
    --shadow-lg: 0 8px 32px rgba(0,0,0,0.24);
    --shadow-xl: 0 16px 48px rgba(0,0,0,0.32);
    --shadow-gold: 0 4px 20px rgba(201,168,76,0.3);
    --shadow-gold-lg: 0 8px 40px rgba(201,168,76,0.4);

    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;

    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);

    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-display: 'Playfair Display', Georgia, serif;
}

/* ---- Reset & Base ---- */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--font-primary);
    font-weight: 400;
    line-height: 1.7;
    color: var(--dark-100);
    background-color: var(--dark-900);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition-fast);
}

/* ---- Typography ---- */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    font-weight: 700;
    line-height: 1.2;
    color: #FFFFFF;
}

.display-heading {
    font-family: var(--font-display);
    font-weight: 700;
}

.text-gold {
    color: var(--gold-500);
}

.text-gradient-gold {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ---- Navbar ---- */
.navbar-unisimo {
    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(201, 168, 76, 0.1);
    padding: 0.75rem 0;
    transition: all var(--transition-normal);
    z-index: 1050;
}

.navbar-unisimo.scrolled {
    background: rgba(10, 10, 10, 0.97);
    box-shadow: 0 4px 30px rgba(0,0,0,0.5);
    border-bottom: 1px solid rgba(201, 168, 76, 0.2);
}

.navbar-unisimo .navbar-brand img {
    height: 42px;
    transition: transform var(--transition-normal);
}

.navbar-unisimo .navbar-brand img:hover {
    transform: scale(1.05);
}

.navbar-unisimo .nav-link {
    color: var(--dark-100);
    font-weight: 500;
    font-size: 0.9rem;
    padding: 0.5rem 1.1rem !important;
    letter-spacing: 0.3px;
    position: relative;
    transition: color var(--transition-fast);
}

.navbar-unisimo .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--gradient-gold);
    transition: width var(--transition-normal);
    border-radius: 2px;
}

.navbar-unisimo .nav-link:hover,
.navbar-unisimo .nav-link.active {
    color: var(--gold-400);
}

.navbar-unisimo .nav-link:hover::after,
.navbar-unisimo .nav-link.active::after {
    width: 60%;
}

.navbar-toggler {
    border: 1px solid rgba(201, 168, 76, 0.3) !important;
    padding: 0.4rem 0.6rem;
}

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

/* ---- Buttons ---- */
.btn-gold {
    background: var(--gradient-gold);
    color: var(--dark-900);
    font-weight: 700;
    font-size: 0.95rem;
    padding: 0.75rem 2rem;
    border: none;
    border-radius: var(--radius-full);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: all var(--transition-normal);
    box-shadow: var(--shadow-gold);
    position: relative;
    overflow: hidden;
}

.btn-gold::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;
}

.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold-lg);
    color: var(--dark-900);
}

.btn-gold:hover::before {
    left: 100%;
}

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

.btn-outline-gold {
    background: transparent;
    color: var(--gold-500);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 0.7rem 2rem;
    border: 2px solid var(--gold-500);
    border-radius: var(--radius-full);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: all var(--transition-normal);
}

.btn-outline-gold:hover {
    background: var(--gradient-gold);
    color: var(--dark-900);
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

/* ---- Hero Section ---- */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--dark-900);
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.35;
    filter: brightness(0.5);
}

.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-hero);
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 120px 0 80px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(201, 168, 76, 0.1);
    border: 1px solid rgba(201, 168, 76, 0.25);
    color: var(--gold-400);
    font-size: 0.8rem;
    font-weight: 600;
    padding: 0.4rem 1rem;
    border-radius: var(--radius-full);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    backdrop-filter: blur(10px);
    margin-bottom: 1.5rem;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4.2rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: var(--dark-200);
    max-width: 540px;
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.hero-cta-group {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    gap: 3rem;
    margin-top: 3.5rem;
    padding-top: 2.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-stat-number {
    font-size: 2rem;
    font-weight: 800;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-stat-label {
    font-size: 0.85rem;
    color: var(--dark-300);
    margin-top: 2px;
}

.hero-image-col {
    position: relative;
    z-index: 2;
}

.hero-image-wrapper {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.hero-image-wrapper img {
    width: 100%;
    border-radius: var(--radius-xl);
    transition: transform var(--transition-slow);
}

.hero-image-wrapper:hover img {
    transform: scale(1.03);
}

.hero-image-glow {
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: rgba(201, 168, 76, 0.15);
    filter: blur(80px);
    z-index: -1;
}

.hero-image-glow-1 {
    top: -50px;
    right: -50px;
}

.hero-image-glow-2 {
    bottom: -50px;
    left: -50px;
}

/* ---- Floating Particles ---- */
.particles {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 1;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: var(--gold-500);
    border-radius: 50%;
    opacity: 0;
    animation: particleFloat 8s infinite;
}

@keyframes particleFloat {
    0% { opacity: 0; transform: translateY(100vh) scale(0); }
    10% { opacity: 0.6; }
    90% { opacity: 0.6; }
    100% { opacity: 0; transform: translateY(-100px) scale(1); }
}

/* ---- Section Commons ---- */
.section-padding {
    padding: 100px 0;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--gold-500);
    font-weight: 600;
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.section-label i {
    font-size: 0.65rem;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--dark-300);
    max-width: 600px;
}

.section-subtitle.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.bg-dark-gradient {
    background: var(--gradient-dark);
}

.bg-dark-alt {
    background: var(--dark-800);
}

/* ---- Feature Cards ---- */
.feature-card {
    background: rgba(31, 31, 31, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-lg);
    padding: 2.5rem 2rem;
    transition: all var(--transition-normal);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition-normal);
}

.feature-card:hover {
    background: rgba(45, 45, 45, 0.6);
    border-color: rgba(201, 168, 76, 0.15);
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

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

.feature-icon {
    width: 60px;
    height: 60px;
    background: rgba(201, 168, 76, 0.1);
    border: 1px solid rgba(201, 168, 76, 0.2);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
    color: var(--gold-500);
    transition: all var(--transition-normal);
}

.feature-card:hover .feature-icon {
    background: var(--gradient-gold);
    color: var(--dark-900);
    border-color: transparent;
    box-shadow: var(--shadow-gold);
}

.feature-card h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.feature-card p {
    font-size: 0.95rem;
    color: var(--dark-300);
    line-height: 1.7;
}

/* ---- Product Showcase ---- */
.product-showcase-img {
    border-radius: var(--radius-xl);
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow-xl);
}

.product-showcase-img img {
    width: 100%;
    transition: transform var(--transition-slow);
}

.product-showcase-img:hover img {
    transform: scale(1.05);
}

.product-highlight {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.product-highlight-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    background: rgba(201, 168, 76, 0.1);
    border: 1px solid rgba(201, 168, 76, 0.15);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-500);
    font-size: 1.1rem;
}

.product-highlight h5 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.product-highlight p {
    font-size: 0.9rem;
    color: var(--dark-300);
    margin: 0;
}

/* ---- Opportunity / Plan Section ---- */
.opportunity-card {
    background: linear-gradient(145deg, rgba(31,31,31,0.8) 0%, rgba(20,20,20,0.9) 100%);
    border: 1px solid rgba(201, 168, 76, 0.1);
    border-radius: var(--radius-lg);
    padding: 2rem;
    text-align: center;
    transition: all var(--transition-normal);
    height: 100%;
}

.opportunity-card:hover {
    border-color: rgba(201, 168, 76, 0.3);
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(201, 168, 76, 0.1);
}

.opportunity-card.featured {
    border-color: rgba(201, 168, 76, 0.4);
    background: linear-gradient(145deg, rgba(201,168,76,0.08) 0%, rgba(20,20,20,0.95) 100%);
}

.opportunity-number {
    font-size: 2.5rem;
    font-weight: 800;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.opportunity-card h4 {
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
}

.opportunity-card p {
    font-size: 0.9rem;
    color: var(--dark-300);
}

/* ---- Graduation Grid ---- */
.grad-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.25rem;
    max-width: 1000px;
    margin: 0 auto;
}

.grad-card {
    position: relative;
    background: rgba(31, 31, 31, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-lg);
    padding: 2rem 1rem 1.5rem;
    text-align: center;
    transition: all var(--transition-normal);
    overflow: hidden;
}

.grad-card:hover {
    border-color: rgba(201, 168, 76, 0.25);
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.grad-glow {
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    filter: blur(40px);
    opacity: 0.35;
    transition: opacity var(--transition-normal);
    pointer-events: none;
}

.grad-card:hover .grad-glow {
    opacity: 0.7;
}

.bronze-glow { background: #CD7F32; }
.prata-glow { background: #C0C0C0; }
.ouro-glow { background: #FFD700; }
.esmeralda-glow { background: #50C878; }
.diamante-glow { background: #5BC0DE; }
.triplo-glow { background: #E0B0FF; }
.imperial-glow { background: #FF6B6B; }
.royal-glow { background: #FFD700; filter: blur(40px); }

.grad-badge {
    width: 64px;
    height: 64px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.95rem;
    margin: 0 auto 1rem;
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.grad-card:hover .grad-badge {
    transform: scale(1.1);
}

.grad-badge.bronze {
    background: linear-gradient(135deg, #CD7F32, #A0522D);
    color: white;
    box-shadow: 0 4px 15px rgba(205, 127, 50, 0.3);
}

.grad-badge.prata {
    background: linear-gradient(135deg, #D4D4D4, #9E9E9E);
    color: var(--dark-800);
    box-shadow: 0 4px 15px rgba(192, 192, 192, 0.3);
}

.grad-badge.ouro {
    background: linear-gradient(135deg, #FFD700, #DAA520);
    color: var(--dark-800);
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.grad-badge.esmeralda {
    background: linear-gradient(135deg, #50C878, #2E8B57);
    color: white;
    box-shadow: 0 4px 15px rgba(80, 200, 120, 0.3);
}

.grad-badge.diamante {
    background: linear-gradient(135deg, #B9F2FF, #5BC0DE);
    color: var(--dark-800);
    box-shadow: 0 4px 15px rgba(91, 192, 222, 0.3);
}

.grad-badge.diamante-elite {
    background: linear-gradient(135deg, #A0D2F7, #4A90D9);
    color: white;
    box-shadow: 0 4px 15px rgba(74, 144, 217, 0.3);
}

.grad-badge.diamante-duplo {
    background: linear-gradient(135deg, #82B1FF, #304FFE);
    color: white;
    box-shadow: 0 4px 15px rgba(48, 79, 254, 0.3);
}

.grad-badge.triplo-diamante {
    background: linear-gradient(135deg, #E0B0FF, #9C27B0);
    color: white;
    box-shadow: 0 4px 15px rgba(156, 39, 176, 0.3);
}

.grad-badge.imperial {
    background: linear-gradient(135deg, #FF8A80, #D32F2F);
    color: white;
    box-shadow: 0 4px 15px rgba(211, 47, 47, 0.3);
}

.grad-badge.royal {
    background: linear-gradient(135deg, #FFD700, #C9A84C, #FFD700);
    color: var(--dark-800);
    box-shadow: 0 4px 20px rgba(201, 168, 76, 0.5);
    background-size: 200% 200%;
    animation: royalShimmer 3s ease-in-out infinite;
}

@keyframes royalShimmer {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.grad-name {
    font-size: 0.85rem;
    font-weight: 700;
    color: #FFF;
    margin: 0;
    line-height: 1.3;
}

.grad-prize {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    margin-top: 0.6rem;
    font-size: 0.95rem;
    color: var(--gold-500);
}

/* Responsive grad grid */
@media (max-width: 991px) {
    .grad-grid {
        grid-template-columns: repeat(5, 1fr);
        gap: 1rem;
    }
}

@media (max-width: 767px) {
    .grad-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.75rem;
    }

    .grad-card {
        padding: 1.5rem 0.75rem 1.25rem;
    }

    .grad-badge {
        width: 52px;
        height: 52px;
        font-size: 0.8rem;
    }

    .grad-name {
        font-size: 0.75rem;
    }
}

@media (max-width: 480px) {
    .grad-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}


/* ---- Rewards / Travel Section ---- */
.reward-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--transition-normal);
    cursor: pointer;
}

.reward-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.reward-card:hover img {
    transform: scale(1.1);
}

.reward-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10,10,10,0.95) 0%, rgba(10,10,10,0.3) 50%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.5rem;
}

.reward-card h5 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.reward-card p {
    font-size: 0.85rem;
    color: var(--gold-400);
    margin: 0;
}

/* ---- Testimonial / CTA Section ---- */
.cta-section {
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(201,168,76,0.05) 0%, rgba(10,10,10,0.98) 100%);
    z-index: 0;
}

.cta-glow {
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(201, 168, 76, 0.08);
    filter: blur(120px);
    z-index: 0;
}

.cta-content {
    position: relative;
    z-index: 2;
}

/* ---- Timeline ---- */
.timeline {
    position: relative;
    padding: 2rem 0;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background: linear-gradient(to bottom, transparent, var(--gold-500), transparent);
}

.timeline-item {
    display: flex;
    justify-content: flex-end;
    width: 50%;
    padding: 0 2rem 2rem;
    position: relative;
}

.timeline-item:nth-child(even) {
    justify-content: flex-start;
    margin-left: 50%;
}

.timeline-item::after {
    content: '';
    position: absolute;
    top: 0;
    right: -8px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--gradient-gold);
    box-shadow: var(--shadow-gold);
}

.timeline-item:nth-child(even)::after {
    right: auto;
    left: -8px;
}

.timeline-content {
    background: rgba(31, 31, 31, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    max-width: 400px;
    transition: all var(--transition-normal);
}

.timeline-content:hover {
    border-color: rgba(201, 168, 76, 0.2);
}

.timeline-step {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--gold-500);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.timeline-content h5 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.timeline-content p {
    font-size: 0.88rem;
    color: var(--dark-300);
    margin: 0;
}

/* ---- FAQ Accordion ---- */
.accordion-unisimo .accordion-item {
    background: rgba(31, 31, 31, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-md) !important;
    margin-bottom: 0.75rem;
    overflow: hidden;
}

.accordion-unisimo .accordion-button {
    background: transparent;
    color: #FFF;
    font-weight: 600;
    font-size: 1rem;
    padding: 1.25rem 1.5rem;
    box-shadow: none !important;
}

.accordion-unisimo .accordion-button:not(.collapsed) {
    color: var(--gold-400);
    background: rgba(201, 168, 76, 0.05);
}

.accordion-unisimo .accordion-button::after {
    filter: brightness(0) invert(0.8);
}

.accordion-unisimo .accordion-button:not(.collapsed)::after {
    filter: brightness(0) invert(0.8) sepia(1) hue-rotate(10deg) saturate(3);
}

.accordion-unisimo .accordion-body {
    color: var(--dark-300);
    font-size: 0.95rem;
    padding: 0 1.5rem 1.25rem;
    line-height: 1.8;
}

/* ---- Footer ---- */
.footer {
    background: var(--dark-900);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 60px 0 0;
}

.footer-logo img {
    height: 40px;
    margin-bottom: 1rem;
}

.footer p {
    color: var(--dark-400);
    font-size: 0.9rem;
}

.footer-heading {
    color: #FFF;
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 1.25rem;
    position: relative;
    padding-bottom: 0.75rem;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--gradient-gold);
    border-radius: 2px;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: var(--dark-400);
    font-size: 0.9rem;
    transition: all var(--transition-fast);
}

.footer-links a:hover {
    color: var(--gold-400);
    padding-left: 6px;
}

.footer-social {
    display: flex;
    gap: 0.75rem;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark-200);
    font-size: 1rem;
    transition: all var(--transition-normal);
}

.footer-social a:hover {
    background: var(--gradient-gold);
    color: var(--dark-900);
    border-color: transparent;
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 1.5rem 0;
    margin-top: 3rem;
}

.footer-bottom p {
    font-size: 0.82rem;
    color: var(--dark-500);
    margin: 0;
}

/* ---- Animations ---- */
.fade-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.fade-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.scale-in {
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.scale-in.visible {
    opacity: 1;
    transform: scale(1);
}

/* ---- Counter Animation ---- */
.counter-value {
    font-size: 2.8rem;
    font-weight: 800;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.counter-label {
    font-size: 0.9rem;
    color: var(--dark-300);
}

/* ---- Glassmorphism Card ---- */
.glass-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 2rem;
}

/* ---- WhatsApp Float Button ---- */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #25D366;
    color: white;
    font-size: 1.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 9999;
    transition: all var(--transition-normal);
    animation: whatsappPulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    color: white;
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
}

@keyframes whatsappPulse {
    0%, 100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); }
    50% { box-shadow: 0 4px 30px rgba(37, 211, 102, 0.6); }
}

/* ---- Responsive ---- */
@media (max-width: 991px) {
    .hero-content {
        padding: 100px 0 40px;
        text-align: center;
    }

    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-cta-group {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-image-col {
        margin-top: 3rem;
    }

    .timeline::before {
        left: 20px;
    }

    .timeline-item {
        width: 100%;
        padding-left: 3.5rem;
        padding-right: 0;
    }

    .timeline-item:nth-child(even) {
        margin-left: 0;
        padding-left: 3.5rem;
    }

    .timeline-item::after {
        left: 12px;
        right: auto;
    }

    .timeline-item:nth-child(even)::after {
        left: 12px;
    }
}

@media (max-width: 767px) {
    .section-padding {
        padding: 70px 0;
    }

    .hero-stats {
        gap: 1.5rem;
        flex-wrap: wrap;
    }

    .hero-stat-number {
        font-size: 1.5rem;
    }

    .counter-value {
        font-size: 2rem;
    }
}

/* ---- Marquee / Brand Strip ---- */
.brand-strip {
    overflow: hidden;
    padding: 1.5rem 0;
    background: rgba(201, 168, 76, 0.03);
    border-top: 1px solid rgba(201, 168, 76, 0.08);
    border-bottom: 1px solid rgba(201, 168, 76, 0.08);
}

.brand-strip-text {
    display: flex;
    gap: 3rem;
    animation: marquee 30s linear infinite;
    white-space: nowrap;
}

.brand-strip-text span {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gold-600);
    letter-spacing: 3px;
    text-transform: uppercase;
    opacity: 0.6;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ---- Scroll to top ---- */
.scroll-top {
    position: fixed;
    bottom: 96px;
    right: 28px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(201, 168, 76, 0.15);
    border: 1px solid rgba(201, 168, 76, 0.3);
    color: var(--gold-500);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    z-index: 9998;
    opacity: 0;
    transform: translateY(20px);
    transition: all var(--transition-normal);
    cursor: pointer;
    backdrop-filter: blur(10px);
}

.scroll-top.visible {
    opacity: 1;
    transform: translateY(0);
}

.scroll-top:hover {
    background: var(--gradient-gold);
    color: var(--dark-900);
    border-color: transparent;
}

/* ---- Preloader ---- */
.preloader {
    position: fixed;
    inset: 0;
    background: var(--dark-900);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 1.5rem;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.preloader img {
    height: 60px;
    animation: preloaderPulse 1.5s ease-in-out infinite;
}

@keyframes preloaderPulse {
    0%, 100% { opacity: 0.4; transform: scale(0.95); }
    50% { opacity: 1; transform: scale(1); }
}

.preloader-bar {
    width: 120px;
    height: 3px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    overflow: hidden;
}

.preloader-bar-inner {
    width: 40%;
    height: 100%;
    background: var(--gradient-gold);
    border-radius: 3px;
    animation: preloaderSlide 1.2s ease-in-out infinite;
}

@keyframes preloaderSlide {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(350%); }
}
