/* ==========================================================================
   VARIÁVEIS GLOBAIS (Cores, Fontes e Sombras baseadas na configuração original)
   ========================================================================== */
:root {
    /* Cores */
    --primary: #1A1A1A;
    --secondary: #4A4A4A;
    --bg-light: #FAFAFA;
    
    --gold-light: #F3E5AB;
    --gold: #D4AF37;
    --gold-dark: #AA7C11;
    --gold-text: #B68A2F;
    
    --border-light: #EFE8D6;
    --border-card: #F3F4F6; /* Tom suave equivalente a gray-100 */

    /* Fontes */
    --font-sans: 'Montserrat', sans-serif;
    --font-serif: 'Playfair Display', serif;

    /* Sombras */
    --shadow-elegant: 0 10px 40px -10px rgba(0,0,0,0.05);
    --shadow-gold-glow: 0 4px 20px -2px rgba(212, 175, 55, 0.2);
    --shadow-card-hover: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

/* ==========================================================================
   RESETS E BASE
   ========================================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body.page-wrapper {
    background-color: var(--bg-light);
    color: var(--primary);
    font-family: var(--font-sans);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

a {
    text-decoration: none;
    color: inherit;
}

button {
    font-family: inherit;
}

.container {
    width: 100%;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.hidden {
    display: none !important;
}

/* ==========================================================================
   TIPOGRAFIA & UTILITÁRIOS
   ========================================================================== */
.text-gold-gradient {
    color: var(--gold-text);
    font-style: italic;
    font-weight: 600;
}

.subtitle {
    color: var(--gold);
    font-size: 0.875rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    font-weight: 500;
    display: block;
}

.section-title {
    font-family: var(--font-serif);
    font-size: 2.25rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

@media (min-width: 768px) {
    .section-title { font-size: 3rem; }
}

.section-header-center {
    text-align: center;
    margin: 0 auto 4rem auto;
    padding: 0 1.5rem;
    max-width: 42rem;
}

.section-desc {
    font-weight: 300;
    color: var(--secondary);
    line-height: 1.625;
}

/* ==========================================================================
   HEADER E NAVEGAÇÃO
   ========================================================================== */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(4px);
    z-index: 50;
    border-bottom: 1px solid var(--border-light);
}

.header-container {
    max-width: 80rem;
    padding-top: 1rem;
    padding-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-wrapper {
    display: flex;
    align-items: center;
    cursor: pointer;
}

.logotipo {
    display: flex;
    align-items: center;
    letter-spacing: 2px;
}

.imagem-logo {
    height: 60px;
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.imagem-logo:hover {
    transform: scale(1.02);
}

.menu-btn {
    display: block;
    color: var(--primary);
    background: none;
    border: none;
    padding: 0.5rem;
    cursor: pointer;
}

.menu-btn svg {
    width: 1.5rem;
    height: 1.5rem;
}

.desktop-nav {
    display: none;
    align-items: center;
    gap: 1.5rem;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--secondary);
}

@media (min-width: 1024px) {
    .desktop-nav { gap: 2rem; font-size: 0.875rem; }
}

.nav-link {
    position: relative;
    background: none;
    border: none;
    cursor: pointer;
    color: inherit;
    font-weight: inherit;
    text-transform: inherit;
    letter-spacing: inherit;
    transition: color 0.3s;
}

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

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: -4px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--gold);
    transition: width 0.3s ease;
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

.header-cta { display: none; }

.btn-header {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
    color: var(--primary);
    background: none;
    border: none;
    border-bottom: 1px solid var(--primary);
    padding-bottom: 0.25rem;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-header:hover {
    color: var(--gold);
    border-color: var(--gold);
}

@media (min-width: 768px) {
    .menu-btn { display: none; }
    .desktop-nav { display: flex; }
}
@media (min-width: 1024px) {
    .header-cta { display: block; }
}

/* Menu Mobile Dropdown */
.mobile-menu {
    background: #fff;
    border-top: 1px solid var(--border-light);
    padding: 1rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--secondary);
    box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1);
}

@media (min-width: 768px) {
    .mobile-menu { display: none !important; }
}

.mobile-menu button.nav-link {
    text-align: left;
    padding: 0.5rem 0;
    width: fit-content;
}

.mobile-menu-divider {
    padding-top: 0.5rem;
    border-top: 1px solid var(--border-card);
    margin-top: 0.5rem;
}

.mobile-btn-header {
    display: inline-block;
}

/* ==========================================================================
   ESTRUTURA DAS ABAS (TABS)
   ========================================================================== */
.main-content {
    flex-grow: 1;
    width: 100%;
    padding-top: 9rem;
    padding-bottom: 5rem;
    position: relative;
    overflow: hidden;
}

