/* Variáveis */
:root {
    --primary-color: #1a73e8;
    --primary-dark: #0d47a1;
    --primary-light: #e8f0fe;
    --secondary-color: #34a853;
    --text-color: #202124;
    --text-light: #5f6368;
    --background-color: #ffffff;
    --background-light: #f8f9fa;
    --background-gray: #f1f3f4;
    --border-color: #e1e4e8;
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 8px 16px rgba(0, 0, 0, 0.1);
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

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

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

h1, h2, h3, h4, h5, h6 {
    margin-bottom: 0.5em;
    font-weight: 600;
    line-height: 1.3;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    text-align: center;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
}

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

a:hover {
    color: var(--primary-dark);
}

ul {
    list-style: none;
}

section {
    padding: 80px 0;
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 40px;
    font-size: 1.1rem;
}

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

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

.btn-primary:hover {
    background-color: var(--primary-dark);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

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

.btn-outline:hover {
    background-color: var(--primary-light);
    color: var(--primary-color);
}

.btn-text {
    background-color: transparent;
    color: var(--primary-color);
    padding: 8px 16px;
}

.btn-text:hover {
    background-color: var(--primary-light);
}

.btn-lg {
    padding: 14px 28px;
    font-size: 1.1rem;
}

.btn i {
    vertical-align: middle;
    margin-left: 8px;
}

/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    backdrop-filter: blur(5px);
    padding: 15px 0;
}

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

.logo {
    display: flex;
    align-items: center;
    height: 50px;
    overflow: hidden;
}

.logo img {
    transform: scale(1.2); /* Aumenta 20% */
    transform-origin: center;
}

.logo img {
    height: 120px;
    width: auto;
    object-fit: contain;
    margin-top: -5px;
}

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

nav a {
    color: var(--text-color);
    font-weight: 500;
}

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

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-color);
}

/* Hero Section */
.hero {
    padding: 160px 0 80px;
    background: linear-gradient(135deg, var(--background-light) 0%, white 100%);
}

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

.hero-content {
    flex: 1;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 10px;
    color: var(--primary-dark);
    font-weight: 700;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--text-color);
    margin-bottom: 8px;
    font-weight: 500;
}

.hero-content p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 30px;
    line-height: 1.7;
}

.hero-image {
    flex: 1.2; /* Aumenta a proporção da imagem em relação ao conteúdo */
    max-width: 650px; /* Aumentado de 500px para 650px */
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    max-width: 650px; /* Garante que a imagem possa ter até 650px */
}

/* Proposta de Valor */
.value-prop {
    background-color: var(--background-color);
}

.value-cards {
    display: flex;
    gap: 30px;
    margin-top: 50px;
}

.value-card {
    flex: 1;
    padding: 30px;
    background: linear-gradient(135deg, white 0%, var(--background-light) 100%);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    text-align: center;
    border: 1px solid var(--border-color);
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-color);
}

.value-card i {
    color: var(--primary-color);
    margin-bottom: 20px;
    width: 48px;
    height: 48px;
    stroke-width: 1.5;
}

.value-card h3 {
    margin-bottom: 15px;
}

/* Como Funciona */
.how-it-works {
    background-color: var(--background-light);
}

.steps {
    display: flex;
    gap: 30px;
    margin-top: 50px;
}

.step {
    flex: 1;
    text-align: center;
    padding: 0 20px;
}

.step-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-light) 0%, white 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.step-icon i {
    color: var(--primary-color);
    width: 32px;
    height: 32px;
    stroke-width: 2;
}

/* IA Automation Section */
.ai-automation {
    background-color: var(--background-light);
    overflow: hidden;
}

.carousel-container {
    position: relative;
    margin: 40px 0;
    padding: 0 60px;
}

.carousel {
    position: relative;
    overflow: hidden;
}

.carousel-slide {
    display: none;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.carousel-slide.active {
    display: block;
    opacity: 1;
}

.solution-content {
    display: flex;
    gap: 40px;
    align-items: center;
}

.solution-info {
    flex: 1;
    padding: 20px;
}

.solution-info h3 {
    color: var(--primary-dark);
    margin-bottom: 20px;
}

.solution-features {
    margin: 20px 0;
}

.solution-features li {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    color: var(--text-light);
}

.solution-features i {
    color: var(--secondary-color);
    margin-right: 10px;
    width: 18px;
    height: 18px;
}

.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--background-color);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    z-index: 2;
    color: var(--primary-color);
}

.carousel-arrow:hover {
    background: var(--primary-color);
    color: white;
}

.carousel-arrow.prev {
    left: 0;
}

.carousel-arrow.next {
    right: 0;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: none;
    background: var(--border-color);
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background: var(--primary-color);
    transform: scale(1.2);
}

/* 5x CRM Features */
.crm-features {
    background-color: var(--background-color);
}

