@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;500;600;700;800;900&display=swap');

:root {
    --bg-dark: #07070c;
    --bg-card: rgba(13, 13, 25, 0.6);
    --bg-card-hover: rgba(20, 20, 38, 0.8);
    --primary: #00d2ff;
    --primary-glow: rgba(0, 210, 255, 0.4);
    --secondary: #a855f7;
    --secondary-glow: rgba(168, 85, 247, 0.4);
    --accent: #f43f5e;
    --text-main: #f8fafc;
    --text-muted: #94a3b8;
    --border: rgba(255, 255, 255, 0.08);
    --border-hover: rgba(0, 210, 255, 0.3);
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: var(--font-body);
    overflow-x: hidden;
    line-height: 1.6;
}

/* Background Gradients */
.bg-glow {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    filter: blur(150px);
    z-index: -1;
    pointer-events: none;
    opacity: 0.15;
}

.glow-top-left {
    background: var(--primary);
    top: -200px;
    left: -200px;
}

.glow-bottom-right {
    background: var(--secondary);
    bottom: -200px;
    right: -200px;
    position: fixed;
}

/* Scrollbar Customization */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: var(--bg-dark);
}
::-webkit-scrollbar-thumb {
    background: #1e1b4b;
    border-radius: 5px;
    border: 2px solid var(--bg-dark);
}
::-webkit-scrollbar-thumb:hover {
    background: var(--primary);
}

/* Header & Navigation */
header {
    position: fixed;
    top: 0 !important;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(7, 7, 12, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    transition: var(--transition);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.25rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-decoration: none;
    letter-spacing: -0.5px;
}

.logo span {
    color: var(--text-main);
    -webkit-text-fill-color: initial;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition);
    position: relative;
}

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

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    transition: var(--transition);
}

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

.cta-button {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #fff;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    font-size: 0.9rem;
    box-shadow: 0 4px 15px var(--primary-glow);
    transition: var(--transition);
    border: 1px solid transparent;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(168, 85, 247, 0.6);
}

/* Hamburger Menu */
.hamburger {
    display: none;
    cursor: pointer;
    background: none;
    border: none;
    color: var(--text-main);
    font-size: 1.5rem;
}

/* Sections General Styles */
section {
    padding: 8rem 2rem 6rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-subtitle {
    text-transform: uppercase;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 2px;
    color: var(--primary);
    margin-bottom: 0.5rem;
    display: inline-block;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #fff, var(--text-muted));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 4rem;
    padding-top: 10rem;
    padding-bottom: 4rem;
}

.hero-content {
    flex: 1.2;
}

.hero-tagline {
    background: rgba(0, 210, 255, 0.08);
    border: 1px solid var(--primary-glow);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    color: var(--primary);
    font-size: 0.85rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.hero-tagline span {
    width: 6px;
    height: 6px;
    background-color: var(--primary);
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 8px var(--primary);
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 3.8rem;
    line-height: 1.1;
    font-weight: 900;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #fff 40%, var(--primary) 70%, var(--secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-description {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    max-width: 580px;
}

.hero-actions {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    flex-wrap: wrap;
}

.hero-cta {
    padding: 1rem 2rem;
    font-size: 1.05rem;
}

.secondary-button {
    background: transparent;
    color: var(--text-main);
    border: 1px solid var(--border);
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    font-size: 1.05rem;
    transition: var(--transition);
}

.secondary-button:hover {
    border-color: var(--primary);
    background: rgba(0, 210, 255, 0.03);
    box-shadow: 0 0 15px rgba(0, 210, 255, 0.1);
}

.hero-visual {
    flex: 0.8;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.visual-sphere {
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, var(--secondary) 0%, transparent 70%);
    border-radius: 50%;
    position: absolute;
    filter: blur(40px);
    opacity: 0.3;
    animation: pulse 8s infinite alternate;
}

.visual-artwork {
    width: 100%;
    max-width: 400px;
    height: auto;
    filter: drop-shadow(0 0 30px rgba(0, 210, 255, 0.2));
    animation: float 6s ease-in-out infinite;
}

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-glow), var(--secondary-glow));
    opacity: 0;
    transition: var(--transition);
    z-index: -1;
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: var(--border-hover);
    box-shadow: 0 12px 30px rgba(0, 210, 255, 0.1);
    background: var(--bg-card-hover);
}

.service-card:hover::before {
    opacity: 0.05;
}

.service-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--primary);
    font-size: 1.75rem;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #fff;
    border-color: transparent;
    box-shadow: 0 4px 15px rgba(0, 210, 255, 0.3);
}

