/* 
 * Aline Melo Advocacia - Estilo Principal 
 */

:root {
    --brand-black: #0a0a0a;
    --brand-gold: #c5a059;
    --brand-gold-light: #e0c58e;
    --brand-gold-glow: rgba(197, 160, 89, 0.3);
    --zinc-900: #18181b;
    --zinc-950: #09090b;
    --text-white: #ffffff;
    --text-gray: #a1a1aa;
    --text-dark-gray: #71717a;
    --font-sans: 'Inter', sans-serif;
    --font-serif: 'Playfair Display', serif;
}

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

body {
    background-color: var(--brand-black);
    color: var(--text-white);
    font-family: var(--font-sans);
    line-height: 1.5;
    overflow-x: hidden;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

/* Utils */
.container {
    width: 100%;
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

@media (min-width: 768px) {
    .container {
        padding-left: 3rem;
        padding-right: 3rem;
    }
}

.section {
    padding-top: 5rem;
    padding-bottom: 5rem;
    position: relative;
    overflow: hidden;
}

@media (min-width: 768px) {
    .section {
        padding-top: 8rem;
        padding-bottom: 8rem;
    }
}

/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    transition: all 0.5s ease;
    padding: 1.5rem 0;
}

header.header-scrolled {
    background-color: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(20px);
    padding: 0.75rem 0;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    border-bottom: 1px solid rgba(197, 160, 89, 0.1);
}

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

.logo-wrap {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo-img {
    height: 2.5rem;
    width: auto;
    object-contain: contain;
}

@media (min-width: 768px) {
    .logo-img {
        height: 3.5rem;
    }
}

.logo-text {
    display: none;
    flex-direction: column;
    border-left: 1px solid rgba(197, 160, 89, 0.2);
    padding-left: 1rem;
    padding-top: 0.25rem;
    padding-bottom: 0.25rem;
}

@media (min-width: 640px) {
    .logo-text {
        display: flex;
    }
}

.brand-name {
    color: var(--brand-gold);
    font-family: var(--font-serif);
    font-weight: 700;
    font-size: 1rem;
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: 0.2em;
}

@media (min-width: 768px) {
    .brand-name {
        font-size: 1.25rem;
    }
}

.brand-sub {
    font-size: 10px;
    color: var(--text-dark-gray);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: 0.25rem;
}

@media (min-width: 768px) {
    .brand-sub {
        font-size: 0.75rem;
    }
}

/* Buttons */
.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-weight: 600;
    border-radius: 9999px;
    cursor: pointer;
    background-color: var(--brand-gold);
    color: var(--brand-black);
    transition: all 0.3s ease;
}

.btn-whatsapp:hover {
    background-color: var(--brand-gold-light);
    transform: scale(1.05);
}

.btn-icon {
    width: 1.5rem;
    height: 1.5rem;
    object-fit: contain;
}

.btn-header {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

@media (min-width: 768px) {
    .btn-header {
        padding: 0.625rem 1.5rem;
        font-size: 1rem;
    }
}

.btn-hero {
    padding: 1rem 2rem;
    font-size: 1.125rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
}

.whatsapp-pulse {
    animation: whatsapp-pulse 2s infinite;
}

@keyframes whatsapp-pulse {
    0% { box-shadow: 0 0 0 0 rgba(197, 160, 89, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(197, 160, 89, 0); }
    100% { box-shadow: 0 0 0 0 rgba(197, 160, 89, 0); }
}

.btn-floating {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    z-index: 50;
    background-color: #25D366;
    color: white;
    padding: 1rem;
    border-radius: 9999px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
}

.floating-icon {
    width: 2rem;
    height: 2rem;
    object-fit: contain;
}

/* Animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}

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

/* Hero */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 7rem;
    padding-bottom: 5rem;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1.2fr 0.8fr;
    }
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    text-align: center;
}

@media (min-width: 1024px) {
    .hero-content {
        text-align: left;
        align-items: flex-start;
    }
}

.hero-badge-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

@media (min-width: 1024px) {
    .hero-badge-wrap {
        justify-content: flex-start;
    }
}

.hero-line {
    height: 1px;
    width: 2rem;
    background-color: var(--brand-gold);
    display: none;
}

@media (min-width: 1024px) {
    .hero-line {
        display: block;
    }
}

.hero-badge {
    color: var(--brand-gold);
    font-weight: 700;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    font-size: 0.75rem;
}

@media (min-width: 768px) {
    .hero-badge {
        font-size: 0.875rem;
    }
}

.hero h1 {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -0.02em;
}

@media (min-width: 768px) {
    .hero h1 {
        font-size: 3.75rem;
    }
}

@media (min-width: 1024px) {
    .hero h1 {
        font-size: 4.5rem;
    }
}

@media (min-width: 1280px) {
    .hero h1 {
        font-size: 5.5rem;
    }
}

.hero h1 span {
    color: var(--brand-gold);
    font-style: italic;
    font-weight: 400;
}

.hero-desc {
    font-size: 1.125rem;
    color: var(--text-gray);
    line-height: 1.6;
    max-width: 36rem;
    font-weight: 300;
}

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

.hero-checks {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 2rem;
    width: 100%;
}

@media (min-width: 1024px) {
    .hero-checks {
        justify-content: flex-start;
    }
}

.check-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-dark-gray);
    font-size: 0.75rem;
}

