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

/* Variáveis CSS - Identidade Morphix Original (Roxo Gradiente) */
:root {
    --bg-primary: #05050f;
    --bg-dark: #0A0A12;
    --accent: #FE3FFF;
    --primary-blue: #3A56FF;
    --primary-pink: #FE3FFF;
    --gradient-primary: linear-gradient(135deg, var(--primary-blue), var(--primary-pink));
    --text-primary: #FFFFFF;
    --text-secondary: #B8B5FF;
    --white: #FFFFFF;
    --bg-card: rgba(25, 25, 35, 0.7);
    --border-soft: rgba(255, 255, 255, 0.1);
    --light-purple: #B8B5FF;
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
    --text-gray: #9ca3af;
}

/* Reset e Estilos Gerais */
*,
*::before,
*::after {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    color: var(--text-primary);
    background-color: var(--bg-primary);
    line-height: 1.6;
}


body {
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

section {
    padding: 6rem 0;
    position: relative;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.01em;
    color: var(--white);
}

p {
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: var(--white);
}

ul {
    list-style: none;
}

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




/* --- GLOBAL FLOATING NAVIGATION (v3 Style) --- */
.nav-v3 {
    position: fixed;
    top: 24px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1100px;
    background: rgba(10, 10, 20, 0.6);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid var(--glass-border);
    border-radius: 100px;
    padding: 12px 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    font-family: 'Outfit', sans-serif;
}

.nav-v3 .logo img {
    height: 40px;
    display: block;
}

.nav-links-v3 {
    display: flex;
    gap: 32px;
}

.nav-links-v3 a {
    color: var(--text-gray);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.nav-links-v3 a:hover,
.nav-links-v3 a.active {
    color: white;
}

.nav-cta-v3 {
    background: white;
    color: black;
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.nav-right-v3 {
    display: flex;
    align-items: center;
}

.nav-cta-v3:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
}

@media (max-width: 992px) {
    .nav-v3 {
        padding: 10px 20px;
        width: 95%;
        border-radius: 40px;
        top: 15px;
    }

    .nav-links-v3 {
        display: none;
    }

    .nav-right-v3 {
        display: flex;
        align-items: center;
        gap: 15px;
    }

    .nav-cta-v3 {
        padding: 6px 15px;
        font-size: 0.85rem;
    }

    .menu-toggle-v3 {
        display: flex !important;
        align-items: center;
        justify-content: center;
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.1);
        color: white;
        font-size: 1.2rem;
        cursor: pointer;
        padding: 8px;
        border-radius: 12px;
        z-index: 1001;
        width: 40px;
        height: 40px;
    }
}

/* --- MOBILE MENU OVERLAY (v3) --- */
.mobile-menu-v3 {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100%;
    background: #02020f;
    z-index: 2000;
    transition: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    padding: 30px;
}

.mobile-menu-v3.active {
    right: 0;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
}

.close-menu-v3 {
    background: transparent;
    border: none;
    color: white;
    font-size: 2.5rem;
    cursor: pointer;
}

.mobile-menu-links {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.mobile-menu-links a {
    color: white;
    font-size: 1.5rem;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
}

.mobile-menu-links a:hover {
    color: var(--primary-purple);
}

.mobile-menu-cta {
    background: var(--gradient-primary);
    padding: 15px;
    border-radius: 50px;
    text-align: center;
    font-weight: 700;
    margin-top: 20px;
}

.menu-toggle-v3 {
    display: none;
}

/* Hero Section Base */
.hero {
    position: relative;
    overflow: hidden;
    will-change: transform;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 26, 46, 0.5);
    /* Navy transparent */
    z-index: 0;
}

.hero-content {
    margin: 0 auto;
    text-align: center;
    z-index: 1;
    will-change: transform, opacity;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: rgba(247, 244, 239, 0.9);
    /* Off-white text */
    font-weight: 300;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.cta-button {
    display: inline-block;
    padding: 1.1rem 2.8rem;
    background: var(--accent);
    border-radius: 50px;
    color: var(--bg-dark);
    font-weight: 700;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
    border: none;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-secondary);
    z-index: -1;
    transition: opacity 0.3s ease;
    opacity: 0;
}

.cta-button:hover::before {
    opacity: 1;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(254, 63, 255, 0.3);
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 1;
}

.mouse {
    width: 30px;
    height: 50px;
    border: 2px solid var(--light-purple);
    border-radius: 20px;
    display: flex;
    justify-content: center;
    padding-top: 10px;
    margin-bottom: 10px;
}

.wheel {
    width: 4px;
    height: 8px;
    background-color: var(--primary-pink);
    border-radius: 2px;
    animation: scroll 1.5s infinite;
}

@keyframes scroll {
    0% {
        transform: translateY(0);
        opacity: 1;
    }

    100% {
        transform: translateY(15px);
        opacity: 0;
    }
}

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

.arrow span {
    display: block;
    width: 10px;
    height: 10px;
    border-bottom: 2px solid var(--light-purple);
    border-right: 2px solid var(--light-purple);
    transform: rotate(45deg);
    margin: -5px;
    animation: arrow 1.5s infinite;
}

.arrow span:nth-child(2) {
    animation-delay: 0.2s;
}

.arrow span:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes arrow {
    0% {
        opacity: 0;
        transform: rotate(45deg) translate(-5px, -5px);
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        transform: rotate(45deg) translate(5px, 5px);
    }
}

/* Partículas */
.particles-container {
    height: 100%;
    overflow: hidden;
    pointer-events: none;
}

.particle {
    position: absolute;
    border-radius: 50%;
    opacity: 0.5;
    will-change: transform;
    backface-visibility: hidden;
}

@keyframes float {
    0% {
        transform: translateY(0) translateX(0) rotate(0);
    }

    25% {
        transform: translateY(-20px) translateX(10px) rotate(90deg);
    }

    50% {
        transform: translateY(0) translateX(20px) rotate(180deg);
    }

    75% {
        transform: translateY(20px) translateX(10px) rotate(270deg);
    }

    100% {
        transform: translateY(0) translateX(0) rotate(360deg);
    }
}

/* Section Titles */
.section-title {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: inline-block;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    position: relative;
}

.section-title p {
    color: var(--light-purple);
    font-size: 1.1rem;
}

/* Mission & Values Section */
.mission-values {
    background-color: rgba(18, 18, 18, 0.9);
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.mission-wrapper {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 100%;
    max-width: 1200px;
    gap: 2rem;
    margin-bottom: 4rem;
}

.mission-container,
.values-container {
    width: 100%;
    max-width: 1200px;
    margin-bottom: 4rem;
}

.mission-container {
    flex: 1;
}

.mission-content,
.values-content {
    background: rgba(30, 30, 30, 0.7);
    border-radius: 15px;
    padding: 3rem;
    border: 1px solid rgba(120, 124, 170, 0.1);
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.mission-content::before,
.values-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-secondary);
    opacity: 0.05;
    z-index: -1;
}

.mission-content h3,
.values-content h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--white);
    text-align: center;
}

