/* Variáveis */
:root {
    --primary-color: #3ddfef;
    --secondary-color: #222222;
    --white: #ffffff;
    --light-gray: #f5f5f5;
    --gray: #eeeeee;
    --dark-gray: #666666;
    --shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--secondary-color);
    background-color: var(--white);
}

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

ul {
    list-style: none;
}

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

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

/* Botões */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 30px;
    font-weight: 600;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    text-align: center;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--secondary-color);
}

.btn-primary:hover {
    background-color: #2cc7d7;
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--primary-color);
    color: var(--secondary-color);
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.btn-block {
    display: block;
    width: 100%;
}

.btn-social {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background-color: var(--white);
    border: 1px solid var(--gray);
}

.btn-social:hover {
    background-color: var(--light-gray);
}

.btn-google i {
    color: #DB4437;
}

/* Header */
.header {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    padding: 15px 0;
}

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

.logo img {
    height: 40px;
    width: auto;
}

.main-nav ul {
    display: flex;
    gap: 30px;
}

.main-nav a {
    font-weight: 500;
    position: relative;
}

.main-nav a:hover {
    color: var(--primary-color);
}

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

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

.auth-buttons {
    display: flex;
    gap: 15px;
}

.mobile-menu-icon {
    display: none;
    font-size: 10;
    cursor: pointer;
}


/* Hero Section */
.hero {
    padding: 150px 0 100px;
    background: linear-gradient(346deg, rgb(17 17 17 / 74%) 0%, rgb(0 0 0) 100%);
}

.hero-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.hero-text {
    flex: 1;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.hero-image img {
    max-width: 80%;
    animation: float 3s ease-in-out infinite;
}

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

.hero h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--white);
}

.hero h1 span {
    color: var(--primary-color);
}

.hero p {
    font-size: 1.25rem;
    color: var(--light-gray);
    margin-bottom: 30px;
}

.hero-btns {
    display: flex;
    gap: 15px;
}

/* Section Headers */
.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    position: relative;
}

.section-header h2::after {
    content: '';
    display: block;
    width: 70px;
    height: 3px;
    background-color: var(--primary-color);
    margin: 15px auto 0;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--dark-gray);
}

/* Features Section */
.features {
    padding: 100px 0;
    background-color: var(--white);
}

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

.feature-card {
    padding: 30px;
    border-radius: 10px;
    background-color: var(--white);
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-align: center;
}

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

.feature-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    background-color: rgba(61, 223, 239, 0.1);
    border-radius: 50%;
}

.feature-icon i {
    font-size: 30px;
    color: var(--primary-color);
}

.feature-card h3 {
    margin-bottom: 15px;
    font-size: 1.25rem;
}

.feature-card p {
    color: var(--dark-gray);
}

/* Benefits Section */
.benefits {
    padding: 100px 0;
    background-color: var(--light-gray);
}

.benefits-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    background-color: var(--white);
    border-radius: 15px;
    padding: 30px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.benefit-item:hover {
    transform: translateX(10px);
}

.benefit-icon {
    min-width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(61, 223, 239, 0.1);
    border-radius: 50%;
}

.benefit-icon i {
    font-size: 24px;
    color: var(--primary-color);
}

.benefit-text h3 {
    margin-bottom: 10px;
    font-size: 1.25rem;
}

.benefit-text p {
    color: var(--dark-gray);
}

/* Demo Section */
.demo {
    padding: 100px 0;
    background-color: var(--white);
}

.demo-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.demo-text {
    flex: 1;
}

.demo-text h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.demo-text p {
    margin-bottom: 30px;
    color: var(--dark-gray);
}

.demo-features {
    margin-bottom: 30px;
}

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

.demo-features i {
    color: var(--primary-color);
}

.demo-form {
    flex: 1;
}

/* Chat Simulator */
.chat-simulator {
    background-color: var(--white);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    max-width: 400px;
    margin: 0 auto;
}

.chat-header {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 20px;
    background-color: var(--primary-color);
    color: var(--secondary-color);
}

.chat-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--white);
}

.chat-info h4 {
    font-size: 16px;
    margin-bottom: 3px;
}

