:root {
    --bg-primary: #0D0D0D;
    --bg-secondary: #1A1A1A;
    --gold: #D4AF37;
    --gold-light: #E8C84A;
    --gold-dark: #B8941F;
    --text-primary: #F5F5F5;
    --text-secondary: #A0A0A0;
    --card-bg: #1A1A1A;
    --card-border: rgba(212, 175, 55, 0.2);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3 {
    font-family: 'Playfair Display', serif;
}

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

.gold-text {
    color: var(--gold);
    background: linear-gradient(to bottom, var(--gold-light), var(--gold-dark));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Navbar */
#navbar {
    height: 110px;
    display: flex;
    align-items: center;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(13, 13, 13, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

#navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

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

.logo img {
    height: auto;
    max-height: 80px;
    width: auto;
    object-fit: contain;
}

#navbar .logo img {
    max-height: 100px; /* Ajustado para 100px */
}

#footer .logo {
    justify-content: center;
    margin-bottom: 20px;
}

#footer .logo img {
    max-height: 100px;
}

.nav-links {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 30px;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-secondary);
    font-weight: 500;
    transition: var(--transition);
}

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

/* Logo Link */
.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: var(--transition);
}

.logo-link:hover {
    transform: scale(1.02);
    filter: brightness(1.1);
}

/* Buttons */
.btn-primary {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: black !important;
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
}

.btn-primary-large {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: black;
    padding: 18px 40px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    display: inline-block;
    transition: var(--transition);
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.2);
}

.btn-primary-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(212, 175, 55, 0.4);
}

.btn-secondary {
    border: 1px solid var(--gold);
    color: var(--gold);
    padding: 18px 40px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    display: inline-block;
    transition: var(--transition);
    margin-left: 20px;
}

.btn-secondary:hover {
    background: rgba(212, 175, 55, 0.1);
}

.btn-primary-full {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: black;
    width: 100%;
    padding: 20px;
    border-radius: 12px;
    font-weight: 800;
    text-decoration: none;
    display: block;
    text-align: center;
    margin: 30px 0;
    font-size: 1.1rem;
    transition: var(--transition);
}

.btn-primary-full:hover {
    filter: brightness(1.2);
}

/* Hero Section */
.hero {
    padding: 210px 0 100px;
    background: radial-gradient(circle at 50% 50%, #1a1a1a 0%, #0d0d0d 100%);
}

.hero .container {
    display: flex;
    align-items: center;
    gap: 60px;
}

.hero-content {
    flex: 1;
}

.hero-content h1 {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 30px;
}

.hero-content p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
    max-width: 500px;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.hero-image img {
    max-width: 100%;
    border-radius: 60px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    box-shadow: 
        0 20px 50px rgba(0, 0, 0, 0.6),
        0 0 40px rgba(212, 175, 55, 0.1);
    transition: var(--transition);
}

.hero-image img:hover {
    transform: scale(1.02) translateY(-25px);
    box-shadow: 
        0 30px 70px rgba(0, 0, 0, 0.8),
        0 0 60px rgba(212, 175, 55, 0.2);
    border-color: var(--gold);
}

/* Features */
.features {
    padding: 100px 0;
    background: var(--bg-primary);
}

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

.section-header h2 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.feature-card {
    background: linear-gradient(145deg, #1A1A1A, #111111);
    padding: 30px 20px;
    border-radius: 24px;
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--gold);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6), 0 0 20px rgba(212, 175, 55, 0.1);
}

.feature-card .icon {
    margin-bottom: 25px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 65px;
    height: 65px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 18px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    color: var(--gold);
}

.gold-svg {
    stroke: var(--gold);
    filter: drop-shadow(0 0 5px rgba(212, 175, 55, 0.5));
}

.feature-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--text-primary);
    font-family: 'Inter', sans-serif;
    font-weight: 700;
}

.feature-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Showcase */
.showcase {
    padding: 15rem 0;
    background: #050505;
    position: relative;
    overflow: hidden;
}

.showcase-light-beam {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(212, 175, 55, 0.05) 0%, transparent 60%);
    animation: beamRotate 20s linear infinite;
    pointer-events: none;
    z-index: 1;
}

