/* Reset básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
}

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

/* Navbar Estilos */
.navbar {
    width: 100%;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    z-index: 100;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
}

/* Estilo do logo com imagem */
.logo a {
    display: flex;
    align-items: center;
}

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

.navbar .nav-links {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 20px;
}

.navbar .nav-links li a {
    color: #333;
    text-decoration: none;
    font-size: 1rem;
    font-weight: bold;
}

.navbar .nav-links .action-btn {
    background: #ffae00;
    padding: 10px 20px;
    color: white;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
}

.navbar .nav-links .action-btn:hover {
    background: rgb(255, 255, 255);
}

/* Estilos para a seção Hero */
.hero {
    background: #1454A4;
    color: white;
    padding: 100px 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.hero-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.hero-text {
    max-width: 50%;
    text-align: left;
    /* Alinha o texto à esquerda */
}

.hero-text h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.hero-text p {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.btn {
    background: #ffae00;
    color: white;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    border-radius: 25px;
    font-size: 1.2rem;
}

.btn:hover {
    background: rgb(255, 255, 255);
}

.hero-video {
    max-width: 45%;
    /* O vídeo ocupará 45% da largura da seção */
    text-align: right;
}

.hero-video video {
    width: 100%;
    height: auto;
    border-radius: 15px;
    object-fit: cover;
}

/* Content Section */
.content,
.cards,
.pricing,
.cta {
    padding: 60px 0;
    text-align: center;
}

h2 {
    font-size: 2rem;
    margin-bottom: 40px;
}

.content p,
.cards .card p {
    font-size: 1rem;
    margin-bottom: 20px;
}

/* Cards */
.cards .card {
    display: inline-block;
    width: 30%;
    margin: 0 10px;
    padding: 20px;
    background-color: #f8f8f8;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Pricing Section */
.pricing-grid {
    display: flex;
    justify-content: space-around;
}

.pricing-card {
    background-color: white;
    padding: 20px;
    width: 30%;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}

/* Estilos da Seção de Imagem com Texto */
.image-text-section {
    padding: 60px 0;
    background-color: #f4f4f4;
}

.image-text-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    /* Espaço entre imagem e texto */
}

.image-container {
    flex-basis: 30%;
    /* A imagem ocupa 40% da largura */
}

.image-left {
    width: 100%;
    /* A imagem ocupa toda a largura do seu container */
    height: auto;
    border-radius: 10px;
    /* Opcional: borda arredondada na imagem */
}

.text-container {
    flex-basis: 55%;
    /* O texto ocupa 55% da largura */
}

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

.text-container p {
    font-size: 1.2rem;
    line-height: 1.6;
    color: #555;
}

/* Ajuste da Barra de Navegação para telas menores */
@media (max-width: 768px) {
    .navbar .nav-links {
        flex-direction: column;
        gap: 15px;
        /* Espaçamento entre os links */
        align-items: center;
        /* Centralizar os links no centro da página */
    }

    .navbar .container {
        flex-direction: column;
    }

    /* Hero Section Responsiva */
    .hero-content {
        flex-direction: column;
        /* Empilhar texto e vídeo verticalmente */
    }

    .hero-text h1 {
        font-size: 2rem;
        /* Reduz o tamanho do título */
    }

    .hero-video {
        max-width: 100%;
        margin-top: 20px;
    }

    .btn {
        font-size: 1rem;
    }

    /* Cards e Pricing responsivo */
    .cards .card,
    .pricing-card {
        width: 100%;
        /* Cards ocupam 100% da largura */
        margin-bottom: 20px;
    }

    .pricing-grid {
        flex-direction: column;
        /* Empilhar cards de preços */
    }
}

/* Ajustes para telas muito pequenas (max-width: 480px) */
@media (max-width: 480px) {
    .navbar .container {
        padding: 10px;
        /* Reduz o padding em telas pequenas */
    }

    .hero-text h1 {
        font-size: 1.5rem;
        /* Diminui o tamanho do título em telas muito pequenas */
    }

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

    .btn {
        font-size: 0.9rem;
        padding: 8px 16px;
        /* Reduz o padding do botão */
    }

    .footer-nav {
        flex-direction: column;
        /* Coloca os links do footer em coluna */
        gap: 10px;
        /* Reduz o espaçamento entre os links */
    }

    .image-text-content {
        flex-direction: column;
        text-align: center;
        /* Centraliza texto e imagem */
    }

    .text-container h2 {
        font-size: 1.8rem;
    }

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

    /* Ajuste para Formulário de Contato */
    .contact-content {
        flex-direction: column;
        align-items: center;
    }

    .contact-info {
        text-align: center;
        margin-bottom: 20px;
    }

    .contact-form {
        width: 100%;
    }

    .form-group input,
    .form-group textarea {
        font-size: 0.9rem;
    }
}


/* Pricing Cards */
.pricing-grid {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    gap: 20px;
}

.pricing-card {
    background: white;
    padding: 40px 20px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    width: 30%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.pricing-card h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.pricing-card ul {
    list-style: none;
    margin-bottom: 20px;
}

.pricing-card ul li {
    margin: 10px 0;
    font-size: 1rem;
    color: #666;
}

.pricing-card p {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.pricing-card .btn {
    background: #F39323;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 25px;
    cursor: pointer;
    font-size: 1.2rem;
    transition: background 0.3s ease;
}

.pricing-card .btn:hover {
    background: #F39323;
}

/* Seção de Formulário de Contato com Texto à Esquerda */
.contact-form-section {
    padding: 60px 0;
    background-color: #1454A4;
}

.contact-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 40px;
}

.contact-info {
    flex-basis: 45%;
    text-align: left;
}

.contact-info h2 {
    color: #ffffff;
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.contact-info p {
    font-size: 1.2rem;
    color: #ffffff;
    line-height: 1.8;
}

/* Formulário à Direita */
.contact-form {
    flex-basis: 50%;
}

.contact-form form {
    max-width: 100%;
    text-align: left;
}

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

.form-group label {
    font-size: 1rem;
    color: #ffffff;
    display: block;
    margin-bottom: 5px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px;
    font-size: 1rem;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #1454A3;
    outline: none;
}

.contact-form .btn {
    background-color: #ffae00;
    color: white;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    font-size: 1.2rem;
}

.contact-form .btn:hover {
    background-color: #ffae00;
}

/* Responsividade */
@media (max-width: 768px) {
    .contact-content {
        flex-direction: column;
        align-items: center;
    }

    .contact-info {
        text-align: center;
    }

    .contact-info h2 {
        font-size: 2rem;
    }

    .contact-info p {
        font-size: 1rem;
    }

    .contact-form {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .contact-info h2 {
        font-size: 1.8rem;
    }

    .contact-info p {
        font-size: 0.9rem;
    }

    .form-group input,
    .form-group textarea {
        font-size: 0.9rem;
    }

    .contact-form .btn {
        font-size: 1rem;
    }
}

/* Estilos para o botão flutuante do Chatbot */
.chatbot-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

.chatbot-button {
    background-color: #1454A3;
    color: white;
    border: none;
    border-radius: 50%;
    padding: 15px;
    font-size: 24px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.chatbot-button:hover {
    background-color: #ffae00;
}

/* Estilos para o botão flutuante do Chatbot */
.chatbot-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

.chatbot-button {
    background-color: #1454A3;
    border: none;
    border-radius: 50%;
    padding: 15px;
    width: 60px;
    /* Define a largura do botão */
    height: 60px;
    /* Define a altura do botão */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition: background-color 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
}

.chatbot-button:hover {
    background-color: #ffae00;
}

.chatbot-icon {
    width: 100%;
    /* Garante que a imagem ocupe todo o espaço disponível */
    height: auto;
    max-width: 40px;
    /* Largura máxima da imagem */
    max-height: 40px;
    /* Altura máxima da imagem */
}

/* Janela do Chatbot */
.chatbot-window {
    position: fixed;
    bottom: 90px;
    right: 20px;
    width: 300px;
    background-color: white;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    overflow: hidden;
    display: none;
    /* Escondido por padrão */
    z-index: 1001;
}

.chatbot-header {
    background-color: #1454A3;
    color: white;
    padding: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chatbot-header h4 {
    margin: 0;
}

.close-chatbot {
    background: none;
    border: none;
    color: white;
    font-size: 20px;
    cursor: pointer;
}

.chatbot-body {
    padding: 20px;
    max-height: 300px;
    overflow-y: auto;
}

.chatbot-footer {
    padding: 10px;
    background-color: #f4f4f4;
    display: flex;
    justify-content: space-between;
}

.chatbot-footer input {
    width: 80%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.chatbot-footer button {
    background-color: #1454A3;
    color: white;
    border: none;
    padding: 10px;
    border-radius: 5px;
    cursor: pointer;
}

.chatbot-footer button:hover {
    background-color: #ffae00;
}

/* Destaque para o plano Basic */
.featured {
    border: 2px solid transparent;
    background: linear-gradient(white, white), #F39323;
    background-clip: padding-box, border-box;
    background-origin: padding-box, border-box;
    transform: scale(1.05);
}

.featured h3 {
    color: #F39323;
}

/* Responsividade */
@media (max-width: 768px) {

    .hero-text,
    .hero-video {
        max-width: 100%;
        text-align: center;
    }

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

    .hero-video video {
        max-width: 100%;
        height: auto;
    }

    .navbar .nav-links {
        flex-direction: column;
        gap: 10px;
    }

    .cards .card,
    .pricing-card {
        width: 100%;
        margin-bottom: 20px;
    }
}

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

    .hero-text p,
    .pricing-card p {
        font-size: 1rem;
    }

    .btn {
        font-size: 1rem;
    }

    .navbar .container {
        flex-direction: column;
        gap: 20px;
    }
}

/* Footer Styles */
.footer {
    background-color: #ffffff;
    color: rgb(0, 0, 0);
    padding: 40px 0;
    font-family: Arial, sans-serif;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Estilizando a coluna de contato */
.footer-contact {
    flex-basis: 40%;
    /* Ajuste para garantir o tamanho correto da coluna de contato */
}

.footer-contact p {
    margin-bottom: 15px;
}

.footer-contact i {
    margin-right: 10px;
    color: #ffae00;
    /* Cor do ícone */
}

.footer-contact a {
    color: #50bfff;
    /* Cor do link do e-mail */
    text-decoration: none;
}

.footer-contact a:hover {
    text-decoration: underline;
}

/* Estilizando a coluna "About the company" */
.footer-about {
    flex-basis: 50%;
    /* Ajuste para garantir o tamanho correto da coluna "About the company" */
    margin-left: 50px;
    /* Espaçamento entre a coluna de contato e a coluna "About the company" */
}

.footer-about h4 {
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-about p {
    color: #cccccc;
    margin-bottom: 20px;
    line-height: 1.6;
    font-size: 0.9rem;
    /* Tamanho do texto da descrição */
}

/* Social Icons */
.footer-social a {
    margin-right: 10px;
    color: white;
    font-size: 18px;
    background-color: #1454A3;
    padding: 10px;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.footer-social a:hover {
    background-color: #ffae00;
}

/* Copyright Section */
.footer-copyright {
    text-align: center;
    margin-top: 40px;
    /* Espaço acima do copyright */
    color: white;
}

/* Responsividade */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        text-align: center;
    }

    .footer-contact,
    .footer-about {
        margin-bottom: 20px;
        flex-basis: 100%;
        /* Em telas menores, as colunas ocupam 100% da largura */
    }

    .footer-about {
        margin-left: 0;
        /* Remover o espaçamento lateral em telas pequenas */
    }
}