.chat-info p {
    font-size: 12px;
    opacity: 0.8;
}

.chat-messages {
    padding: 20px;
    height: 300px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
    background-color: #f8f8f8;
}

.message {
    max-width: 70%;
    padding: 12px 15px;
    border-radius: 15px;
    position: relative;
}

.message p {
    margin-bottom: 10px;
}

.message .time {
    font-size: 11px;
    opacity: 0.7;
    display: block;
    text-align: right;
}

.message.bot {
    background-color: #e6f8fa;
    border-bottom-left-radius: 0;
    align-self: flex-start;
}

.message.user {
    background-color: var(--primary-color);
    color: var(--secondary-color);
    border-bottom-right-radius: 0;
    align-self: flex-end;
}

.chat-input {
    display: flex;
    padding: 12px 15px;
    border-top: 1px solid var(--gray);
}

.chat-input input {
    flex: 1;
    border: none;
    padding: 10px 15px;
    border-radius: 30px;
    background-color: var(--light-gray);
    outline: none;
}

.chat-input button {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: var(--secondary-color);
    border: none;
    margin-left: 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.chat-input button:hover {
    transform: scale(1.1);
}

/* Clients Section */
.clients {
    padding: 100px 0;
    background-color: var(--light-gray);
}

.clients-logos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 30px;
    align-items: center;
    justify-items: center;
}

.client-logo {
    max-width: 120px;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: var(--transition);
}

.client-logo:hover {
    filter: grayscale(0);
    opacity: 1;
}

/* CTA Section */
.cta {
    padding: 100px 0;
    background: linear-gradient(to right, var(--secondary-color), #333333);
    color: var(--white);
    text-align: center;
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.cta h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta p {
    margin-bottom: 30px;
    opacity: 0.9;
}

.cta .btn-primary {
    background-color: var(--primary-color);
    color: var(--secondary-color);
}


/* Footer */
.footer {
    padding: 80px 0 30px;
    background-color: var(--white);
}

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

.footer-logo {
    flex: 1;
}

.footer-logo img {
    height: 40px;
    margin-bottom: 15px;
}

.footer-logo p {
    color: var(--dark-gray);
    max-width: 300px;
}

.footer-links {
    flex: 2;
    display: flex;
    justify-content: space-between;
}

.link-group h4 {
    margin-bottom: 20px;
    font-size: 1.25rem;
}

.link-group ul li {
    margin-bottom: 12px;
}

.link-group ul li a {
    color: var(--dark-gray);
    transition: var(--transition);
}

.link-group ul li a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid var(--gray);
    text-align: center;
}

.footer-bottom p {
    margin-bottom: 10px;
    color: var(--dark-gray);
    font-size: 0.9rem;
}

/* Auth Section */
.auth-section {
    padding: 150px 0 100px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background-color: var(--light-gray);
}

.auth-container {
    background-color: var(--white);
    padding: 40px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    max-width: 500px;
    margin: 0 auto;
}

.auth-header {
    text-align: center;
    margin-bottom: 30px;
}

.auth-header h2 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.auth-header p {
    color: var(--dark-gray);
}

.auth-form .form-group {
    margin-bottom: 20px;
}

.auth-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.auth-form input[type="text"],
.auth-form input[type="email"],
.auth-form input[type="password"] {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--gray);
    border-radius: 8px;
    font-size: 1rem;
    transition: var(--transition);
}

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

.auth-form .forgot-password {
    text-align: right;
    margin-top: 8px;
}

.auth-form .forgot-password a {
    color: var(--primary-color);
    font-size: 0.9rem;
}

.auth-separator {
    position: relative;
    margin: 30px 0;
    text-align: center;
}

.auth-separator::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 1px;
    top: 50%;
    left: 0;
    background-color: var(--gray);
}

.auth-separator span {
    position: relative;
    background-color: var(--white);
    padding: 0 15px;
    color: var(--dark-gray);
}

.auth-footer {
    margin-top: 30px;
    text-align: center;
}

.auth-footer a {
    color: var(--primary-color);
    font-weight: 600;
}

.checkbox-group {
    display: flex;
    align-items: center;
    gap: 10px;
}

