:root {
    /* Smile IA Brand Colors */
    --smile-blue: #54afe6;
    --smile-blue-light: #7bc4f0;
    --alibra-blue: #003366;
    --alibra-dark-bg: #1a202c;
    --alibra-dark-bg-secondary: #2d3748;
    --alibra-green: #27AE60;
    --alibra-purple: #8E44AD;

    /* Updated theme colors for Site Smile IA */
    --primary-color: var(--smile-blue); /* Principal */
    --secondary-color: var(--alibra-blue); /* Secundário */
    --accent-color: var(--smile-blue); /* Destaque */
    --accent-glow: #54afe680; /* Glow derivado do azul principal */
    --text-color: #ffffff; /* Was #e0e0ff - Alibra's --foreground */
    --text-color-muted: rgba(255, 255, 255, 0.7); /* Was #8891b2 - Alibra's --muted-foreground */
    --background-color: var(--alibra-dark-bg); /* Was #050a18 */
    --card-bg: var(--alibra-dark-bg-secondary); /* Was #111a30 */
    --card-border: rgba(255, 255, 255, 0.1); /* Was #1d2d58 - Alibra's --border */
    --gradient-primary: linear-gradient(90deg, var(--alibra-blue), var(--smile-blue)); /* Was linear-gradient(135deg, #4f6bff 0%, #c961ff 100%) */
    --gradient-glow: radial-gradient(circle at center, var(--accent-glow) 0%, transparent 70%); /* Uses new --accent-glow */
    --white: #ffffff;
    --black: #000000;
    --gray-100: #f5f7ff;
    --gray-200: #e2e8f0;
    --gray-300: #cbd5e0;
    --gray-400: #a0aec0;
    --gray-500: #718096;
    --gray-600: #4a5568;
    --gray-700: #2d3748;
    --gray-800: #1a202c;
    --gray-900: #0d1117;
    --glass-bg: rgba(16, 25, 49, 0.7);
    --glass-border: rgba(74, 96, 173, 0.3);
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 15px 25px rgba(0, 0, 0, 0.15);
    --shadow-inner: inset 0 2px 4px rgba(0, 0, 0, 0.06);
    --shadow-glow: 0 0 15px var(--accent-glow);
}

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

html {
    scroll-behavior: smooth;
    height: 100%;
    background: linear-gradient(135deg, var(--alibra-dark-bg) 0%, var(--alibra-dark-bg-secondary) 100%) !important;
}

body {
    font-family: 'Montserrat', sans-serif;
    background: linear-gradient(135deg, var(--alibra-dark-bg) 0%, var(--alibra-dark-bg-secondary) 100%) !important;
    color: var(--white);
    line-height: 1.5;
    overflow-x: hidden;
    position: relative;
    min-height: 100vh;
    margin: 0;
    padding: 0;
}

/* Fundo com estrelas */
.stars-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(2px 2px at 20px 30px, var(--text-color) 50%, transparent 100%),
                    radial-gradient(1px 1px at 40px 70px, var(--text-color-muted) 50%, transparent 100%),
                    radial-gradient(1.5px 1.5px at 90px 40px, var(--text-color) 50%, transparent 100%),
                    radial-gradient(1px 1px at 130px 80px, var(--text-color-muted) 50%, transparent 100%),
                    radial-gradient(1.5px 1.5px at 160px 120px, var(--text-color) 50%, transparent 100%);
    background-repeat: repeat;
    background-size: 200px 200px;
    opacity: 0.15;
    z-index: -1;
    animation: starsAnimation 200s linear infinite;
    pointer-events: none;
}

/* Efeitos do card no hover */
.card-glow-effect {
    position: absolute;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background-color: var(--smile-blue);
    filter: blur(40px);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    z-index: 0;
}

/* Removido efeito de hover dos cards */

/* Classes para animações */
.animate-on-scroll {
    transition: transform 0.8s ease, opacity 0.8s ease;
    opacity: 0;
    transform: translateY(30px);
}

.card-animation {
    transition: transform 0.6s ease-out, opacity 0.6s ease-out, box-shadow 0.3s ease;
    opacity: 0;
    transform: translateY(50px);
}

.fade-animation {
    transition: opacity 0.8s ease;
    opacity: 0;
}

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

.glow-on-scroll.glowing {
    box-shadow: 0 0 20px var(--accent-glow);
}

.animate-float {
    animation: floatBubble 6s ease-in-out infinite;
}

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

.pulse-icon {
    animation: pulseIconEffect 2.5s ease-in-out infinite;
}

@keyframes pulseIconEffect {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 0 rgba(79, 107, 255, 0);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 20px rgba(79, 107, 255, 0.4);
    }
}

.animate-gradient {
    background-size: 200% 200%;
    background: linear-gradient(270deg, var(--smile-blue), var(--alibra-blue), var(--smile-blue));
    background-size: 300% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    animation: gradientAnimation 8s ease infinite;
}

@keyframes gradientAnimation {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes starsAnimation {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 200px 200px;
    }
}

/* Container de partículas */
/* Container de partículas - ajustado para não conflitar com o fundo */
.particles-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

/* Efeitos de brilho */
.glow-effects {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
    overflow: hidden;
}

.glow-circle {
    position: absolute;
    border-radius: 50%;
    filter: blur(50px);
    opacity: 0.15;
}

.glow-1 {
    top: 10%;
    left: 5%;
    width: 40vw;
    height: 40vw;
    background-color: var(--smile-blue);
    animation: floatAnimation 15s ease-in-out infinite alternate;
}

.glow-2 {
    bottom: 20%;
    right: 10%;
    width: 35vw;
    height: 35vw;
    background-color: var(--alibra-blue);
    animation: floatAnimation 18s ease-in-out infinite alternate-reverse;
}

.glow-3 {
    top: 60%;
    left: 30%;
    width: 25vw;
    height: 25vw;
    background-color: var(--primary-color);
    mix-blend-mode: screen;
    animation: floatAnimation 20s ease-in-out infinite alternate;
}

@keyframes floatAnimation {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(50px, 30px);
    }
}

/* Estilos para o logo */
.logo {
    position: relative;
}

/* Schedule Demo Section */
.schedule-demo {
    padding: 8rem 0 12rem;
    position: relative;
    background: linear-gradient(180deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    overflow: hidden;
    margin-bottom: -2px;
}

.wave-decoration {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    line-height: 0;
}

.wave-decoration svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 120px;
}

.wave-decoration path {
    fill: var(--background-color);
}

.schedule-content {
    text-align: center;
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    padding: 4rem;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border-radius: 30px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--glass-border);
    transform: translateY(0);
    transition: transform 0.3s ease;
}

.schedule-content:hover {
    transform: translateY(-10px);
}

.schedule-text {
    margin-bottom: 3rem;
}

.schedule-text h2 {
    color: white;
    font-size: 3.2rem;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    background: linear-gradient(135deg, #fff 0%, #e0f7ff 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.schedule-text .highlight {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.4rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.btn-schedule {
    display: inline-flex;
    align-items: center;
    padding: 1.2rem 2.8rem;
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2), 0 0 15px var(--accent-glow);
    border: none;
}

.btn-content {
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
    z-index: 2;
}

.btn-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-glow);
    opacity: 0;
    transition: opacity 0.3s ease;
}

/* Removido efeito de hover dos botões */

/* Footer */
.footer {
    background: var(--primary-color);
    color: var(--white);
    position: relative;
    overflow: hidden;
    padding: 6rem 0 2rem;
    border-top: 1px solid var(--card-border);
}

.footer-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

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

.footer-logo {
    height: 50px;
    margin-bottom: 1.5rem;
}

.footer-description {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
    line-height: 1.6;
}

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

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--card-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--smile-blue);
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid var(--card-border);
}

.social-link i {
    position: relative;
    z-index: 2;
}

.social-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-glow);
    opacity: 0;
    transition: opacity 0.3s ease;
}

/* Removido efeito de hover dos links sociais */

.footer-navigation h3,
.footer-contact h3 {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    position: relative;
}

.footer-navigation h3::after,
.footer-contact h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--primary-color);
}

.footer-navigation ul {
    list-style: none;
    padding: 0;
}

.footer-navigation ul li {
    margin-bottom: 1rem;
}