.feature-block {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-bottom: 80px;
}

.feature-block:last-child {
    margin-bottom: 0;
}

.feature-block.reverse {
    flex-direction: row-reverse;
}

.feature-content {
    flex: 1;
}

.feature-content h3 {
    font-size: 2rem;
    color: var(--primary-dark);
    margin-bottom: 20px;
}

.feature-content p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 25px;
    line-height: 1.7;
}

.feature-list {
    margin-bottom: 30px;
}

.feature-list li {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    font-size: 1rem;
    color: var(--text-color);
}

.feature-list li::before {
    content: '✓';
    color: var(--secondary-color);
    font-weight: bold;
    font-size: 1.2rem;
    margin-right: 12px;
    width: 20px;
}

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

.feature-image img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

/* Integrations Carousel */
.integrations-carousel {
    margin: 40px 0;
    height: 200px;
    overflow: hidden;
    position: relative;
    background: linear-gradient(135deg, var(--background-light) 0%, white 100%);
    border-radius: var(--radius-lg);
}

.integrations-carousel::before,
.integrations-carousel::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 50px;
    z-index: 2;
    pointer-events: none;
}

.integrations-carousel::before {
    left: 0;
    background: linear-gradient(to right, var(--background-light), transparent);
}

.integrations-carousel::after {
    right: 0;
    background: linear-gradient(to left, var(--background-light), transparent);
}

.carousel-track {
    display: flex;
    align-items: center;
    height: 100px;
    animation: scroll-left 30s linear infinite;
}

.carousel-track.reverse {
    animation: scroll-right 30s linear infinite;
}

.carousel-track:hover {
    animation-play-state: paused;
}

.logo-item {
    flex: 0 0 auto;
    width: 120px;
    height: 60px;
    margin: 0 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    filter: grayscale(100%);
    transition: var(--transition);
}

.logo-item:hover {
    filter: grayscale(0%);
    transform: scale(1.05);
}

.logo-item img {
    max-width: 80px;
    max-height: 40px;
    object-fit: contain;
}

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

@keyframes scroll-right {
    0% {
        transform: translateX(-50%);
    }
    100% {
        transform: translateX(0);
    }
}

/* Benefícios */
.benefits {
    background-color: var(--background-light);
}

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

.benefit-card {
    padding: 30px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    text-align: center;
    border: 1px solid var(--border-color);
    background: linear-gradient(135deg, white 0%, var(--background-light) 100%);
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-color);
}

.benefit-card i {
    color: var(--primary-color);
    margin-bottom: 20px;
    width: 40px;
    height: 40px;
    stroke-width: 1.5;
}

/* Chamada Final */
.final-cta {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.final-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at bottom left, var(--secondary-color) 0%, transparent 70%);
    opacity: 0.3;
}

.final-cta .container {
    position: relative;
    z-index: 1;
}

.final-cta h2 {
    color: white;
}

.final-cta p {
    max-width: 700px;
    margin: 0 auto 30px;
    font-size: 1.2rem;
}

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

.final-cta .btn-primary:hover {
    background-color: var(--primary-light);
    color: var(--primary-dark);
}

/* Contato */
.contact {
    background-color: var(--background-light);
}

.contact-container {
    display: flex;
    gap: 40px;
    margin-top: 40px;
}

.contact-form {
    flex: 2;
    background-color: var(--background-color);
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

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

.form-group.full-width {
    grid-column: 1 / -1;
}

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px var(--primary-light);
    outline: none;
}

.contact-form .btn {
    grid-column: 1 / -1;
    justify-self: center;
    min-width: 250px;
}

.contact-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-method {
    background-color: var(--background-color);
    padding: 30px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    text-align: center;
}

.contact-method i {
    color: var(--primary-color);
    margin-bottom: 15px;
    width: 30px;
    height: 30px;
    stroke-width: 1.5;
}

/* Footer */
footer {
    background-color: var(--background-gray);
    padding: 60px 0 20px;
}

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

.footer-logo h2 {
    text-align: left;
    color: var(--primary-color);
    margin-bottom: 10px;
    background: linear-gradient(to right, var(--primary-dark), var(--primary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.tagline {
    color: var(--text-light);
}

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

.footer-links-column h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.footer-links-column ul li {
    margin-bottom: 10px;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Hero Badge */
.hero-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(26, 115, 232, 0.3);
}

/* Hero Stats */
.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 30px 0;
}

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

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 500;
}

/* Problem Section */
.problem-section {
    background: linear-gradient(135deg, var(--background-light) 0%, white 100%);
    padding: 80px 0;
}

.comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 50px;
}

.comparison-column {
    background: white;
    border-radius: var(--radius-lg);
    padding: 40px 30px;
    box-shadow: var(--shadow-md);
}

.comparison-column.without-ai {
    border: 2px solid #fee;
}