.service-title {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.service-description {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.service-link {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
}

.service-card:hover .service-link {
    color: var(--secondary);
    gap: 0.8rem;
}

/* Benefits Section */
.benefits-split {
    display: flex;
    align-items: center;
    gap: 5rem;
}

.benefits-content {
    flex: 1.1;
}

.benefits-visual {
    flex: 0.9;
    position: relative;
}

.benefits-visual img {
    width: 100%;
    border-radius: 24px;
    border: 1px solid var(--border);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.benefit-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 3rem;
}

.benefit-item {
    display: flex;
    gap: 1.5rem;
}

.benefit-icon-wrapper {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(168, 85, 247, 0.1);
    border: 1px solid rgba(168, 85, 247, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary);
    font-size: 1.25rem;
    flex-shrink: 0;
}

.benefit-title {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.35rem;
}

.benefit-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Testimonials Carousel Section */
.testimonials-slider {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
}

.testimonials-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-slide {
    min-width: 100%;
    padding: 1.5rem;
}

.testimonial-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    padding: 3rem 2.5rem;
    border-radius: 24px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    position: relative;
}

.quote-icon {
    position: absolute;
    top: 2rem;
    right: 2.5rem;
    font-size: 3rem;
    color: rgba(255, 255, 255, 0.03);
    font-family: var(--font-heading);
    font-weight: 900;
    line-height: 1;
}

.testimonial-text {
    font-size: 1.15rem;
    font-style: italic;
    color: var(--text-main);
    margin-bottom: 2rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--primary);
}

.author-name {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1rem;
}

.author-role {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.slider-controls {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2.5rem;
}

.control-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border);
    color: var(--text-main);
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.control-btn:hover {
    background: var(--primary);
    color: var(--bg-dark);
    border-color: transparent;
    box-shadow: 0 0 15px var(--primary-glow);
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--border);
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    width: 24px;
    border-radius: 4px;
    background: var(--primary);
}

/* Contact & Chatbot Layout */
.contact-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
}

.contact-form-wrapper {
    background: var(--bg-card);
    border: 1px solid var(--border);
    padding: 3rem;
    border-radius: 24px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.form-title {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

.form-input, .form-textarea {
    width: 100%;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border);
    padding: 0.9rem 1.2rem;
    border-radius: 12px;
    color: var(--text-main);
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: var(--transition);
}

.form-input:focus, .form-textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: rgba(0, 210, 255, 0.02);
    box-shadow: 0 0 10px rgba(0, 210, 255, 0.1);
}

.form-submit {
    width: 100%;
    padding: 1rem;
    border: none;
    border-radius: 12px;
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #fff;
    box-shadow: 0 4px 15px var(--primary-glow);
    transition: var(--transition);
}

.form-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(168, 85, 247, 0.5);
}

