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

:root {
    --primary-color: #213455; /* Azul Marinho (Navy Blue) */
    --primary-light: #2c4672; /* Azul Profundo */
    --accent-color: #A18023; /* Dourado */
    --accent-hover: #8c6f1d;
    --text-main: #4B5563; /* Cinza texto */
    --text-dark: #1f2937;
    --text-light: #f3f4f6;
    --bg-main: #FFFFFF;
    --bg-light: #F5F7FA;
    --bg-dark: #050E1A; /* Almost black navy for deep sections */
    --bg-card: #ffffff;
    --success: #16A34A;
    --error: #EF4444;
    
    --font-heading: 'Cinzel', serif;
    --font-subheading: 'Mulish', sans-serif;
    --font-main: 'Cinzel', serif;
    --font-alt: 'Mulish', sans-serif;
    
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.05);
    --shadow-md: 0 10px 20px rgba(0,0,0,0.08);
    --shadow-lg: 0 20px 40px rgba(11, 31, 58, 0.15);
    
    --transition: all 0.3s ease;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--font-main);
    color: var(--text-main);
    background-color: var(--bg-main);
    line-height: 1.6;
    font-size: 16px;
}
img { max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* Typography */
h1, h2, h3, h4, h5, h6 {
    line-height: 1.1;
    margin-bottom: 1rem;
    color: var(--primary-color);
}
h1, h2 {
    font-family: var(--font-heading);
    letter-spacing: 1px;
}
h3, h4, h5, h6 {
    font-family: var(--font-subheading);
    font-weight: 700;
}
h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.5rem); }
h3 { font-size: 1.5rem; }
p { margin-bottom: 1rem; }
.lead { font-size: 1.125rem; font-weight: 400; color: var(--text-main); font-family: var(--font-subheading); }
.font-weight-bold { font-weight: 700; }
.text-primary { color: var(--primary-color) !important; }
.text-success { color: var(--success) !important; }
.text-accent { color: var(--accent-color) !important; }

/* Layout & Container */
.container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Mobile First Base */
.py-large { padding-top: 4rem; padding-bottom: 4rem; }
.bg-light { background-color: var(--bg-light); }
.bg-dark { background-color: var(--bg-dark); color: white; }
.bg-dark h2, .bg-dark h3 { color: white; }
.bg-dark .lead, .bg-dark p { color: var(--text-light); }
.bg-primary { background-color: var(--primary-color); color: white; }
.bg-primary h2, .bg-primary h3 { color: white; }
.bg-primary .lead, .bg-primary p { color: var(--text-light); }
.text-center { text-align: center; }
.mt-4 { margin-top: 2rem; }
.mb-4 { margin-bottom: 2rem; }

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.grid-3 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

/* Buttons (Modern Hub Style) */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    border-radius: 4px; /* Mais retangular conforme referência */
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-family: var(--font-main);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.btn-primary { 
    background-color: var(--accent-color); 
    color: var(--primary-color); 
}
.btn-primary:hover {
    background-color: var(--primary-color);
    color: white;
}
.btn-secondary {
    background-color: var(--primary-color);
    color: white;
}
.btn-secondary:hover {
    background-color: var(--primary-light);
}
.btn-outline {
    background-color: transparent;
    border: 2px solid var(--accent-color);
    color: var(--accent-color);
}
.btn-outline:hover { 
    background-color: var(--accent-color); 
    color: var(--primary-color); 
}
.btn-large { padding: 1rem 2.5rem; font-size: 1.15rem; }
.btn-extra-large { padding: 1.25rem 2.5rem; font-size: 1.25rem; }
.btn-block { display: flex; width: 100%; }

.pulse-animation { animation: pulse 2s infinite; }
@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(212, 160, 23, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(212, 160, 23, 0); }
    100% { box-shadow: 0 0 0 0 rgba(212, 160, 23, 0); }
}