.footer-navigation ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-navigation ul li a:hover {
    color: white;
    padding-left: 5px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-item i {
    color: var(--smile-blue);
}

.contact-item a,
.contact-item span {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: white;
}

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

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

@media (max-width: 992px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }

    .footer-brand {
        grid-column: 1 / -1;
        max-width: 100%;
        text-align: center;
    }

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

@media (max-width: 768px) {
    .schedule-content {
        margin: 0 1rem;
        padding: 2rem;
    }

    .schedule-text h2 {
        font-size: 2.2rem;
    }

    .schedule-text .highlight {
        font-size: 1.1rem;
    }

    .btn-schedule {
        padding: 1rem 2rem;
        font-size: 1.1rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .footer-navigation,
    .footer-contact {
        text-align: center;
    }

    .footer-navigation h3::after,
    .footer-contact h3::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .contact-item {
        justify-content: center;
    }
}

/* Quem Somos Section */
.quem-somos {
    padding: 6rem 0;
    background: var(--alibra-dark-bg-secondary);
    position: relative;
    overflow: hidden;
}

.floating-icons {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.floating-icon {
    position: absolute;
    font-size: 1.5rem;
    color: var(--smile-blue);
    opacity: 0.3;
    animation: floatIcon 15s linear infinite;
    text-shadow: 0 0 5px var(--smile-blue);
}

.floating-icon:nth-child(1) { top: 10%; left: 10%; animation-delay: 0s; }
.floating-icon:nth-child(2) { top: 20%; right: 15%; animation-delay: -2s; }
.floating-icon:nth-child(3) { bottom: 30%; left: 5%; animation-delay: -4s; }
.floating-icon:nth-child(4) { bottom: 20%; right: 10%; animation-delay: -6s; }

@keyframes floatIcon {
    0% {
        transform: translate(0, 0) rotate(0deg);
        opacity: 0.1;
    }
    25% {
        opacity: 0.3;
    }
    50% {
        transform: translate(20px, -20px) rotate(180deg);
        opacity: 0.1;
    }
    75% {
        opacity: 0.3;
    }
    100% {
        transform: translate(0, 0) rotate(360deg);
        opacity: 0.1;
    }
}

.tech-circle {
    position: relative;
    width: 300px;
    height: 300px;
    margin: 0 auto;
    animation: rotate 20s linear infinite;
}

.tech-item {
    position: absolute;
    width: 50px;
    height: 50px;
    background: rgba(26, 32, 44, 0.7);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    animation: pulse 2s infinite;
    border: 1px solid var(--card-border);
    backdrop-filter: blur(8px);
}

.tech-item i {
    font-size: 1.5rem;
    color: var(--smile-blue);
    text-shadow: 0 0 5px rgba(84, 175, 230, 0.5);
}

.tech-item:nth-child(1) { top: 0; left: 50%; transform: translateX(-50%); }
.tech-item:nth-child(2) { top: 50%; right: 0; transform: translateY(-50%); }
.tech-item:nth-child(3) { bottom: 0; left: 50%; transform: translateX(-50%); }
.tech-item:nth-child(4) { top: 50%; left: 0; transform: translateY(-50%); }

.tech-core {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--smile-blue), var(--smile-blue-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 30px rgba(84, 175, 230, 0.5);
    border: 1px solid var(--card-border);
    animation: corePulse 3s infinite;
}

.tech-core i {
    font-size: 2.5rem;
    color: white;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.gradient-text {
    background: linear-gradient(90deg, var(--smile-blue), var(--smile-blue-light), var(--white));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    font-weight: bold;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.text-content {
    background: rgba(26, 32, 44, 0.6);
    padding: 2.5rem;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid var(--card-border);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.text-content p {
    color: var(--white);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.text-content .highlight {
    color: var(--smile-blue);
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.text-content .highlight span {
    font-weight: 700;
    background: linear-gradient(90deg, var(--smile-blue), var(--smile-blue-light), var(--white));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.text-content .tagline {
    font-style: italic;
    border-left: 3px solid var(--smile-blue);
    padding-left: 1rem;
}

.text-content .tagline strong {
    font-weight: 700;
    color: var(--white);
}

@keyframes corePulse {
    0% {
        box-shadow: 0 0 20px rgba(84, 175, 230, 0.4);
    }
    50% {
        box-shadow: 0 0 40px rgba(84, 175, 230, 0.7);
    }
    100% {
        box-shadow: 0 0 20px rgba(84, 175, 230, 0.4);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 4px 20px rgba(84, 175, 230, 0.3);
        border-color: var(--smile-blue);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    }
}

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

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

@keyframes glow {
    0% { box-shadow: 0 0 30px rgba(0, 107, 143, 0.3); }
    50% { box-shadow: 0 0 50px rgba(0, 107, 143, 0.5); }
    100% { box-shadow: 0 0 30px rgba(0, 107, 143, 0.3); }
}

/* Objetivo Section */
.objetivo {
    padding: 6rem 0;
    background: var(--bg-light);
    position: relative;
    overflow: hidden;
}

.objective-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

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

.objetivo-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.objetivo-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.card-icon {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-icon i {
    font-size: 2.5rem;
    color: var(--smile-blue);
    position: relative;
    z-index: 2;
}

.icon-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    animation: particleRotate 10s linear infinite;
}

.icon-particles::before,
.icon-particles::after {
    content: '';
    position: absolute;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent-color);
    opacity: 0.3;
}

.icon-particles::before {
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

.icon-particles::after {
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.card-decoration {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.objetivo-card:hover .card-decoration {
    opacity: 1;
}

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

/* Quem Somos Section */
.quem-somos {
    padding: 6rem 0 8rem;
    position: relative;
    background: linear-gradient(135deg, rgba(20, 30, 48, 0.95) 0%, rgba(26, 32, 44, 0.9) 100%);
    overflow: hidden;
}

.quem-somos::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNjAiIGhlaWdodD0iNjAiIHZpZXdCb3g9IjAgMCA2MCA2MCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48ZyBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPjxwYXRoIGQ9Ik0zNiAxOGMtMS42NiAwLTMgMS4zNC0zIDNzMS4zNCAzIDMgM2MxLjY2IDAgMy0xLjM0IDMtMy0uMDEtMS42NS0xLjM0LTIuOTktMy0zeiIgc3Ryb2tlPSIjNTRhZmU2IiBzdHJva2Utb3BhY2l0eT0iLjEiLz48L2c+PC9zdmc+');
    opacity: 0.05;
    z-index: 0;
}

.quem-somos-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 4rem;
    position: relative;
    z-index: 1;
}

.text-content {
    flex: 1;
    max-width: 600px;
}

.text-content h2 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 15px rgba(84, 175, 230, 0.2);
    position: relative;
    display: inline-block;
}

.text-content h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 50px;
    height: 4px;
    background: linear-gradient(90deg, var(--smile-blue), transparent);
    border-radius: 2px;
}

.text-content p {
    margin-bottom: 1.5rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.75);
    font-size: 1.1rem;
}

.text-content p.highlight {
    font-size: 1.4rem;
    font-weight: 300;
    color: var(--white);
    margin-bottom: 2rem;
    letter-spacing: 0.5px;
}

.text-content p.highlight span {
    position: relative;
    font-weight: 700;
    color: var(--smile-blue-light);
}

.text-content p.tagline {
    font-style: italic;
    margin-top: 2rem;
    padding-left: 1rem;
    border-left: 3px solid var(--smile-blue);
}

.text-content p.tagline strong {
    color: var(--smile-blue-light);
    font-weight: 600;
}

.tech-circle {
    width: 300px;
    height: 300px;
    border: 1px solid rgba(84, 175, 230, 0.2);
    border-radius: 50%;
    position: relative;
    margin: 0 auto;
    background: rgba(15, 23, 42, 0.5);
    box-shadow: 0 0 50px rgba(84, 175, 230, 0.15), inset 0 0 30px rgba(84, 175, 230, 0.05);
}

@keyframes pulseCircle {
    0% {
        box-shadow: 0 0 50px rgba(84, 175, 230, 0.15), inset 0 0 30px rgba(84, 175, 230, 0.05);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 0 70px rgba(84, 175, 230, 0.25), inset 0 0 50px rgba(84, 175, 230, 0.1);
        transform: scale(1.02);
    }
    100% {
        box-shadow: 0 0 50px rgba(84, 175, 230, 0.15), inset 0 0 30px rgba(84, 175, 230, 0.05);
        transform: scale(1);
    }
}

.tech-item {
    width: 60px;
    height: 60px;
    background: rgba(26, 32, 44, 0.8);
    border: 1px solid rgba(84, 175, 230, 0.3);
    border-radius: 50%;
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.5s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.tech-item {
    position: absolute;
    width: 60px;
    height: 60px;
    background: rgba(26, 32, 44, 0.8);
    border: 1px solid rgba(84, 175, 230, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.5s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    z-index: 1;
}

/* Posição dos ícones e animação */
.tech-circle .tech-item:nth-child(1) {
    top: 0;
    left: 120px;
    animation: orbit 20s linear infinite;
}

.tech-circle .tech-item:nth-child(2) {
    top: 120px;
    right: 0;
    animation: orbit 20s linear infinite 5s;
}

.tech-circle .tech-item:nth-child(3) {
    bottom: 0;
    left: 120px;
    animation: orbit 20s linear infinite 10s;
}

.tech-circle .tech-item:nth-child(4) {
    top: 120px;
    left: 0;
    animation: orbit 20s linear infinite 15s;
}

@keyframes orbit {
    0% {
        transform: rotate(0deg) translate(-120px) rotate(0deg);
    }
    100% {
        transform: rotate(360deg) translate(-120px) rotate(-360deg);
    }
}

.tech-item i {
    font-size: 1.5rem;
    color: var(--smile-blue);
    transition: all 0.5s ease;
}

.tech-item:hover {
    background: var(--smile-blue);
    transform: scale(1.2);
}

.tech-item:hover i {
    color: var(--white);
}

.tech-core {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--smile-blue), var(--smile-blue-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 30px rgba(84, 175, 230, 0.5);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 5;
}

.tech-core i {
    font-size: 3rem;
    color: var(--white);
}

@keyframes scaleIcon {
    0% {
        transform: scale(0.8);
    }
    100% {
        transform: scale(1.1);
    }
}

.floating-icons {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
    opacity: 0.05;
    z-index: 0;
}

.floating-icon {
    position: absolute;
    font-size: 2rem;
    color: var(--smile-blue);
    animation: floatIcon 15s linear infinite;
    opacity: 0.4;
}

.floating-icon:nth-child(1) {
    top: 10%;
    left: 10%;
    animation-delay: 0s;
    animation-duration: 20s;
}

.floating-icon:nth-child(2) {
    top: 20%;
    right: 15%;
    animation-delay: 5s;
    animation-duration: 25s;
}

.floating-icon:nth-child(3) {
    bottom: 30%;
    left: 20%;
    animation-delay: 10s;
    animation-duration: 18s;
}

.floating-icon:nth-child(4) {
    bottom: 15%;
    right: 10%;
    animation-delay: 7s;
    animation-duration: 22s;
}

.floating-icon:nth-child(5) {
    top: 45%;
    left: 5%;
    animation-delay: 3s;
    animation-duration: 17s;
}

.floating-icon:nth-child(6) {
    top: 60%;
    right: 20%;
    animation-delay: 9s;
    animation-duration: 21s;
}

@keyframes floatIcon {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }
    25% {
        transform: translate(50px, -30px) rotate(90deg);
    }
    50% {
        transform: translate(100px, 0) rotate(180deg);
    }
    75% {
        transform: translate(50px, 30px) rotate(270deg);
    }
    100% {
        transform: translate(0, 0) rotate(360deg);
    }
}

/* Novos elementos da seção Quem Somos */
.section-badge {
    display: inline-block;
    background: rgba(84, 175, 230, 0.1);
    border: 1px solid rgba(84, 175, 230, 0.3);
    border-radius: 30px;
    padding: 0.5rem 1.2rem;
    margin-bottom: 2rem;
    position: relative;
}

.section-badge span {
    font-size: 0.9rem;
    color: var(--smile-blue-light);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.section-badge i {
    color: var(--smile-blue);
    font-size: 1rem;
}

.section-badge::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border-radius: 30px;
    background: linear-gradient(135deg, var(--smile-blue) 0%, transparent 50%, var(--smile-blue-light) 100%);
    opacity: 0.2;
    z-index: -1;
    animation: rotateBadgeGlow 8s linear infinite;
}

@keyframes rotateBadgeGlow {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.mission-box {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    background: rgba(20, 30, 48, 0.6);
    border-radius: 10px;
    border: 1px solid rgba(84, 175, 230, 0.2);
    margin-bottom: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.mission-box:hover {
    border-color: rgba(84, 175, 230, 0.5);
    box-shadow: 0 10px 25px rgba(84, 175, 230, 0.1);
}

.mission-icon {
    width: 60px;
    height: 60px;
    min-width: 60px;
    background: linear-gradient(135deg, rgba(84, 175, 230, 0.2) 0%, rgba(123, 196, 240, 0.1) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 15px rgba(84, 175, 230, 0.2);
}

.mission-icon i {
    font-size: 1.5rem;
    color: var(--smile-blue);
    animation: pulseStar 3s infinite;
}

@keyframes pulseStar {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.2); opacity: 0.8; }
}

.mission-text p {
    margin: 0;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

.tech-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-bottom: 2rem;
}

.tech-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(26, 32, 44, 0.7);
    border: 1px solid rgba(84, 175, 230, 0.3);
    border-radius: 30px;
    font-size: 0.9rem;
    color: var(--white);
    transition: all 0.3s ease;
}

.tech-badge i {
    color: var(--smile-blue);
    font-size: 0.9rem;
}

.tech-badge:hover {
    background: rgba(84, 175, 230, 0.15);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(84, 175, 230, 0.2);
}

.tech-circle-container {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem 0;
}

.circle-glow {
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(84, 175, 230, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.tech-slogan {
    margin-top: 2rem;
    background: linear-gradient(90deg, transparent, rgba(84, 175, 230, 0.3), transparent);
    padding: 0.5rem 0;
    width: 100%;
    text-align: center;
}

.tech-slogan span {
    font-size: 1rem;
    font-style: italic;
    color: var(--smile-blue-light);
    font-weight: 500;
    letter-spacing: 1px;
    position: relative;
    display: inline-block;
    text-shadow: 0 2px 10px rgba(84, 175, 230, 0.4);
}

.tech-slogan span::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--smile-blue);
    transition: width 0.6s ease;
}

.tech-slogan:hover span::after {
    width: 100%;
}

/* Efeito de partículas na seção Quem Somos */
.quem-somos::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(rgba(84, 175, 230, 0.1) 1px, transparent 1px), 
        radial-gradient(rgba(84, 175, 230, 0.1) 1px, transparent 1px);
    background-size: 30px 30px;
    background-position: 0 0, 15px 15px;
    opacity: 0.4;
    z-index: 0;
    pointer-events: none;
}

/* Animação adicional para os badges */
.tech-badge {
    position: relative;
    overflow: hidden;
}

.tech-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(84, 175, 230, 0.2), transparent);
    transition: left 0.7s ease;
}

.tech-badge:hover::before {
    left: 100%;
}

/* Animação para a mission box */
.mission-box {
    position: relative;
    overflow: hidden;
}

.mission-box::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(90deg, var(--smile-blue), var(--smile-blue-light), var(--smile-blue));
    z-index: -1;
    border-radius: 12px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mission-box:hover::before {
    opacity: 0.3;
    animation: animateGradient 3s linear infinite;
}

@keyframes animateGradient {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Efeito para o círculo tecnológico */
.tech-circle::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 140%;
    height: 140%;
    background: conic-gradient(
        transparent 0deg,
        transparent 30deg,
        rgba(84, 175, 230, 0.1) 40deg,
        rgba(84, 175, 230, 0.2) 60deg,
        transparent 70deg,
        transparent 180deg,
        rgba(84, 175, 230, 0.1) 190deg,
        rgba(84, 175, 230, 0.2) 210deg,
        transparent 220deg,
        transparent 360deg
    );
    transform: translate(-50%, -50%);
    animation: rotateConicGradient 8s linear infinite;
    border-radius: 50%;
    z-index: -1;
}

@keyframes rotateConicGradient {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Responsividade */
@media (max-width: 768px) {
    .tech-circle {
        width: 200px;
        height: 200px;
    }

    .tech-item {
        width: 40px;
        height: 40px;
    }

    .tech-core {
        width: 60px;
        height: 60px;
    }

    .tech-item i {
        font-size: 1.2rem;
    }

    .tech-core i {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .floating-icons {
        display: none;
    }

    .objetivo-card {
        padding: 1.5rem;
    }

    .card-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 1.5rem;
    }

    .card-icon i {
        font-size: 2rem;
    }
}

:root {
    --primary-color: #54afe68F;
    --secondary-color: #00334D;
    --accent-color: #00A3D7;
    --text-color: #333333;
    --light-bg: #F5F7F9;
    --white: #FFFFFF;
    --gradient-primary: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 6px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 15px rgba(0,0,0,0.1);
    --border-radius: 15px;
    --transition: all 0.3s ease;
}

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

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: var(--white);
    overflow-x: hidden;
}

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

/* Glass Effect */
.glass {
    background: rgba(26, 32, 44, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--card-border);
}

.glass-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(26, 32, 44, 0.8); /* var(--alibra-dark-bg) com transparência */
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--card-border);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.glass-nav.scrolled {
    background: rgba(45, 55, 72, 0.95); /* var(--alibra-dark-bg-secondary) com transparência */
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

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

.logo {
    flex-shrink: 0;
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
}

.logo img {
    height: 45px;
    width: auto;
    transition: transform 0.3s ease;
}

@media (max-width: 1200px) {
    nav.container {
        height: 75px;
    }
    
    .logo img {
        height: 70px;
    }
}

@media (max-width: 768px) {
    nav.container {
        height: 70px;
        padding: 0.5rem 1rem;
    }
    
    .logo img {
        height: 70px;
    }
}

@media (max-width: 480px) {
    nav.container {
        height: 65px;
    }
    
    .logo img {
        height: 70px;
    }
}

.logo img:hover {
    transform: scale(1.05);
}

.nav-links {
    display: flex;
    gap: 2rem;
    margin: 0 2rem;
}

.nav-item {
    text-decoration: none;
    color: var(--white);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    color: var(--smile-blue);
    transition: transform 0.3s ease;
}

.nav-item:hover {
    background: rgba(84, 175, 230, 0.2); /* var(--smile-blue) com transparência */
    transform: translateY(-2px);
}

.nav-item:hover .nav-icon {
    transform: scale(1.2);
}

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

.demo-button {
    background: linear-gradient(90deg, var(--alibra-blue), var(--smile-blue));
    color: var(--white);
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.demo-button i {
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.demo-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.5);
}

.demo-button:hover i {
    transform: scale(1.2);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--smile-blue);
    transition: all 0.3s ease;
    border-radius: 1px;
}

.nav-item.active {
    background: rgba(84, 175, 230, 0.2);
    color: var(--smile-blue);
}

.nav-item.active .nav-icon {
    transform: scale(1.1);
    color: var(--smile-blue);
}

.nav-item::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: width 0.3s ease;
    transform: translateX(-50%);
    opacity: 0;
}

.nav-item:hover::after,
.nav-item.active::after {
    width: 30px;
    opacity: 1;
}

/* Estilos responsivos para navbar */
@media (max-width: 991px) {
    .nav-links {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        flex-direction: column;
        background: rgba(26, 32, 44, 0.95);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        padding: 1.5rem;
        gap: 1rem;
        margin: 0;
        height: 0;
        overflow: hidden;
        transition: all 0.5s ease-out;
        opacity: 0;
        visibility: hidden;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        border-bottom: 1px solid var(--card-border);
        z-index: -1;
        
    }

    .nav-links.active {
        height: auto;
        opacity: 1;
        visibility: visible;
        z-index: 999;
        animation: slideDown 0.3s ease forwards;
    }

    .nav-item {
        width: 100%;
        padding: 1rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-item:last-child {
        border-bottom: none;
    }

    .menu-toggle {
        display: flex;
    }

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

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

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

/* Animação do Menu Mobile */
@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* Hero Section */
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, var(--alibra-dark-bg) 0%, var(--alibra-dark-bg-secondary) 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
}

.hero-content {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 4rem;
padding-top: 120px;
position: relative;
}

.hero-text {
padding-top: 4rem;
}

.hero-text h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
    background: linear-gradient(90deg, var(--white), var(--smile-blue));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.subtitle {
    font-size: 1.5rem;
    opacity: 0.9;
    margin-bottom: 2rem;
}

/* Botões Hero */
.hero-cta {
    display: flex;
    gap: 1.5rem;
    margin-top: 2rem;
}

.primary-button {
    background: linear-gradient(90deg, var(--alibra-blue), var(--smile-blue));
    color: var(--white);
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
    border: 1px solid var(--card-border);
}

.primary-button i {
    transition: transform 0.3s ease;
}

.primary-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.primary-button:hover i {
    transform: translateX(5px);
}

.pulse-button {
    position: relative;
}

.pulse-button::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: linear-gradient(90deg, var(--alibra-blue), var(--smile-blue));
    border-radius: 50px;
    z-index: -1;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.5;
    }
    70% {
        transform: scale(1.05);
        opacity: 0;
    }
    100% {
        transform: scale(1);
        opacity: 0;
    }
}

.secondary-button {
    background: rgba(26, 32, 44, 0.8);
    color: var(--smile-blue);
    border: 2px solid var(--smile-blue);
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    cursor: pointer;
    backdrop-filter: blur(10px);
}

.secondary-button:hover {
    background: var(--smile-blue);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

/* Balões Flutuantes */
.hero-image {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 500px;
}

.floating-bubble {
    position: absolute;
    background: rgba(26, 32, 44, 0.8);
    padding: 1.2rem;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--smile-blue);
    font-weight: 500;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--card-border);
    z-index: 2;
    white-space: nowrap;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease forwards;
}