@keyframes beamRotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Showcase Layout - Panel Style (Unified with About Section) */
.showcase-panel {
    background: linear-gradient(165deg, #181818 0%, #0d0d0d 100%);
    padding: 80px 8%;
    border-radius: 60px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    box-shadow: 0 50px 150px rgba(0,0,0,0.9), 0 0 50px rgba(212, 175, 55, 0.03);
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
    z-index: 2;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 60px;
}

.showcase-image-container {
    position: relative;
    flex: 1;
    max-width: 580px;
    margin: 0;
}

.showcase-image img {
    width: 100%;
    border-radius: 45px;
    box-shadow: 
        0 40px 100px rgba(0,0,0,0.8),
        0 0 30px rgba(212, 175, 55, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.15);
    transition: transform 0.6s cubic-bezier(0.2, 0, 0.2, 1);
}

/* Floating Badges */
.floating-badge {
    position: absolute;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(212, 175, 55, 0.15);
    padding: 10px 15px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.5);
    animation: float 5s ease-in-out infinite;
    z-index: 3;
    transform-origin: center;
    scale: 0.85;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

.badge-1 { top: 5%; right: -20px; animation-delay: 0s; }
.badge-2 { bottom: 10%; left: -30px; animation-delay: 1s; }
.badge-3 { top: 40%; left: -50px; animation-delay: 0.5s; }

.badge-icon { font-size: 1.2rem; }
.badge-info small { display: block; font-size: 0.6rem; color: rgba(255,255,255,0.4); text-transform: uppercase; letter-spacing: 1.5px; }
.badge-info strong { font-size: 0.85rem; color: #fff; font-weight: 700; }

/* Content & Glass Grid */
.showcase-content {
    flex: 1;
    text-align: left;
}

.showcase-title {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    letter-spacing: -2px;
    line-height: 1.2;
    font-weight: 700;
    color: var(--gold);
}

.feature-glass-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 3rem;
}

.glass-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(212, 175, 55, 0.1);
    border-radius: 20px;
    padding: 25px;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.glass-card:hover {
    background: rgba(212, 175, 55, 0.05);
    border-color: var(--gold);
    transform: translateY(-10px);
}

.glass-icon { 
    display: flex;
    align-items: center;
    justify-content: flex-start;
    color: var(--gold);
    filter: drop-shadow(0 0 5px rgba(212, 175, 55, 0.2));
}
.glass-text h3 { font-size: 1.1rem; margin-bottom: 5px; color: #fff; }
.glass-text p { font-size: 0.85rem; color: rgba(255,255,255,0.6); line-height: 1.5; }

@media (max-width: 1100px) {
    .showcase { padding: 100px 0; }
    .flex-row { flex-direction: column; gap: 60px; }
    .gold-gradient-text { font-size: 2.5rem; }
    .floating-badge { display: none; }
}

/* About Section */
.about {
    padding: 150px 0;
    background: #080808;
    position: relative;
}

.about-panel {
    background: #111;
    background: linear-gradient(165deg, #181818 0%, #0d0d0d 100%);
    padding: 100px 10%;
    border-radius: 60px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    box-shadow: 0 50px 150px rgba(0,0,0,0.9), 0 0 50px rgba(212, 175, 55, 0.03);
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
    z-index: 2;
}

/* Decorative Gold Accent */
.about-panel::after {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 3px;
    background: var(--gold);
    border-radius: 0 0 10px 10px;
    box-shadow: 0 0 15px rgba(212,175,55,0.4);
}

.about-panel::before {
    content: '"';
    position: absolute;
    bottom: 20px;
    right: 60px;
    font-size: 20rem;
    font-family: 'Playfair Display', serif;
    color: var(--gold);
    opacity: 0.05;
    line-height: 0;
    pointer-events: none;
}

.about-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 60px;
    align-items: flex-start;
}

.about-header {
    text-align: left;
    position: sticky;
    top: 150px;
    padding-right: 40px;
    border-right: 1px solid rgba(212, 175, 55, 0.15);
}

.about-header h2 {
    font-size: 3.5rem;
    margin-bottom: 5px;
    line-height: 1;
    letter-spacing: -2px;
}

.about-header h4 {
    font-size: 0.85rem;
    margin-bottom: 40px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 800;
}

.about-badge {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 40px;
    padding: 20px;
    background: rgba(212, 175, 55, 0.03);
    border-radius: 20px;
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.about-badge span {
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 1px;
    color: var(--gold);
    line-height: 1.4;
}

.story-text {
    text-align: left;
}

.story-text p {
    font-size: 1.15rem;
    color: #cecece;
    line-height: 1.9;
    margin-bottom: 30px;
    font-weight: 300;
}

/* Drop Cap Styling */
.story-text p:first-of-type::first-letter {
    font-family: 'Playfair Display', serif;
    font-size: 4.5rem;
    float: left;
    margin-right: 15px;
    margin-top: 5px;
    line-height: 1;
    color: var(--gold);
    font-weight: 700;
    text-shadow: 2px 2px 0px rgba(0,0,0,0.5);
}

.story-text p strong {
    color: #fff;
    font-weight: 700;
    padding: 2px 4px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 4px;
}

/* Founder Signature Style */
.about-signature {
    margin-top: 60px;
    text-align: right;
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 1.4rem;
    color: var(--gold);
    opacity: 0.8;
}

@media (max-width: 1100px) {
    .about-panel {
        padding: 60px 30px;
        margin: 0 20px;
        border-radius: 40px;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-header {
        position: relative;
        top: 0;
        padding-right: 0;
        border-right: none;
        border-bottom: 1px solid rgba(212, 175, 55, 0.15);
        padding-bottom: 40px;
        text-align: center;
    }

    .about-badge {
        justify-content: center;
    }
    
    .about-header h2 {
        font-size: 2.8rem;
    }
    
    .story-text p {
        font-size: 1.1rem;
    }
}

/* Pricing Section - Premium Stacked Overlap Layout */
.pricing {
    padding: 120px 0;
    background: #0D0D0D;
    position: relative;
    overflow: hidden;
}

.pricing .container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.pricing-grid {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-top: 100px;
    padding: 20px;
    position: relative;
    min-height: 700px;
}

.pricing-card {
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
    width: 340px;
    min-height: 600px;
    border-radius: 40px;
    padding: 60px 40px;
    display: flex;
    flex-direction: column;
    text-align: center;
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    flex-shrink: 0;
}

/* Depth and Overlap Logic */
.pricing-card:nth-child(1) {
    z-index: 1;
    transform: translateX(60px) scale(0.9);
    opacity: 0.6;
}

.pricing-card:nth-child(2) {
    z-index: 10;
    transform: scale(1.1);
    border: 2px solid var(--gold);
    box-shadow: 0 30px 100px rgba(0,0,0,0.8), 0 0 40px rgba(212, 175, 55, 0.15);
    background: linear-gradient(135deg, #222 0%, #0d0d0d 100%);
}

.pricing-card:nth-child(3) {
    z-index: 1;
    transform: translateX(-60px) scale(0.9);
    opacity: 0.6;
}

/* Hover States for Desktop */
@media (min-width: 1101px) {
    .pricing-card:hover {
        z-index: 20 !important;
        transform: scale(1.15) !important;
        opacity: 1 !important;
        border-color: var(--gold);
        box-shadow: 0 40px 120px rgba(0,0,0,0.9), 0 0 60px rgba(212, 175, 55, 0.3);
    }
}

.pricing-card h3 {
    font-size: 1.5rem;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 30px;
}

.popular-tag, .value-tag {
    position: absolute;
    top: -18px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gold);
    color: #000;
    padding: 10px 30px;
    border-radius: 50px;
    font-weight: 900;
    font-size: 0.7rem;
    white-space: nowrap;
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.2);
    letter-spacing: 1px;
}

.value-tag {
    background: #fff;
    box-shadow: 0 10px 20px rgba(255,255,255,0.1);
}

.price {
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
    align-items: baseline;
}

.currency {
    font-size: 1.2rem;
    color: var(--gold);
    font-weight: 600;
    margin-right: 5px;
}

.amount {
    font-size: 5rem;
    font-weight: 800;
    color: #fff;
    line-height: 1;
}

.period {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-left: 5px;
}

.total-price {
    color: var(--gold);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 40px;
    opacity: 0.8;
}

.pricing-features {
    list-style: none;
    text-align: left;
    margin-bottom: 50px;
}

.pricing-features li {
    margin-bottom: 18px;
    color: var(--text-secondary);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
}

.pricing-features li::before {
    content: '★';
    color: var(--gold);
    margin-right: 15px;
    font-size: 0.8rem;
}

.secure-payment {
    margin-top: 60px;
    font-size: 0.85rem;
    color: var(--text-secondary);
    opacity: 0.5;
}

/* Responsive Table */
@media (max-width: 1100px) {
    .pricing-grid {
        flex-direction: column;
        height: auto;
        min-height: auto;
        padding-top: 50px;
    }
    
    .pricing-card {
        width: 100%;
        max-width: 400px;
        transform: none !important;
        margin: 0 0 40px 0 !important;
        opacity: 1 !important;
        min-height: auto;
    }
}

/* Testimonials */
.testimonials {
    padding: 100px 0;
    background: radial-gradient(circle at 10% 90%, #151515 0%, #0d0d0d 100%);
    border-top: 1px solid rgba(212, 175, 55, 0.1);
    position: relative;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(rgba(212, 175, 55, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.testimonial-card {
    background: var(--card-bg);
    padding: 40px 30px;
    border-radius: 24px;
    border: 1px solid var(--card-border);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    position: relative;
    overflow: hidden;
}

.quote-icon-small {
    position: absolute;
    top: 20px;
    right: 25px;
    opacity: 0.1;
    color: var(--gold);
}

.gold-svg-small {
    filter: drop-shadow(0 0 2px rgba(212, 175, 55, 0.5));
}

.floating-card {
    animation: floating-slight 6s ease-in-out infinite;
}

.floating-card:nth-child(even) {
    animation-delay: 1s;
    animation-duration: 7s;
}

.floating-card:nth-child(3n) {
    animation-delay: 2s;
    animation-duration: 5s;
}

@keyframes floating-slight {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

.testimonial-card:hover {
    border-color: var(--gold);
    transform: translateY(-20px) scale(1.02) !important;
    box-shadow: 0 30px 60px rgba(212, 175, 55, 0.15), 0 0 20px rgba(212, 175, 55, 0.05);
    z-index: 10;
    animation-play-state: paused;
    background: linear-gradient(145deg, #1e1e1e, #1a1a1a);
}

.testimonial-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.05), transparent);
    transition: 0.5s;
}

.testimonial-card:hover::after {
    left: 100%;
}

.stars {
    color: var(--gold);
    font-size: 1.2rem;
    margin-bottom: 15px;
    letter-spacing: 2px;
}

.testimonial-text {
    font-size: 1rem;
    font-style: italic;
    color: var(--text-primary);
    margin-bottom: 20px;
    line-height: 1.4;
}

.user-info-simple {
    margin-top: auto;
    padding-top: 15px;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.user-info-simple h4 {
    color: var(--gold);
    font-size: 1.1rem;
    margin: 0;
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-weight: 700;
}

.user-info-simple span {
    color: var(--text-secondary);
    font-size: 0.8rem;
}

/* Footer */
#footer {
    padding: 60px 0;
    border-top: 1px solid rgba(255,255,255,0.05);
    text-align: center;
}

.footer-content p {
    margin-top: 20px;
    color: var(--text-secondary);
}

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

.fade-in {
    animation: fadeInUp 1s ease forwards;
}

.hero-content h1 { animation-delay: 0.2s; }
.hero-content p { animation-delay: 0.4s; }
.hero-btns { animation-delay: 0.6s; }
.hero-image { animation-delay: 0.8s; }

@keyframes floating {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}

.floating {
    animation: floating 4s ease-in-out infinite;
}

/* Responsive */
@media (max-width: 968px) {
    .hero .container, .flex-row {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
        gap: 20px;
    }
    
    .hero-content p {
        margin: 0 auto 40px;
    }
    
    .btn-secondary {
        margin-left: 0;
        margin-top: 20px;
        width: 100%;
        display: block;
    }
    
    .btn-primary-large {
        width: 100%;
        display: block;
    }
    
    .nav-links {
        display: none;
    }
}