.tab-content {
    opacity: 0;
    visibility: hidden;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    transition: opacity 0.5s ease-in-out, visibility 0.5s ease-in-out;
    pointer-events: none;
}

.tab-content.active {
    opacity: 1;
    visibility: visible;
    position: relative;
    pointer-events: auto;
}

/* ==========================================================================
   INÍCIO (HERO)
   ========================================================================== */
.hero-container {
    max-width: 64rem;
    margin: 0 auto;
    min-height: 70vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.title-main {
    font-family: var(--font-serif);
    font-size: 3rem;
    color: var(--primary);
    line-height: 1.1;
    margin-bottom: 2rem;
}

@media (min-width: 768px) { .title-main { font-size: 4.5rem; } }
@media (min-width: 1024px) { .title-main { font-size: 6rem; } }

.description {
    color: var(--secondary);
    font-size: 1.125rem;
    max-width: 42rem;
    line-height: 1.625;
    margin-bottom: 3rem;
    font-weight: 300;
}

.btn-primary {
    background: var(--primary);
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    padding: 1rem 2rem;
    border-radius: 0.375rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-primary:hover {
    background: #B68A2F;
    transform: translateY(-4px);
}

/* ==========================================================================
   SOBRE A CONSULTORA
   ========================================================================== */
.about-container {
    max-width: 72rem;
    display: flex;
    flex-direction: column;
    gap: 4rem;
    align-items: center;
}

@media (min-width: 768px) {
    .about-container { flex-direction: row; }
    .about-image-col, .about-text-col { width: 50%; }
}

.about-image-wrapper {
    aspect-ratio: 3/4;
    position: relative;
    padding: 1rem;
}

.about-image-border {
    position: absolute;
    inset: 0;
    border: 2px solid rgba(212, 175, 55, 0.3);
    transform: translate(-1rem, -1rem);
}

.about-image-inner {
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 10;
    box-shadow: var(--shadow-elegant);
}

.about-image-inner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-paragraphs {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    font-weight: 300;
    color: var(--secondary);
    line-height: 1.625;
}

.signature {
    margin-top: 2.5rem;
    font-family: var(--font-serif);
    font-size: 1.875rem;
    color: rgba(26,26,26,0.8);
    font-style: italic;
}

/* ==========================================================================
   FILOSOFIA
   ========================================================================== */
.philo-section {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
}

.philo-container {
    max-width: 72rem;
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

@media (min-width: 1024px) {
    .philo-container { flex-direction: row; align-items: flex-start; }
    .philo-header-col { width: 41.666%; position: sticky; top: 8rem; }
    .philo-cards-col { width: 58.333%; }
}

.philo-intro {
    font-weight: 300;
    color: var(--secondary);
    line-height: 1.625;
}

.philo-cards-col {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.philo-card {
    background: #fff;
    padding: 2rem;
    box-shadow: var(--shadow-elegant);
    border: 1px solid var(--border-card);
    border-radius: 0.5rem;
}

@media (min-width: 768px) {
    .philo-card { padding: 2.5rem; }
}

.philo-card-header {
    display: flex;
    align-items: baseline;
    gap: 1.5rem;
    margin-bottom: 1rem;
}

.philo-number {
    font-family: var(--font-serif);
    font-size: 1.875rem;
    color: var(--gold-text);
    font-style: italic;
    font-weight: 600;
}

@media (min-width: 768px) {
    .philo-number { font-size: 2.25rem; }
}

.philo-title {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    color: var(--primary);
    font-weight: 400;
}

.divider {
    width: 3rem;
    border-bottom: 1px solid rgba(216,193,138,0.6);
    margin-bottom: 1rem;
}

.philo-desc {
    font-weight: 300;
    font-size: 0.875rem;
    color: var(--secondary);
    line-height: 1.625;
}

@media (min-width: 768px) {
    .philo-desc { font-size: 1rem; }
}

/* ==========================================================================
   SERVIÇOS (CARDS)
   ========================================================================== */
.services-grid {
    max-width: 72rem;
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .services-grid { grid-template-columns: repeat(3, 1fr); }
}

.service-card {
    background: #fff;
    padding: 2.5rem;
    box-shadow: var(--shadow-elegant);
    border: 1px solid var(--border-card);
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: all 0.5s;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-card-hover);
}

.service-card.dark {
    background: var(--primary);
    color: #fff;
    border: none;
}

.service-tag {
    font-size: 0.6875rem;
    letter-spacing: 0.28em;
    color: var(--gold-text);
    text-transform: uppercase;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

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

.dark-divider {
    border-bottom: 1px solid #3a3a3a;
    margin-bottom: 2rem;
}

.service-title {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 1rem;
    transition: color 0.3s;
    font-weight: 400;
}

.service-title-gold {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    color: var(--gold-light);
    margin-bottom: 1rem;
    font-weight: 400;
}

.service-card:hover .service-title { color: var(--gold); }

.service-desc {
    font-weight: 300;
    font-size: 0.875rem;
    color: var(--secondary);
    line-height: 1.625;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.service-card.dark .service-desc { color: #D1D5DB; }

.service-list {
    list-style: none;
    margin-bottom: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    font-weight: 300;
    font-size: 0.875rem;
    color: var(--secondary);
}

.service-card.dark .service-list { color: #D1D5DB; }

.service-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.list-bullet {
    width: 1.25rem;
    border-bottom: 1px solid var(--gold-text);
    flex-shrink: 0;
}

.btn-card {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid #E6D8AE;
    border-radius: 10px;
    background: #fff;
    color: var(--primary);
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    transition: all 0.28s ease;
    cursor: pointer;
    margin-top: auto;
}

.btn-card:hover {
    border-color: var(--gold-text);
    background: #FAF7EF;
    transform: translateY(-2px);
}

.btn-card-dark {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid var(--gold);
    border-radius: 10px;
    background: var(--gold);
    color: var(--primary);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    transition: all 0.28s ease;
    cursor: pointer;
    margin-top: auto;
}

.btn-card-dark:hover {
    background: #E2C764;
    transform: translateY(-2px);
}

.btn-wrapper {
    width: 100%;
    margin-top: auto;
}

/* ==========================================================================
   E-BOOKS (GRID E CARDS)
   ========================================================================== */
.ebooks-grid {
    max-width: 72rem;
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) { .ebooks-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .ebooks-grid { grid-template-columns: repeat(3, 1fr); } }

.ebook-card {
    background: #fff;
    padding: 1.5rem;
    box-shadow: var(--shadow-elegant);
    border: 1px solid var(--border-card);
    display: flex;
    flex-direction: column;
    height: 100%;
    border-radius: 0.5rem;
    transition: all 0.5s;
}

.ebook-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-card-hover);
}

.ebook-cover {
    width: 100%;
    aspect-ratio: 3/4;
    background: var(--bg-light);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    border-radius: 0.125rem;
    transition: all 0.5s;
}

.ebook-card:hover .ebook-cover {
    box-shadow: var(--shadow-gold-glow);
}

.ebook-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ebook-tag {
    font-size: 0.6875rem;
    letter-spacing: 0.28em;
    color: var(--gold-text);
    text-transform: uppercase;
    font-weight: 500;
    margin-bottom: 0.75rem;
}

.ebook-title {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    color: var(--primary);
    margin-bottom: 0.75rem;
    transition: color 0.3s;
    font-weight: 400;
}

.ebook-card:hover .ebook-title {
    color: var(--gold);
}

.ebook-label {
    font-size: 0.75rem;
    color: var(--secondary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
    display: block;
    margin-top: 0.5rem;
}

.ebook-desc {
    font-weight: 300;
    font-size: 0.875rem;
    color: var(--secondary);
    line-height: 1.625;
    margin-bottom: 1.5rem;
}

.ebook-list {
    list-style: none;
    margin-bottom: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    font-weight: 300;
    font-size: 0.875rem;
    color: var(--secondary);
}

.ebook-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.ebook-list .list-bullet { margin-top: 0.625rem; }

.ebook-footer {
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid var(--border-card);
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.ebook-price-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.ebook-price-label {
    font-size: 0.75rem;
    color: var(--secondary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.ebook-price-value {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    color: var(--primary);
    font-weight: 600;
}

/* ==========================================================================
   DEPOIMENTOS (SLIDER)
   ========================================================================== */
.testimonials-section {
    padding-top: 4rem;
    padding-bottom: 4rem;
}

.testimonials-container {
    max-width: 42rem;
    margin: 0 auto;
    position: relative;
    display: flex;
    align-items: center;
    padding: 0;
}

@media (max-width: 767px) {
    .testimonials-container { padding: 0 1.5rem; }
}

.slider-btn {
    position: absolute;
    z-index: 10;
    background: #fff;
    border: 1px solid #E5E7EB;
    color: var(--primary);
    border-radius: 50%;
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1);
    cursor: pointer;
    transition: all 0.3s;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-btn:hover {
    background: var(--gold-text);
    color: #fff;
    border-color: var(--gold-text);
}

.slider-btn svg {
    width: 1.25rem;
    height: 1.25rem;
}

.slider-btn-prev { left: -0.5rem; }
.slider-btn-next { right: -0.5rem; }

@media (min-width: 768px) {
    .slider-btn-prev { left: -3rem; }
    .slider-btn-next { right: -3rem; }
}

.slider-track {
    width: 100%;
    overflow: hidden;
}

.depoimento-card {
    background: #fff;
    padding: 2rem;
    box-shadow: var(--shadow-elegant);
    border: 1px solid var(--border-card);
    border-radius: 0.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.depoimento-text {
    font-weight: 300;
    font-size: 1rem;
    color: var(--secondary);
    line-height: 1.625;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.depoimento-author-area {
    border-top: 1px solid var(--border-card);
    padding-top: 1rem;
}

.depoimento-author {
    font-family: var(--font-serif);
    font-weight: 600;
    color: var(--primary);
    font-size: 1rem;
}

.depoimento-role {
    font-size: 0.75rem;
    color: var(--secondary);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

/* ==========================================================================
   CONTATO E FORMULÁRIO
   ========================================================================== */
.contact-whatsapp-area {
    width: 100%;
    max-width: 48rem;
    margin: 2rem auto;
    padding: 0 1rem;
}

.contact-whatsapp-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    border: 1px solid var(--gold-text);
    color: var(--primary);
    background: transparent;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.75rem;
    font-weight: 600;
    transition: all 0.3s;
    border-radius: 0.125rem;
    box-shadow: 0 1px 2px 0 rgba(0,0,0,0.05);
}

.contact-whatsapp-btn:hover {
    background: var(--gold-text);
    color: #fff;
}

.whatsapp-icon {
    width: 1.25rem;
    height: 1.25rem;
    fill: currentColor;
}

.contact-form-wrapper {
    max-width: 56rem;
    margin: 0 auto;
    background: #fff;
    padding: 2.5rem;
    box-shadow: var(--shadow-elegant);
    border: 1px solid var(--bg-light);
}

@media (min-width: 768px) {
    .contact-form-wrapper { padding: 4rem; }
}

.form-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.form-title {
    font-family: var(--font-serif);
    font-size: 2.25rem;
    color: var(--primary);
    margin-bottom: 1rem;
    font-weight: 400;
}

.form-subtitle {
    font-weight: 300;
    color: var(--secondary);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-label {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--secondary);
    margin-bottom: 0.5rem;
    line-height: 1.625;
    font-weight: 500;
}

.required {
    color: #EF4444; /* red-500 */
    font-size: 0.875rem;
}

.form-input {
    width: 100%;
    background: var(--bg-light);
    border: 1px solid #E5E7EB;
    padding: 0.75rem 1rem;
    outline: none;
    transition: border-color 0.3s;
    color: var(--primary);
    font-family: inherit;
    font-size: 1rem;
}

.form-input:focus {
    border-color: var(--gold);
}

.form-textarea {
    resize: none;
}

.form-radio-group {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.form-radio-label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
}

.form-radio {
    margin-top: 0.25rem;
    width: 1rem;
    height: 1rem;
    accent-color: var(--gold);
    cursor: pointer;
}

.form-radio-text {
    font-size: 0.875rem;
    color: var(--primary);
    font-weight: 300;
    transition: color 0.3s;
}

.form-radio-label:hover .form-radio-text {
    color: var(--gold);
}

.form-hint {
    font-size: 0.625rem;
    color: #9CA3AF;
    text-transform: none;
    font-style: italic;
    letter-spacing: normal;
    font-weight: 400;
}

.scale-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--bg-light);
    padding: 1.5rem 0.5rem;
    border: 1px solid var(--border-card);
    overflow-x: auto;
    border-radius: 0.125rem;
}

.scale-track {
    display: flex;
    width: 100%;
    justify-content: space-between;
    min-width: 300px;
}

.scale-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 0 0.25rem;
}

.scale-item label {
    font-size: 0.75rem;
    color: var(--secondary);
    font-weight: 500;
    cursor: pointer;
}

.btn-submit {
    background: var(--primary);
    color: #fff;
    font-size: 0.875rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    width: 100%;
    padding: 1.25rem;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s;
    box-shadow: var(--shadow-elegant);
    margin-top: 1rem;
    font-weight: 500;
}

.btn-submit:hover {
    background: var(--gold);
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer {
    background: var(--primary);
    color: #fff;
    padding: 2.5rem 0;
    border-top: 4px solid var(--gold);
    margin-top: auto;
}

.footer-container {
    max-width: 80rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
    justify-content: space-between;
}

@media (min-width: 768px) {
    .footer-container { flex-direction: row; }
    .footer-info { text-align: left; }
}

.footer-info {
    text-align: center;
}

.footer-logo {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--gold-dark);
    margin-bottom: 0.5rem;
}

.footer-copyright {
    font-size: 0.75rem;
    color: #9CA3AF;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

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

.footer-social a {
    color: #9CA3AF;
    transition: color 0.3s;
}

.footer-social a:hover {
    color: var(--gold);
}

.footer-social svg {
    width: 1.25rem;
    height: 1.25rem;
    fill: currentColor;
}