:root {
    --bg-dark: #0a0a0a;
    --bg-card: #141414;
    --text-main: #ffffff;
    --text-muted: #a0a0a0;

    /* Gold Palette */
    --gold-100: #FFF9C4;
    --gold-300: #FFF176;
    --gold-500: #FFD700;
    --gold-600: #DAA520;
    --gold-700: #B8860B;
    --gold-gradient: linear-gradient(135deg, #FFD700 0%, #B8860B 100%);
    --gold-glow: 0 0 20px rgba(255, 215, 0, 0.3);

    --font-main: 'Outfit', sans-serif;
    --transition: all 0.3s ease;
    --lime-green: #ccff00;
    /* === CONTROLE DE ESPA�AMENTO FOGUETE === */
    --rocket-bottom-spacing: -20px;
    /* AJUSTE ESTE VALOR para controlar dist�ncia entre foguete e t�tulo */
    --rocket-top-spacing: -40px;
    /* distancia do TOPO ate o foguete */
    --founder-image-position-y: 72%;
    /* Ajuste vertical da foto (0% = topo, 100% = baixo) */
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: var(--font-main);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

a {
    text-decoration: none;
    color: inherit;
}

.text-white {
    color: var(--text-main) !important;
}

.text-lime {
    color: var(--lime-green) !important;
}

/* Typography */
h1,
h2,
h3 {
    font-weight: 700;
    line-height: 1.2;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Navbar */
.navbar {
    padding: 20px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 215, 0, 0.1);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gold-500);
    letter-spacing: 1px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-links a {
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--gold-500);
}

.btn-gold-outline {
    border: 1px solid var(--gold-500);
    padding: 8px 20px;
    border-radius: 50px;
    color: var(--gold-500);
}

.btn-gold-outline:hover {
    background: var(--gold-500);
    color: var(--bg-dark);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 100px;
    padding-bottom: 50px;
    background: radial-gradient(circle at center, #1a1a1a 0%, #0a0a0a 70%);
}

.profile-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    width: 100%;
}

.profile-image-container {
    position: relative;
    width: 200px;
    height: 200px;
    margin-bottom: 20px;
}

.profile-image {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    object-position: 35% var(--founder-image-position-y);
    border: 4px solid var(--gold-600);
    box-shadow: 0 0 30px rgba(218, 165, 32, 0.4);
    z-index: 2;
    position: relative;

}

.gold-ring {
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border-radius: 50%;
    border: 2px solid var(--gold-500);
    animation: spin 10s linear infinite;
    opacity: 0.6;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.hero-name {
    font-size: 5rem;
    position: relative;
    margin: -15px;
    line-height: 1;
}

/* Golden Energy Text Effect */
.energy-text {
    color: transparent;
    background: linear-gradient(90deg,
            #B8860B 0%,
            #FFD700 25%,
            #FFF9C4 50%,
            #FFD700 75%,
            #B8860B 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    animation: shine 3s linear infinite;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.2);
}

@keyframes shine {
    to {
        background-position: 200% center;
    }
}

.hero-title {
    font-size: 1.5rem;
    color: var(--gold-300);
    margin-bottom: 0.5rem;
}

.hero-subtitle {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-main);
    max-width: 800px;
    margin-bottom: 2rem;
    line-height: 1.2;
}

.text-danger {
    color: #FF4444;
    display: block;
    margin-bottom: 2px;
}

.subtitle-secondary {
    font-size: 0.85em;
    color: var(--text-main);
    display: block;
}

.hero-subtitle .highlight {
    color: var(--gold-500);
}

.hero-stats {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.hero-stat-badge {
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid var(--gold-500);
    padding: 10px 25px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    backdrop-filter: blur(5px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.hero-stat-badge .stat-number {
    color: var(--gold-500);
    font-weight: 700;
    font-size: 1.2rem;
}

.hero-stat-badge .stat-text {
    color: var(--text-main);
    font-weight: 400;
    font-size: 1rem;
}

.btn-gold {
    background: var(--gold-gradient);
    color: var(--bg-dark);
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
    display: inline-block;
}

.btn-gold:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.5);
}

.pulsate {
    animation: pulse-gold 2s infinite;
}

@keyframes pulse-gold {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 215, 0, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(255, 215, 0, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 215, 0, 0);
    }
}

/* Sections */
.section {
    padding: 100px 0;
}

/* Portfolio Section */
.portfolio-section {
    background: var(--bg-dark);
    text-align: center;
}

.section-subtitle {
    color: var(--text-muted);
    margin-bottom: 40px;
    font-size: 1.1rem;
}

.video-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-bottom: 50px;
}

.portfolio-video {
    width: 100%;
    max-width: 280px;
    border-radius: 15px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: var(--transition);
    aspect-ratio: 9/16;
    object-fit: cover;
    background: #000;
}

.portfolio-video:hover {
    border-color: var(--gold-500);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(255, 215, 0, 0.15);
}

.portfolio-cta {
    margin-top: 40px;
}

.large-btn {
    padding: 15px 40px;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.small-text {
    margin-top: 10px;
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* About Section */
.about-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: start;
}

.about-headline {
    font-size: 2.2rem;
    color: var(--gold-500);
    margin-bottom: 25px;
    line-height: 1.3;
}

.about-content-box {
    background: linear-gradient(90deg, rgba(255, 215, 0, 0.03) 0%, transparent 100%);
    border-left: 3px solid var(--gold-500);
    padding: 30px;
    border-radius: 0 15px 15px 0;
    margin-bottom: 40px;
    position: relative;
}

.about-content-box::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 0% 50%, rgba(255, 215, 0, 0.05), transparent 50%);
    pointer-events: none;
}

