:root {
    --primary-color: #4B0082; /* Roxo escuro da logo */
    --secondary-color: #0000FF; /* Azul da logo */
    --gradient-primary: linear-gradient(135deg, #4B0082, #6A0DAD);
    --gradient-secondary: linear-gradient(135deg, #0000FF, #4169E1);
    --text-color: #333;
    --light-text: #fff;
    --light-bg: #f8f9fa;
    --dark-bg: #1a1a2e;
    --success-color: #38b000;
    --border-radius: 12px;
    --box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

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

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

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

section {
    padding: 80px 0;
}

h1, h2, h3, h4, h5, h6 {
    margin-bottom: 20px;
    line-height: 1.2;
}

h1 {
    font-size: 3.5rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

h2 {
    font-size: 2.5rem;
    font-weight: 700;
    position: relative;
    margin-bottom: 40px;
}

h2:after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 0;
    width: 80px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

h3 {
    font-size: 1.8rem;
    font-weight: 600;
}

p {
    margin-bottom: 20px;
    font-size: 1.1rem;
}

/* Header e navegação */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: transparent;
    transition: all 0.3s ease;
    padding: 15px 0;
}

header.scrolled {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

header.scrolled .nav-links a {
    color: #333;
}

@media (max-width: 992px) {
    header.scrolled .nav-links a {
        color: white !important;
    }
}

header.scrolled .btn {
    background: #4B0082;
    color: white;
}

header.scrolled .mobile-menu-btn span {
    background-color: #4B0082;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0;
}

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

.logo-img {
    height: 45px;
    width: auto;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-left: auto;
}

.nav-links {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 40px;
}

.nav-links li {
    margin: 0;
}

.nav-links a {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    transition: color 0.3s ease;
    position: relative;
}

.nav-links a:hover {
    color: #000;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.btn {
    display: inline-block;
    padding: 12px 32px;
    background: #4B0082;
    color: white;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    box-shadow: none;
    margin-left: 20px;
}

.btn:hover {
    background: #6B2FD3;
    transform: none;
    box-shadow: none;
}

nav > :last-child {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 20px;
}

/* Menu mobile */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    cursor: pointer;
}

.mobile-menu-btn span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--primary-color);
    transition: all 0.3s ease;
}

/* Seção Hero */
.hero {
    position: relative;
    overflow: hidden;
    background-color: #ffffff;
    height: 100vh;
    width: 100%;
    margin: 0;
    padding: 0;
}

.hero-content {
    padding-top: 0;
    position: relative;
    z-index: 2;
    height: 87vh;
    display: flex;
    align-items: center;
}

.hero-image {
    position: relative;
    width: 100%;
    height: 100vh;
    margin: 0;
    padding: 0;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-text {
    position: relative;
    z-index: 2;
    background: rgba(255, 255, 255, 0.9);
    padding: 30px;
    border-radius: var(--border-radius);
    backdrop-filter: blur(10px);
}

.hero-badges {
    display: flex;
    margin-bottom: 30px;
    gap: 15px;
}

.badge {
    padding: 8px 15px;
    background: rgba(75, 0, 130, 0.1);
    color: var(--primary-color);
    border-radius: 50px;
    font-weight: 500;
    font-size: 0.85rem;
}

.hero-cta {
    display: flex;
    gap: 20px;
    margin-top: 40px;
}

.floating-card {
    position: absolute;
    padding: 15px 20px;
    background: white;
    border-radius: 10px;
    box-shadow: var(--box-shadow);
    display: flex;
    align-items: center;
    gap: 15px;
    animation: float 6s ease-in-out infinite;
}

.floating-card.card-1 {
    top: 20%;
    right: -30px;
    animation-delay: 0s;
}

.floating-card.card-2 {
    bottom: 15%;
    left: -20px;
    animation-delay: 2s;
}

.floating-icon {
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
}

.floating-text {
    font-size: 0.9rem;
    font-weight: 600;
}

/* Features Section */
.features {
    background-color: var(--light-bg);
    position: relative;
}

.section-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.section-intro h2 {
    display: inline-block;
}

.section-intro h2:after {
    left: 50%;
    transform: translateX(-50%);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.feature-card {
    background: white;
    border-radius: var(--border-radius);
    padding: 30px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--box-shadow);
}

.feature-icon {
    width: 70px;
    height: 70px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all 0.3s ease;
    overflow: hidden;
}

.feature-icon img {
    width: 45px;
    height: 45px;
    object-fit: contain;
}

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

.feature-icon svg {
    width: 30px;
    height: 30px;
    color: white;
}

/* Benefícios */
.benefits {
    padding: 100px 0;
}

.benefits-container {
    display: flex;
    align-items: center;
    gap: 50px;
}

.benefits-image {
    flex: 1;
    position: relative;
    text-align: center;
}

.benefits-image img {
    width: 100%;
    max-width: 500px;
    border-radius: 20px;
    box-shadow: var(--box-shadow);
}

.benefits-content {
    flex: 1;
}

.benefits-list {
    list-style: none;
}

.benefit-item {
    margin-bottom: 25px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.check-icon {
    min-width: 25px;
    height: 25px;
    background: var(--success-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 14px;
    margin-top: 5px;
}

.benefit-content h4 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: var(--primary-color);
}

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

/* Responsividade para Mobile */
@media (max-width: 992px) {
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .hero-content, .benefits-container {
        flex-direction: column;
    }
    
    .hero-image, .benefits-image {
        margin-top: 40px;
        order: 2;
    }
    
    .floating-card {
        position: relative;
        margin: 20px auto;
        animation: none;
        transform: translateY(0) !important;
    }
    
    .floating-card.card-1, .floating-card.card-2 {
        top: auto;
        right: auto;
        bottom: auto;
        left: auto;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .nav-links {
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        flex-direction: column;
        background: var(--gradient-primary);
        padding: 20px;
        gap: 20px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        transform: translateY(-150%);
        transition: transform 0.3s ease;
        opacity: 0;
        z-index: 999;
        align-items: center;
    }
    
    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
    }
    
    .nav-links li {
        margin: 15px 0;
    }
    
    .nav-links a {
        color: white;
    }
    
    header .btn {
        display: none;
    }
}

/* Estilos para a seção de preços */
.pricing {
    background-color: var(--light-bg);
    position: relative;
    padding: 100px 0;
}

.pricing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 50px;
    gap: 15px;
}

.pricing-toggle span {
    font-weight: 500;
}

.discount {
    color: var(--success-color);
    font-weight: 600;
}

.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 30px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: .4s;
}

.slider:before {
    position: absolute;
    content: "";
    height: 22px;
    width: 22px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: .4s;
}

input:checked + .slider {
    background-color: var(--primary-color);
}

input:focus + .slider {
    box-shadow: 0 0 1px var(--primary-color);
}

input:checked + .slider:before {
    transform: translateX(30px);
}

.slider.round {
    border-radius: 34px;
}

.slider.round:before {
    border-radius: 50%;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.pricing-card {
    background: white;
    border-radius: var(--border-radius);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--box-shadow);
}

.pricing-card.popular {
    border: 2px solid var(--primary-color);
    transform: scale(1.05);
}

.pricing-card.popular:hover {
    transform: scale(1.05) translateY(-10px);
}

.popular-tag {
    position: absolute;
    top: 20px;
    right: -35px;
    background: var(--primary-color);
    color: white;
    padding: 8px 40px;
    font-size: 0.8rem;
    font-weight: 600;
    transform: rotate(45deg);
}

.pricing-header {
    padding: 30px;
    background: rgba(75, 0, 130, 0.03);
    text-align: center;
    border-bottom: 1px solid #eee;
}

.pricing-header h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.currency {
    font-size: 1.5rem;
    margin-right: 5px;
    align-self: flex-start;
}

.period {
    font-size: 1rem;
    color: #777;
    font-weight: 400;
    margin-left: 5px;
    align-self: flex-end;
}

.pricing-body {
    padding: 30px;
    flex-grow: 1;
}

.pricing-features {
    list-style: none;
    margin: 0;
    padding: 0;
}

.pricing-features li {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    gap: 10px;
}

.pricing-features li svg {
    width: 20px;
    height: 20px;
    color: var(--success-color);
    flex-shrink: 0;
}

.pricing-features li.disabled {
    color: #aaa;
}

.pricing-features li.disabled svg {
    color: #ccc;
}

.pricing-footer {
    padding: 20px 30px 30px;
    text-align: center;
}

.enterprise-plan {
    background: white;
    border-radius: var(--border-radius);
    padding: 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.enterprise-content h3 {
    margin-bottom: 10px;
    color: var(--primary-color);
}

@media (max-width: 768px) {
    .pricing-card.popular {
        transform: scale(1);
    }
    
    .pricing-card.popular:hover {
        transform: translateY(-10px);
    }
    
    .enterprise-plan {
        flex-direction: column;
        text-align: center;
    }
}

/* Estilos para a seção FAQ */
.faq {
    padding: 100px 0;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 20px;
    border: 1px solid #eee;
    border-radius: var(--border-radius);
    overflow: hidden;
}

.faq-question {
    padding: 20px 30px;
    background: white;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
}

.faq-question h4 {
    margin: 0;
    font-size: 1.1rem;
}

.faq-icon {
    transition: all 0.3s ease;
}

.faq-icon svg {
    width: 24px;
    height: 24px;
    color: var(--primary-color);
}

.faq-answer {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 20px 30px;
    max-height: 500px;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

/* Seção de Contato */
.contact {
    padding: 100px 0;
    background-color: white;
}

.contact-container {
    display: flex;
    gap: 50px;
    align-items: center;
}

.contact-info {
    flex: 1;
}

.contact-info h2::after {
    left: 0;
    transform: none;
}

.contact-details {
    margin: 40px 0;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    color: white;
    flex-shrink: 0;
}

.contact-icon svg {
    width: 24px;
    height: 24px;
}

.contact-item h4 {
    margin-bottom: 5px;
    color: var(--primary-color);
}

.cta-container {
    background: var(--light-bg);
    padding: 30px;
    border-radius: var(--border-radius);
    margin: 30px 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.cta-container h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
    background: #25D366;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
    background: #20BD5C;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.whatsapp-icon {
    width: 24px;
    height: 24px;
}

.contact-image {
    flex: 1;
    max-width: 500px;
}

.contact-image img {
    width: 100%;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--light-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-5px);
}

/* Rodapé */
footer {
    background-color: #330057;
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
}

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

.footer-logo img {
    height: 150px;
    margin-bottom: 5px;
}

.footer-logo p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    margin-bottom: 0;
}

.footer-links {
    display: flex;
    gap: 60px;
}

.footer-column h4 {
    margin-bottom: 20px;
    color: white;
    font-size: 1.2rem;
    font-weight: 600;
}

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

.footer-column li {
    margin-bottom: 12px;
}

.footer-column a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.footer-column a:hover {
    color: white;
    transform: translateX(5px);
}

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

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

@media (max-width: 992px) {
    .footer-content {
        flex-direction: column;
        gap: 40px;
    }
    
    .footer-logo {
        max-width: 100%;
        text-align: center;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }
    
    .footer-column {
        text-align: center;
    }
    
    .footer-column ul {
        text-align: center;
    }
    
    .footer-column a:hover {
        transform: none;
    }
}

/* Produtos Section */
.produtos {
    padding: 4rem 0;
    background: #f5f5f5;
    color: var(--text-color);
}

.produtos h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

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

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

.produto-card {
    background-color: white;
    padding: 2.5rem;
    border-radius: var(--border-radius);
    text-align: center;
    transition: all 0.3s ease;
    text-decoration: none;
    color: var(--text-color);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

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

.produto-card img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
}

.produto-card:hover img {
    transform: scale(1.1);
}

.produto-card i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
}

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