.mission-content p,
.values-content p {
    color: var(--light-purple);
    line-height: 1.8;
    margin-bottom: 0.8rem;
    font-size: 1.0rem;
    text-align: justify;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 1rem;
    width: 100%;
    max-width: 100%;
}

.value-item {
    text-align: center;
    background: rgba(30, 30, 30, 0.7);
    border-radius: 15px;
    padding: 2rem;
    border: 1px solid rgba(120, 124, 170, 0.1);
    transition: all 0.3s ease;
    height: 350px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: justify;
}

.value-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(82, 68, 205, 0.2);
}

.value-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--primary-pink);
}

.value-item h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.value-item p {
    color: var(--light-purple);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Processo */
.process {
    background-color: rgba(18, 18, 18, 0.8);
}

.process-timeline {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding: 2rem 0;
}

.process-timeline::before {
    content: '';
    position: absolute;
    width: 4px;
    height: 100%;
    background: var(--gradient-primary);
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

.step {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 4rem;
    position: relative;
}

.step:nth-child(even) {
    flex-direction: row-reverse;
}

.step-number {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    font-weight: 700;
    color: var(--white);
    margin-left: 2rem;
    z-index: 2;
    box-shadow: 0 0 20px rgba(138, 79, 255, 0.5);
}

.step:nth-child(even) .step-number {
    margin-left: 0;
    margin-right: 2rem;
}

.step-content {
    background: rgba(30, 30, 30, 0.7);
    border-radius: 15px;
    padding: 2rem;
    max-width: calc(50% - 100px);
    border: 1px solid rgba(120, 124, 170, 0.1);
    position: relative;
    z-index: 1;
}

.step-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-secondary);
    opacity: 0.05;
    z-index: -1;
    border-radius: 15px;
}