.about-content-box p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    color: var(--text-muted);
    position: relative;
    z-index: 1;
}

.about-content-box p:last-child {
    margin-bottom: 0;
}

.about-content-box .highlight {
    color: var(--text-main);
    font-weight: 700;
    border-bottom: 1px solid var(--gold-500);
    padding-bottom: 2px;
}

.impact-statement {
    font-size: 1.4rem;
    color: #FF4444 !important;
    text-align: center;
    font-weight: 700;
    margin: 30px 0;
    letter-spacing: 0.5px;
}

.lead-text {
    font-size: 1.15rem;
    color: var(--text-main);
    line-height: 1.8;
}

/* Methodology Card */
.methodology-card {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.05) 0%, rgba(184, 134, 11, 0.02) 100%);
    backdrop-filter: blur(10px);
    border: 2px solid transparent;
    border-image: linear-gradient(135deg, var(--gold-500) 0%, var(--gold-700) 100%) 1;
    border-radius: 25px;
    padding: 40px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.methodology-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.08) 0%, transparent 70%);
    animation: rotate-glow 20s linear infinite;
    pointer-events: none;
}

@keyframes rotate-glow {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.methodology-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 25px;
    padding: 2px;
    background: linear-gradient(135deg, var(--gold-500), var(--gold-700), var(--gold-500));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.methodology-card:hover::after {
    opacity: 1;
}

.methodology-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 60px rgba(255, 215, 0, 0.25);
}

.methodology-card h3 {
    font-size: 1.8rem;
    color: var(--gold-500);
    margin-bottom: 30px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 15px;
    position: relative;
    z-index: 1;
    letter-spacing: 0.5px;
}

.methodology-card h3 i {
    font-size: 2rem;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.3));
    animation: pulse-brain 2s ease-in-out infinite;
}

@keyframes pulse-brain {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}

.methodology-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
    position: relative;
    z-index: 1;
}

.methodology-card ul li {
    padding: 18px 0;
    padding-left: 45px;
    position: relative;
    font-size: 1.05rem;
    line-height: 1.6;
    color: var(--text-muted);
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(255, 215, 0, 0.08);
}

.methodology-card ul li:last-child {
    border-bottom: none;
}

.methodology-card ul li:hover {
    color: var(--text-main);
    padding-left: 50px;
}

.methodology-card ul li i {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.3rem;
    color: var(--gold-500);
    transition: all 0.3s ease;
}

.methodology-card ul li:hover i {
    transform: translateY(-50%) scale(1.2) rotate(360deg);
    filter: drop-shadow(0 0 8px rgba(255, 215, 0, 0.6));
}

.methodology-card ul li strong {
    color: var(--gold-300);
    font-weight: 600;
    margin-right: 5px;
    transition: color 0.3s ease;
}

.methodology-card ul li:hover strong {
    color: var(--gold-500);
}

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.service-card {
    background: var(--bg-card);
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--gold-500);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.service-icon {
    font-size: 2.5rem;
    color: var(--gold-500);
    margin-bottom: 20px;
}

