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

body {
    font-family: 'Roboto', sans-serif;
    background: #000000;
    color: #fff;
    line-height: 1.6;
}

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

.container .templates-scroll {
    max-width: none;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    position: relative;
    left: 0;
    right: 0;
    transform: none;
    padding-left: 0;
    padding-right: 0;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    padding: 140px 0 180px;
    position: relative;
    overflow: hidden;
    margin-top: 80px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(45deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.02) 100%);
    clip-path: polygon(100% 0, 0% 100%, 100% 100%);
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-text h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-text h1 .highlight {
    background: linear-gradient(45deg, #ff0000, #ff4444);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-text p {
    font-size: 1.2rem;
    color: #ccc;
    margin-bottom: 40px;
}

.btn-primary {
    background: linear-gradient(45deg, #ffdd00, #ffcc00);
    color: #000000;
    padding: 16px 48px;
    border: none;
    border-radius: 50px;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 15px 25px rgba(255, 221, 0, 0.3);
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 30px rgba(255, 221, 0, 0.4);
}

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

.hero-img {
    max-width: 90%;
    height: auto;
    object-fit: contain;
}

.browser-mockup {
    position: absolute;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.browser-mockup:nth-child(1) {
    width: 300px;
    height: 200px;
    top: 0;
    left: 0;
    transform: rotate(-5deg);
}

.browser-mockup:nth-child(2) {
    width: 280px;
    height: 180px;
    top: 50px;
    right: 0;
    transform: rotate(3deg);
}

.browser-mockup:nth-child(3) {
    width: 250px;
    height: 160px;
    bottom: 0;
    left: 50px;
    transform: rotate(-2deg);
}

/* Features Section */
.features {
    padding: 80px 0;
    background: #1a1a1a;
}

.section-title {
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 60px;
}

.section-title .highlight {
    background: linear-gradient(45deg, #ff0000, #ff4444);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.feature-card {
    background: rgba(255, 0, 0, 0.1);
    border: 1px solid rgba(255, 0, 0, 0.2);
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(255, 0, 0, 0.2);
}

.feature-icon {
    font-size: 3rem;
    color: #ff0000;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.feature-card p {
    color: #ccc;
}

/* Categories Bar */
.categories {
    background: linear-gradient(45deg, #ff0000, #cc0000);
    padding: 20px 0;
    overflow: hidden;
}

.categories .container {
    padding: 0;
}

.categories-content {
    display: flex;
    align-items: center;
    gap: 30px;
    white-space: nowrap;
    animation: scroll-left 20s linear infinite;
    width: max-content;
    padding-left: 20px;
}

.categories-content:hover {
    animation-play-state: paused;
}

.category {
    color: #fff;
    font-weight: 500;
    padding: 10px 20px;
    border-right: 1px solid rgba(255,255,255,0.3);
    flex-shrink: 0;
}

.category:last-child {
    border-right: none;
}

@keyframes scroll-left {
    0% {
        transform: translateX(-25%);
    }
    100% {
        transform: translateX(-75%);
    }
}

@keyframes scroll-templates {
    0% {
        transform: translateX(-25%);
    }
    100% {
        transform: translateX(-75%);
    }
}

/* Garantir que a animação sempre funcione */
.templates-scroll .templates-content {
    animation: scroll-templates 60s linear infinite !important;
    animation-play-state: running !important;
}

/* Pausar no hover para ver as imagens */
.templates-scroll:hover .templates-content {
    animation-play-state: paused !important;
}

/* Templates Section */
.templates {
    padding: 80px 0;
    background: #000000;
    overflow: hidden;
}

.templates-scroll {
    overflow: hidden;
    margin-bottom: 40px;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    max-width: 100vw;
    padding-top: 7px;
    padding-bottom: 7px;
}

.templates-content {
    display: flex;
    align-items: center;
    gap: 30px;
    white-space: nowrap;
    animation: scroll-templates 60s linear infinite !important;
    width: max-content;
    padding-left: 20px;
    animation-play-state: running !important;
}

.templates-content .template-item {
    flex-shrink: 0;
    width: 300px;
    height: 340px;
    transition: all 0.3s ease;
}

.templates-scroll:hover .template-item {
    border: 3px solid #ff4444;
}

.templates-content .template-image {
    width: 100%;
    height: 100%;
}

.templates-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.template-item {
    background: #fff;
    border: 3px solid #ff0000;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(255, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.template-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(255, 0, 0, 0.4);
    border-color: #cc0000;
}

.template-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.template-image {
    width: 100%;
    height: 408px;
    background: linear-gradient(45deg, #f0f0f0, #e0e0e0);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    overflow: hidden;
    border-radius: 9px 9px 0 0;
    border-bottom: none;
    position: relative;
}

.template-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    position: absolute;
    top: 0;
    left: 0;
}

.template-label-container {
    text-align: center;
    margin-top: 15px;
}

.template-label {
    background: rgba(255, 0, 0, 0.1);
    border: 1px solid #ff0000;
    color: #ff0000;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    display: inline-block;
}

/* FAQ Section */
.faq {
    padding: 80px 0;
    background: #1a1a1a;
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.faq-item {
    background: rgba(255, 0, 0, 0.1);
    border: 1px solid rgba(255, 0, 0, 0.2);
    border-radius: 12px;
    padding: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-item:hover {
    background: rgba(255, 0, 0, 0.15);
}

.faq-question {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    margin-bottom: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-answer {
    color: #ccc;
    display: none;
}

.faq-item.active .faq-answer {
    display: block;
}

/* Pricing Section */
.pricing {
    padding: 80px 0;
    background: #000000;
    text-align: center;
}

.price-card {
    background: linear-gradient(45deg, #ff0000, #cc0000);
    border-radius: 20px;
    padding: 40px;
    max-width: 400px;
    margin: 0 auto;
}

.price {
    font-family: 'Montserrat', sans-serif;
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 10px;
}

.price-details {
    font-size: 1.1rem;
    margin-bottom: 30px;
}

/* Footer */
.footer {
    background: #1a1a1a;
    padding: 40px 0;
    color: #ccc;
    border-top: 1px solid #333;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-links {
    display: flex;
    align-items: center;
    gap: 15px;
}

.footer-link {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #ff0000;
}

.footer-divider {
    color: #666;
    font-weight: 300;
}

.footer-copyright {
    text-align: right;
}

.footer-copyright p {
    margin: 0;
    color: #ccc;
}

/* Responsive */
@media (max-width: 768px) {
    .hero {
        padding: 30px 0 30px;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

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

    .hero-img {
        max-width: 80%;
    }
    
    .templates-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .templates-content {
        gap: 20px;
    }
    
    .templates-scroll {
        width: 100vw;
        margin-left: calc(-50vw + 50%);
    }
    
    .templates-content .template-item {
        width: 250px;
        height: 255px;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .footer-copyright {
        text-align: center;
    }

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

    .categories-content {
        gap: 20px;
        animation: scroll-left 15s linear infinite;
    }

    .category {
        border-right: 1px solid rgba(255,255,255,0.3);
        padding: 8px 15px;
        font-size: 1.08rem;
    }

    .category:last-child {
        border-right: 1px solid rgba(255,255,255,0.3);
    }
}

/* Header */
.header {
    background: rgba(0, 0, 0, 0.95);
    padding: 15px 0;
    border-bottom: 1px solid #333;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-link {
    color: #ccc;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #ff0000;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #ff0000;
    transition: width 0.3s ease;
}

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

.nav-cta {
    background: linear-gradient(45deg, #ffdd00, #ffcc00);
    color: #000000 !important;
    padding: 9.6px 19.2px;
    border-radius: 20px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.72rem;
    box-shadow: 0 4px 15px rgba(255, 221, 0, 0.3);
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 221, 0, 0.4);
    background: #ff0000;
    color: #fff !important;
}

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

.mobile-menu-toggle {
    display: none;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
    transition: color 0.3s ease;
}

.mobile-menu-toggle:hover {
    color: #ff0000;
}

.logo-img {
    height: 53.24px;
    width: auto;
    transition: all 0.3s ease;
}

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

.nav-link {
    color: #ccc;
    text-decoration: none;
    padding: 8px 16px;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.nav-link:hover {
    background: #ff0000;
    color: #fff;
}

.nav-link.active {
    background: #ff0000;
    color: #fff;
}

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

/* Legal Pages */
.legal-content {
    background: #000000;
    min-height: 100vh;
    padding: 120px 0 60px 0;
}

.legal-header {
    text-align: center;
    margin-bottom: 60px;
}

.legal-header h1 {
    color: #fff;
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 10px;
}

.legal-date {
    color: #ccc;
    font-size: 1.1rem;
}

.legal-section {
    background: #1a1a1a;
    padding: 40px;
    margin-bottom: 30px;
    border-radius: 12px;
    border-left: 4px solid #ff0000;
}

.legal-section h2 {
    color: #ff0000;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.legal-section p {
    color: #ccc;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 15px;
}

.legal-section ul {
    color: #ccc;
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 15px 0;
    padding-left: 20px;
}

.legal-section li {
    margin-bottom: 8px;
}

.legal-section strong {
    color: #fff;
}

/* Responsive Legal Pages */
@media (max-width: 768px) {
    .legal-header h1 {
        font-size: 2.5rem;
    }
    
    .legal-section {
        padding: 30px 20px;
        margin-bottom: 20px;
    }
    
    .legal-section h2 {
        font-size: 1.5rem;
    }
    
    .legal-section p,
    .legal-section ul {
        font-size: 1rem;
    }
    
    /* Mobile Menu */
    .nav {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .header-content {
        position: relative;
    }
    
    .nav.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(0, 0, 0, 0.98);
        padding: 20px;
        border-top: 1px solid #333;
        gap: 15px;
    }
    
    .nav.active .nav-link {
        padding: 5px 3px;
        border-bottom: 1px solid #333;
    }
    
    .nav.active .nav-cta {
        margin-top: 10px;
        text-align: center;
    }
    
    .logo-img {
        height: 46.585px;
    }
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, #ff0000, #cc0000);
    color: #fff;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 4px 15px rgba(255, 0, 0, 0.3);
    transition: all 0.3s ease;
    z-index: 1000;
    transform-origin: center;
}

.back-to-top:hover {
    background: linear-gradient(45deg, #cc0000, #990000);
    transform: translateX(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(255, 0, 0, 0.4);
}

.back-to-top.show {
    display: flex;
    animation: fadeInUp 0.3s ease;
}

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

/* Responsive Back to Top */
@media (max-width: 768px) {
    .back-to-top {
        bottom: 20px;
        left: 50%;
        transform: translateX(-50%);
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }
    
    .back-to-top:hover {
        transform: translateX(-50%) scale(1.1);
    }
} 

/* Developer Section */
.developer {
    background: linear-gradient(135deg, #1a1a1a 0%, #000000 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.developer::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 40%;
    height: 100%;
    background: linear-gradient(45deg, rgba(255,255,255,0.03) 0%, rgba(255,255,255,0.01) 100%);
    clip-path: polygon(100% 0, 0% 100%, 100% 100%);
}

.developer-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: center;
}

.developer-info {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.developer-avatar {
    width: 288px;
    height: 288px;
    background: linear-gradient(45deg, #ff0000, #cc0000);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 10px 30px rgba(255, 0, 0, 0.3);
}

.developer-avatar i {
    font-size: 3rem;
    color: #fff;
}

.developer-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.developer-avatar:hover {
    transform: scale(2.0);
    box-shadow: 0 20px 40px rgba(255, 0, 0, 0.4);
    z-index: 1000;
}

.developer-text h3 {
    color: #fff;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.developer-text p {
    color: #ccc;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 25px;
}

.developer-skills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 30px;
}

.skill-tag {
    background: rgba(255, 0, 0, 0.1);
    color: #ff0000;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    border: 1px solid rgba(255, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.skill-tag:hover {
    background: rgba(255, 0, 0, 0.2);
    transform: translateY(-2px);
}

.developer-stats {
    display: flex;
    gap: 30px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    color: #ff0000;
    font-size: 2rem;
    font-weight: 900;
    line-height: 1;
}

.stat-label {
    color: #ccc;
    font-size: 0.9rem;
    font-weight: 500;
}

.developer-quote {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 15px;
    border-left: 4px solid #ff0000;
    position: relative;
}

.developer-quote::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 4rem;
    color: rgba(255, 0, 0, 0.3);
    font-family: serif;
}

.developer-quote blockquote {
    color: #fff;
    font-size: 1.2rem;
    font-style: italic;
    line-height: 1.6;
    margin: 0;
    padding-left: 30px;
}

/* Responsive Developer Section */
@media (max-width: 768px) {
    .developer {
        padding: 60px 0;
    }
    
    .developer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .developer-info {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }
    
    .developer-avatar {
        width: 240px;
        height: 240px;
        margin: 0 auto;
    }
    
    .developer-avatar img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center top;
        border-radius: 50%;
    }
    
    .developer-avatar:hover {
        transform: scale(1.8);
        box-shadow: 0 15px 30px rgba(255, 0, 0, 0.4);
        z-index: 1000;
    }
    
    .developer-avatar i {
        font-size: 2.5rem;
    }
    
    .developer-text h3 {
        font-size: 1.8rem;
    }
    
    .developer-stats {
        justify-content: center;
        gap: 20px;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .developer-quote {
        padding: 30px 20px;
    }
    
    .developer-quote blockquote {
        font-size: 1.1rem;
        padding-left: 20px;
    }
}

/* Chat Widget */
.chat-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    font-family: 'Montserrat', sans-serif;
}

.chat-button {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #ff0000, #cc0000);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 5px 20px rgba(255, 0, 0, 0.3);
    transition: all 0.3s ease;
    position: relative;
}

.chat-button:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(255, 0, 0, 0.4);
}

.chat-button i {
    color: #fff;
    font-size: 1.5rem;
}

.chat-label {
    position: absolute;
    right: 70px;
    background: #333;
    color: #fff;
    padding: 8px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    white-space: nowrap;
    opacity: 0;
    transform: translateX(10px);
    transition: all 0.3s ease;
    pointer-events: none;
}

.chat-button:hover .chat-label {
    opacity: 1;
    transform: translateX(0);
}

.chat-popup {
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 320px;
    background: #1a1a1a;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border: 1px solid #333;
    display: none;
    animation: slideInUp 0.3s ease;
}

.chat-popup.show {
    display: block;
}

.chat-header {
    background: linear-gradient(45deg, #ff0000, #cc0000);
    padding: 20px;
    border-radius: 15px 15px 0 0;
    display: flex;
    align-items: center;
    gap: 15px;
}

.chat-avatar {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.chat-avatar i {
    color: #fff;
    font-size: 1.2rem;
}

.chat-info {
    flex: 1;
}

.chat-info h4 {
    color: #fff;
    margin: 0 0 5px 0;
    font-size: 1rem;
}

.chat-info p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    font-size: 0.8rem;
}

.chat-close {
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
    font-size: 1.2rem;
    padding: 5px;
    border-radius: 50%;
    transition: background 0.3s ease;
}

.chat-close:hover {
    background: rgba(255, 255, 255, 0.2);
}

.chat-messages {
    padding: 20px;
    max-height: 200px;
    overflow-y: auto;
}

.message {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

.message-avatar {
    width: 30px;
    height: 30px;
    background: linear-gradient(45deg, #ff0000, #cc0000);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.message-avatar i {
    color: #fff;
    font-size: 0.8rem;
}

.message-content {
    background: rgba(255, 255, 255, 0.05);
    padding: 12px 15px;
    border-radius: 15px;
    border-top-left-radius: 5px;
}

.message-content p {
    color: #fff;
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.4;
}

.chat-input {
    padding: 20px;
    border-top: 1px solid #333;
}

.chat-input .btn-primary {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 0.9rem;
    padding: 12px 20px;
}

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

/* Responsive Chat Widget */
@media (max-width: 768px) {
    .chat-widget {
        bottom: 20px;
        right: 20px;
    }
    
    .chat-button {
        width: 55px;
        height: 55px;
    }
    
    .chat-button i {
        font-size: 1.3rem;
    }
    
    .chat-popup {
        width: 280px;
        right: -10px;
    }
    
    .chat-label {
        display: none;
    }
} 