.floating-bubble i {
    font-size: 1.5rem;
    color: var(--smile-blue);
}

.bubble-1 {
    top: 10%;
    right: 65%;
    animation-delay: 0s;
}

.bubble-2 {
    top: 30%;
    left: 65%;
    animation-delay: 0.3s;
}

.bubble-3 {
    bottom: 30%;
    right: 60%;
    animation-delay: 0.6s;
}

.bubble-4 {
    bottom: 15%;
    left: 60%;
    animation-delay: 0.9s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(3deg);
    }
}

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

/* Hero Stats */
.hero-stats {
    display: flex;
    justify-content: space-around;
    margin-top: 3rem;
    gap: 2rem;
}

.stat {
    text-align: center;
    background: rgba(26, 32, 44, 0.7);
    padding: 2.5rem;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    flex: 1;
    min-width: 200px;
    transition: transform 0.3s ease;
    border: 1px solid var(--card-border);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.stat:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    border-color: var(--smile-blue);
}

.stat h3 {
    font-size: 3rem;
    color: var(--white);
    margin-bottom: 1rem;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
}

.stat p {
    color: var(--white);
    font-size: 1.1rem;
    opacity: 0.9;
    margin: 0;
    line-height: 1.4;
}

/* Media queries para responsividade */
@media (max-width: 992px) {
    .stat {
        min-width: 150px;
        padding: 2rem;
    }
    
    .stat h3 {
        font-size: 2.5rem;
    }
    
    .stat p {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .stat {
        min-width: 100%;
        padding: 1.5rem;
    }
}

/* Animações para Mobile */
@media (max-width: 768px) {
    .stat {
        transform: translateY(0);
        animation: cardPulse 2s infinite;
        background: rgba(255, 255, 255, 0.15);
        border: 1px solid var(--card-border);
    }

    .stat:hover {
        transform: none;
        animation: cardGlow 1.5s infinite;
    }

    /* Animação de pulso suave */
    @keyframes cardPulse {
        0% {
            transform: scale(1);
            box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.2);
        }
        50% {
            transform: scale(1.02);
            box-shadow: 0 0 20px 0 rgba(255, 255, 255, 0.3);
        }
        100% {
            transform: scale(1);
            box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.2);
        }
    }

    /* Animação de brilho ao tocar */
    @keyframes cardGlow {
        0% {
            box-shadow: 0 0 5px rgba(255, 255, 255, 0.3);
            border-color: rgba(255, 255, 255, 0.3);
        }
        50% {
            box-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
            border-color: rgba(255, 255, 255, 0.6);
        }
        100% {
            box-shadow: 0 0 5px rgba(255, 255, 255, 0.3);
            border-color: rgba(255, 255, 255, 0.3);
        }
    }

    /* Ajustes para os números e textos */
    .stat h3 {
        font-size: 2.5rem;
        background: linear-gradient(135deg, #ffffff 0%, #e0f7ff 100%);
        -webkit-background-clip: text;
        background-clip: text;
        -webkit-text-fill-color: transparent;
        animation: numberFloat 3s ease-in-out infinite;
    }

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

    .stat p {
        font-size: 1rem;
        opacity: 0.9;
        transform: translateY(0);
        transition: all 0.3s ease;
    }

    .stat:active {
        transform: scale(0.95);
        transition: transform 0.2s ease;
    }

    /* Organização dos cards em mobile */
    .hero-stats {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
        padding: 0 1rem;
    }

    .stat {
        width: 100%;
        margin: 0;
        padding: 2rem;
        border-radius: 15px;
    }
}