.service-card h3 {
    margin-bottom: 15px;
    color: var(--text-main);
}

.service-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Expertise Section */
.expertise-subtitle {
    text-align: center;
    font-size: 1.4rem;
    color: var(--text-muted);
    margin-top: -2rem;
    margin-bottom: 3rem;
    font-weight: 300;
    letter-spacing: 1px;
}

/* Contact Section */
.contact-section {
    text-align: center;
    padding-bottom: 100px;
}

.contact-subtitle {
    color: var(--text-muted);
    font-size: 1.2rem;
    margin-bottom: 50px;
}

.contact-buttons {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.contact-btn {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px 30px;
    border-radius: 20px;
    background: var(--bg-card);
    border: 2px solid;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    min-width: 300px;
    max-width: 400px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.contact-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: 0.6s;
}

.contact-btn:hover::before {
    left: 100%;
}

/* WhatsApp Styling */
.whatsapp-btn {
    border-color: #25D366;
    background: linear-gradient(135deg, rgba(37, 211, 102, 0.1) 0%, rgba(37, 211, 102, 0.05) 100%);
}

.whatsapp-btn .icon-wrapper {
    font-size: 3rem;
    color: #25D366;
    transition: var(--transition);
}

.whatsapp-btn:hover {
    background: #25D366;
    border-color: #128C7E;
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(37, 211, 102, 0.4);
}

.whatsapp-btn:hover .text-wrapper,
.whatsapp-btn:hover .icon-wrapper {
    color: white;
}

/* Telegram Styling */
.telegram-btn {
    border-color: #0088cc;
    background: linear-gradient(135deg, rgba(0, 136, 204, 0.1) 0%, rgba(0, 136, 204, 0.05) 100%);
}

.telegram-btn .icon-wrapper {
    font-size: 3rem;
    color: #0088cc;
    transition: var(--transition);
}

.telegram-btn:hover {
    background: #0088cc;
    border-color: #006699;
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 136, 204, 0.4);
}

.telegram-btn:hover .text-wrapper,
.telegram-btn:hover .icon-wrapper {
    color: white;
}

.icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.text-wrapper {
    text-align: left;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.text-wrapper .label {
    font-size: 0.85rem;
    margin-bottom: 4px;
    transition: color 0.3s ease;
}

.whatsapp-btn .text-wrapper .label {
    color: #25D366;
}

.telegram-btn .text-wrapper .label {
    color: #0088cc;
}

.text-wrapper .value {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--text-main);
    transition: color 0.3s ease;
}

/* Instagram Display */
.instagram-display {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 15px 30px;
    border-radius: 15px;
    background: linear-gradient(135deg, rgba(225, 48, 108, 0.1) 0%, rgba(193, 53, 132, 0.05) 100%);
    border: 2px solid transparent;
    background-image: linear-gradient(var(--bg-dark), var(--bg-dark)),
        linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    background-origin: border-box;
    background-clip: padding-box, border-box;
    margin-bottom: 40px;
    transition: all 0.3s ease;
}

.instagram-display:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(225, 48, 108, 0.3);
}

.instagram-display i {
    font-size: 2rem;
    background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.instagram-display span {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-main);
    letter-spacing: 0.5px;
}

/* Impact Quote */
.impact-quote {
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.2rem;
    line-height: 1.8;
    color: rgba(160, 160, 160, 0.7);
    font-style: italic;
    font-weight: 300;
    padding: 30px 20px;
    position: relative;
}

.impact-quote::before {
    content: '"';
    font-size: 4rem;
    position: absolute;
    top: -10px;
    left: -10px;
    color: rgba(255, 215, 0, 0.1);
    font-family: Georgia, serif;
}

/* Footer */
footer {
    padding: 40px 0;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-muted);
}