/* Navbar */
.navbar {
    padding: 1.5rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    background: transparent;
    transition: all 0.3s ease;
}
.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    padding: 1rem 0;
}
.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo { font-size: 1.5rem; font-weight: 800; color: var(--primary-color); font-family: var(--font-heading); letter-spacing: 1px;}
.logo span { color: var(--accent-color); }

.nav-links, .nav-cta { display: none; }
.mobile-menu-btn {
    display: block;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--primary-color);
    cursor: pointer;
}

.mobile-menu {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    padding: 0 1.5rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    z-index: 99;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}
.mobile-menu.active { 
    max-height: 400px;
    padding: 1.5rem;
}
.mobile-link {
    padding: 1rem 0;
    border-bottom: 1px solid var(--bg-light);
    font-weight: 600;
    color: var(--primary-color);
    text-transform: uppercase;
    font-size: 0.9rem;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 5rem;
    background: var(--bg-main);
    color: var(--text-dark);
    position: relative;
    overflow: hidden;
}
.hero h1 { color: var(--primary-color); }
.hero-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 10;
    text-align: center;
    padding-top: 2rem;
}
.hero-text p { font-size: 1.25rem; font-weight: 300; margin-bottom: 2.5rem; color: var(--text-main); }
.hero-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    width: 100%;
}
.hero-cta .btn { width: 100%; }

.hero-image img {
    border-radius: var(--radius-lg);
}

/* Hub Cursos Grid */
.courses-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

.course-card {
    background: var(--bg-card);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
}

