/* Variáveis CSS */
:root {
    --primary-color: #FF8C00; /* Laranja WebCis (Base do Logo) */
    --secondary-color: #FFB864; /* Laranja Claro */
    --dark-color: #333333; /* Cinza Escuro para Contraste */
    --light-color: #F8F9FA; /* Cinza Claro para Fundo */
    --white-color: #fff; /* Branco Puro */
    --success-color: #4a74c1; /* Azul Médio para Destaque (Invertido) */
    --info-color: #17A2B8; /* Azul claro */
    --warning-color: #FFC107; /* Amarelo */
    --danger-color: #DC3545; /* Vermelho */
    /* Cores dos Serviços - Atualizadas */
    --ia-color: #5856D6; /* Roxo/Azul do Assistente IA */
    --avaliacoes-color: #5B2C63; /* Roxo do Google Avaliações */
    --relatorios-color: #1B4D5C; /* Verde Escuro do Painel de Relatórios */
    --zap-color: #1F6F8B; /* Azul Petroleo do Zap Sender */
    --conteudo-color: #5C4B8B; /* Roxo profundo para Geração de Conteúdo */
}
/* Reset e Estilos Gerais */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif; /* Forçando a fonte no body */
    line-height: 1.6;
    color: var(--dark-color);
    background-color: var(--white-color);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

a {
    color: var(--primary-color);
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

ul {
    list-style: none;
}

h1, h2, h3, h4, h5, h6 {
    margin-bottom: 1rem;
    font-weight: 600;
}

p {
    margin-bottom: 1rem;
}

/* Botões */
.btn {
    display: inline-block;
    background: var(--primary-color);
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    text-align: center;
    transition: background 0.3s ease;
}

.btn:hover {
    background: #163E4A;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(27, 77, 92, 0.4);
}

.btn-primary {
    background: var(--primary-color);
}

.btn-secondary {
    background: var(--secondary-color);
}

.btn-secondary:hover {
    background: #236A7A;
    box-shadow: 0 4px 12px rgba(42, 122, 140, 0.4);
}

.btn-success {
    background: var(--success-color);
}

/* Header */
header {
    background: #fff;
    color: var(--dark-color);
    padding: 1rem 0;
    border-bottom: 1px solid #eee;
    position: sticky;
    top: 0;
    z-index: 1000;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
}

.logo-img {
    width: 210px; /* Aumentando o tamanho do logo conforme solicitado */
    height: auto;
    object-fit: contain;
}

header .container {
    display: flex;
    justify-content: space-between; /* Restaura o espaçamento entre logo e menu */
    align-items: center;
}

header .nav-links {
    display: flex; /* Restaura a navegação no topo */
}

@media (max-width: 768px) {
    .logo-img {
        width: 100px;
    }
}

.nav-links {
    display: flex;
}

.nav-links li {
    margin-left: 20px;
}

.nav-links a {
    color: var(--dark-color);
    font-weight: 600;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--primary-color);
    text-decoration: none;
}

/* Mobile: logo à esquerda e menu hamburguer à direita */
@media (max-width: 768px) {
	header .container {
		flex-direction: row !important;
		justify-content: space-between !important;
		align-items: center !important;
		position: relative; /* necessário para posicionar o botão */
	}

	.logo {
		margin-bottom: 0 !important;
		display: flex;
		align-items: center;
	}

	.logo-img {
		width: 120px; /* ajuste para mobile */
		height: auto;
	}

	.menu-toggle {
		display: block !important;
		position: absolute;
		z-index: 1100;
		background: none;
		border: none;
	}

	/* Menu escondido por padrão; aparece somente com .active */
	header .nav-links {
		display: none !important;
		position: absolute;
		top: 64px;
		left: 0;
		width: 100%;
		background: #fff;
		box-shadow: 0 6px 18px rgba(0,0,0,0.12);
		flex-direction: column;
		padding: 18px 20px;
		gap: 12px;
		z-index: 1050;
	}

	header .nav-links.active {
		display: flex !important;
	}

	header .nav-links li {
		margin: 10px 0;
	}
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--dark-color) 0%, var(--primary-color) 100%);
    color: #fff;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}



.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ffffff" fill-opacity="0.05" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,138.7C960,139,1056,117,1152,101.3C1248,85,1344,75,1392,69.3L1440,64L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat bottom;
    background-size: cover;
}


.hero-container {
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: 50px;
    align-items: center;
}