/* Responsive */
@media (max-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .methodology-card {
        padding: 35px;
    }

    .about-headline {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .hero-name {
        font-size: 3.5rem;
    }

    .section-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    /* About Section Mobile Fix */
    .about-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .about-headline {
        font-size: 1.8rem;
        margin-bottom: 20px;
        text-align: center;
    }

    .about-content-box {
        padding: 20px;
        margin-bottom: 30px;
    }

    .about-content-box p {
        font-size: 1rem;
    }

    .lead-text {
        font-size: 1.05rem;
    }

    .impact-statement {
        font-size: 1.2rem;
        margin: 20px 0;
    }

    .methodology-card {
        padding: 25px;
        border-radius: 20px;
    }

    .methodology-card h3 {
        font-size: 1.5rem;
        margin-bottom: 20px;
        justify-content: center;
        text-align: center;
    }

    .methodology-card h3 i {
        font-size: 1.6rem;
    }

    .methodology-card ul li {
        font-size: 0.95rem;
        padding: 15px 0;
        padding-left: 40px;
    }

    .impact-quote {
        font-size: 1.05rem;
        padding: 20px 15px;
    }

    .instagram-display {
        padding: 12px 25px;
    }

    .instagram-display i {
        font-size: 1.6rem;
    }

    .instagram-display span {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 1.6rem;
        margin-bottom: 1.5rem;
    }

    .nav-links {
        gap: 8px;
    }

    .nav-links a {
        font-size: 0.7rem;
        padding: 6px 8px;
        max-width: 70px;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    /* About Section Extra Small Screens */
    .about-headline {
        font-size: 1.4rem;
        line-height: 1.4;
    }

    .about-content-box {
        padding: 15px;
        border-radius: 0 10px 10px 0;
    }

    .about-content-box p {
        font-size: 0.95rem;
        margin-bottom: 15px;
    }

    .lead-text {
        font-size: 1rem;
    }

    .impact-statement {
        font-size: 1.1rem;
        margin: 15px 0;
    }

    .methodology-card {
        padding: 20px;
        border-radius: 15px;
    }

    .methodology-card h3 {
        font-size: 1.3rem;
        margin-bottom: 15px;
        flex-direction: column;
        gap: 10px;
    }

    .methodology-card h3 i {
        font-size: 1.5rem;
    }

    .methodology-card ul li {
        font-size: 0.9rem;
        padding: 12px 0;
        padding-left: 35px;
    }

    .methodology-card ul li i {
        font-size: 1.1rem;
    }
}

/* Medium-small screens - fix for 401-422px range */
@media (min-width: 401px) and (max-width: 422px) {
    .logo {
        font-size: 1.15rem;
    }

    .nav-links {
        gap: 8px;
    }

    .nav-links a {
        font-size: 0.7rem;
        padding: 6px 8px;
        max-width: 70px;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .btn-gold-outline {
        padding: 6px 10px;
        font-size: 0.65rem;
        white-space: nowrap;
    }
}

/* Extra small screens */
@media (max-width: 400px) {
    .logo {
        font-size: 1.2rem;
    }

    .nav-links {
        gap: 6px;
    }

    .nav-links a {
        font-size: 0.65rem;
        padding: 5px 6px;
        max-width: 60px;
    }

    .btn-gold-outline {
        padding: 5px 8px;
        font-size: 0.6rem;
        white-space: nowrap;
    }
}

/* Very small screens - use abbreviated text */
@media (max-width: 360px) and (max-width: 300px) {
    .logo {
        font-size: 1.1rem;
    }

    .navbar .container {
        padding: 0 10px;
    }

    .nav-links {
        gap: 4px;
    }

    .nav-links a {
        font-size: 0.6rem;
        padding: 4px 5px;
        max-width: 50px;
    }

    .btn-gold-outline {
        padding: 4px 6px;
        font-size: 0.55rem;
    }

    /* Hide link text and show only first letter or abbreviation on very small screens */
    .nav-links a[href="#about"]::before {
        content: "About";
    }

    .nav-links a[href="#services"]::before {
        content: "Work";
    }

    .nav-links a[href="#contact"]::before {
        content: "Contact";
    }
}

/* Rocket Animation */
.rocket-animation-container {
    margin-top: var(--rocket-top-spacing);
    position: relative;
    width: 200px;
    height: 200px;
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.rocket-icon {
    font-size: 8rem;
    color: #FF4444;
    filter: drop-shadow(0 0 20px rgba(255, 68, 68, 0.6));
    animation: rocket-hover 3s ease-in-out infinite;
    z-index: 10;
    transform: rotate(-45deg);
}

.rocket-exhaust {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 40px;
    background: linear-gradient(to bottom, rgba(255, 100, 0, 0.8), transparent);
    filter: blur(5px);
    animation: exhaust-pulse 0.5s infinite alternate;
    z-index: 5;
}

@keyframes exhaust-pulse {
    0% {
        height: 40px;
        opacity: 0.8;
    }

    100% {
        height: 60px;
        opacity: 0.4;
    }
}

/* Sales Notifications */
.sale-notification {
    position: absolute;
    background: rgba(20, 20, 20, 0.9);
    border: 1px solid rgba(255, 215, 0, 0.3);
    backdrop-filter: blur(10px);
    padding: 8px 15px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    opacity: 0;
    pointer-events: none;
    z-index: 20;
    min-width: 140px;
}

.sale-icon {
    color: #25D366;
    /* Green for success */
    font-size: 1.2rem;
}

.sale-details {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.sale-platform {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
}

.sale-amount {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-main);
}

/* Animation Sequence */
.sale-notification.n1 {
    animation: float-up-fade 4s ease-in-out infinite;
    animation-delay: 0s;
    right: -20px;
    bottom: 0;
}

.sale-notification.n2 {
    animation: float-up-fade 4s ease-in-out infinite;
    animation-delay: 1.5s;
    left: -30px;
    bottom: 20px;
}

.sale-notification.n3 {
    animation: float-up-fade 4s ease-in-out infinite;
    animation-delay: 3s;
    right: -10px;
    top: 20px;
}

@keyframes float-up-fade {
    0% {
        opacity: 0;
        transform: translateY(20px) scale(0.9);
    }

    10% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }

    80% {
        opacity: 1;
        transform: translateY(-40px) scale(1);
    }

    100% {
        opacity: 0;
        transform: translateY(-60px) scale(0.95);
    }
}

/* Rocket Animation Fixes */
.rocket-animation-container {
    width: 260px !important;
    height: 260px !important;
    perspective: 1000px;
}

.rocket-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.5));
    animation: rocket-fly 4s ease-in-out infinite;
    z-index: 10;
}