.course-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.course-img {
    width: calc(100% - 2rem);
    margin: 1rem auto 0;
    aspect-ratio: 3 / 4;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-color: transparent;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.course-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.course-category {
    font-size: 0.8rem;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
    font-family: var(--font-subheading);
}

.course-title {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    line-height: 1.1;
}

.course-desc {
    font-size: 0.95rem;
    color: var(--text-main);
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.feature-item {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

/* Testimonials */
.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: var(--radius-md);
    border: 1px solid rgba(255,255,255,0.1);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.testimonial-text {
    font-size: 1.1rem;
    font-style: italic;
    font-family: 'Open Sans', sans-serif;
    font-weight: 300;
    margin-bottom: 1.5rem;
    color: #e2e8f0;
}
.testimonial-author-block {
    display: flex;
    align-items: center;
    gap: 1rem;
}
.testimonial-img {
    width: 60px;
    height: 60px;
    min-width: 60px;
    min-height: 60px;
    flex-shrink: 0;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--accent-color);
}
.testimonial-author {
    font-weight: 700;
    color: var(--accent-color);
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

/* Offer Section */
.offer-box {
    max-width: 600px; margin: 0 auto; background: var(--bg-main); border-radius: var(--radius-lg);
    overflow: hidden; box-shadow: var(--shadow-lg); border: 3px solid var(--accent-color);
}
.offer-header { background: var(--primary-color); color: white; padding: 2rem; text-align: center; }
.offer-header h2 { color: white; margin-bottom: 0.5rem; }
.offer-body { padding: 2rem 1.5rem; }
.main-offer-list li {
    padding: 0.75rem 0; border-bottom: 1px solid var(--bg-light); display: flex; gap: 1rem;
    align-items: center; font-size: 1.1rem; color: var(--text-dark);
}
.main-offer-list li:last-child { border-bottom: none; }
.price-container { text-align: center; margin: 2rem 0; padding: 1.5rem; background: var(--bg-light); border-radius: var(--radius-md); }
.current-price { display: flex; align-items: baseline; justify-content: center; gap: 0.5rem; color: var(--primary-color); margin: 0.5rem 0; }
.current-price .currency { font-size: 1.5rem; font-weight: 600; }
.current-price .value { font-size: 3rem; font-weight: 800; line-height: 1; }
.cash-price { color: var(--text-main); font-size: 1rem; font-weight: 500; }

/* FAQ */
.faq-accordion { max-width: 800px; margin: 0 auto; }
.faq-item {
    border-bottom: 1px solid #eaeaea; margin-bottom: 1rem; background: var(--bg-main);
    border-radius: var(--radius-md); overflow: hidden;
}
.faq-question {
    width: 100%; text-align: left; padding: 1.5rem; background: none; border: none; font-size: 1.15rem;
    font-weight: 600; color: var(--primary-color); cursor: pointer; display: flex; justify-content: space-between;
    align-items: center; font-family: var(--font-main); transition: var(--transition);
}
.faq-question:hover { background: var(--bg-light); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.faq-answer p { padding: 0 1.5rem 1.5rem; color: var(--text-main); margin: 0; }
.faq-item.active .faq-answer { max-height: 500px; }
.faq-item.active .faq-question i { transform: rotate(180deg); }

/* Footer */
.footer { background-color: var(--bg-dark); color: white; padding: 4rem 0 2rem; border-top: 4px solid var(--accent-color); }
.footer-content { display: flex; flex-direction: column; align-items: center; text-align: center; margin-bottom: 3rem; }
.footer-logo { font-size: 1.8rem; font-weight: 800; margin-bottom: 1rem; font-family: var(--font-heading); letter-spacing: 1px; }
.footer-logo span { color: var(--accent-color); }
.footer-text { color: #a0aec0; max-width: 400px; margin-bottom: 2rem; }
.footer-links { display: flex; gap: 2rem; flex-wrap: wrap; justify-content: center; }
.footer-links a { color: white; transition: var(--transition); }
.footer-links a:hover { color: var(--accent-color); }
.footer-socials { display: flex; gap: 1.5rem; justify-content: center; margin-bottom: 2rem; font-size: 1.8rem; }
.footer-socials a { color: white; transition: var(--transition); display: inline-block; }
.footer-socials a:hover { color: var(--accent-color); transform: translateY(-3px); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 2rem; text-align: center; font-size: 0.9rem; color: #a0aec0; }

/* Desktop Enhancements */
@media (min-width: 768px) {
    .py-large { padding-top: 5rem; padding-bottom: 5rem; }
    
    .grid-3 { grid-template-columns: repeat(3, 1fr); }
    .courses-grid { grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); }
    .features-grid { grid-template-columns: repeat(3, 1fr); }
    .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
    .testimonials-grid .testimonial-card:last-child:nth-child(odd) {
        grid-column: span 2;
    }
    
    .hero-cta { flex-direction: row; justify-content: center; width: auto; }
    .hero-cta .btn { width: auto; }
    
    .offer-body { padding: 3rem 2rem; }
    .current-price .value { font-size: 4rem; }
}

@media (min-width: 992px) {
    .nav-links, .nav-cta { display: flex; }
    .nav-links { gap: 2.5rem; align-items: center; }
    .nav-links a { 
        color: var(--primary-color); 
        font-weight: 600; 
        font-size: 0.95rem;
        text-transform: uppercase;
        transition: var(--transition); 
        position: relative; 
    }
    .nav-links a:hover { color: var(--accent-hover); }
    
    .mobile-menu-btn { display: none; }
    
    .hero-content {
        grid-template-columns: 1fr 1fr;
        text-align: left;
        gap: 4rem;
        padding-top: 0;
    }
    
    .hero-cta { justify-content: flex-start; }
}

/* Legal Pages Styles */
.legal-page {
    background-color: var(--bg-light);
}

.legal-page .navbar {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    padding: 1rem 0;
    position: sticky;
    top: 0;
}

.legal-wrapper {
    padding-top: 3rem;
    padding-bottom: 5rem;
}

.legal-container {
    max-width: 800px;
    margin: 0 auto;
    background: var(--bg-card);
    padding: 3rem 2rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    border-top: 4px solid var(--accent-color);
}

.legal-container h1 {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-family: var(--font-heading);
}

.legal-container h2 {
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    font-family: var(--font-subheading);
    font-weight: 700;
}

.legal-container p, 
.legal-container li {
    font-family: var(--font-alt);
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-main);
    margin-bottom: 1.2rem;
}

.legal-container ul {
    list-style: disc;
    margin-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.legal-date {
    font-size: 0.85rem;
    color: var(--text-main);
    opacity: 0.8;
    margin-bottom: 2.5rem;
    border-bottom: 1px solid var(--bg-light);
    padding-bottom: 1rem;
    font-family: var(--font-alt);
}

@media (min-width: 768px) {
    .legal-container {
        padding: 4rem 3.5rem;
    }
    .legal-container h1 {
        font-size: 2.8rem;
    }
}

/* Modal de Captura de Lead */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(5, 14, 26, 0.85); /* deep-navy dark backdrop */
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.modal-box {
    background-color: var(--bg-dark); /* deep navy */
    border: 2px solid var(--accent-color); /* gold border */
    border-radius: var(--radius-lg);
    width: 90%;
    max-width: 500px;
    padding: 2.5rem;
    position: relative;
    box-shadow: var(--shadow-lg);
    transform: translateY(20px);
    transition: transform 0.3s ease;
    color: white;
}

.modal-overlay.active .modal-box {
    transform: translateY(0);
}

.modal-close-btn {
    position: absolute;
    top: 1rem;
    right: 1.25rem;
    background: none;
    border: none;
    color: var(--text-light);
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition);
}

.modal-close-btn:hover {
    color: var(--accent-color);
}

.modal-header {
    text-align: center;
    margin-bottom: 2rem;
}

.modal-header h2 {
    color: white;
    font-family: var(--font-heading);
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.modal-header p {
    color: var(--text-light);
    font-size: 0.95rem;
    font-family: var(--font-alt);
    line-height: 1.5;
}

.modal-form .form-group {
    margin-bottom: 1.25rem;
    text-align: left;
}

.modal-form label {
    display: block;
    font-family: var(--font-alt);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    letter-spacing: 0.5px;
}

.modal-form input {
    width: 100%;
    padding: 0.9rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-sm);
    color: white;
    font-family: var(--font-alt);
    font-size: 1rem;
    transition: var(--transition);
}

.modal-form input:focus {
    outline: none;
    border-color: var(--accent-color);
    background-color: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 3px rgba(212, 160, 23, 0.15);
}

.modal-form input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.submit-spinner {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* ==========================================================================
   Link na Bio - links.html Styles
   ========================================================================== */
.links-body {
    background: radial-gradient(circle at top, #0f233e 0%, #050e1a 100%);
    color: #FFFFFF;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    overflow-x: hidden;
    font-family: var(--font-alt); /* Mulish for readability */
}

.links-wrapper {
    width: 100%;
    max-width: 460px;
    padding: 3.5rem 1.5rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-grow: 1;
}

.profile-card {
    text-align: center;
    margin-bottom: 2.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.profile-img-container {
    position: relative;
    margin-bottom: 1.25rem;
    width: 110px;
    height: 110px;
}

.profile-card .profile-img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--accent-color);
    box-shadow: 0 0 20px rgba(161, 128, 35, 0.35);
    position: relative;
    z-index: 2;
    background-color: var(--primary-color);
}

.profile-img-glow {
    position: absolute;
    top: 5px;
    left: 5px;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: var(--accent-color);
    filter: blur(15px);
    opacity: 0.4;
    z-index: 1;
    animation: pulseGlow 3s infinite ease-in-out;
}

@keyframes pulseGlow {
    0%, 100% { transform: scale(1); opacity: 0.3; }
    50% { transform: scale(1.08); opacity: 0.5; }
}

.profile-name {
    font-family: var(--font-heading); /* Cinzel */
    font-size: 1.6rem;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
}

.profile-bio {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.75);
    max-width: 320px;
    line-height: 1.5;
    font-weight: 400;
}

.links-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-bottom: 2.5rem;
}

/* Premium Link Button with Glassmorphism */
.link-btn-item {
    display: flex;
    align-items: center;
    width: 100%;
    padding: 1rem 1.25rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-md);
    color: #FFFFFF;
    transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    position: relative;
    overflow: hidden;
}

.link-btn-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.08),
        transparent
    );
    transition: 0.5s;
}

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