.hero-content {
    text-align: left;
    z-index: 1;
}

.hero-image {
    z-index: 1;
    background-color: #000;
    border-radius: 15px;
}

/* Poster / fachada do vídeo */
.video-poster{
    position: relative;
    display: block;
    cursor: pointer;
    /* Transição para hover suave */
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    will-change: transform;
    width: 100%;
}
.poster-img{
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.28);
    display: block;
    object-fit: cover;
    transition: transform 0.35s ease;
}
.play-btn{
    position: absolute;
    left: 50%;
    top: 54%;
    transform: translate(-50%, -50%);
    background: transparent;
    border: none;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}
.play-btn svg{filter: drop-shadow(0 6px 18px rgba(0,0,0,0.36)); width:64px; height:64px; transition: transform 0.35s ease, filter 0.35s ease;}
.play-btn:focus{outline: 3px solid rgba(88,86,214,0.25); border-radius:50%;}

/* Hover do poster do vídeo: leve escala, overlay sutil e aumentar o ícone */
.video-poster:hover{
    transform: scale(1.03);
    box-shadow: 0 18px 50px rgba(0,0,0,0.36);
}

.video-poster::after{
    /* overlay sutil ao passar o mouse */
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 12px;
    background: rgba(0,0,0,0.06);
    opacity: 0;
    transition: opacity 0.35s ease;
    pointer-events: none;
}

.video-poster:hover::after{opacity:1}

.video-poster:hover .poster-img{transform: scale(1.02)}
.video-poster:hover .play-btn svg{transform: scale(1.08)}

/* Tamanho do wrapper do vídeo (quando inserido) */
.video-wrapper{border-radius:12px;overflow:hidden}
.video-wrapper iframe{width:100%;height:100%;display:block}

/* Overlay de texto 'Assista o vídeo' como ::before no poster */

.video-poster::before{
    content: 'Assista o vídeo';
    position: absolute;
    top: 16px;
    right: 16px;
    left: auto;
    transform: none;
    background: var(--secondary-color);
    color: #fff;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.95rem;
    font-family: var(--font-family);
    box-shadow: 0 8px 24px rgba(0,0,0,0.25);
    z-index: 8;
    pointer-events: none;
    white-space: nowrap;
}

/* Quando o vídeo estiver tocando, esconder o overlay */
.video-poster.playing::before{display:none}

/* Esconder o texto em telas muito pequenas para não sobrepor demais */
@media (max-width:480px){
    .video-poster::before{display:none}
    /* Esconder também o overlay ::after em mobile para não atrapalhar a visualização */
    .video-poster::after{display:none}
}

.hero-content h1 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    line-height: 1.6;
}

/* Sections Gerais */
section {
    padding: 80px 0;
    line-height: 1.5;
}

section:nth-child(even) {
    background-color: #f4f4f4;
}

section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
}

/* Services Section Improvements */
.services-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9ff 0%, #a3aabf 100%);
}

.services-section h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 20px;
    color: var(--dark-color);
    font-weight: 700;
}

.services-subtitle {
    display: block;
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
    margin: 0 auto 50px auto;
    max-width: 800px;
    font-weight: 400;
}