.rocket-icon,
.rocket-exhaust {
    display: none !important;
}

@keyframes rocket-fly {
    0% {
        transform: translateY(0) rotate(0deg);
    }

    25% {
        transform: translateY(-15px) rotate(2deg);
    }

    50% {
        transform: translateY(0) rotate(0deg);
    }

    75% {
        transform: translateY(-10px) rotate(-2deg);
    }

    100% {
        transform: translateY(0) rotate(0deg);
    }
}

/* === PREMIUM ROCKET & NOTIFICATIONS OVERRIDE === */
.rocket-animation-container {
    margin-top: var(--rocket-top-spacing) !important;
    `r`n position: relative !important;
    width: 280px !important;
    height: 280px !important;
    margin-bottom: var(--rocket-bottom-spacing) !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    perspective: 1000px !important;
}

.rocket-animation-container::before {
    content: '' !important;
    position: absolute !important;
    width: 120% !important;
    height: 120% !important;
    background: radial-gradient(circle, rgba(255, 68, 68, 0.2) 0%, rgba(255, 215, 0, 0.05) 50%, transparent 70%) !important;
    filter: blur(20px) !important;
    z-index: 1 !important;
    animation: glow-pulse 4s ease-in-out infinite alternate !important;
}

@keyframes glow-pulse {
    0% {
        opacity: 0.5;
        transform: scale(0.9);
    }

    100% {
        opacity: 0.8;
        transform: scale(1.1);
    }
}

.rocket-img {
    width: 100% !important;
    height: 100% !important;
    object-fit: contain !important;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.6)) !important;
    animation: rocket-float 6s ease-in-out infinite !important;
    z-index: 10 !important;
    position: relative !important;
}

@keyframes rocket-float {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    25% {
        transform: translateY(-15px) rotate(1deg);
    }

    50% {
        transform: translateY(-5px) rotate(-1deg);
    }

    75% {
        transform: translateY(-20px) rotate(0.5deg);
    }
}

.sale-notification {
    position: absolute !important;
    background: rgba(15, 15, 15, 0.95) !important;
    border: 1px solid rgba(255, 215, 0, 0.2) !important;
    backdrop-filter: blur(12px) !important;
    padding: 10px 16px !important;
    border-radius: 50px !important;
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.6) !important;
    opacity: 0 !important;
    pointer-events: none !important;
    z-index: 20 !important;
    min-width: 180px !important;
    transform: translateY(20px) scale(0.9) !important;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) !important;
}

.sale-notification.active {
    opacity: 1 !important;
    transform: translateY(0) scale(1) !important;
}