/* Interactive Chatbot */
.chatbot-wrapper {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 24px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 520px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.chatbot-header {
    background: linear-gradient(135deg, #101026, #1e1b4b);
    border-bottom: 1px solid var(--border);
    padding: 1.25rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.chatbot-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: 0 0 10px var(--primary-glow);
}

.chatbot-info h4 {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
}

.chatbot-status {
    font-size: 0.75rem;
    color: #10b981;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.chatbot-status::before {
    content: '';
    width: 6px;
    height: 6px;
    background-color: #10b981;
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 6px #10b981;
}

.chatbot-body {
    flex: 1;
    padding: 1.5rem;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    background: rgba(0, 0, 0, 0.15);
}

.chat-message {
    max-width: 80%;
    padding: 0.85rem 1.1rem;
    border-radius: 18px;
    font-size: 0.9rem;
    line-height: 1.4;
}

.message-bot {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border);
    color: var(--text-main);
    align-self: flex-start;
    border-bottom-left-radius: 4px;
}

.message-user {
    background: linear-gradient(135deg, #1e1b4b, #312e81);
    border: 1px solid rgba(168, 85, 247, 0.2);
    color: var(--text-main);
    align-self: flex-end;
    border-bottom-right-radius: 4px;
}

.bot-options {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.option-btn {
    background: rgba(0, 210, 255, 0.05);
    border: 1px solid var(--primary-glow);
    color: var(--primary);
    padding: 0.5rem 0.9rem;
    border-radius: 50px;
    font-size: 0.8rem;
    cursor: pointer;
    transition: var(--transition);
}

.option-btn:hover {
    background: var(--primary);
    color: var(--bg-dark);
    border-color: transparent;
    box-shadow: 0 0 10px var(--primary-glow);
}

.chatbot-input-area {
    border-top: 1px solid var(--border);
    padding: 1rem;
    display: flex;
    gap: 0.75rem;
    background: rgba(7, 7, 12, 0.4);
}

.chat-input {
    flex: 1;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border);
    padding: 0.75rem 1rem;
    border-radius: 50px;
    color: var(--text-main);
    font-family: var(--font-body);
    font-size: 0.9rem;
}

.chat-input:focus {
    outline: none;
    border-color: var(--primary);
}

.chat-send-btn {
    width: 44px;
    height: 44px;
    border: none;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.chat-send-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 0 15px var(--primary-glow);
}

/* Footer Section */
footer {
    border-top: 1px solid var(--border);
    background: #040408;
    padding: 5rem 2rem 2.5rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-brand p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-top: 1rem;
    max-width: 320px;
}

.footer-title {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-link {
    color: var(--text-muted);
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.95rem;
}

.footer-link:hover {
    color: var(--primary);
    padding-left: 4px;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* Scroll Animation Reveal Classes */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

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

@keyframes pulse {
    0% { transform: scale(1) translate(0px, 0px); }
    50% { transform: scale(1.1) translate(15px, -15px); }
    100% { transform: scale(1) translate(0px, 0px); }
}

/* Responsive Rules */
@media (max-width: 992px) {
    .hero {
        flex-direction: column;
        text-align: center;
        padding-top: 8rem;
    }
    .hero-description {
        margin: 0 auto 2.5rem;
    }
    .hero-actions {
        justify-content: center;
    }
    .hero-visual {
        margin-top: 2rem;
    }
    .benefits-split {
        flex-direction: column;
        gap: 3rem;
    }
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #07070c;
        border-bottom: 1px solid var(--border);
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
        text-align: center;
    }
    .nav-menu.show {
        display: flex;
    }
    .hamburger {
        display: block;
    }
    .hero-title {
        font-size: 2.8rem;
    }
    .section-title {
        font-size: 2rem;
    }
    .footer-container {
        grid-template-columns: 1fr;
    }
    /* Ajustes de responsividade da logo no cabeçalho */
    .logo-wrapper img {
        height: 50px !important; /* Reduz de 90px para 50px em celulares */
    }
    .logo-wrapper span.logo {
        font-size: 1.35rem !important; /* Reduz o tamanho do texto para caber ao lado do menu */
    }
    .nav-container {
        padding: 0.8rem 1.5rem !important;
    }
}

/* Ajustes adicionais para celulares muito pequenos (iPhone SE / telas < 375px) */
@media (max-width: 375px) {
    .logo-wrapper span.logo {
        font-size: 1.15rem !important;
    }
    .hero-title {
        font-size: 2.2rem;
    }
    .hero-actions {
        flex-direction: column;
        width: 100%;
    }
    .hero-actions .cta-button, 
    .hero-actions .secondary-button {
        width: 100%;
        text-align: center;
    }
}

/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: #fff;
    border-radius: 50%;
    text-align: center;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    animation: pulse-whatsapp 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    background-color: #20ba5a;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

.whatsapp-float svg {
    fill: currentColor;
}

@keyframes pulse-whatsapp {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Hide standard Google Translate widget completely and prevent page layout shifting */
#google_translate_element,
.skiptranslate,
.goog-te-banner-frame,
iframe.skiptranslate,
#goog-gt-tt,
.goog-te-balloon-frame {
    display: none !important;
    visibility: hidden !important;
    height: 0 !important;
    width: 0 !important;
}

html, body {
    top: 0px !important;
    position: static !important;
    margin-top: 0px !important;
    padding-top: 0px !important;
}

/* Premium Flag Dropdown Styling */
.custom-lang-selector {
    position: relative;
    display: inline-block;
}

.lang-select-btn:hover {
    border-color: var(--primary) !important;
    box-shadow: 0 0 10px var(--primary-glow) !important;
}

.lang-dropdown-menu.show {
    display: flex !important;
    animation: fadeInDropdown 0.2s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.lang-opt {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    width: 100%;
    background: transparent;
    border: none;
    padding: 0.6rem 1rem;
    border-radius: 10px;
    color: var(--text-muted);
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 500;
    text-align: left;
    cursor: pointer;
    transition: var(--transition);
}

.lang-opt:hover {
    color: var(--text-main);
    background: rgba(0, 210, 255, 0.08);
}

@keyframes fadeInDropdown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.lang-group-title {
    font-size: 0.65rem;
    font-weight: 800;
    color: var(--secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 0.6rem 0.8rem 0.3rem;
    margin-top: 0.4rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.lang-group-title:first-child {
    margin-top: 0;
}

/* Custom Scrollbar for Language Dropdown Menu */
.lang-dropdown-menu::-webkit-scrollbar {
    width: 6px;
}


/* Custom Scrollbar for Language Dropdown Menu */
.lang-dropdown-menu::-webkit-scrollbar {
    width: 6px;
}

.lang-dropdown-menu::-webkit-scrollbar-track {
    background: rgba(10, 10, 20, 0.5);
    border-radius: 10px;
}

.lang-dropdown-menu::-webkit-scrollbar-thumb {
    background: var(--primary); /* Neon Electric Blue */
    border-radius: 10px;
}

.lang-dropdown-menu::-webkit-scrollbar-thumb:hover {
    background: var(--secondary); /* Tech Purple on Hover */
}

/* ==========================================
   INTERACTIVE MASCOT ROBOTS STYLE SYSTEM
   ========================================== */
.robots-interaction-container {
    max-width: 800px;
    margin: 2rem auto 1rem;
    padding: 1.5rem;
    background: rgba(13, 13, 25, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    position: relative;
    overflow: visible;
}

.robots-stage {
    display: flex;
    justify-content: space-around;
    align-items: flex-end;
    height: 180px;
    position: relative;
}

.robot-character {
    width: 140px;
    height: 140px;
    position: relative;
    cursor: pointer;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.robot-character:hover {
    transform: scale(1.15);
}

/* Float Animations */
.tech-bot {
    animation: robot-float-left 3.5s ease-in-out infinite;
}

.law-bot {
    animation: robot-float-right 3.8s ease-in-out infinite;
    animation-delay: 0.3s;
}

@keyframes robot-float-left {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-10px) rotate(-1deg); }
}

@keyframes robot-float-right {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-12px) rotate(1.5deg); }
}

/* SVG Animations & Effects */
.robot-svg {
    width: 100%;
    height: 100%;
    overflow: visible;
}

.pulse-light {
    animation: led-pulse 1.5s infinite alternate;
}

@keyframes led-pulse {
    0% { opacity: 0.3; }
    100% { opacity: 1; filter: drop-shadow(0 0 3px var(--primary)); }
}

.antenna-tip {
    animation: blink-antenna 0.8s infinite alternate;
}

@keyframes blink-antenna {
    0% { opacity: 0.5; }
    100% { opacity: 1; filter: drop-shadow(0 0 5px var(--primary)); }
}

.robot-head {
    transition: transform 0.3s ease;
}

.robot-character:hover .robot-head {
    transform: translateY(-3px) rotate(1deg);
}

/* Dialog Bubbles */
.dialog-bubble {
    position: absolute;
    bottom: 125%;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(10, 10, 20, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 0.75rem 1rem;
    border-radius: 18px;
    font-size: 0.8rem;
    color: var(--text-main);
    line-height: 1.4;
    width: 200px;
    text-align: center;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
    z-index: 10;
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    transform: translate(-50%, 10px) scale(0.9);
}

.dialog-bubble.show {
    opacity: 1;
    transform: translate(-50%, 0) scale(1);
}

/* Bubble arrows */
.dialog-bubble::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border-width: 8px;
    border-style: solid;
    border-color: rgba(10, 10, 20, 0.95) transparent transparent transparent;
}

/* Adjust tech-bubble to glow cyan, law-bubble to glow purple */
#bubble-tech {
    border-color: rgba(0, 210, 255, 0.3);
    box-shadow: 0 8px 24px rgba(0, 210, 255, 0.15);
}

#bubble-law {
    border-color: rgba(168, 85, 247, 0.3);
    box-shadow: 0 8px 24px rgba(168, 85, 247, 0.15);
}

/* Unified Love Bubble */
.unified-bubble {
    position: relative;
    bottom: auto;
    left: auto;
    transform: none;
    width: 100%;
    margin-top: 1rem;
    background: linear-gradient(135deg, rgba(0, 210, 255, 0.08), rgba(168, 85, 247, 0.08));
    border: 1px solid rgba(255, 75, 114, 0.4);
    box-shadow: 0 8px 30px rgba(255, 75, 114, 0.15);
    padding: 1.25rem 1.75rem;
    border-radius: 20px;
    font-size: 0.95rem;
    animation: slideUpIn 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

.unified-bubble::after {
    display: none; /* No arrow needed for footer-style bubble */
}

@keyframes slideUpIn {
    from { opacity: 0; transform: translateY(15px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Floating Hearts */
.floating-heart {
    position: absolute;
    color: #ff4b72;
    font-size: 1.2rem;
    pointer-events: none;
    z-index: 5;
    animation: heart-float 1.8s ease-out forwards;
}

@keyframes heart-float {
    0% {
        transform: translateY(0) scale(0.5);
        opacity: 1;
    }
    100% {
        transform: translateY(-80px) translateX(var(--drift, 10px)) scale(1.2);
        opacity: 0;
    }
}

/* Responsive adjustment */
@media (max-width: 600px) {
    .robots-stage {
        height: 150px;
    }
    .robot-character {
        width: 100px;
        height: 100px;
    }
    .dialog-bubble {
        width: 160px;
        font-size: 0.75rem;
    }
}