/* Objetivo Geral Section */
.objetivo {
    position: relative;
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--alibra-dark-bg) 0%, var(--alibra-dark-bg-secondary) 100%);
    z-index: 1;
    overflow: hidden;
}

.objetivo-waves {
    position: absolute;
    width: 100%;
    height: 150px;
    left: 0;
    z-index: 1;
    pointer-events: none;
}

.objetivo-waves.top-waves {
    top: 0;
}

.objetivo-waves.bottom-waves {
    bottom: 0;
}

.objetivo-waves svg {
    width: 100%;
    height: 100%;
}

.objetivo-waves .wave-path {
    fill: rgba(84, 175, 230, 0.05);
    transition: all 0.5s ease;
}

.objetivo-intro {
    text-align: center;
    max-width: 800px;
    margin: 1.5rem auto 3rem;
    font-size: 1.3rem;
    color: var(--white);
    font-weight: 300;
    line-height: 1.6;
}

/* Stats Section */
.objetivo-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 4rem;
    max-width: 700px;
    background: rgba(20, 29, 47, 0.7);
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(84, 175, 230, 0.1);
    position: relative;
    overflow: hidden;
}

.objetivo-stats::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--smile-blue), var(--smile-blue-light));
    opacity: 0.7;
}

.stat-item {
    flex: 1;
    text-align: center;
    padding: 1rem;
    position: relative;
}