@media (min-width: 768px) {
    .check-item {
        font-size: 0.875rem;
    }
}

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

.hero-img-wrap {
    display: none;
    justify-content: flex-end;
    position: relative;
}

@media (min-width: 1024px) {
    .hero-img-wrap {
        display: flex;
    }
}

.hero-image-container {
    position: relative;
    width: 100%;
    max-width: 32rem;
    aspect-ratio: 4/5;
    border-radius: 2rem;
    overflow: hidden;
    border: 1px solid rgba(197, 160, 89, 0.3);
    box-shadow: 0 30px 100px -20px rgba(197, 160, 89, 0.15);
}

.hero-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(0.2);
    transition: all 2s ease;
}

.hero-image-container:hover img {
    filter: grayscale(0);
    transform: scale(1.1);
}

.hero-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, var(--brand-black), transparent, rgba(10, 10, 10, 0.2));
    z-index: 10;
}

.hero-quote {
    position: absolute;
    bottom: 3rem;
    left: 3rem;
    right: 3rem;
    z-index: 20;
}

.gold-line {
    width: 3rem;
    height: 2px;
    background-color: var(--brand-gold);
    margin-bottom: 1.5rem;
}

.hero-quote p {
    font-family: var(--font-serif);
    font-style: italic;
    color: var(--brand-gold);
    font-size: 2rem;
    line-height: 1.2;
}

.oab-badge {
    position: absolute;
    top: -2.5rem;
    right: -2.5rem;
    width: 10rem;
    height: 10rem;
    background-color: rgba(10, 10, 10, 0.6);
    backdrop-filter: blur(20px);
    border-radius: 9999px;
    border: 1px solid rgba(197, 160, 89, 0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    z-index: 20;
}

.oab-badge i {
    color: var(--brand-gold);
    margin-bottom: 0.5rem;
}

.oab-badge span {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--brand-gold);
    font-weight: 700;
}

/* Background Gradients */
.bg-glow-1 {
    position: absolute;
    top: 25%;
    right: -5rem;
    width: 24rem;
    height: 24rem;
    background-color: rgba(197, 160, 89, 0.1);
    filter: blur(150px);
    border-radius: 9999px;
    z-index: -10;
    animation: animate-pulse-slow 3s infinite;
}

.bg-glow-2 {
    position: absolute;
    bottom: 25%;
    left: -5rem;
    width: 18rem;
    height: 18rem;
    background-color: rgba(197, 160, 89, 0.05);
    filter: blur(120px);
    border-radius: 9999px;
    z-index: -10;
}

@media (min-width: 768px) {
    .bg-glow-1 { width: 38rem; height: 38rem; }
    .bg-glow-2 { width: 32rem; height: 32rem; }
}

@keyframes animate-pulse-slow {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.6; }
}

/* Section Pain */
.section-pain {
    background-color: var(--zinc-950);
    border-top: 1px solid var(--zinc-900);
    border-bottom: 1px solid var(--zinc-900);
}

.section-header {
    text-align: center;
    max-width: 56rem;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 5rem;
}

.section-tag {
    display: inline-block;
    padding: 0.25rem 1rem;
    border: 1px solid rgba(197, 160, 89, 0.2);
    border-radius: 9999px;
    margin-bottom: 2rem;
}

.section-tag span {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.4em;
    color: var(--brand-gold);
    font-weight: 700;
}

.section-header h2 {
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 2rem;
}

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

@media (min-width: 1024px) {
    .section-header h2 { font-size: 3.75rem; }
}