.comparison-column.with-ai {
    border: 2px solid var(--primary-light);
    background: linear-gradient(135deg, white 0%, var(--primary-light) 100%);
}

.column-header {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--border-color);
}

.column-header h3 {
    font-size: 1.5rem;
    margin: 0;
}

.comparison-items {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.comparison-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.item-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.item-text {
    flex: 1;
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-color);
}

/* Clau AI Section */
.clau-ai-section {
    background-color: var(--background-color);
}

.agent-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--secondary-color), #2d8e41);
    color: white;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 15px;
}

/* Why Bitrix Section */
.why-bitrix {
    background: linear-gradient(135deg, white 0%, var(--background-light) 100%);
    padding: 80px 0;
}

.bitrix-features {
    max-width: 900px;
    margin: 50px auto 60px;
}

.bitrix-feature {
    display: flex;
    gap: 30px;
    margin-bottom: 50px;
    padding: 30px;
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.bitrix-feature:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.feature-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 700;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(26, 115, 232, 0.3);
}

.feature-info {
    flex: 1;
}

.feature-info h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--primary-dark);
}

.feature-info p {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.7;
}

.ai-boost {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background: linear-gradient(135deg, #fff9e6 0%, #fff 100%);
    padding: 15px 20px;
    border-radius: var(--radius-md);
    border-left: 4px solid #fbbf24;
    margin-top: 15px;
}

.ai-boost i {
    color: #fbbf24;
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    margin-top: 2px;
}

.ai-boost span {
    flex: 1;
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-color);
}

/* Pricing Plans Section */
.pricing-plans {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.pricing-plans h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #1a202c;
}

.pricing-plans .section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #64748b;
    margin-bottom: 40px;
}

/* Toggle de Preços */
.pricing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 50px;
    gap: 15px;
}

.toggle-label {
    font-weight: 500;
    color: #374151;
}

.discount-badge {
    background: linear-gradient(135deg, #10b981, #065f46);
    color: white;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-left: 8px;
}

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

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

.toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #3b82f6, #1e40af);
    border-radius: 34px;
    transition: .4s;
}

.toggle-slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    border-radius: 50%;
    transition: .4s;
}

input:checked + .toggle-slider:before {
    transform: translateX(26px);
}

/* Grid de Planos - 3 colunas lado a lado */
.plans-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

/* Cards de Planos */
.plan-card {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 2px solid transparent;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
}

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

.plan-card.popular {
    border: 2px solid #3b82f6;
    background: linear-gradient(135deg, #ffffff 0%, #f8faff 100%);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #3b82f6, #1e40af);
    color: white;
    padding: 8px 24px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

/* Header do Plano */
.plan-header {
    text-align: center;
    margin-bottom: 30px;
}

.plan-header h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 10px;
}

.plan-description {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-top: 8px;
}

.base-bitrix {
    background: var(--background-light);
    padding: 20px;
    border-radius: var(--radius-md);
    margin-bottom: 25px;
}

.base-bitrix h4 {
    font-size: 1rem;
    color: var(--text-color);
    margin-bottom: 15px;
    font-weight: 600;
}

.bitrix-features-list {
    list-style: none;
    padding: 0;
    margin-top: 15px;
}

.bitrix-features-list li {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    font-size: 0.9rem;
    color: var(--text-color);
}

.bitrix-features-list li i {
    width: 16px;
    height: 16px;
    margin-right: 10px;
    color: var(--secondary-color);
}

.addon-section {
    margin-bottom: 25px;
}

.addon-section h4 {
    font-size: 1rem;
    color: var(--text-color);
    margin-bottom: 15px;
    font-weight: 600;
}

.addon-item {
    display: block;
    margin-bottom: 12px;
    cursor: pointer;
}

.addon-item input[type="radio"] {
    display: none;
}

.addon-content {
    padding: 15px;
    border: 2px solid var(--border-color);
    border-radius: var(--radius-md);
    transition: var(--transition);
    background: white;
}

.addon-item input[type="radio"]:checked + .addon-content {
    border-color: var(--primary-color);
    background: var(--primary-light);
}

.addon-item:hover .addon-content {
    border-color: var(--primary-color);
}

.addon-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.addon-name {
    font-weight: 600;
    color: var(--text-color);
    font-size: 0.95rem;
}

.popular-badge-small {
    background: var(--secondary-color);
    color: white;
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 600;
    margin-left: 8px;
}

.addon-price {
    font-weight: 700;
    color: var(--primary-color);
    font-size: 0.9rem;
}

.addon-features {
    list-style: none;
    padding: 0;
    margin-top: 10px;
}

.addon-features li {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 5px;
    padding-left: 15px;
    position: relative;
}

.addon-features li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.plan-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background: var(--background-light);
    border-radius: var(--radius-md);
    margin-bottom: 20px;
    font-weight: 600;
}