.stat-value {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--smile-blue-light);
    background: linear-gradient(135deg, var(--smile-blue), var(--smile-blue-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.stat-label {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 300;
}

.stat-divider {
    width: 1px;
    height: 50px;
    background: linear-gradient(to bottom, transparent, rgba(84, 175, 230, 0.5), transparent);
    margin: 0 1rem;
}

/* Objetivo Cards */
.objetivo-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.objetivo-card {
    position: relative;
    background: rgba(26, 32, 44, 0.8);
    border-radius: 16px;
    padding: 2.5rem;
    border: 1px solid rgba(84, 175, 230, 0.1);
    transition: all 0.4s ease;
    overflow: hidden;
    z-index: 2;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.objetivo-card:hover {
    transform: translateY(-10px);
    border-color: var(--smile-blue);
    box-shadow: 0 15px 40px rgba(84, 175, 230, 0.2);
}

.card-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(84, 175, 230, 0.15), transparent 70%);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.objetivo-card:hover .card-glow {
    opacity: 1;
}

.card-icon {
    position: relative;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--smile-blue), rgba(84, 175, 230, 0.7));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    box-shadow: 0 0 25px rgba(84, 175, 230, 0.4);
    transition: all 0.3s ease;
}

.objetivo-card:hover .card-icon {
    transform: scale(1.1);
    box-shadow: 0 0 30px rgba(84, 175, 230, 0.6);
}

.card-icon i {
    font-size: 2.2rem;
    color: var(--white);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

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

.objetivo-card h3 {
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 1rem;
    font-weight: 600;
}

.objetivo-card p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.card-decoration {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--smile-blue), transparent);
    opacity: 0.5;
    transition: all 0.3s ease;
}

.objetivo-card:hover .card-decoration {
    opacity: 1;
    height: 5px;
}

.card-action {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin-top: auto;
}

.action-link {
    width: 40px;
    height: 40px;
    background: rgba(84, 175, 230, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--smile-blue);
    font-size: 1rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(84, 175, 230, 0.2);
}

.objetivo-card:hover .action-link {
    background: var(--smile-blue);
    color: var(--white);
    transform: scale(1.1);
    box-shadow: 0 0 15px rgba(84, 175, 230, 0.5);
}

.call-to-action {
    text-align: center;
    margin-top: 2rem;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    background: linear-gradient(135deg, var(--smile-blue), var(--smile-blue-light));
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 600;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(84, 175, 230, 0.4);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.2);
    z-index: 2;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: all 0.6s ease;
    z-index: -1;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(84, 175, 230, 0.5);
}

.cta-button i {
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.cta-button:hover i {
    transform: translateX(3px);
}

@media (max-width: 992px) {
    .objetivo-cards {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    
    .stat-value {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .objetivo-stats {
        flex-direction: column;
        padding: 1.5rem;
    }
    
    .stat-divider {
        width: 80%;
        height: 1px;
        margin: 1rem 0;
        background: linear-gradient(to right, transparent, rgba(84, 175, 230, 0.5), transparent);
    }
    
    .objetivo-intro {
        font-size: 1.1rem;
        padding: 0 1.5rem;
    }
    
    .objetivo-card {
        padding: 2rem;
    }
}

/* Benefícios Section */
.beneficios {
    padding: 6rem 0;
    background: var(--light-bg);
}

.section-subtitle {
    text-align: center;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

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

.beneficio-card {
    background: rgba(26, 32, 44, 0.7);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    padding: 2.5rem;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid var(--card-border);
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.beneficio-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    border-color: var(--smile-blue);
}

.icon-circle {
    width: 70px;
    height: 70px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    position: relative;
    z-index: 1;
}

.icon-circle::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: var(--primary-color);
    border-radius: 50%;
    opacity: 0.2;
    transform: scale(1.2);
    z-index: -1;
    transition: transform 0.3s ease;
}

.beneficio-card:hover .icon-circle::after {
    transform: scale(1.4);
}

.icon-circle i {
    font-size: 1.8rem;
    color: var(--white);
}

.beneficio-card h3 {
    color: var(--smile-blue);
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.beneficio-card p {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    min-height: 80px;
}

.saiba-mais {
    color: var(--smile-blue);
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    position: relative;
    padding: 0.5rem 0;
    transition: all 0.3s ease;
}

.saiba-mais::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.saiba-mais:hover {
    color: var(--smile-blue);
}

.saiba-mais:hover::after {
    width: 100%;
}

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

    .beneficio-card {
        padding: 2rem 1.5rem;
    }

    .beneficio-card p {
        min-height: auto;
    }

    .icon-circle {
        width: 60px;
        height: 60px;
    }

    .icon-circle i {
        font-size: 1.5rem;
    }
}

/* Agentes Section */
.agentes {
    position: relative;
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--light-bg) 0%, #ffffff 100%);
    overflow: hidden;
}

.agentes::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(0, 163, 215, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(0, 107, 143, 0.05) 0%, transparent 50%);
    animation: pulseBackground 10s ease-in-out infinite;
    z-index: 0;
}

.ai-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
}

.ai-particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 50%;
    opacity: 0.2;
    animation: floatParticle 15s linear infinite;
}

.ai-line {
    position: absolute;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    height: 1px;
    width: 100px;
    opacity: 0.1;
    animation: floatLine 20s linear infinite;
}

.agentes .container {
    position: relative;
    z-index: 2;
}

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

.agentes .tag {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(0, 163, 215, 0.1);
    color: var(--smile-blue);
    border-radius: 20px;
    font-weight: 500;
    margin-bottom: 1rem;
}

.agentes-tabs {
    max-width: 1200px;
    margin: 0 auto;
}

.tabs-header {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.tab-button {
    position: relative;
    overflow: hidden;
    padding: 1rem 2.5rem;
    border: none;
    background: var(--alibra-dark-bg-secondary);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1.275);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.tab-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: var(--primary-color);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
    z-index: 1;
    opacity: 0;
}

.tab-button:hover::before,
.tab-button.active::before {
    width: 300px;
    height: 300px;
    opacity: 1;
}