.section-header p {
    font-size: 1.125rem;
    color: var(--text-gray);
    font-style: italic;
    font-weight: 300;
    max-width: 48rem;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

@media (min-width: 768px) {
    .section-header p { font-size: 1.25rem; }
}

.pain-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 5rem;
}

@media (min-width: 768px) {
    .pain-grid { grid-template-columns: repeat(2, 1fr); gap: 2.5rem; }
}

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

.pain-card {
    padding: 2.5rem;
    background-color: var(--brand-black);
    border: 1px solid var(--zinc-900);
    border-radius: 2rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    transition: all 0.5s ease;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.pain-card:hover {
    border-color: rgba(197, 160, 89, 0.3);
    transform: translateY(-0.5rem);
}

.card-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 0.75rem;
    background-color: rgba(197, 160, 89, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brand-gold);
    transition: all 0.5s ease;
}

.pain-card:hover .card-icon {
    background-color: var(--brand-gold);
    color: var(--brand-black);
}

.pain-card h3 {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 700;
    margin-top: 0.5rem;
}

.pain-card p {
    color: var(--text-dark-gray);
    font-weight: 300;
    line-height: 1.6;
}

.center-btn {
    display: flex;
    justify-content: center;
}

/* Solutions Section */
.solutions-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 5rem;
    align-items: center;
}

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

.solutions-content {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.solutions-header h2 {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .solutions-header h2 { font-size: 3.75rem; }
}

.solutions-header h2 span {
    color: var(--brand-gold);
    font-style: italic;
    font-weight: 400;
}

.solutions-header .gold-bar {
    height: 4px;
    width: 6rem;
    background-color: var(--brand-gold);
    border-radius: 9999px;
}

.solutions-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.solution-item {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem;
    border-radius: 1.5rem;
    border: 1px solid transparent;
    transition: all 0.5s ease;
}

.solution-item:hover {
    background-color: rgba(24, 24, 27, 0.4);
    border-color: rgba(255, 255, 255, 0.05);
}

.solution-icon {
    flex-shrink: 0;
    width: 4rem;
    height: 4rem;
    border-radius: 1rem;
    background-color: rgba(197, 160, 89, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brand-gold);
    box-shadow: 0 0 0 1px rgba(197, 160, 89, 0.2);
    transition: all 0.5s ease;
}

.solution-item:hover .solution-icon {
    background-color: var(--brand-gold);
    color: var(--brand-black);
}

.solution-text h4 {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.solution-item:hover .solution-text h4 {
    color: var(--brand-gold);
}

.solution-text p {
    color: var(--text-dark-gray);
    font-weight: 300;
}

.solution-img-wrap {
    padding: 0 1.5rem;
}

@media (min-width: 768px) {
    .solution-img-wrap { padding: 0; }
}

.solution-image-container {
    position: relative;
    aspect-ratio: 4/5;
    border-radius: 3rem;
    overflow: hidden;
    border: 1px solid rgba(197, 160, 89, 0.2);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    transform: scale(0.95);
}

@media (min-width: 1024px) {
    .solution-image-container { transform: scale(1); }
}

.solution-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.75);
    transition: all 1.5s ease;
}

.solution-image-container:hover img {
    filter: brightness(1);
}

/* Methodology Section */
.methodology {
    background-color: var(--brand-black);
}

.method-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.03;
    background-image: radial-gradient(var(--brand-gold) 2px, transparent 2px);
    background-size: 32px 32px;
}

.method-header {
    text-align: center;
    margin-bottom: 6rem;
}

.method-tag {
    color: var(--brand-gold);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5em;
    display: block;
    margin-bottom: 1rem;
}

.method-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 6rem;
}

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