.sale-notification.exit {
    opacity: 0 !important;
    transform: translateY(-30px) scale(0.95) !important;
    transition: all 0.5s ease-in !important;
}

.sale-icon-wrapper {
    width: 32px !important;
    height: 32px !important;
    background: rgba(37, 211, 102, 0.1) !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex-shrink: 0 !important;
}

.sale-icon-wrapper i {
    color: #25D366 !important;
    font-size: 0.9rem !important;
}

.sale-content {
    display: flex !important;
    flex-direction: column !important;
    line-height: 1.1 !important;
}

.sale-amount {
    font-size: 0.95rem !important;
    font-weight: 700 !important;
    color: var(--text-main) !important;
    letter-spacing: 0.3px !important;
}

.sale-platform {
    font-size: 0.7rem !important;
    color: var(--text-muted) !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    margin-top: 2px !important;
}

.sale-time {
    margin-left: auto !important;
    font-size: 0.65rem !important;
    color: rgba(255, 255, 255, 0.3) !important;
    padding-left: 8px !important;
}




/* === ROCKET ANIMATION === */

.rocket-animation-container {
    margin-top: var(--rocket-top-spacing);
    position: relative;
    width: 300px;
    height: 300px;
    margin: 0 auto var(--rocket-bottom-spacing);
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Rocket Structure */
.rocket {
    position: relative;
    width: 60px;
    height: 80px;
    animation: rocket-orbit 12s linear infinite;
    z-index: 25;
    transform-origin: center center;
}

@keyframes rocket-orbit {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }

    25% {
        transform: translate(40px, -30px) rotate(15deg);
    }

    50% {
        transform: translate(0, -50px) rotate(0deg);
    }

    75% {
        transform: translate(-40px, -30px) rotate(-15deg);
    }

    100% {
        transform: translate(0, 0) rotate(0deg);
    }
}