.tab-button span,
.tab-button i {
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.tab-button:hover span,
.tab-button:hover i,
.tab-button.active span,
.tab-button.active i {
    color: white;
}

.tab-button i {
    font-size: 1.2rem;
    color: var(--smile-blue);
}

.tab-button.active {
    background: var(--primary-color);
    color: white;
}

.tab-button.active i {
    color: white;
}

.tab-content {
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.tab-content.active {
    display: block;
    opacity: 1;
    animation: fadeIn 0.5s ease forwards;
}

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

.agent-card {
    background: var(--alibra-dark-bg-secondary);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: all 0.3s ease;
}

.agent-info {
    padding: 2rem;
}

.agent-info h3 {
    color: var(--smile-blue);
    margin-bottom: 2rem;
    text-align: center;
    font-size: 1.5rem;
}

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

.feature-item {
    text-align: center;
    padding: 1.5rem;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid var(--card-border);
    position: relative;
    overflow: hidden;
}

.feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 163, 215, 0.1), rgba(0, 107, 143, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.feature-item:hover::before {
    opacity: 1;
}

.feature-item i {
    font-size: 2.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    margin-bottom: 1rem;
    transform-origin: center;
    animation: pulseIcon 2s ease-in-out infinite;
}

.feature-item h4 {
    color: var(--smile-blue);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.feature-item p {
    color: var(--white);
    font-size: 0.9rem;
    line-height: 1.6;
}

@keyframes pulseBackground {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

@keyframes floatParticle {
    0% {
        transform: translate(0, 0);
        opacity: 0;
    }
    50% {
        opacity: 0.2;
    }
    100% {
        transform: translate(100vw, -100vh);
        opacity: 0;
    }
}

@keyframes floatLine {
    0% {
        transform: translate(-100%, 100vh) rotate(45deg);
        opacity: 0;
    }
    50% {
        opacity: 0.1;
    }
    100% {
        transform: translate(100vw, -100vh) rotate(45deg);
        opacity: 0;
    }
}

@keyframes pulseIcon {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

/* Responsividade */
@media (max-width: 768px) {
    .ai-particles {
        display: none;
    }
    
    .feature-item {
        transform: none !important;
    }
}

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

    .tabs-header {
        flex-direction: column;
        align-items: stretch;
    }

    .tab-button {
        justify-content: center;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .feature-item {
        padding: 1rem;
    }
}

@media (max-width: 480px) {
    .agentes .tag {
        font-size: 0.9rem;
    }

    .agent-info {
        padding: 1.5rem;
    }

    .feature-item i {
        font-size: 1.5rem;
    }

    .feature-item h4 {
        font-size: 1rem;
    }
}

/* Cabeçalho da Seção */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    padding-top: 1rem;
}

.section-tag {
    background: linear-gradient(90deg, var(--alibra-blue), var(--smile-blue));
    color: var(--white);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 1.5rem;
    border: 1px solid var(--card-border);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.section-header h2 {
    color: var(--smile-blue);
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
    background: linear-gradient(90deg, var(--alibra-blue), var(--smile-blue));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;

}

.section-header p {
    color: var(--text-secondary);
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.header-accent {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--alibra-blue), var(--smile-blue));
    margin: 2rem auto 0;
    border-radius: 2px;
    position: relative;
}

.header-accent::before,
.header-accent::after {
    content: '';
    position: absolute;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent-color);
    top: -1px;
}

.header-accent::before {
    left: -10px;
}

.header-accent::after {
    right: -10px;
}

@media (max-width: 768px) {
    .section-header {
        margin-bottom: 3rem;
    }

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

    .section-header p {
        font-size: 1.1rem;
        padding: 0 1rem;
    }

    .header-accent {
        width: 60px;
        margin-top: 1.5rem;
    }
}

/* Animations */

/* Mobile Responsive */
@media (max-width: 1200px) {
    .hero-content {
        gap: 2rem;
        padding-top: 100px;
    }

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

    .floating-bubble {
        padding: 1rem;
        font-size: 0.9rem;
    }

    .floating-bubble i {
        font-size: 1.2rem;
    }

    .bubble-1 {
        right: 60%;
    }

    .bubble-2 {
        left: 60%;
    }

    .bubble-3 {
        right: 55%;
    }

    .bubble-4 {
        left: 55%;
    }
}

@media (max-width: 992px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        padding-top: 80px;
    }

    .hero-text {
        padding-top: 2rem;
        order: 1;
    }

    .hero-image {
        order: 2;
        min-height: 400px;
    }

    .hero-cta {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .floating-bubble {
        transform: scale(0.9);
    }

    .bubble-1 {
        top: 5%;
        right: auto;
        left: 10%;
    }

    .bubble-2 {
        top: 5%;
        left: auto;
        right: 10%;
    }

    .bubble-3 {
        bottom: 15%;
        right: auto;
        left: 15%;
    }

    .bubble-4 {
        bottom: 15%;
        left: auto;
        right: 15%;
    }
}

@media (max-width: 768px) {
    .hero-text h1 {
        font-size: 2.5rem;
    }

    .subtitle {
        font-size: 1.2rem;
    }

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

    .floating-bubble {
        transform: scale(0.8);
    }

    .bubble-1, .bubble-2 {
        top: 0;
    }

    .bubble-3, .bubble-4 {
        bottom: 5%;
    }
}

@media (max-width: 576px) {
    .hero-text h1 {
        font-size: 2rem;
    }

    .hero-stats {
        grid-template-columns: 1fr;
    }

    .hero-cta {
        flex-direction: column;
        gap: 1rem;
    }

    .floating-bubble {
        transform: scale(0.7);
    }

    .bubble-1 {
        left: 5%;
    }

    .bubble-2 {
        right: 5%;
    }

    .bubble-3 {
        left: 5%;
    }

    .bubble-4 {
        right: 5%;
    }
}

/* Menu Mobile */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.menu-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background-color: var(--smile-blue);
    transition: all 0.3s ease;
}

@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        padding: 1rem;
        flex-direction: column;
        gap: 0.5rem;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    }

    .nav-links.active {
        display: flex;
    }

    .nav-item {
        padding: 1rem;
        border-radius: 8px;
    }

    .menu-toggle {
        display: flex;
    }

    .menu-toggle.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

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

    .menu-toggle.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .nav-item::after {
        display: none;
    }

    .nav-item.active {
        background: linear-gradient(135deg, rgba(0, 107, 143, 0.1) 0%, rgba(0, 163, 215, 0.1) 100%);
    }

    .demo-button span {
        display: none;
    }

    .demo-button {
        padding: 0.8rem;
        aspect-ratio: 1;
    }

    .demo-button i {
        margin: 0;
        font-size: 1.2rem;
    }
}

/* Modern Footer */
.footer {
    background: #001B26;
    color: white;
    position: relative;
    overflow: hidden;
    padding: 6rem 0 2rem;
}

.footer-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-brand {
    max-width: 300px;
}

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

.footer-description {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
    line-height: 1.6;
}

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

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(26, 32, 44, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--smile-blue);
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid var(--card-border);
}

.social-link:hover {
    background: var(--accent-color);
    transform: translateY(-3px);
}

.social-link i {
    color: white;
    font-size: 1.2rem;
}

.footer-nav h3,
.footer-contact h3 {
    color: white;
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.footer-nav ul,
.footer-contact ul {
    list-style: none;
    padding: 0;
}

.footer-nav li,
.footer-contact li {
    margin-bottom: 1rem;
}

.footer-nav a {
    color: white;
    opacity: 0.9;
    transition: all 0.3s ease;
    text-decoration: none;
}

.footer-nav a:hover {
    opacity: 1;
    color: var(--smile-blue);
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    opacity: 0.9;
}

.footer-contact i {
    color: var(--smile-blue);
}

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

.footer-bottom p {
    opacity: 0.7;
    font-size: 0.9rem;
}

/* Responsividade */
@media (max-width: 768px) {
    .tech-circle {
        width: 260px;
        height: 260px;
        margin: 0 auto;
    }

    .quem-somos-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .text-content {
        order: 2;
        margin-top: 2rem;
    }
    
    .tech-circle {
        order: 1;
    }

    .desenvolvimento-grid {
        grid-template-columns: 1fr;
    }

    .quem-somos-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .image-content {
        display: none;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

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

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

@media (max-width: 480px) {
    .desenvolvimento-item {
        padding: 1.5rem;
    }

    .icon-wrapper {
        width: 60px;
        height: 60px;
    }

    .objetivo-card {
        padding: 1.5rem;
    }
}

/* Schedule Demo Section */
.schedule-demo {
    padding: 8rem 0 0;
    position: relative;
    background: linear-gradient(135deg, var(--alibra-dark-bg) 0%, var(--alibra-dark-bg-secondary) 100%);
    overflow: hidden;
    border-top: 1px solid var(--card-border);
}

.particles-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.schedule-content {
    text-align: center;
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    background: rgba(26, 32, 44, 0.7);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    border: 1px solid var(--card-border);
}

.schedule-text {
    margin-bottom: 2rem;
}

.schedule-text h2 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
    background: linear-gradient(90deg, var(--white), var(--smile-blue));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.schedule-text .highlight {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
}

.schedule-action {
    position: relative;
}

.btn-schedule {
    display: inline-flex;
    align-items: center;
    padding: 1rem 2rem;
    background: linear-gradient(90deg, var(--alibra-blue), var(--smile-blue));
    color: var(--white);
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid var(--card-border);
}

.btn-schedule:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.btn-schedule .btn-text {
    margin-right: 10px;
    position: relative;
    z-index: 2;
}

.btn-schedule i {
    font-size: 1.2rem;
    position: relative;
    z-index: 2;
}

.btn-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.btn-schedule::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: 0.5s;
}

.btn-schedule:hover::before {
    left: 100%;
}

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

@media (max-width: 768px) {
    .schedule-content {
        margin: 0 1rem;
        padding: 1.5rem;
    }

    .schedule-text h2 {
        font-size: 2rem;
    }

    .schedule-text .highlight {
        font-size: 1rem;
    }

    .btn-schedule {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
}

/* Background Animation */
/* Remover qualquer background branco que possa estar sobrepondo */
.background-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
    overflow: hidden;
}

.floating-icon-bg {
    position: absolute;
    opacity: 0.03;
    animation: floatIconBg 15s linear infinite;
}

.floating-icon-bg.smile {
    font-size: 2rem;
    color: var(--smile-blue);
}

.floating-icon-bg.tech {
    font-size: 1.5rem;
    color: var(--secondary-color);
}

@keyframes floatIconBg {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }
    25% {
        transform: translate(10px, -10px) rotate(90deg);
    }
    50% {
        transform: translate(20px, 0) rotate(180deg);
    }
    75% {
        transform: translate(10px, 10px) rotate(270deg);
    }
    100% {
        transform: translate(0, 0) rotate(360deg);
    }
}

@keyframes floatIcon {
    0% { transform: translate(0, 0) rotate(0); opacity: 0.2; }
    25% { transform: translate(5px, 5px) rotate(5deg); opacity: 0.4; }
    50% { transform: translate(0, 10px) rotate(0); opacity: 0.3; }
    75% { transform: translate(-5px, 5px) rotate(-5deg); opacity: 0.4; }
    100% { transform: translate(0, 0) rotate(0); opacity: 0.2; }
}

/* Estilos da seção objetivo com tema Alibra */
.objetivo {
    background: linear-gradient(135deg, var(--alibra-dark-bg) 0%, var(--alibra-dark-bg-secondary) 100%);
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
    border-top: 1px solid var(--card-border);
    border-bottom: 1px solid var(--card-border);
}

.objetivo-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-top: 4rem;
}