.link-btn-item:hover {
    transform: translateY(-4px);
    border-color: rgba(161, 128, 35, 0.45);
    background: rgba(255, 255, 255, 0.06);
    box-shadow: 0 8px 24px rgba(161, 128, 35, 0.12), 0 0 15px rgba(255, 255, 255, 0.02);
}

.link-btn-icon-left {
    font-size: 1.35rem;
    color: var(--accent-color);
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(161, 128, 35, 0.1);
    border-radius: 50%;
    margin-right: 1rem;
    flex-shrink: 0;
    transition: all 0.35s ease;
}

.link-btn-item:hover .link-btn-icon-left {
    transform: scale(1.1);
    background: rgba(161, 128, 35, 0.2);
}

.link-btn-text-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    text-align: left;
}

.link-btn-title {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.2rem;
    letter-spacing: 0.3px;
}

.link-btn-subtitle {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.55);
    font-weight: 300;
    transition: all 0.35s ease;
}

.link-btn-item:hover .link-btn-subtitle {
    color: rgba(255, 255, 255, 0.85);
}

.link-btn-arrow-right {
    color: rgba(255, 255, 255, 0.25);
    font-size: 0.9rem;
    margin-left: 0.5rem;
    transition: all 0.35s ease;
}

.link-btn-item:hover .link-btn-arrow-right {
    color: var(--accent-color);
    transform: translateX(3px);
}