.step-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.step-content p {
    color: var(--light-purple);
    line-height: 1.6;
}

/* Serviços */
.services {
    background-color: rgba(18, 18, 18, 0.7);
}

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

.service-card {
    background: rgba(30, 30, 30, 0.7);
    border-radius: 15px;
    height: 350px;
    position: relative;
    overflow: hidden;
    perspective: 1000px;
}

.service-preview,
.service-details {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 2rem;
    backface-visibility: hidden;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-preview {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    transform: rotateY(0deg);
    border: 1px solid rgba(120, 124, 170, 0.1);
    border-radius: 15px;
}

.service-details {
    background: rgba(30, 30, 30, 0.9);
    transform: rotateY(180deg);
    display: flex;
    flex-direction: column;
    justify-content: center;
    border: 1px solid rgba(120, 124, 170, 0.1);
    border-radius: 15px;
}

.service-card:hover .service-preview {
    transform: rotateY(-180deg);
}

.service-card:hover .service-details {
    transform: rotateY(0);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--primary-pink);
    background: rgba(254, 63, 255, 0.1);
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.service-preview h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.service-preview p {
    color: var(--light-purple);
    line-height: 1.6;
}

.service-details h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.service-details p {
    color: var(--light-purple);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.service-button {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    background: var(--gradient-primary);
    border-radius: 50px;
    color: var(--white);
    font-weight: 600;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.service-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(254, 63, 255, 0.3);
}

/* Benefícios */
.benefits {
    background-color: rgba(18, 18, 18, 0.6);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.benefit-card {
    background: transparent;
    border: none;
    padding: 0;
    perspective: 1000px;
    height: 380px;
    transition: none;
}

.benefit-card:hover {
    transform: none;
    box-shadow: none;
}

.benefit-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    transform-style: preserve-3d;
}

.benefit-card:hover .benefit-card-inner {
    transform: rotateY(180deg);
}

.benefit-front,
.benefit-back {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    padding: 2.5rem 1.5rem;
    border-radius: 20px;
    background: rgba(30, 30, 30, 0.8);
    border: 1px solid rgba(120, 124, 170, 0.15);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.benefit-front {
    z-index: 2;
    transform: rotateY(0deg);
}

.benefit-back {
    transform: rotateY(180deg);
    background: linear-gradient(145deg, rgba(40, 40, 60, 0.9), rgba(20, 20, 30, 0.95));
    backdrop-filter: blur(15px);
    z-index: 1;
}

.benefit-stat {
    position: relative;
    width: 110px;
    height: 110px;
    margin: 0 auto 1.5rem;
    max-width: 100%;
}

.percentage {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--white);
    text-shadow: 0 0 10px rgba(58, 86, 255, 0.5);
}

.benefit-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0;
    color: var(--white);
    line-height: 1.3;
}

.benefit-back h3 {
    margin-bottom: 1rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.benefit-card p {
    color: var(--light-purple);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Contato */
.contact {
    background-color: rgba(18, 18, 18, 0.7);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.contact-info,
.contact-form {
    background: rgba(30, 30, 30, 0.7);
    border-radius: 15px;
    padding: 3rem;
    border: 1px solid rgba(120, 124, 170, 0.1);
}

.contact-info h3,
.contact-form h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.contact-info p {
    color: var(--light-purple);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.contact-details p {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
}

.contact-details i {
    margin-right: 1.2rem;
    color: var(--primary-pink);
    width: 20px;
    text-align: center;
}

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

input,
textarea,
select {
    width: 100%;
    padding: 1rem;
    background: rgba(18, 18, 18, 0.5);
    border: 1px solid rgba(120, 124, 170, 0.2);
    border-radius: 8px;
    color: var(--white);
    font-size: 1rem;
}

textarea {
    height: 150px;
    resize: none;
}

input:focus,
textarea:focus,
select:focus {
    outline: none;
    border-color: var(--primary-pink);
}

.submit-button {
    display: inline-block;
    padding: 1rem 2rem;
    background: var(--gradient-primary);
    border: none;
    border-radius: 50px;
    color: var(--white);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(254, 63, 255, 0.3);
}

/* Footer */
footer {
    background-color: rgba(18, 18, 18, 0.9);
    padding: 4rem 0 2rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    margin-bottom: 3rem;
}

.footer-info {
    max-width: 400px;
}

.footer-logo {
    height: 60px;
    margin-bottom: 1rem;
}

.footer-info p {
    color: var(--light-purple);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.footer-contact h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--white);
    position: relative;
}

.footer-contact h3::after {
    content: '';
    position: absolute;
    width: 30px;
    height: 2px;
    background: var(--gradient-primary);
    bottom: -8px;
    left: 0;
    border-radius: 5px;
}

.footer-contact p {
    color: var(--light-purple);
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
}

.footer-contact i {
    margin-right: 1rem;
    color: var(--primary-pink);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.social-link i {
    font-size: 1.2rem;
    line-height: 1;
    margin: 0;
    transition: transform 0.3s ease;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.3s;
    z-index: -1;
}

.social-link:hover {
    transform: translateY(-3px);
}

.social-link:hover::before {
    opacity: 1;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(120, 124, 170, 0.1);
}

.footer-bottom p {
    color: var(--neutral-purple);
    font-size: 0.9rem;
}

/* Floating Shapes */
.floating-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
}

.shape {
    position: absolute;
    opacity: 0.2;
    pointer-events: none;
}

.shape1 {
    top: 20%;
    left: 10%;
    width: 300px;
    height: 300px;
    border-radius: 53% 47% 52% 48% / 36% 41% 59% 64%;
    background: var(--primary-blue);
    animation: float 15s ease-in-out infinite;
}

.shape2 {
    bottom: 10%;
    right: 10%;
    width: 200px;
    height: 200px;
    border-radius: 41% 59%;
    background: var(--primary-pink);
    animation: float 12s ease-in-out infinite reverse;
}

.shape3 {
    top: 50%;
    left: 50%;
    width: 150px;
    height: 150px;
    border-radius: 63% 37% 54% 46% / 55% 48% 52% 45%;
    background: var(--secondary-purple);
    animation: float 20s ease-in-out infinite;
}

/* Animações */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s, transform 0.6s;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Media Queries - Melhoradas para responsividade */
@media (max-width: 1200px) {
    .container {
        padding: 0 1.5rem;
    }

    section {
        padding: 5rem 0;
    }

    .mission-wrapper {
        flex-direction: column;
        gap: 3rem;
    }

    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .value-item {
        height: auto;
        min-height: 300px;
    }

    .hero h1 {
        font-size: 3.5rem;
    }

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

@media (max-width: 1024px) {
    section {
        padding: 4.5rem 0;
    }

    .hero h1 {
        font-size: 3rem;
    }

    .section-title h2 {
        font-size: 2.2rem;
    }

    .section-title {
        margin-bottom: 3rem;
    }

    /* Processo timeline ajustado para mobile */
    .process-timeline::before {
        left: 30px;
    }

    .step {
        flex-direction: row !important;
        justify-content: flex-start;
    }

    .step-number {
        margin-left: 0;
        margin-right: 2rem;
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .step-content {
        max-width: calc(100% - 100px);
    }

    /* Contato ajustado para tablet */
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .contact-info {
        order: 2;
    }

    .contact-form {
        order: 1;
    }

    /* Benefícios ajustados */
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Ajuste para cards de serviço */
    .service-card {
        height: 380px;
    }
}

@media (max-width: 768px) {
    section {
        padding: 4rem 0;
    }

    .hero {
        height: auto;
        min-height: 100vh;
        padding: 6rem 0 4rem;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .section-title {
        margin-bottom: 2.5rem;
    }

    .section-title h2 {
        font-size: 2rem;
    }

    /* Ajustes de padding para mobile */
    .mission-content,
    .values-content,
    .contact-info,
    .contact-form,
    .service-preview,
    .service-details {
        padding: 2rem;
    }

    /* Grid de valores para mobile */
    .values-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .value-item {
        height: auto;
        padding: 2rem 1.5rem;
        min-height: 250px;
    }

    /* Ajustes para footer em mobile */
    .footer-content {
        flex-direction: column;
        gap: 2rem;
    }

    .footer-info {
        max-width: 100%;
    }

    /* Menu mobile */
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: rgba(18, 18, 18, 0.95);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transition: right 0.5s;
        z-index: 999;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links li {
        margin: 1.5rem 0;
    }

    .menu-toggle {
        display: flex;
        z-index: 1000;
    }

    .menu-toggle.active .bar:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }

    .menu-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.active .bar:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }

    /* Desativar cursor personalizado e */

    /* Ajustes para cards de serviço em mobile */
    .service-card {
        height: auto;
        min-height: 320px;
    }

    /* Ajustes para botões em mobile */
    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }

    .cta-button {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }

    /* Ajustes para benefícios em mobile */
    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .benefit-stat {
        width: 100px;
        height: 100px;
    }

    /* Ajustes para processo em mobile */
    .step-content {
        padding: 1.5rem;
    }

    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
        margin-right: 1.5rem;
    }
}

@media (max-width: 480px) {
    section {
        padding: 3.5rem 0;
    }

    .container {
        padding: 0 1.2rem;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .section-title h2 {
        font-size: 1.8rem;
    }

    .section-title p {
        font-size: 0.95rem;
    }

    /* Ajustes de padding para mobile pequeno */
    .mission-content,
    .values-content,
    .contact-info,
    .contact-form,
    .service-preview,
    .service-details,
    .benefit-card {
        padding: 1.5rem;
    }

    /* Ajustes para textos em mobile pequeno */
    .mission-content h3,
    .values-content h3 {
        font-size: 1.5rem;
    }

    .mission-content p,
    .values-content p {
        font-size: 1rem;
    }

    /* Ajustes para ícones em mobile pequeno */
    .service-icon {
        width: 80px;
        height: 80px;
        font-size: 2.5rem;
    }

    .value-icon {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }

    /* Ajustes para formulários em mobile pequeno */
    input,
    textarea,
    select,
    .submit-button {
        padding: 0.8rem;
        font-size: 0.95rem;
    }

    /* Ajustes para processo em mobile pequeno */
    .step-content {
        padding: 1.2rem;
        max-width: calc(100% - 80px);
    }

    .step-number {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
        margin-right: 1.2rem;
    }

    /* Ajustes para footer em mobile pequeno */
    footer {
        padding: 3rem 0 1.5rem;
    }

    .footer-logo {
        height: 45px;
    }
}

/* Melhorias para dispositivos com tela sensível ao toque */
@media (hover: none) {

    /* Ajustes para cards de serviço em dispositivos touch */
    .service-card:hover .service-preview,
    .service-card:hover .service-details {
        transform: none;
    }

    .service-card.active .service-preview {
        transform: rotateY(-180deg);
    }

    .service-card.active .service-details {
        transform: rotateY(0);
    }

    /* Desativar efeitos hover em dispositivos touch */
    .benefit-card:hover,
    .value-item:hover,
    .social-link:hover,
    .cta-button:hover,
    .service-button:hover,
    .submit-button:hover {
        transform: none;
        box-shadow: none;
    }

    .cta-button:active,
    .service-button:active,
    .submit-button:active {
        transform: translateY(2px);
    }

    /* Melhorar área de toque para elementos interativos */
    .nav-link,
    .service-button,
    .cta-button,
    .submit-button,
    .social-link {
        padding: 0.8rem 1.5rem;
        min-height: 44px;
        min-width: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    /* Remover transparência de fundo para melhor contraste em dispositivos touch */
    .service-card,
    .benefit-card,
    .value-item,
    .social-link,
    .cta-button,
    .service-button,
    .submit-button {
        -webkit-tap-highlight-color: transparent;
    }
}

/* Orientação paisagem em dispositivos móveis */
@media (max-height: 500px) and (orientation: landscape) {
    .hero {
        height: auto;
        min-height: 120vh;
        padding: 6rem 0;
    }

    .scroll-indicator {
        display: none;
    }

    .nav-links {
        padding: 2rem;
    }

    .nav-links li {
        margin: 0.8rem 0;
    }

    .section-title {
        margin-bottom: 2rem;
    }

    .value-item {
        min-height: 220px;
        padding: 1.5rem;
    }
}

/* AOS Custom Animations */
[data-aos="custom-fade-up"] {
    opacity: 0;
    transform: translateY(50px);
    transition-property: opacity, transform;
}

[data-aos="custom-fade-up"].aos-animate {
    opacity: 1;
    transform: translateY(0);
}

[data-aos="custom-fade-right"] {
    opacity: 0;
    transform: translateX(-50px);
    transition-property: opacity, transform;
}

[data-aos="custom-fade-right"].aos-animate {
    opacity: 1;
    transform: translateX(0);
}

[data-aos="custom-fade-left"] {
    opacity: 0;
    transform: translateX(50px);
    transition-property: opacity, transform;
}

[data-aos="custom-fade-left"].aos-animate {
    opacity: 1;
    transform: translateX(0);
}

[data-aos="custom-zoom"] {
    opacity: 0;
    transform: scale(0.8);
    transition-property: opacity, transform;
}

[data-aos="custom-zoom"].aos-animate {
    opacity: 1;
    transform: scale(1);
}

/* ---- MORGANA AI CHAT (Global Refortified) ---- */
.morgana-chat-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 15px;
    font-family: inherit;
}

.morgana-welcome-bubble {
    background: rgba(15, 15, 35, 0.95);
    border: 1px solid var(--primary-blue);
    color: #fff;
    padding: 12px 20px;
    border-radius: 20px 20px 0 20px;
    font-size: 0.9rem;
    max-width: 250px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    animation: slideInUp 0.5s ease-out;
    cursor: pointer;
    visibility: hidden;
    line-height: 1.4;
}


.morgana-trigger {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: rgba(58, 86, 255, 0.1);
    border: 2px solid var(--primary-blue);
    padding: 2px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 0 20px rgba(58, 86, 255, 0.4);
    position: relative;
    overflow: hidden;
}

.morgana-trigger:hover {
    transform: scale(1.1);
    border-color: var(--primary-pink);
    box-shadow: 0 0 30px rgba(254, 63, 255, 0.6);
}

.morgana-trigger img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.morgana-status {
    position: absolute;
    bottom: 5px;
    right: 5px;
    width: 12px;
    height: 12px;
    background: #4ade80;
    border: 2px solid #0f0f23;
    border-radius: 50%;
    z-index: 2;
}

.morgana-window {
    position: absolute;
    bottom: 90px;
    right: 0;
    width: 350px;
    height: 500px;
    background: #0f111a;
    border: 1px solid rgba(58, 86, 255, 0.3);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(15px);
    transform: translateY(20px) scale(0.9);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    max-width: calc(100vw - 40px);
}

@media (max-width: 768px) {
    .morgana-chat-container {
        bottom: 20px;
        right: 20px;
        gap: 10px;
    }

    .morgana-trigger {
        width: 60px;
        height: 60px;
    }

    .morgana-welcome-bubble {
        display: none !important;
    }

    .morgana-window {
        width: calc(100vw - 40px);
        height: 450px;
        bottom: 80px;
        right: 0;
    }
}


.morgana-window.active {
    transform: translateY(0) scale(1);
    opacity: 1;
    visibility: visible;
}

.morgana-header {
    padding: 20px;
    background: var(--gradient-primary);
    color: #fff;
    display: flex;
    align-items: center;
    gap: 12px;
}

.morgana-header img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.morgana-header-info h4 {
    margin: 0;
    font-size: 1rem;
    font-weight: 700;
}

.morgana-header-info span {
    font-size: 0.75rem;
    opacity: 0.8;
}

.morgana-body {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
    scrollbar-width: thin;
    scrollbar-color: var(--primary-blue) transparent;
}

.msg {
    max-width: 80%;
    padding: 12px 16px;
    border-radius: 15px;
    font-size: 0.9rem;
    line-height: 1.5;
    animation: chatIn 0.3s ease-out;
    position: relative;
    word-wrap: break-word;
}

.msg-ai {
    align-self: flex-start;
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    border-radius: 0 15px 15px 15px;
    border-left: 3px solid var(--primary-pink);
}

.msg-user {
    align-self: flex-end;
    background: var(--primary-blue);
    color: #fff;
    border-radius: 15px 0 15px 15px;
}

.morgana-footer {
    padding: 15px;
    background: rgba(0, 0, 0, 0.2);
    display: flex;
    gap: 10px;
    align-items: center;
}

.morgana-input {
    flex: 1;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 10px 15px;
    border-radius: 20px;
    color: #fff;
    outline: none;
    font-size: 0.9rem;
}

.morgana-send {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--gradient-primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: none;
    transition: transform 0.2s ease;
}

.morgana-send:hover {
    transform: scale(1.1);
}

/* Animations */
@keyframes wave {

    0%,
    60%,
    100% {
        transform: translateY(0);
    }

    30% {
        transform: translateY(-4px);
    }
}

@keyframes chatIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Typing indicator dots */
.typing {
    display: flex;
    gap: 4px;
    padding: 10px;
    opacity: 0.7;
}

.dot {
    width: 6px;
    height: 6px;
    background: #fff;
    border-radius: 50%;
    animation: wave 1.3s linear infinite;
}

.dot:nth-child(2) {
    animation-delay: -1.1s;
}

.dot:nth-child(3) {
    animation-delay: -0.9s;
}

/* --- PREMIUM BUTTONS --- */
.btn-premium-pink {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 36px;
    background: linear-gradient(135deg, #FE3FFF 0%, #3A56FF 100%);
    color: #fff !important;
    font-weight: 700;
    font-size: 1.05rem;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 25px rgba(254, 63, 255, 0.3);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.btn-premium-pink:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 35px rgba(254, 63, 255, 0.5), 0 0 20px rgba(58, 86, 255, 0.4);
}

.btn-premium-pink i {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.btn-premium-pink:hover i {
    transform: translateX(5px);
}

.btn-premium-green {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 36px;
    background: linear-gradient(135deg, #4ade80 0%, #22c55e 100%);
    color: #fff !important;
    font-weight: 700;
    font-size: 1.05rem;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 25px rgba(74, 222, 128, 0.3);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-decoration: none;
}

.btn-premium-green:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 35px rgba(74, 222, 128, 0.5);
}

.btn-premium-green i {
    font-size: 1.2rem;
    animation: none;
}

.btn-premium-green:hover i {
    animation: rocketLaunch 0.6s ease-in-out infinite alternate;
}

@keyframes rocketLaunch {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(3px, -3px);
    }
}

.btn-premium-ghost {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: rgba(255, 255, 255, 0.03);
    color: #fff !important;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-premium-ghost:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #fff;
    transform: translateY(-2px);
}

.btn-premium-ghost i {
    color: #B8B5FF;
    transition: color 0.3s ease;
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .footer-info {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .social-links {
        justify-content: center;
    }
}

.btn-premium-ghost:hover i {
    color: #fff;
}

/* --- LANGUAGE SWITCHER & GOOGLE TRANSLATE OVERRIDES --- */
/* Oculta a barra superior padrão do Google Translate */
.goog-te-banner-frame.skiptranslate {
    display: none !important;
}

body {
    top: 0px !important;
}

/* Oculta o tooltip de hover original do Google Translate */
#goog-gt-tt,
.goog-te-balloon-frame {
    display: none !important;
}

.goog-text-highlight {
    background-color: transparent !important;
    box-shadow: none !important;
}

/* Oculta o widget original do Google Translate */
#google_translate_element {
    display: none !important;
}

/* Estilo do Seletor Customizado */
.lang-switcher {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    padding: 4px;
    margin-left: 15px;
}

.lang-btn {
    background: transparent;
    border: none;
    color: var(--text-gray);
    font-size: 0.8rem;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Outfit', sans-serif;
}

.lang-btn:hover {
    color: #fff;
}

.lang-btn.active {
    background: var(--gradient-primary);
    color: #fff;
    box-shadow: 0 4px 10px rgba(58, 86, 255, 0.3);
}

@media (max-width: 992px) {
    .lang-switcher {
        margin-left: 0;
        margin-bottom: 20px;
        align-self: center;
    }
}