.objetivo-card {
    background: rgba(26, 32, 44, 0.7);
    border-radius: 16px;
    padding: 2.5rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid var(--card-border);
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.objetivo-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(84, 175, 230, 0.2);
    border-color: var(--smile-blue);
}

.card-icon {
    position: relative;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--smile-blue), rgba(84, 175, 230, 0.7));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    box-shadow: 0 0 20px rgba(84, 175, 230, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.card-icon i {
    font-size: 2.5rem;
    color: var(--white);
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.objetivo-card h3 {
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.objetivo-card p {
    color: var(--text-color-muted);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.card-decoration {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--smile-blue), transparent);
    opacity: 0.6;
}

@media (max-width: 992px) {
    .objetivo-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .objetivo-cards {
        grid-template-columns: 1fr;
    }
}

/* Estilos para a seção Principais Benefícios */
.beneficios {
    background: linear-gradient(135deg, var(--alibra-dark-bg) 0%, var(--alibra-dark-bg-secondary) 100%);
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
    border-top: 1px solid var(--card-border);
    border-bottom: 1px solid var(--card-border);
}

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

.section-header .section-tag {
    display: inline-block;
    background: rgba(84, 175, 230, 0.2);
    color: var(--smile-blue);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
    border: 1px solid rgba(84, 175, 230, 0.3);
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(90deg, var(--smile-blue), var(--smile-blue-light), var(--white));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    display: inline-block;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-color-muted);
    max-width: 600px;
    margin: 0 auto;
}

.header-accent {
    width: 60px;
    height: 4px;
    background: var(--smile-blue);
    margin: 1.5rem auto 0;
    position: relative;
}

.header-accent:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--smile-blue);
    filter: blur(6px);
    opacity: 0.6;
}

.beneficios-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
}

.beneficio-card {
    background: rgba(26, 32, 44, 0.7);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid var(--card-border);
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    height: 100%;
}

.beneficio-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(84, 175, 230, 0.2);
    border-color: var(--smile-blue);
}

