/* Importing the 'Inter' font from Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

/* Basic reset and typography */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #f8fafc; /* Light gray background */
    color: #1f2937; /* Dark gray text */
    line-height: 1.6;
}

/* Animações de entrada no scroll */
.hidden-element {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.hidden-element.zoom-in {
    transform: scale(0.95);
}

.is-visible.zoom-in {
    transform: scale(1);
}

/* Base layout for sections */
section,
main {
    padding: 4rem 5%;
}

.content-wrapper {
    display: flex;
    justify-content: center;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

/* Header Section */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 5%;
    border-bottom: 1px solid #e5e7eb;
    background-color: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    position: fixed;
    width: 100%;
    z-index: 50;
    transition: all 0.3s ease;
}

.header.scrolled {
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.logo img {
    height: 40px;
    width: auto;
    object-fit: contain;
}

.navbar {
    display: flex;
    justify-content: flex-end;
    flex-grow: 1;
}

.navbar ul {
    list-style: none;
    display: flex;
    gap: 2rem;
}

.navbar a {
    text-decoration: none;
    color: #4b5563;
    font-weight: 500;
    transition: color 0.3s ease, transform 0.3s ease;
    position: relative;
}

.navbar a:hover {
    color: #1d4ed8;
    transform: scale(1.05);
}

.navbar a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: #3b82f6;
    transition: width 0.3s ease;
}

.navbar a:hover::after {
    width: 100%;
}

/* Main Content Section */
.main-content {
    padding-top: 5rem;
    background-image: linear-gradient(to bottom right, #eff6ff, #fff, #faf5ff);
}

.text-and-form-section {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.image-section {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-section img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.online-status {
    position: absolute;
    bottom: -1rem;
    right: -1rem;
    background-color: #ffffff;
    color: #1f2937;
    padding: 0.75rem 1rem;
    border-radius: 12px;
    font-weight: 500;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.online-dot {
    width: 10px;
    height: 10px;
    background-color: #22c55e;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.4); }
    70% { box-shadow: 0 0 0 10px rgba(34, 197, 94, 0); }
    100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
}

/* Text content styling */
.text-content h1 {
    font-size: 3rem;
    font-weight: 700;
    color: #1f2937;
    line-height: 1.2;
    margin-bottom: 0.5rem;
}

.text-content h1 span {
    font-size: 2.25rem;
    background: linear-gradient(90deg, #3b82f6, #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientShift 3s ease infinite;
    display: block;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.text-content h2 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #3b82f6;
    margin-bottom: 1rem;
}

.text-content p {
    font-size: 1rem;
    color: #4b5563;
}

/* Form styling */
.form-container {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.5);
}

.button-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

.button-primary,
.button-secondary {
    width: 100%;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.button-primary {
    background-color: #3b82f6;
    color: #ffffff;
}
.button-secondary {
    background-color: #22c55e;
    color: #ffffff;
}

.button-primary:hover {
    background-color: #2563eb;
    transform: scale(1.02);
}

.button-secondary:hover {
    background-color: #16a34a;
    transform: scale(1.02);
}

.arrow-right {
    font-size: 1.2rem;
    font-weight: 700;
    margin-left: 0.5rem;
}

.button-tertiary {
    background-color: #ffffff;
    color: #1d4ed8;
    padding: 0.75rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    border: 2px solid #1d4ed8;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.button-tertiary:hover {
    background-color: #1d4ed8;
    color: #ffffff;
    transform: scale(1.05);
}

/* PHP message styling (for demonstration) */
.php-message {
    text-align: center;
    padding: 1rem;
    background-color: #d1fae5;
    color: #065f46;
    margin-top: 2rem;
    border-radius: 8px;
    font-weight: 500;
}

/* Testimonials Section */
.testimonials-section {
    padding: 4rem 5%;
    background-color: #0E32EC;
    color: #ffffff;
}

.testimonials-section h3 {
    text-align: center;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 2rem;
}

.testimonial-card-wrapper {
    position: relative;
    max-width: 650px;
    margin: 0 auto;
    overflow: hidden;
    white-space: nowrap;
}

.testimonial-card {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    color: #1f2937;
    text-align: left;
    width: 100%;
    display: inline-block;
    transition: transform 0.5s ease-in-out;
    white-space: normal;
}

.testimonial-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #ddd;
}

.author-info strong {
    display: block;
    font-weight: 600;
}

.author-info p {
    margin: 0;
    font-style: normal;
    font-size: 0.9rem;
    color: #6b7280;
}

.testimonial-text {
    font-style: italic;
    color: #4b5563;
    margin-bottom: 1.5rem;
}

.instagram-icon,
.whatsapp-icon {
    width: 40px;
    height: auto;
}

.testimonial-pagination {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.testimonial-dot {
    width: 10px;
    height: 10px;
    background-color: #d1d5db;
    border-radius: 50%;
    margin: 0 5px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.testimonial-dot.active {
    background-color: #1d4ed8;
    transform: scale(1.2);
}

/* Social Media Section */
.social-media-section {
    text-align: center;
    background-color: #ffffff;
    border-top: 1px solid #e5e7eb;
}

.social-media-section h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: #1f2937;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 4rem;
    flex-wrap: wrap;
}

.social-icon-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.social-icon-item img {
    width: 96px;
    height: 96px;
    object-fit: contain;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.social-icon-item img:hover {
    transform: scale(1.1);
}

.social-icon-item p {
    font-weight: 500;
    color: #4b5563;
}

/* Intelligent Interaction Section */
.intelligent-interaction-section {
    background-color: #f8fafc;
}

.interaction-wrapper {
    flex-direction: row;
    align-items: center;
}

.interaction-text {
    flex: 1;
}

.interaction-text h2 {
    font-size: 1.5rem;
    color: #1f2937;
    margin-bottom: 2rem;
}

.interaction-text h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #3b82f6;
    margin-bottom: 1rem;
}

.small-button {
    width: fit-content;
    padding: 0.75rem 2rem;
    font-size: 0.9rem;
    margin-top: 2rem;
}

/* Efficiency Section */
.efficiency-section {
    background-color: #0E32EC;
    color: #ffffff;
    text-align: center;
}

.efficiency-container {
    max-width: 1200px;
    margin: 0 auto;
}

.efficiency-section .text-content {
    margin-bottom: 2rem;
}

.efficiency-section .text-content h2 {
    color: #ffffff;
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.efficiency-section .text-content ul {
    list-style: none;
    text-align: left;
    max-width: 600px;
    margin: 0 auto;
}

.efficiency-section .text-content ul li::before {
    content: '✓';
    color: #22c55e;
    margin-right: 0.5rem;
}

.efficiency-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1.5rem 2rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
}

.stat-label {
    font-size: 1rem;
}

/* Advantages Section */
.advantages-section {
    text-align: center;
    background-color: #f8fafc;
    padding: 4rem 5%;
}

.advantages-section h3 {
    font-size: 2.25rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 3rem;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.advantage-item {
    background-color: #ffffff;
    padding: 1.5rem; /* Reduzi um pouco o padding para melhor alinhamento */
    border-radius: 12px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.advantage-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.advantage-header {
    display: flex;
    align-items: center; /* Alinha verticalmente o ícone e o título */
    margin-bottom: 0.75rem; /* Adiciona um espaço abaixo do header */
}

.advantage-item svg {
    width: 1.5rem; /* Reduzi o tamanho do ícone para corresponder */
    height: 1.5rem; /* Reduzi o tamanho do ícone para corresponder */
    margin-right: 0.75rem; /* Adiciona espaço entre o ícone e o título */
    color: #3b82f6; /* Cor dos ícones */
}

.advantage-title {
    font-weight: 600;
    font-size: 1rem; /* Reduzi um pouco o tamanho da fonte do título */
    color: #1f2937;
    margin-bottom: 0; /* Remove a margem inferior padrão do título */
}

.advantage-text {
    font-size: 0.85rem; /* Reduzi um pouco o tamanho da fonte do texto */
    color: #4b5563;
    line-height: 1.5;
}

/* Agent of AI Section */
.agent-ai-section {
    text-align: center;
    background-color: #ffffff;
    padding-top: 4rem;
    padding-bottom: 4rem;
}

.agent-ai-section h3 {
    font-size: 2.25rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.75rem;
}

.ai-intro {
    max-width: 700px;
    margin: 0 auto 3rem;
    color: #4b5563;
    line-height: 1.6;
}

.agent-ai-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
}

.ai-card {
    background-color: #f9fafb;
    border: 1px solid #e5e7eb;
    padding: 1.5rem;
    border-radius: 12px;
    text-align: left;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.ai-card:hover {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    transform: translateY(-5px);
}

.ai-card-title-wrapper {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 0.75rem;
}

.ai-card-title-wrapper svg {
    width: 2rem;
    height: 2rem;
}

.ai-title {
    font-weight: 600;
    color: #1f2937;
    font-size: 1.1rem;
    margin-bottom: 0;
}

.ai-card-text {
    color: #4b5563;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.ai-card ul {
    list-style: none;
    padding-left: 0;
    margin-top: 0.5rem;
}

.ai-card ul li {
    position: relative;
    padding-left: 1.25rem;
    margin-bottom: 0.4rem;
    color: #4b5563;
    font-size: 0.85rem;
}

.ai-card ul li::before {
    content: '✓';
    color: #22c55e;
    font-weight: bold;
    position: absolute;
    left: 0;
    font-size: 0.9rem;
}

/* Ajuste para o layout de duas colunas */
.agent-ai-grid > :nth-child(4),
.agent-ai-grid > :nth-child(5) {
    grid-column: span 1;
}

.agent-ai-section .small-button {
    margin-top: 3rem;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .agent-ai-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .agent-ai-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/* Integrations API Section */
.integrations-api-section {
    padding: 4rem 5%;
    text-align: center;
    background-color: #f8fafc;
}

.integrations-api-section .integrations-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.integrations-api-section .integrations-title span {
    color: #22c55e;
}

.integrations-api-section .integrations-text {
    max-width: 800px;
    margin: 0 auto 2rem;
    color: #4b5563;
}

.integrations-grid {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

.integration-card {
    border-radius: 12px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    flex: 1;
    min-width: 300px;
    max-width: 500px;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden; /* Importante para que a borda arredondada se aplique corretamente ao conteúdo interno */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.integration-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.card-header {
    padding: 2.5rem;
    color: #ffffff;
}

.card-header.official-header {
    background-color: #3b82f6; /* Cor azul */
}

.card-header.unofficial-header {
    background-color: #22c55e; /* Cor verde */
}

.card-body {
    background-color: #ffffff;
    color: #1f2937;
    padding: 2.5rem;
}

.integration-card-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.integration-subtitle {
    font-size: 0.9rem;
    font-weight: 400;
    opacity: 0.8;
}

.features-list {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.features-list li {
    margin-bottom: 1.5rem;
}

/* Utilitários para o layout interno do item da lista */
.flex {
    display: flex;
}

.items-start {
    align-items: flex-start;
}

.gap-x-4 {
    column-gap: 1rem;
}

.w-6 {
    width: 1.5rem;
}

.h-6 {
    height: 1.5rem;
}

.features-list li > div p {
    font-size: 0.9rem;
    color: #4b5563;
    margin-top: 0.25rem;
}

.features-list li svg {
    width: 1.5rem;
    height: 1.5rem;
    flex-shrink: 0;
    color: #3b82f6; /* Cor do ícone no card oficial */
}

.integration-card.unofficial .features-list li svg {
    color: #22c55e; /* Cor do ícone no card não oficial */
}

.features-list li h5 {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
}

.integration-ideal-for {
    margin-top: auto;
    padding-top: 1.5rem;
    border-top: 1px solid #e5e7eb;
}

.integration-ideal-for h5 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #1f2937;
}

.integration-ideal-for ul {
    list-style: none;
    padding: 0;
}

.integration-ideal-for ul li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
}

.integration-ideal-for ul li::before {
    content: '✓';
    color: #22c55e;
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Wrapper for the logo carousel to handle overflow */
.integrations-logos-wrapper {
    overflow: hidden;
    white-space: nowrap;
    width: 100%;
}

.integrations-logos {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 2rem;
    width: 200%; /* A largura deve ser o dobro para acomodar as 2 repetições */
    animation: slide 15s linear infinite;
}

.integrations-logos:hover {
    animation-play-state: paused;
}

@keyframes slide {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

.integrations-logos img {
    height: 48px;
    object-fit: contain;
    flex-shrink: 0;
    transition: transform 0.3s ease;
    cursor: grab;
}

.integrations-logos img:hover {
    transform: scale(1.1);
}

/* Plans Section */
.plans-section {
    text-align: center;
    background-color: #ffffff;
}

.plans-section h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.plans-section p {
    max-width: 600px;
    margin: 0 auto 2rem;
}

.plans-grid {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.plan-card {
    background-color: #f3f4f6;
    padding: 2.5rem 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    flex: 1;
    max-width: 300px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.plan-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.plan-card.popular {
    background-color: #1d4ed8;
    color: #ffffff;
    position: relative;
    transform: scale(1.05);
}

.plan-card.popular:hover {
    transform: scale(1.1);
}

.popular-tag {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #ef4444;
    color: #ffffff;
    padding: 0.25rem 1rem;
    border-radius: 9999px;
    font-size: 0.8rem;
    font-weight: 700;
}

.plan-card.popular .plan-title,
.plan-card.popular .plan-subtitle,
.plan-card.popular .plan-price {
    color: #ffffff;
}

.plan-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.plan-subtitle {
    font-size: 0.9rem;
    color: #6b7280;
    margin-bottom: 1.5rem;
}

.plan-card.popular .plan-subtitle {
    color: #d1d5db;
}

.plan-price {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.plan-price span {
    font-size: 1rem;
    font-weight: 400;
    color: #6b7280;
}

.plan-card.popular .plan-price span {
    color: #d1d5db;
}

.plan-card ul {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
    text-align: left;
}

.plan-card ul li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
}

.plan-card ul li::before {
    content: '✓';
    color: #22c55e;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.plan-card.popular ul li::before {
    color: #ffffff;
}

.plan-button {
    background-color: #3b82f6;
    color: #ffffff;
    width: 100%;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.plan-card.popular .plan-button {
    background-color: #f9fafb;
    color: #1d4ed8;
}

.plan-button:hover {
    background-color: #2563eb;
    transform: scale(1.02);
}

.plan-card.popular .plan-button:hover {
    background-color: #e5e7eb;
}

/* FAQ Section */
.faq-section {
    background-color: #f8fafc;
    text-align: center;
}

.faq-section h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 2rem;
}

.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
}

.faq-item {
    border-bottom: 1px solid #d1d5db;
    margin-bottom: 1rem;
}

.faq-question {
    background-color: transparent;
    border: none;
    width: 100%;
    padding: 1.5rem 0;
    text-align: left;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color 0.3s ease;
}

.faq-question:hover, .faq-question.active {
    color: #1d4ed8;
}

.faq-icon {
    font-size: 1.5rem;
    font-weight: bold;
    transition: transform 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    padding: 0 1rem;
}

.faq-answer p {
    padding-bottom: 1rem;
}

/* Footer Section */
.footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem 5%;
    background-color: #1f2937;
    color: #e5e7eb;
}

.footer-links a {
    color: #e5e7eb;
    text-decoration: none;
    margin: 0 1rem;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #3b82f6;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .content-wrapper,
    .interaction-wrapper,
    .efficiency-section .text-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .header {
        flex-direction: column;
        text-align: center;
    }
    .navbar {
        margin: 1rem 0;
    }
    .navbar ul {
        justify-content: center;
    }
    .text-and-form-section,
    .image-section {
        max-width: 600px;
    }
    .interaction-image {
        order: -1;
        margin-bottom: 2rem;
    }
    .advantages-grid,
    .agent-ai-grid,
    .integrations-grid {
        grid-template-columns: 1fr;
    }
    .plans-grid {
        flex-direction: column;
        align-items: center;
        max-width: 400px;
    }
    .plan-card {
        width: 100%;
        max-width: none;
    }
    .testimonial-card,
    .faq-accordion {
        max-width: 100%;
    }
    .efficiency-stats {
        flex-direction: column;
        gap: 1.5rem;
        width: 100%;
    }
}
@media (max-width: 768px) {
    body {
        font-size: 14px;
    }
    section,
    main {
        padding: 2rem 5%;
    }
    .header {
        padding: 1rem 5%;
    }
    .navbar ul {
        justify-content: center;
    }
    .text-content h1 {
        font-size: 2rem;
    }
    .text-content h1 span {
        font-size: 1.5rem;
    }
    .social-icons {
        gap: 1.5rem;
    }
}

/* Estilo para o botão de Login na navegação */
.button-login {
    background-color: #1d4ed8;
    color: #ffffff !important; /* Adiciona !important para sobrescrever a cor do link */
    padding: 0.5rem 1.25rem;
    border-radius: 9999px; /* Bordas bem arredondadas */
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.button-login:hover {
    background-color: #2563eb;
    transform: scale(1.05);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Ajuste para alinhar o botão e os links da navbar */
.navbar ul {
    align-items: center;
}