/* Feature Grid */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.feature-item {
    background: #fff;
    padding: 40px 30px;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

.feature-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px auto;
    background: linear-gradient(135deg, rgba(255, 140, 0, 0.1), rgba(255, 184, 100, 0.1));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.feature-item:hover .feature-icon {
    transform: scale(1.1);
}

.feature-icon i {
    font-size: 2.5rem;
    color: var(--primary-color);
}

/* Cores específicas dos ícones e bordas superiores */
.feature-item:nth-child(1)::before {
    background: linear-gradient(90deg, var(--conteudo-color), var(--conteudo-color));
}

.feature-item:nth-child(1) .feature-icon {
    background: linear-gradient(135deg, rgba(92, 75, 139, 0.1), rgba(92, 75, 139, 0.2));
}

.feature-item:nth-child(1) .feature-icon i {
    color: var(--conteudo-color);
}

.feature-item:nth-child(1):hover .feature-icon {
    background: linear-gradient(135deg, rgba(92, 75, 139, 0.2), rgba(92, 75, 139, 0.3));
}

.feature-item:nth-child(2)::before {
    background: linear-gradient(90deg, var(--ia-color), var(--ia-color));
}

.feature-item:nth-child(2) .feature-icon {
    background: linear-gradient(135deg, rgba(88, 86, 214, 0.1), rgba(88, 86, 214, 0.2));
}

.feature-item:nth-child(2) .feature-icon i {
    color: var(--ia-color);
}

.feature-item:nth-child(2):hover .feature-icon {
    background: linear-gradient(135deg, rgba(88, 86, 214, 0.2), rgba(88, 86, 214, 0.3));
}

.feature-item:nth-child(3)::before {
    background: linear-gradient(90deg, var(--avaliacoes-color), var(--avaliacoes-color));
}

.feature-item:nth-child(3) .feature-icon {
    background: linear-gradient(135deg, rgba(91, 44, 99, 0.1), rgba(91, 44, 99, 0.2));
}

.feature-item:nth-child(3) .feature-icon i {
    color: var(--avaliacoes-color);
}

.feature-item:nth-child(3):hover .feature-icon {
    background: linear-gradient(135deg, rgba(91, 44, 99, 0.2), rgba(91, 44, 99, 0.3));
}

.feature-item:nth-child(4)::before {
    background: linear-gradient(90deg, var(--zap-color), var(--zap-color));
}

.feature-item:nth-child(4) .feature-icon {
    background: linear-gradient(135deg, rgba(31, 111, 139, 0.1), rgba(31, 111, 139, 0.2));
}

.feature-item:nth-child(4) .feature-icon i {
    color: var(--zap-color);
}

.feature-item:nth-child(4):hover .feature-icon {
    background: linear-gradient(135deg, rgba(31, 111, 139, 0.2), rgba(31, 111, 139, 0.3));
}

.feature-item:nth-child(5)::before {
    background: linear-gradient(90deg, var(--relatorios-color), var(--relatorios-color));
}

.feature-item:nth-child(5) .feature-icon {
    background: linear-gradient(135deg, rgba(27, 77, 92, 0.1), rgba(27, 77, 92, 0.2));
}

.feature-item:nth-child(5) .feature-icon i {
    color: var(--relatorios-color);
}

.feature-item:nth-child(5):hover .feature-icon {
    background: linear-gradient(135deg, rgba(27, 77, 92, 0.2), rgba(27, 77, 92, 0.3));
}

.feature-item h3 {
    font-size: 1.6rem;
    margin-bottom: 20px;
    color: var(--dark-color);
    font-weight: 600;
    text-align: center;
}

.feature-item p {
    font-size: 1rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 30px;
    text-align: center;
    flex-grow: 1;
}

.feature-item .btn {
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 50px;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    align-self: center;
}

/* Header */
header {
    background: #fff;
    color: var(--dark-color);
    padding: 1rem 0;
    border-bottom: 1px solid #eee;
    position: sticky;
    top: 0;
    z-index: 1000;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
}

.logo-img {
    width: 210px; /* Aumentando o tamanho do logo conforme solicitado */
    height: auto;
    object-fit: contain;
}

header .container {
    display: flex;
    justify-content: space-between; /* Restaura o espaçamento entre logo e menu */
    align-items: center;
}

header .nav-links {
    display: flex; /* Restaura a navegação no topo */
}

@media (max-width: 768px) {
    .logo-img {
        width: 100px;
    }
}

.nav-links {
    display: flex;
}

.nav-links li {
    margin-left: 20px;
}

.nav-links a {
    color: var(--dark-color);
    font-weight: 600;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--primary-color);
    text-decoration: none;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--dark-color) 0%, var(--primary-color) 100%);
    color: #fff;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.hero-section .hero-image {
    /* Ajuste para o Lite-YouTube */
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 300px;
}

.hero-section .hero-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    transform: none; /* Remove o scale do mockup anterior */
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ffffff" fill-opacity="0.05" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,138.7C960,139,1056,117,1152,101.3C1248,85,1344,75,1392,69.3L1440,64L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat bottom;
    background-size: cover;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.hero-content {
    text-align: left;
    z-index: 1;
}

.hero-image {
    z-index: 1;
}

.hero-image img {
    width: 120%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    transform: scale(1.1);
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    line-height: 1.6;
}

/* Sections Gerais */
section {
    padding: 80px 0;
}

section:nth-child(even) {
    background-color: #f4f4f4;
}

section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
}

/* Feature Grid */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 30px;
}