.rocket-body {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 50px;
    background: linear-gradient(180deg, #ff4444 0%, #cc0000 100%);
    border-radius: 15px 15px 5px 5px;
    box-shadow: inset -3px 0 8px rgba(0, 0, 0, 0.3);
}

.rocket-body::before {
    content: '';
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-bottom: 20px solid #ff4444;
}

.rocket-window {
    position: absolute;
    top: 18px;
    left: 50%;
    transform: translateX(-50%);
    width: 14px;
    height: 14px;
    background: radial-gradient(circle, #87CEEB 30%, #4682B4 100%);
    border-radius: 50%;
    border: 2px solid #333;
    z-index: 2;
}

.rocket-fin {
    position: absolute;
    bottom: 5px;
    width: 0;
    height: 0;
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;
}

.rocket-fin-left {
    left: -8px;
    border-right: 12px solid #cc0000;
}

.rocket-fin-right {
    right: -8px;
    border-left: 12px solid #cc0000;
}

/* Rocket Flame */
.rocket-flame {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 25px;
    z-index: 24;
}

.flame {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
}

.flame-1 {
    width: 16px;
    height: 20px;
    background: linear-gradient(to bottom, #FFD700 0%, #FF8C00 50%, #FF4500 100%);
    animation: flame-flicker 0.15s infinite alternate;
}

.flame-2 {
    width: 12px;
    height: 16px;
    background: linear-gradient(to bottom, #FFFF00 0%, #FFD700 100%);
    animation: flame-flicker 0.2s infinite alternate-reverse;
    z-index: 1;
}

.flame-3 {
    width: 8px;
    height: 12px;
    background: #FFFF99;
    animation: flame-flicker 0.18s infinite;
    z-index: 2;
}

@keyframes flame-flicker {
    0% {
        transform: translateX(-50%) scaleY(1);
        opacity: 1;
    }

    100% {
        transform: translateX(-50%) scaleY(0.85);
        opacity: 0.8;
    }
}

/* Smoke Trail */
.smoke-trail {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.smoke {
    position: absolute;
    width: 15px;
    height: 15px;
    background: radial-gradient(circle, rgba(200, 200, 200, 0.4) 0%, transparent 70%);
    border-radius: 50%;
    animation: smoke-rise 3s ease-out infinite;
}

.smoke-1 {
    left: 50%;
    top: 50%;
    animation-delay: 0s;
}

.smoke-2 {
    left: 48%;
    top: 52%;
    animation-delay: 0.5s;
}

.smoke-3 {
    left: 52%;
    top: 54%;
    animation-delay: 1s;
}

.smoke-4 {
    left: 50%;
    top: 56%;
    animation-delay: 1.5s;
}

@keyframes smoke-rise {
    0% {
        transform: translateY(0) scale(0.5);
        opacity: 0.6;
    }

    50% {
        opacity: 0.3;
    }

    100% {
        transform: translateY(80px) scale(1.2);
        opacity: 0;
    }
}

/* Notifications Container */
#sales-notifications-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 10;
}

.sale-notification {
    position: absolute;
    background: linear-gradient(135deg, rgba(20, 20, 20, 0.75) 0%, rgba(10, 10, 10, 0.85) 100%);
    border: 1.5px solid rgba(255, 215, 0, 0.18);
    backdrop-filter: blur(10px);
    padding: 10px 18px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 11px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3), 0 2px 8px rgba(0, 0, 0, 0.2);
    opacity: 0;
    transform: translateY(20px) translateX(-10px) scale(0.85);
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 15;
    white-space: nowrap;
}

.sale-notification.active {
    opacity: 1;
    transform: translateY(0) translateX(0) scale(1);
}

.sale-notification.exit {
    opacity: 0;
    transform: translateY(-30px) translateX(10px) scale(0.9);
    transition: all 0.5s cubic-bezier(0.6, 0, 0.8, 0.4);
}

.sale-icon {
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, rgba(37, 211, 102, 0.15) 0%, rgba(37, 211, 102, 0.08) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 0 12px rgba(37, 211, 102, 0.2);
}

.sale-icon i {
    color: #25D366;
    font-size: 0.82rem;
}

.sale-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.sale-amount {
    font-size: 0.9rem;
    font-weight: 700;
    color: #FFD700;
    letter-spacing: 0.3px;
}

.sale-platform {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

@media (max-width: 768px) {
    .rocket-animation-container {
        width: 240px;
        height: 240px;
    }

    .rocket {
        transform: scale(0.85);
    }
}

/* === FOUNDER SECTION === */
.founder-section {
    background: linear-gradient(180deg, #0a0a0a 0%, #141414 50%, #0a0a0a 100%);
    padding: 80px 0;
}

.founder-card {
    display: flex;
    align-items: center;
    gap: 60px;
    max-width: 900px;
    margin: 0 auto;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.03) 0%, rgba(184, 134, 11, 0.01) 100%);
    border: 2px solid rgba(255, 215, 0, 0.15);
    border-radius: 30px;
    padding: 50px;
    position: relative;
    overflow: hidden;
}

.founder-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent 40%, rgba(255, 215, 0, 0.03) 50%, transparent 60%);
    animation: founder-shine 8s linear infinite;
}

@keyframes founder-shine {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.founder-image-wrapper {
    position: relative;
    flex-shrink: 0;
}

.founder-image {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    object-fit: cover;
    object-position: 35% var(--founder-image-position-y);
    border: 4px solid var(--gold-500);
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.3), 0 10px 40px rgba(0, 0, 0, 0.5);
    position: relative;
    z-index: 2;
}

.founder-glow {
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border-radius: 50%;
    border: 2px solid var(--gold-500);
    animation: founder-pulse 3s ease-in-out infinite;
    opacity: 0.5;
}

@keyframes founder-pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.5;
    }

    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

.founder-content {
    flex: 1;
    position: relative;
    z-index: 1;
}

.founder-name {
    font-size: 2.2rem;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
    margin-bottom: 8px;
    letter-spacing: 1px;
}

.founder-role {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 300;
}

.founder-quote {
    position: relative;
    padding: 20px 0;
    margin: 0;
}

.quote-icon {
    color: var(--gold-500);
    font-size: 1.5rem;
    opacity: 0.3;
    margin-bottom: 10px;
}

.founder-quote p {
    font-size: 1.15rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
    font-style: italic;
    font-weight: 300;
    margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .founder-card {
        flex-direction: column;
        text-align: center;
        gap: 30px;
        padding: 35px 25px;
    }

    .founder-image {
        width: 150px;
        height: 150px;
    }

    .founder-name {
        font-size: 1.8rem;
    }

    .founder-role {
        font-size: 0.95rem;
    }

    .founder-quote p {
        font-size: 1rem;
    }
}



/* Instagram dentro da se��o Founder */
.founder-content .instagram-display {
    margin-top: 20px;
}