.checkbox-group input[type="checkbox"] {
    width: 18px;
    height: 18px;
}

.checkbox-group label {
    margin-bottom: 0;
    font-weight: normal;
    font-size: 0.9rem;
}

.checkbox-group a {
    color: var(--primary-color);
}

/* Highlighted Features */
.highlighted-features {
    padding: 30px 0;
    background-color: var(--gray);
    color: var(--dark-gray);
}

.highlight-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.highlight-card {
    display: flex;
    align-items: center;
    padding: 15px;
    border-radius: 8px;
    background-color: rgba(255, 255, 255, 0.05);
    transition: var(--transition);
}

.highlight-card:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
}

.highlight-icon {
    font-size: 24px;
    width: 50px;
    height: 50px;
    min-width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: var(--secondary-color);
    margin-right: 15px;
}

.highlight-card p {
    font-size: 1rem;
    margin: 0;
}

/* Business Opportunity Section */
.business-opportunity {
    padding: 100px 0;
    background-color: var(--white);
}

.business-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.business-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.business-image img {
    max-width: 80%;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.business-text {
    flex: 1;
}

.business-text h2 {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.business-text p {
    font-size: 1.1rem;
    color: var(--dark-gray);
    margin-bottom: 30px;
}

/* Why Choose Section */
.why-choose {
    padding: 100px 0;
    background-color: var(--light-gray);
}

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

.why-choose-item {
    background-color: var(--white);
    padding: 40px 30px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
}

.why-choose-item:hover {
    transform: translateY(-10px);
}

.why-choose-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    background-color: rgba(61, 223, 239, 0.1);
    border-radius: 50%;
}

.why-choose-icon i {
    font-size: 36px;
    color: var(--primary-color);
}

.why-choose-item h3 {
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.why-choose-item p {
    color: var(--dark-gray);
}

/* Testimonials Section */
.testimonials {
    padding: 100px 0;
    background-color: var(--white);
}

.testimonial-slider {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    padding: 20px 0;
    scrollbar-width: none;
}

.testimonial-slider::-webkit-scrollbar {
    display: none;
}

.testimonial-card {
    min-width: 350px;
    max-width: 500px;
    background-color: var(--white);
    border-radius: 10px;
    padding: 30px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.testimonial-content {
    margin-bottom: 25px;
}

.testimonial-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--dark-gray);
    font-style: italic;
    position: relative;
}

.testimonial-content p::before,
.testimonial-content p::after {
    content: '"';
    font-size: 2rem;
    color: var(--primary-color);
    position: absolute;
}

.testimonial-content p::before {
    left: -15px;
    top: -15px;
}

.testimonial-content p::after {
    right: -15px;
    bottom: -25px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.author-info h4 {
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.author-info p {
    color: var(--dark-gray);
    font-size: 0.9rem;
}

/* Seção de Relacionamento entre Produtos */
.product-relationship {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(61, 223, 239, 0.1) 0%, rgba(255, 255, 255, 1) 100%);
}

.relationship-content {
    display: flex;
    align-items: center;
    gap: 60px;
}

.relationship-text {
    flex: 1;
}

.relationship-text h2 {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 25px;
    position: relative;
}

.relationship-text h2::after {
    content: '';
    display: block;
    width: 70px;
    height: 3px;
    background-color: var(--primary-color);
    margin-top: 15px;
}

.relationship-text p {
    font-size: 1.1rem;
    color: var(--dark-gray);
    margin-bottom: 30px;
    line-height: 1.8;
}

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

.relationship-features li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    font-size: 1.1rem;
    color: var(--secondary-color);
    transition: var(--transition);
}

.relationship-features li:hover {
    transform: translateX(10px);
}

.relationship-features i {
    color: var(--primary-color);
    font-size: 1.2rem;
    background-color: rgba(61, 223, 239, 0.1);
    padding: 10px;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.relationship-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.relationship-image img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    /*box-shadow: var(--shadow);*/
    transition: var(--transition);
}

.relationship-image img:hover {
    transform: translateY(-10px);
}

@media (max-width: 992px) {
    .relationship-content {
        flex-direction: column;
        text-align: center;
    }

    .relationship-text h2::after {
        margin: 15px auto 0;
    }

    .relationship-features li {
        justify-content: center;
    }

    .relationship-image {
        margin-top: 40px;
    }
}

@media (max-width: 768px) {
    .product-relationship {
        padding: 60px 0;
    }

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

    .relationship-text p {
        font-size: 1rem;
    }

    .relationship-features li {
        font-size: 1rem;
    }
}

/* Seção de Produtos */
.products {
    padding: 80px 0;
    background-color: #f8f9fa;
}

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

.product-card {
    background: #fff;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    text-align: center;
}

.product-card:hover {
    transform: translateY(-5px);
}

.product-icon {
    font-size: 48px;
    color: #3ddfef;
    margin-bottom: 20px;
}

.product-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #333;
}