.feature-item {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.feature-item i {
    font-size: 3rem;
    color: var(--primary-color);
}

.feature-item h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

/* Seção de Destaque */
.highlight-section {
    padding: 0;
    background-color: var(--light-color); /* Fundo cinza claro para as seções */
    border-bottom: 1px solid #ddd;

}

.highlight-section.inverse {
    background-color: var(--white-color); /* Fundo branco para seções invertidas */
  background-color: var(--light-color);
}

.highlight-section:nth-of-type(odd) {
    background-color: #f4f4f4;
}

.highlight-container {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 50px;
    align-items: end;
}

.highlight-section h2 {
    text-align: left;
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--dark-color) !important; /* Força a cor do título */
}

.highlight-section .subtitle {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 10px;
    font-weight: 600;
}

.highlight-section p {
    font-size: 1rem;
}

.highlight-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    list-style: none;
    padding: 0;
    margin-bottom: 50px;
}

.highlight-list li {
    /* Glassmorphism Card */
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 20px;
    font-size: 1rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    transition: transform 0.3s ease;
    color: var(--dark-color) !important; /* Força a cor do texto do card */
}

.highlight-list li:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.15);
}

.highlight-list li i {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 5px;
}

.highlight-list li i {
    color: var(--primary-color) !important; /* Força a cor do ícone do card */
}

/* Cores dos Ícones por Seção */
#assistente-ia .highlight-list li i {
    color: var(--ia-color) !important;
}

#geracao-conteudo .highlight-list li i {
    color: var(--conteudo-color) !important;
}


#avaliacoes-google .highlight-list li i {
    color: var(--avaliacoes-color) !important;
}

#zap-sender .highlight-list li i {
    color: var(--zap-color) !important;
}

#painel_relatorios .highlight-list li i {
    color: var(--relatorios-color) !important;
}

.highlight-section.inverse .highlight-list li {
    color: var(--dark-color); /* Força a cor do texto no card para o dark-color */
}

.highlight-section.inverse .highlight-list li strong {
    color: var(--dark-color);
}

.highlight-list li strong {
    font-size: 1.1rem;
    color: var(--dark-color) !important; /* Força a cor do strong do card */
}

.highlight-list li p {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.4;
}