.produto-card h3 {
    color: var(--text-color);
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.produto-card p {
    color: var(--text-color);
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.8;
}

.saiba-mais {
    font-weight: 600;
    font-size: 1rem;
    color: var(--primary-color);
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.produto-card:hover .saiba-mais {
    opacity: 1;
}

/* Seção Sobre */
.sobre {
    padding: 100px 0;
    background: #f5f5f5;
    text-align: center;
}

.sobre h2 {
    margin-bottom: 20px;
}

.sobre .section-description {
    max-width: 800px;
    margin: 0 auto 50px;
}

.sobre-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.sobre-card {
    background: white;
    border-radius: var(--border-radius);
    padding: 40px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.sobre-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-primary);
    transition: all 0.3s ease;
}

.sobre-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.card-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.card-icon svg {
    width: 30px;
    height: 30px;
}

.sobre-card h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 1.8rem;
}

.sobre-card p {
    color: var(--text-color);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 0;
}

.valores-list {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.valores-list li {
    padding: 12px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    color: var(--text-color);
    font-size: 1.1rem;
    display: flex;
    align-items: center;
}

.valores-list li:last-child {
    border-bottom: none;
}

.valores-list li::before {
    content: '•';
    color: var(--primary-color);
    font-weight: bold;
    margin-right: 10px;
}

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

/* Serviços Section */
.servicos {
    padding: 2rem 0;
    background-color: #330057;
    color: white;
}

.servicos h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 4rem;
}

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