.product-features {
    list-style: none;
    padding: 0;
    margin: 20px 0;
    text-align: left;
}

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

.product-features i {
    color: #28a745;
}

/* Seção de Planos */
.pricing {
    padding: 80px 0;
    background-color: #fff;
}

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

.pricing-card {
    background: #fff;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    border: 2px solid #e9ecef;
    transition: all 0.3s ease;
}

.pricing-card.featured {
    border: 2px solid #007bff;
    transform: scale(1.05);
    position: relative;
}

.pricing-card.featured::before {
    content: "Mais Popular";
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #007bff;
    color: #fff;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 14px;
}

.pricing-card h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #333;
}

.price {
    margin-bottom: 20px;
}

.price .amount {
    font-size: 36px;
    font-weight: bold;
    color: #007bff;
}

.price .period {
    color: #6c757d;
    font-size: 16px;
}

.pricing-card .features {
    list-style: none;
    padding: 0;
    margin: 20px 0;
    text-align: left;
}

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

.pricing-card .features i {
    color: #28a745;
}

.pricing-card .btn {
    width: 100%;
    margin-top: 20px;
}

/* Centralização e largura máxima dos grids */
.products .container,
.pricing .container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.products-grid,
.pricing-grid {
    /* max-width: 900px; */
    width: 100%;
    margin: 0 auto;
    justify-content: center;
}

.product-card,
.pricing-card {
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 30px;
}

@media (max-width: 1000px) {
    .products-grid,
    .pricing-grid {
        max-width: 100%;
        padding: 0 10px;
    }
}

/* Responsividade */
@media (max-width: 992px) {
    .hero-content, .demo-content {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-text, .demo-text {
        order: 1;
    }
    
    .hero-image, .demo-form {
        order: 0;
        margin-bottom: 40px;
    }
    
    .benefit-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 40px;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 30px;
    }

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

    .business-content {
        flex-direction: column;
        text-align: center;
    }

    .business-image {
        margin-bottom: 40px;
    }

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

    .why-choose-item {
        padding: 30px 20px;
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .section-header h2, .cta h2, .demo-text h2 {
        font-size: 2rem;
    }
    
    .main-nav {
        display: none;
    }
    
    .mobile-menu-icon {
        display: block;
    }
    
    .auth-buttons {
        display: none;
    }

    .highlight-cards {
        grid-template-columns: 1fr;
    }

    .testimonial-slider {
        flex-direction: column;
        gap: 20px;
    }

    .testimonial-card {
        min-width: auto;
        width: 100%;
    }
}

.product-selector {
    margin-right: 20px;
}

.product-selector select {
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    background-color: #fff;
    font-size: 14px;
    color: #333;
    cursor: pointer;
    transition: all 0.3s ease;
}

.product-selector select:hover {
    border-color: #007bff;
}

.product-selector select:focus {
    outline: none;
    border-color: #007bff;
    box-shadow: 0 0 0 2px rgba(0, 123, 255, 0.25);
}

.auth-buttons {
    display: flex;
    align-items: center;
    gap: 10px;
}

#ziveai-buttons,
#zivechat-buttons,
#mobile-ziveai-buttons,
#mobile-zivechat-buttons {
    display: flex;
    gap: 10px;
}

.mobile-menu-icon {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.mobile-menu-icon select {
    width: 100%;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
    background-color: #fff;
    font-size: 14px;
} 