.method-card {
    position: relative;
    padding: 3rem;
    border: 1px solid var(--zinc-900);
    border-radius: 2.5rem;
    background-color: rgba(9, 9, 11, 0.5);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    transition: all 0.7s ease;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.method-card:hover { border-color: rgba(197, 160, 89, 0.2); }

.method-num {
    font-family: var(--font-serif);
    font-weight: 700;
    font-size: 4.5rem;
    color: rgba(197, 160, 89, 0.05);
    position: absolute;
    top: 1rem;
    right: 2rem;
    pointer-events: none;
    transition: all 0.7s ease;
}

@media (min-width: 768px) {
    .method-num { font-size: 6rem; }
}

.method-card:hover .method-num { color: rgba(197, 160, 89, 0.1); }

.method-card .gold-bar {
    width: 4rem;
    height: 2px;
    background-color: var(--brand-gold);
    transition: all 0.5s ease;
}

.method-card:hover .gold-bar { width: 6rem; }

.method-card h3 {
    font-family: var(--font-serif);
    font-size: 1.875rem;
    font-weight: 700;
    z-index: 10;
}

.method-card:hover h3 { color: var(--brand-gold); }

.method-card p {
    color: var(--text-dark-gray);
    font-size: 1.125rem;
    line-height: 1.6;
    z-index: 10;
}

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

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

.test-card {
    padding: 2rem;
    background-color: var(--zinc-900);
    border: 1px solid var(--zinc-900);
    border-radius: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.3s ease;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.test-card:hover { transform: translateY(-0.5rem); }

.stars {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1.5rem;
    color: var(--brand-gold);
}

.test-quote {
    color: rgba(255, 255, 255, 0.8);
    font-style: italic;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.test-author {
    color: var(--brand-gold);
    font-weight: 600;
    border-top: 1px solid var(--zinc-900);
    padding-top: 1rem;
}

/* About Section */
.section-about { background-color: var(--zinc-950); }

.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 5rem;
    align-items: center;
}

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

.about-img-wrap {
    order: 2;
    position: relative;
    padding: 0 1rem;
}

@media (min-width: 1024px) {
    .about-img-wrap { order: 1; padding: 0; }
}

.about-image-container {
    aspect-ratio: 4/5;
    border-radius: 3rem;
    overflow: hidden;
    border: 1px solid rgba(197, 160, 89, 0.3);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    position: relative;
}

.about-image-container::before {
    content: '';
    position: absolute;
    inset: 0;
    background-color: rgba(197, 160, 89, 0.1);
    transition: all 0.7s ease;
    z-index: 1;
}

.about-image-container:hover::before { background-color: transparent; }

.about-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 2s ease;
}

.about-image-container:hover img { transform: scale(1.05); }

.about-floating-card {
    position: absolute;
    bottom: -2rem;
    right: -1rem;
    background-color: var(--brand-gold);
    color: var(--brand-black);
    padding: 2rem;
    border-radius: 1.5rem;
    box-shadow: 0 20px 50px rgba(197, 160, 89, 0.4);
    z-index: 10;
}

@media (min-width: 768px) {
    .about-floating-card { right: -2rem; }
}

.about-floating-card span {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    font-weight: 900;
    opacity: 0.6;
    display: block;
    margin-bottom: 0.25rem;
}

.about-floating-card p {
    font-family: var(--font-serif);
    font-weight: 700;
    font-size: 1.875rem;
}

.about-content {
    order: 1;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    text-align: center;
}

@media (min-width: 1024px) {
    .about-content { order: 2; text-align: left; }
}

.about-content h2 {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.1;
}

@media (min-width: 768px) {
    .about-content h2 { font-size: 3.75rem; }
}

.about-content h2 .sub-title {
    color: var(--brand-gold);
    font-style: italic;
    font-weight: 400;
    font-size: 0.8em;
}

.about-content .gold-bar {
    height: 4px;
    width: 5rem;
    background-color: var(--brand-gold);
    margin: 0 auto;
}

@media (min-width: 1024px) {
    .about-content .gold-bar { margin: 0; }
}

.about-text {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    color: var(--text-gray);
    font-size: 1.125rem;
    font-weight: 300;
}

.about-text .quote-mini {
    padding-left: 1.5rem;
    border-left: 2px solid var(--zinc-900);
    font-style: italic;
    color: var(--text-dark-gray);
    font-size: 1rem;
}

/* Differentials */
.diff-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 4rem;
}

@media (min-width: 640px) {
    .diff-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
    .diff-grid { grid-template-columns: repeat(4, 1fr); }
}