.highlight-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
}
.image-placeholder {
    width: 100%;
    min-height: 360px;
    border-radius: 12px;
    border: 2px dashed rgba(0, 0, 0, 0.15);
    background: linear-gradient(135deg, rgba(255, 140, 0, 0.08), rgba(92, 75, 139, 0.12));
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.cta-buttons {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.cta-buttons .btn {
    padding: 12px 25px;
    font-size: 1rem;

    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.geracao-conteudo-section .highlight-image {
    max-width: 520px;
}

.cta-buttons .btn-secondary {

    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.cta-buttons .btn-secondary:hover {
    background-color: var(--primary-color);
    color: #fff;
}

.cta-buttons .btn-success {
    background-color: #25D366; /* WhatsApp Green */
    color: #fff;
    border: 2px solid #25D366;
}

.cta-buttons .btn-success:hover {
    background-color: #128C7E;
    border-color: #128C7E;
}

@media (max-width: 576px) {
    .cta-buttons {
        flex-direction: column;
        gap: 10px;
    }
}

/* Inverte a ordem para Imagem Esquerda, Texto Direita */
.highlight-section.inverse .highlight-container {
    grid-template-areas: "image content";
    grid-template-columns: 1fr 1.4fr;

}

.highlight-section.inverse .highlight-image {
    grid-area: image;
}

.highlight-section.inverse .highlight-content {
    grid-area: content;
}

@media (max-width: 992px) {
    .highlight-container {
        grid-template-columns: 1fr;
        grid-template-areas: "content" "image";
    }

    .highlight-section.inverse .highlight-container {
        grid-template-areas: "content" "image";
    }

    .highlight-section h2 {
        text-align: center;
    }

    .highlight-section .subtitle {
        text-align: center;
    }
}

.highlight-content {
    text-align: left;
    padding: 80px 0;
}

.highlight-content h2 {
    color: #fff;
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 20px;
}

.highlight-content p {
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.highlight-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.highlight-list li {
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.highlight-list li i {
    color: #fff;
    font-size: 1.3rem;
}

.highlight-image {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 450px;
}

/* Slider de Imagens */
.slider-wrapper-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    align-items: center;
}

.slider-container {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.slider-wrapper {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.slider-wrapper img {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
    flex-shrink: 0;
}

.slider-description {
    padding: 20px;
}

.slider-description h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.slider-description p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--dark-color);
}

.slider-nav button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
    font-size: 1.5rem;
    border-radius: 5px;
    z-index: 10;
}

.slider-nav .prev {
    left: 10px;
}

.slider-nav .next {
    right: 10px;
}

/* Tabela de Preços */
.pricing-table {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.pricing-plan {
    background: #fff;
    padding: 40px 30px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
}

.pricing-plan:hover {
    transform: translateY(-10px);
}

.pricing-plan h3 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.pricing-plan .price {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.pricing-plan .price span {
    font-size: 1.5rem;
    font-weight: 400;
}

.pricing-plan ul {
    margin-bottom: 30px;
    flex-grow: 1;
}

.pricing-plan ul li {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    color: var(--dark-color);
    text-align: left;
}

.pricing-plan ul li i {
    color: var(--success-color);
    margin-right: 10px;
}

.pricing-plan ul li:last-child {
    border-bottom: none;
}

.pricing-plan .btn {
    width: 100%;
    padding: 15px;
    font-size: 1.1rem;
    margin-top: auto;
}

/* Footer */
footer {
    background: var(--dark-color);
    color: #fff;
    text-align: center;
    padding: 30px 0;
}

/* Responsividade */
@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 2.5rem;
    }

    .nav-links {
        display: none; /* Pode ser substituído por um menu hambúrguer */
    }

    header .container {
        flex-direction: column;
    }

    .logo {
        margin-bottom: 15px;
    }

    .feature-grid, .pricing-table {
        grid-template-columns: 1fr;
    }

    .hero-section .hero-image img{
        width: 100%;
    }

    .hero-section .hero-image {
        min-height: 168px;
    }
    .services-section h2{
        font-size: 2.2rem;
    }

}

@media (max-width: 480px) {
    .hero-section h1 {
        font-size: 2rem;
    }

    .hero-section p {
        font-size: 1rem;
    }

    section {
        padding: 50px 0;
    }

    section h2 {
        font-size: 2rem;
    }

    .pricing-plan .price {
        font-size: 2.5rem;
    }
}



/* Animações */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.feature-item, .pricing-plan {
    animation: fadeInUp 0.6s ease-out;
}

/* Seção de Contato */
.contact-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: #fff;
    text-align: center;
    padding: 80px 0;
}

.contact-section h2 {
    color: #fff;
    margin-bottom: 20px;
}

.contact-section p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

/* Melhorias no Slider */
.system-slider-section {
    background: #fff;
}

.slider-nav button:hover {
    background: rgba(0, 0, 0, 0.8);
}

/* Ajustes de Tipografia */
h1, h2, h3, h4, h5, h6 {
    line-height: 1.2;
}

/* Scroll Behavior */
html {
    scroll-behavior: smooth;
}

/* Detalhes de UI */
.feature-item:hover, .pricing-plan:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.btn {
    transition: all 0.3s ease;
}

/* Responsividade Adicional */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .hero-content {
        text-align: center;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .feature-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pricing-table {
        grid-template-columns: repeat(2, 1fr);
    }

    .slider-wrapper-container {
        grid-template-columns: 1fr;
    }

    .highlight-list {
        grid-template-columns: 1fr;
    }

    .highlight-container {
        grid-template-columns: 1fr;
    }

    .cta-buttons {
        justify-content: center;
    }

    .highlight-image{
        margin: 0 auto;
    }

    .highlight-section.inverse .highlight-container{
        grid-template-columns: 1fr;
    }

    .highlight-content{
        padding: 80px 0 40px;
    }
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .nav-links {
        flex-direction: column;
        align-items: center;
    }

    .nav-links li {
        margin: 10px 0;
    }

    .feature-grid {
        grid-template-columns: 1fr;
    }

    .pricing-table {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-section h1 {
        font-size: 1.8rem;
    }

    .hero-section p {
        font-size: 0.9rem;
    }

    section {
        padding: 50px 0;
    }

    section h2 {
        font-size: 2rem;
    }

    .pricing-plan .price {
        font-size: 2.5rem;
    }

    .slider-nav button {
        padding: 8px 12px;
        font-size: 1.2rem;
    }
}

/* Menu Hambúrguer para Mobile */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--dark-color);
    cursor: pointer;
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }



    .nav-links {
        display: none;
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        background: #fff;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        flex-direction: column;
        padding: 20px 0;
    }

    .nav-links.active {
        display: flex !important;
    }

    .nav-links li {
        margin: 10px 0;
    }

    /* botão hambúrguer visível e acima de tudo */
	.menu-toggle {
		display: block;
		position: relative;
		z-index: 1100;
	}

	/* garantir que o menu esteja oculto por padrão no mobile, sobrescrevendo outras regras */
	header .nav-links {
		display: none !important;
		position: absolute;
		top: 45px;
		left: 0;
		width: 100%;
		background: #fff;
		box-shadow: 0 6px 18px rgba(0,0,0,0.12);
		flex-direction: column;
		padding: 18px 20px;
		gap: 12px;
		z-index: 1050;
	}

	/* quando ativo, exibir o menu em coluna */
	header .nav-links.active {
		display: flex !important;
	}

	/* estilo dos links dentro do menu mobile */
	header .nav-links li {
		margin: 10px 0;
	}

	/* garantir ícone visível (caso esteja trocando classes) */
	.menu-toggle i {
		font-size: 1.5rem;
		color: var(--dark-color);
	}
}



/* Plano em Destaque */
.pricing-plan-featured {
    position: relative;
    border: 3px solid var(--secondary-color);
    transform: scale(1.05);
}

.featured-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--secondary-color);
    color: #fff;
    padding: 5px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.plan-limit {
    font-size: 0.9rem;
    color: var(--secondary-color);
    margin-bottom: 10px;
    font-weight: 600;
}