.beneficio-card .icon-circle {
    width: 65px;
    height: 65px;
    background: linear-gradient(135deg, var(--smile-blue), rgba(84, 175, 230, 0.7));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    box-shadow: 0 0 20px rgba(84, 175, 230, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.beneficio-card .icon-circle i {
    font-size: 1.8rem;
    color: var(--white);
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.beneficio-card h3 {
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.beneficio-card p {
    color: var(--text-color-muted);
    font-size: 1rem;
    line-height: 1.6;
}

/* Estilos para a seção Nossos Agentes */
.agentes {
    background: linear-gradient(135deg, var(--alibra-dark-bg) 0%, var(--alibra-dark-bg-secondary) 100%);
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
    border-top: 1px solid var(--card-border);
    border-bottom: 1px solid var(--card-border);
}

.agentes .section-header .tag {
    display: none; /* Tag oculta conforme solicitado */
}

.agentes-tabs {
    margin-top: 3rem;
}

.tabs-header {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
    border-bottom: 1px solid var(--card-border);
    padding-bottom: 1rem;
}

.tab-button {
    background: rgba(26, 32, 44, 0.7);
    border: 1px solid rgba(84, 175, 230, 0.3);
    border-radius: 50px;
    padding: 0.8rem 1.5rem;
    margin: 0 0.8rem;
    font-size: 1.1rem;
    color: var(--text-color-muted);
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(5px);
}

.tab-button i {
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.tab-button:hover i,
.tab-button.active i {
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.7);
    transform: scale(1.1);
}

.tab-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(84, 175, 230, 0.25);
    border-color: var(--smile-blue);
    color: var(--white);
}

.tab-button.active {
    background: linear-gradient(135deg, var(--smile-blue), rgba(84, 175, 230, 0.7));
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 5px 15px rgba(84, 175, 230, 0.4);
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

/* Removido o indicador de linha inferior para usar o estilo completo do botão */

.tabs-content {
    position: relative;
}

.tab-content {
    display: none;
    animation: fadeIn 0.5s ease forwards;
}

.tab-content.active {
    display: block;
}

.agent-card {
    background: rgba(26, 32, 44, 0.7);
    border-radius: 20px;
    padding: 3rem;
    position: relative;
    overflow: hidden;
    border: 1px solid var(--card-border);
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.agent-info h3 {
    font-size: 2rem;
    margin-bottom: 2rem;
    background: linear-gradient(90deg, var(--smile-blue), var(--smile-blue-light), var(--white));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    display: inline-block;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
}

.feature-item {
    background: rgba(26, 32, 44, 0.8);
    border-radius: 16px;
    padding: 1.5rem;
    border: 1px solid var(--card-border);
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(84, 175, 230, 0.15);
    border-color: var(--smile-blue);
}

.feature-item i {
    font-size: 1.8rem;
    color: var(--smile-blue);
    margin-bottom: 1rem;
    display: block;
    text-shadow: 0 0 10px rgba(84, 175, 230, 0.3);
}

.feature-item h4 {
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.feature-item p {
    color: var(--text-color-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

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

@media (max-width: 992px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .agent-card {
        padding: 2rem;
    }
    
    .tabs-header {
        flex-direction: column;
        align-items: center;
    }
    
    .tab-button {
        margin-bottom: 1rem;
    }
    
    .tab-button.active:after {
        bottom: -0.5rem;
    }
}

/* Estilos para a seção Escopo do Desenvolvimento */
.desenvolvimento {
    background: linear-gradient(135deg, var(--alibra-dark-bg) 0%, var(--alibra-dark-bg-secondary) 100%);
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
    border-top: 1px solid var(--card-border);
}

.desenvolvimento .header-accent {
    background: var(--smile-blue);
    margin: 1.5rem auto 3rem;
}

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

.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, var(--smile-blue) 0%, var(--smile-blue-light) 50%, var(--smile-blue) 100%);
    transform: translateX(-50%);
    box-shadow: 0 0 15px rgba(84, 175, 230, 0.3);
    border-radius: 4px;
    z-index: 1;
}

.timeline-line:before,
.timeline-line:after {
    content: '';
    position: absolute;
    left: 50%;
    width: 20px;
    height: 20px;
    background: var(--smile-blue);
    border-radius: 50%;
    transform: translateX(-50%);
    box-shadow: 0 0 15px rgba(84, 175, 230, 0.5);
}

.timeline-line:before {
    top: -10px;
}

.timeline-line:after {
    bottom: -10px;
}

.timeline-item {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    margin-bottom: 7rem;
    position: relative;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--smile-blue), var(--smile-blue-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    font-weight: 700;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    box-shadow: 0 0 20px rgba(84, 175, 230, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.2);
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.timeline-content {
    width: calc(50% - 50px);
    background: rgba(26, 32, 44, 0.8);
    border-radius: 16px;
    padding: 2rem;
    position: relative;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid var(--card-border);
    transition: all 0.3s ease;
    transform: translateY(25px);
    margin-top: 20px;
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-left: auto;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-right: auto;
}

.timeline-content:before {
    content: '';
    position: absolute;
    top: 20px;
    width: 20px;
    height: 20px;
    background: rgba(26, 32, 44, 0.8);
    transform: rotate(45deg);
    border: 1px solid var(--card-border);
    z-index: -1;
}

.timeline-item:nth-child(odd) .timeline-content:before {
    left: -10px;
    border-right: none;
    border-top: none;
}

.timeline-item:nth-child(even) .timeline-content:before {
    right: -10px;
    border-left: none;
    border-bottom: none;
}

.timeline-item:hover .timeline-content {
    transform: translateY(0);
    border-color: var(--smile-blue);
    box-shadow: 0 15px 35px rgba(84, 175, 230, 0.15);
}

.timeline-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--smile-blue), rgba(84, 175, 230, 0.7));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    box-shadow: 0 0 20px rgba(84, 175, 230, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.timeline-icon i {
    font-size: 1.8rem;
    color: var(--white);
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.timeline-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--white);
    font-weight: 600;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.timeline-content p {
    color: var(--text-color-muted);
    font-size: 1rem;
    line-height: 1.6;
}

@media (max-width: 991px) {
    .timeline-line {
        left: 50px;
    }
    
    .timeline-number {
        left: 50px;
    }
    
    .timeline-content {
        width: calc(100% - 100px);
        margin-left: 100px !important;
    }
    
    .timeline-item:nth-child(odd) .timeline-content:before,
    .timeline-item:nth-child(even) .timeline-content:before {
        left: -10px;
        border-right: none;
        border-top: none;
    }
}

@media (max-width: 576px) {
    .timeline-line {
        left: 30px;
    }
    
    .timeline-number {
        left: 30px;
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .timeline-content {
        width: calc(100% - 60px);
        margin-left: 60px !important;
        padding: 1.5rem;
    }
    
    .timeline-icon {
        width: 50px;
        height: 50px;
    }
    
    .timeline-icon i {
        font-size: 1.5rem;
    }
    
    .timeline-content h3 {
        font-size: 1.3rem;
    }
}

/* Estilos para o Footer */
.footer {
    background: linear-gradient(180deg, rgba(20, 25, 36, 0.95) 0%, rgba(15, 19, 27, 0.98) 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(84, 175, 230, 0.2);
    padding-top: 2rem;
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.15);
}

.footer-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.3;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.footer-wave {
    position: absolute;
    top: -2px;
    left: 0;
    width: 100%;
    line-height: 0;
    z-index: 1;
}

.footer-content {
    padding: 3rem 0 2rem;
    position: relative;
    z-index: 2;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-about p {
    color: rgba(255, 255, 255, 0.7);
    margin: 1.5rem 0;
    line-height: 1.6;
    max-width: 90%;
    font-size: 0.95rem;
}

.footer-brand {
    font-size: 1.8rem;
    font-weight: 700;
    background: linear-gradient(90deg, var(--smile-blue), var(--smile-blue-light));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    display: inline-block;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 10px rgba(84, 175, 230, 0.15);
}

.footer-brand span {
    font-weight: 900;
}

.footer-logo-container {
    position: relative;
    display: inline-block;
}

.footer-logo-container::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--smile-blue);
    border-radius: 3px;
    box-shadow: 0 0 10px var(--smile-blue);
}

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

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(26, 32, 44, 0.5);
    backdrop-filter: blur(5px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--smile-blue);
    font-size: 1rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(84, 175, 230, 0.3);
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, var(--smile-blue-light) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    transition: all 0.5s ease;
    opacity: 0;
    border-radius: 50%;
}

.social-link:hover::before {
    width: 140%;
    height: 140%;
    opacity: 0.3;
}

.social-link:hover {
    background: rgba(84, 175, 230, 0.2);
    color: var(--white);
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(84, 175, 230, 0.3);
    border-color: var(--smile-blue);
}

.footer-section h3,
.footer-contact h3 {
    color: var(--white);
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
    font-weight: 600;
    position: relative;
    display: inline-block;
    padding-bottom: 0.7rem;
}

.footer-section h3::after,
.footer-contact h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 3px;
    background: var(--smile-blue);
    border-radius: 5px;
}

.footer-nav-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-nav-links li {
    margin-bottom: 1rem;
}

.footer-nav-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    font-size: 0.95rem;
}

.footer-nav-links a i {
    color: var(--smile-blue);
    font-size: 0.7rem;
    margin-right: 0.7rem;
    transition: all 0.3s ease;
}

.footer-nav-links a:hover {
    color: var(--smile-blue-light);
}

.footer-nav-links a:hover i {
    transform: translateX(3px);
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

.contact-item i {
    color: var(--smile-blue);
    font-size: 1.1rem;
    margin-right: 1rem;
    width: 20px;
    display: flex;
    justify-content: center;
}

.contact-item a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-item a:hover {
    color: var(--smile-blue-light);
}

.footer-newsletter {
    margin-top: 2rem;
}

.footer-newsletter h4 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: var(--white);
    font-weight: 500;
}

.newsletter-form {
    display: flex;
    max-width: 100%;
}

.newsletter-input {
    flex: 1;
    background: rgba(26, 32, 44, 0.5);
    border: 1px solid rgba(84, 175, 230, 0.3);
    border-radius: 30px 0 0 30px;
    padding: 0.5rem 1rem;
    color: var(--white);
    font-size: 0.9rem;
    outline: none;
    transition: all 0.3s ease;
}

.newsletter-input:focus {
    border-color: var(--smile-blue);
    box-shadow: 0 0 10px rgba(84, 175, 230, 0.3);
}

.newsletter-btn {
    background: var(--smile-blue);
    color: var(--white);
    border: none;
    border-radius: 0 30px 30px 0;
    padding: 0.5rem 1rem;
    cursor: pointer;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.newsletter-btn:hover {
    background: linear-gradient(135deg, var(--smile-blue), var(--smile-blue-light));
    box-shadow: 0 5px 15px rgba(84, 175, 230, 0.3);
}

.footer-border {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(84, 175, 230, 0.3), transparent);
    margin-bottom: 1.5rem;
}

.footer-bottom {
    text-align: center;
    padding: 1.5rem 0;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    position: relative;
    z-index: 2;
}

.footer-bottom p {
    margin: 0;
}

.footer-bottom p i {
    color: var(--smile-blue);
    margin-right: 5px;
}

/* Responsividade para o footer */
@media (max-width: 991px) {
    .footer-top {
        grid-template-columns: 1fr 1fr;
    }
    
    .footer-about {
        grid-column: 1 / 3;
    }
    
    .footer-about p {
        max-width: 100%;
    }
}

@media (max-width: 767px) {
    .footer-top {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-about {
        grid-column: auto;
    }
    
    .footer-content {
        padding: 2.5rem 0 1.5rem;
    }
    
    .footer-wave svg {
        height: 70px;
    }
}

/* Botão WhatsApp Flutuante */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background: linear-gradient(135deg, var(--smile-blue), #7bc4f0);
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 4px 15px rgba(84, 175, 230, 0.4);
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 10px 25px rgba(84, 175, 230, 0.5);
}

.whatsapp-text {
    position: absolute;
    right: 70px;
    background: rgba(26, 32, 44, 0.9);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    border: 1px solid var(--smile-blue);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.whatsapp-float:hover .whatsapp-text {
    opacity: 1;
    visibility: visible;
    right: 75px;
}

@media (max-width: 992px) {
    .footer-top {
        grid-template-columns: 1fr 1fr;
    }
    
    .footer-about {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .footer-top {
        grid-template-columns: 1fr;
    }
    
    .footer-about {
        grid-column: span 1;
    }
}

/* Fundo gradiente do Alibra - NÃO modificar */
/* O estilo do body já foi definido no topo do arquivo */

/* Ajustando o layout das bolhas para dispositivos móveis */
@media (max-width: 768px) {
    .floating-bubble {
        position: relative;
        display: inline-block;
        margin: 10px;
        top: auto !important;
        left: auto !important;
        right: auto !important;
        bottom: auto !important;
    }

    .hero-image {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
        padding: 20px;
    }
}