.diff-card {
    padding: 2.5rem;
    background-color: rgba(24, 24, 27, 0.4);
    border: 1px solid var(--zinc-900);
    border-radius: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.diff-card:hover {
    border-color: rgba(197, 160, 89, 0.4);
    transform: translateY(-0.5rem);
}

.diff-icon {
    color: var(--brand-gold);
    margin-bottom: 1.5rem;
    display: inline-block;
    transition: all 0.3s ease;
}

.diff-card:hover .diff-icon { transform: scale(1.1); }

.diff-card h3 {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.diff-card p {
    font-size: 0.875rem;
    color: var(--text-dark-gray);
}

/* Final CTA */
.final-cta {
    padding: 8rem 1.5rem;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 70vh;
}

.cta-bg {
    position: absolute;
    inset: 0;
    background-color: var(--brand-gold);
    z-index: 0;
}

.cta-overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(10, 10, 10, 0.95);
    background-image: url('https://www.transparenttextures.com/patterns/dark-matter.png');
    opacity: 0.8;
    z-index: 1;
}

.cta-border {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: rgba(197, 160, 89, 0.1);
    z-index: 2;
}

.cta-content {
    position: relative;
    z-index: 10;
    max-width: 64rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2.5rem;
}

.cta-icon-wrap {
    padding: 1.5rem;
    background-color: rgba(197, 160, 89, 0.1);
    border-radius: 2.5rem;
    border: 1px solid rgba(197, 160, 89, 0.2);
    position: relative;
    animation: rotate-shake 6s infinite ease-in-out;
}

@keyframes rotate-shake {
    0%, 100% { transform: rotate(0); }
    33% { transform: rotate(5deg); }
    66% { transform: rotate(-5deg); }
}

.cta-icon-wrap::after {
    content: '';
    position: absolute;
    inset: -1rem;
    background-color: rgba(197, 160, 89, 0.1);
    filter: blur(24px);
    border-radius: 9999px;
    z-index: -10;
}

.final-cta h2 {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.04em;
}

@media (min-width: 768px) {
    .final-cta h2 { font-size: 4.5rem; }
}

@media (min-width: 1024px) {
    .final-cta h2 { font-size: 5rem; }
}

.final-cta h2 span {
    color: var(--brand-gold);
    font-style: italic;
    font-weight: 400;
    text-decoration: underline;
    text-decoration-color: rgba(197, 160, 89, 0.2);
    text-underline-offset: 16px;
}

.cta-desc {
    font-size: 1.125rem;
    color: var(--text-gray);
    font-weight: 300;
    max-width: 48rem;
    line-height: 1.6;
}

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

.btn-cta {
    padding: 2rem 4rem;
    font-size: 1.5rem;
    box-shadow: 0 0 60px rgba(197, 160, 89, 0.25);
}

@media (min-width: 768px) {
    .btn-cta { font-size: 1.875rem; }
}

.btn-cta:hover { box-shadow: 0 0 60px rgba(197, 160, 89, 0.4); }

.cta-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
    opacity: 0.4;
}

.cta-tags span {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.4em;
}

/* Footer */
footer {
    background-color: var(--brand-black);
    border-top: 1px solid var(--zinc-900);
    padding: 6rem 1.5rem;
}

@media (min-width: 768px) {
    footer { padding-left: 3rem; padding-right: 3rem; }
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 5rem;
    margin-bottom: 6rem;
}

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

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.footer-logo {
    height: 6rem;
    width: auto;
    align-self: flex-start;
}

.footer-quote {
    color: var(--text-dark-gray);
    font-style: italic;
    font-size: 1.125rem;
    border-left: 1px solid var(--zinc-900);
    padding-left: 1.5rem;
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.footer-col h4 {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--brand-gold);
    text-transform: uppercase;
    letter-spacing: 0.2em;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.footer-link {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    color: var(--text-gray);
}

.footer-link:hover { color: var(--brand-gold); }

.link-icon {
    width: 3.5rem;
    height: 3.5rem;
    background-color: var(--zinc-950);
    border: 1px solid var(--zinc-900);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.footer-link:hover .link-icon {
    background-color: var(--brand-gold);
    color: var(--brand-black);
}

.link-img-icon {
    width: 1.5rem;
    height: 1.5rem;
    object-fit: contain;
}

.link-text {
    display: flex;
    flex-direction: column;
}

.link-label {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-dark-gray);
}

.link-value {
    font-size: 1.125rem;
    font-weight: 500;
}

.footer-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    color: var(--text-dark-gray);
    font-size: 1.125rem;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

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

.footer-bottom {
    border-top: 1px solid var(--zinc-900);
    padding-top: 4rem;
    margin-top: 6rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
    text-transform: uppercase;
    font-size: 0.875rem;
    letter-spacing: 0.1em;
    color: var(--text-dark-gray);
}

@media (min-width: 768px) {
    .footer-bottom { flex-direction: row; justify-content: space-between; }
}

.bottom-links {
    display: flex;
    gap: 3rem;
}

.bottom-links a:hover { color: var(--text-white); }