.plan-total span:first-child {
    font-size: 1.1rem;
    color: var(--text-color);
}

.total-price {
    font-size: 1.5rem;
    color: var(--primary-color);
}

/* Testimonials */
.testimonials {
    background: linear-gradient(135deg, var(--background-light) 0%, white 100%);
    padding: 80px 0;
}

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

.testimonial-card {
    background: white;
    padding: 35px 30px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    display: flex;
    flex-direction: column;
    transition: var(--transition);
    border-top: 4px solid var(--primary-color);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.testimonial-quote {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-color);
    margin-bottom: 25px;
    font-style: italic;
    flex: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
}

.author-info {
    flex: 1;
}

.author-name {
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 4px;
}

.author-role {
    font-size: 0.9rem;
    color: var(--text-light);
}

.testimonial-stats {
    display: flex;
    gap: 20px;
}

.testimonial-stats .stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    padding: 15px;
    background: var(--background-light);
    border-radius: var(--radius-md);
}

.testimonial-stats .stat-value {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 5px;
}

.testimonial-stats .stat-label {
    font-size: 0.8rem;
    color: var(--text-light);
    text-align: center;
}

/* Final CTA New */
.final-cta-new {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    text-align: center;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.final-cta-new::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at top right, rgba(52, 168, 83, 0.3) 0%, transparent 60%);
}

.final-cta-new .container {
    position: relative;
    z-index: 1;
}

.final-cta-new h2 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.final-cta-new p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.95;
}

.cta-benefits {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: white;
    font-weight: 500;
}

.benefit-item i {
    width: 24px;
    height: 24px;
    color: var(--secondary-color);
}

.final-cta-new .btn-primary {
    background-color: white;
    color: var(--primary-color);
    font-size: 1.1rem;
    padding: 16px 40px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.final-cta-new .btn-primary:hover {
    background-color: var(--primary-light);
    color: var(--primary-dark);
    transform: translateY(-3px);
}

/* Contact Highlight */
.contact-highlight {
    background: linear-gradient(135deg, #fff9e6 0%, #fff 100%);
    border: 2px solid #fbbf24;
    border-radius: var(--radius-lg);
    padding: 25px;
    margin-bottom: 30px;
    display: flex;
    gap: 20px;
    align-items: center;
}

.highlight-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.highlight-icon i {
    width: 24px;
    height: 24px;
    color: white;
}

.highlight-content h3 {
    font-size: 1.2rem;
    color: var(--text-color);
    margin-bottom: 8px;
}

.highlight-content p {
    font-size: 0.95rem;
    color: var(--text-light);
    margin: 0;
}

/* Responsividade */
@media (max-width: 992px) {
    h1 {
        font-size: 2.2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .value-cards, 
    .steps {
        flex-direction: column;
    }
    
    .contact-container {
        flex-direction: column;
    }
    
    .solution-content {
        flex-direction: column;
    }
    
    .feature-block,
    .feature-block.reverse {
        flex-direction: column;
        gap: 40px;
    }
    
    /* Planos em tablet - 1 coluna */
    .plans-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .plan-card {
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    section {
        padding: 60px 0;
    }
    
    .hero {
        padding: 140px 0 60px;
    }
    
    .hero .container {
        flex-direction: column;
    }
    
    .hero-image {
        order: -1;
        max-width: 100%;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .comparison-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .bitrix-feature {
        flex-direction: column;
        gap: 20px;
    }
    
    .feature-number {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonial-stats {
        flex-direction: column;
        gap: 15px;
    }
    
    .cta-benefits {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }
    
    .contact-highlight {
        flex-direction: column;
        text-align: center;
    }
    
    nav {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background-color: var(--background-color);
        transition: var(--transition);
        box-shadow: var(--shadow-md);
        padding: 20px;
    }
    
    nav.active {
        left: 0;
    }
    
    nav ul {
        flex-direction: column;
        gap: 20px;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .contact-form {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 30px;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 30px;
    }
    
    .carousel-container {
        padding: 0 40px;
    }
    
    .carousel-arrow {
        width: 32px;
        height: 32px;
    }
    
    .logo {
        height: 40px;
    }
    .logo img {
        height: 96px;
        margin-top: -18px;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .btn {
        padding: 10px 20px;
    }
    
    .btn-lg {
        padding: 12px 24px;
    }
    
    .logo {
        height: 35px;
    }
    .logo img {
        height: 84px;
        margin-top: -15px;
    }
}

/* Price Toggle Display Control */
.plan-price {
    position: relative;
}

.plan-price .price {
    display: none;
}

.plan-price .price.active {
    display: inline;
}

.addon-price .quarterly,
.addon-price .annually {
    display: none;
}

.addon-price .quarterly.active,
.addon-price .annually.active {
    display: inline;
}