.servico-card {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
}

.servico-card h3 {
    margin: 1rem 0;
    font-size: 1.5rem;
}

.servico-card p {
    margin: 0;
    font-size: 1rem;
    line-height: 1.6;
    max-width: 100%;
    word-wrap: break-word;
}

.servico-card:hover {
    transform: translateY(-10px);
}

.servico-card i {
    font-size: 3rem;
    color: #fff;
    margin-bottom: 1rem;
}

/* Estilos do Chat Hero */
.chat-container {
    position: relative;
    width: 100%;
    height: 100vh;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background-image: url('../imagens/Banner_de_site_4.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: transparent;
}

/* Removendo as classes que não serão mais necessárias */
.person-image {
    display: none;
}

.person-image img {
    display: none;
}

.chat-message {
    position: absolute;
    display: flex;
    align-items: flex-start;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.5s forwards;
    width: 280px;
}

.chat-message.user {
    left: 25%;
    flex-direction: row;
}

.chat-message.bot {
    right: 25%;
    flex-direction: row-reverse;
}

/* Posicionamento específico para cada mensagem */
/* Mensagens do usuário (lado esquerdo) */
.chat-message:nth-child(1) {
    top: 20%;
    animation-delay: 1s;
}

.chat-message:nth-child(3) {
    top: 50%;
    animation-delay: 4s;
}

/* Mensagens do bot (lado direito) */
.chat-message:nth-child(2) {
    top: 35%;
    animation-delay: 2.5s;
}

.chat-message:nth-child(4) {
    top: 65%;
    animation-delay: 5.5s;
}

.avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 10px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.message {
    background: #fff;
    padding: 15px;
    border-radius: 15px;
    max-width: 100%;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: relative;
}

.bot .message {
    background: #4B0082;
    color: #fff;
}

.name {
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 5px;
}

.text {
    font-size: 15px;
    line-height: 1.4;
}

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

@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@media (max-width: 992px) {
    .chat-container {
        background-size: cover;
        background-position: center;
        height: 100vh;
        width: 100%;
    }
}