/* Ajustes adicionais para responsividade */
@media (max-width: 1024px) {
    .pricing-plan-featured {
        transform: scale(1);
    }
}


/* Seção Como Funciona */
.how-it-works-section {
    padding: 80px 0;
    background: var(--light-color);
}

.how-it-works-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: var(--dark-color);
}

.how-it-works-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.how-it-works-item {
    background: #fff;
    padding: 40px 30px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.how-it-works-item:hover {
    transform: translateY(-10px);
}

.how-it-works-item i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.how-it-works-item h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.how-it-works-item p {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
}

/* Seção Ideal Para */
.ideal-for-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: #fff;
    text-align: center;
}

.ideal-for-section h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
}

.ideal-for-description {
    font-size: 1.3rem;
    line-height: 1.8;
    max-width: 900px;
    margin: 0 auto;
}

/* Responsividade para novas seções */
@media (max-width: 1024px) {
    .how-it-works-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .how-it-works-section h2,
    .ideal-for-section h2 {
        font-size: 2rem;
    }

    .ideal-for-description {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .how-it-works-section h2,
    .ideal-for-section h2 {
        font-size: 1.8rem;
    }

    .ideal-for-description {
        font-size: 1rem;
    }
}

/* Corrige o comportamento do vídeo: garante proporção 16:9 e faz o iframe preencher 100% do wrapper */
.hero-section .video-wrapper,
.video-wrapper#video-container {
    position: relative;      /* necessário para posicionar o iframe absoluto */
    width: 100%;
    padding-top: 56.25%;     /* 16:9 ratio (altura = 56.25% da largura) */
    height: 0;               /* altura será controlada pelo padding-top */
    overflow: hidden;
    border-radius: 12px;
    background: #000;        /* mesma aparência do contêiner preto */
}

/* iframe deve ocupar todo o espaço do wrapper */
.hero-section .video-wrapper iframe,
.video-wrapper#video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important;
    border: 0;
    display: block;
}

/* Garantir que o poster seja escondido e o wrapper mostrado quando o script insere o iframe */
#video-container[style*="display:block"] {   /* caso o script altere inline style */
    display: block;
}

/* Botão Voltar ao Topo (fixo e centralizado) */
.back-to-top {
    position: fixed;
    left: 50%;
    bottom: calc(20px + env(safe-area-inset-bottom));
    transform: translateX(-50%);
    width: 56px;
    height: 56px;
    border: none;
    border-radius: 999px;
    background: var(--primary-color);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity .3s ease, transform .3s ease, visibility .3s ease, background .3s ease;
    z-index: 1200;
}

.back-to-top i { font-size: 20px; }

.back-to-top.show {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.back-to-top:hover { background: #163E4A; }
.back-to-top:focus { outline: 3px solid rgba(88,86,214,0.35); outline-offset: 3px; }

@media (max-width: 480px) {
    .back-to-top { width: 52px; height: 52px; }
}