/* Featured / Highlighted link */
.link-btn-item.featured {
    background: rgba(161, 128, 35, 0.07);
    border: 1px solid rgba(161, 128, 35, 0.35);
    box-shadow: 0 4px 15px rgba(161, 128, 35, 0.1);
}

.link-btn-item.featured::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(161, 128, 35, 0.05) 0%, transparent 60%);
    opacity: 0.7;
    pointer-events: none;
    z-index: 0;
}

.link-btn-item.featured:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
    box-shadow: 0 10px 25px rgba(161, 128, 35, 0.35);
}

.link-btn-item.featured:hover .link-btn-title {
    color: var(--primary-color);
}

.link-btn-item.featured:hover .link-btn-subtitle {
    color: rgba(5, 14, 26, 0.75);
}

.link-btn-item.featured:hover .link-btn-icon-left {
    background: rgba(5, 14, 26, 0.15);
    color: var(--primary-color);
}

.link-btn-item.featured:hover .link-btn-arrow-right {
    color: var(--primary-color);
}

/* Social icons strip */
.links-social-bar {
    display: flex;
    justify-content: center;
    gap: 1.25rem;
    margin-bottom: 3.5rem;
    width: 100%;
}

.social-circle-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.75);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.social-circle-btn:hover {
    color: var(--accent-color);
    border-color: rgba(161, 128, 35, 0.4);
    background: rgba(161, 128, 35, 0.08);
    transform: translateY(-4px);
    box-shadow: 0 8px 16px rgba(161, 128, 35, 0.15);
}

/* Links Footer */
.links-footer {
    text-align: center;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.4);
    width: 100%;
    margin-top: auto;
}

.links-footer-nav {
    display: flex;
    justify-content: center;
    gap: 1.25rem;
    margin-bottom: 0.75rem;
}

.links-footer-nav a {
    color: rgba(255, 255, 255, 0.55);
    transition: color 0.3s ease;
    font-weight: 500;
}

.links-footer-nav a:hover {
    color: var(--accent-color);
}

.links-footer-copyright {
    letter-spacing: 0.3px;
}
