/* Variáveis CSS */
:root {
    --primary-color: #5B2C63;
    --secondary-color: #4a74c1;
    --dark-color: #341a38;
    --light-color: #F8F9FA;
    --success-color: #ff9800;
    --info-color: #17A2B8;
    --warning-color: #FFC107;
    --danger-color: #DC3545;
    --font-family: 'Poppins', sans-serif;
    --feature-icon-nudge: 0px; /* ajuste fino se necessário (ex: 1px, -1px) */
}

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

body {
    font-family: var(--font-family);
    line-height: 1.6;
    color: var(--dark-color);
    background-color: var(--light-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;
    line-height: 1.2;
}

p {
    margin-bottom: 1rem;
}

html {
    scroll-behavior: smooth;
}

/* Botões */
.btn {
    display: inline-block;
    background: var(--secondary-color);
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    text-align: center;
    transition: all 0.3s ease;
}

.btn:hover {
    background: var(--dark-color);
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(33, 13, 49, 0.4);
}

.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: auto;
    height: 60px;
    object-fit: contain;
}

.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;
}

/* Menu Mobile */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--dark-color);
    cursor: pointer;
}

/* 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 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;
}

.hero-content p {
    font-size: 1.1rem;
    margin-bottom: 30px;
}

/* 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 e Items */
.feature-grid, .how-it-works-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature-item, .how-it-works-item {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: fadeInUp 0.6s ease-out;
}

.feature-item:hover, .how-it-works-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.feature-item i, .how-it-works-item i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.feature-item h3, .how-it-works-item h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

/* Ajustes visuais para "Todos planos possuem diversos recursos" - cards estilo do print */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    align-items: start;
    margin-top: 20px;
}

/* Card */
.feature-item {
    background: #ffffff;
    border-radius: 14px;
    padding: 34px 26px;
    text-align: center;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
}

/* Hover leve */
.feature-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.12);
}

/* ícone dentro de círculo com aura */
.feature-icon {
    width: 96px;
    height: 96px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(60% 60% at 30% 46%, rgba(91,78,230,0.32), rgba(91,78,230,0.16) 40%, rgba(244,244,256,7.54) 96%);
    box-shadow: 0 8px 22px rgba(91,78,230,0.08), inset 0 6px 16px rgba(255,255,255,0.5);
    position: relative;
    flex: 0 0 96px;
}

/* suave halo atrás do círculo */
.feature-icon::after {
    content: "";
    position: absolute;
    width: 140px;
    height: 140px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background: radial-gradient(circle, rgba(91,78,230,0.08) 0%, rgba(91,78,230,0.02) 40%, transparent 60%);
    filter: blur(10px);
    z-index: -1;
}

/* Correção de alinhamento dos ícones dentro do círculo (.feature-icon) */
.feature-icon i,
.feature-icon .fas,
.feature-icon .far,
.feature-icon .fal,
.feature-icon .fab {
	display: block;          /* remove comportamento inline que pode deslocar verticalmente */
	line-height: 1;         /* garante altura consistente */
	margin: 0;              /* remove margens herdadas */
	padding: 0;
	font-size: 32px;       /* mantém tamanho desejado */
	transform: translateY(var(--feature-icon-nudge)); /* ajuste fino central */
}

/* Anula margem definida em regras genéricas que afetavam os ícones */
.feature-item i {
	margin-bottom: 0; /* garantimos que o espaçamento venha do .feature-item (gap) */
}

/* título e texto */
.feature-item h3 {
    font-size: 1.15rem;
    color: #142c55;
    margin: 0;
    line-height: 1.2;
    font-weight: 700;
}

.feature-item p {
    font-size: 0.98rem;
    color: #6b7280;
    margin: 0;
    line-height: 1.5;
    max-width: 320px;
}

/* Descrições das seções para SEO */
.section-description {
    display: block;
    font-size: 1.1rem;
    color: #6b7280;
    text-align: center;
    max-width: 900px;
    margin: -30px auto 40px;
    line-height: 1.6;
    font-weight: 400;
}

/* Descrição em seções com fundo escuro */
.highlight-section .section-description,
.contact-section .section-description {
    color: rgba(255, 255, 255, 0.9);
}

/* Seções de Destaque */
.highlight-section, .contact-section, .ideal-for-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: #fff;
    padding: 0;
}

.highlight-container {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 50px;
    align-items: end;
}


.highlight-image{
    display: flex;
}

.highlight-content{
        padding: 70px 0;
}

.highlight-content h2, .contact-section h2, .ideal-for-section h2 {
    color: #fff;
    font-size: 2.5rem;
    margin-bottom: 30px;
}

.highlight-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    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 img {
    width: 100%;
    height: auto;
}

/* Slider */
.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-images {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
}

.slider-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.slider-item.active {
    opacity: 1;
    z-index: 1;
}

.slider-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.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-btn, .slider-nav button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(27, 77, 92, 0.8);
    color: #fff;
    border: none;
    padding: 15px 20px;
    cursor: pointer;
    font-size: 1.5rem;
    border-radius: 5px;
    z-index: 10;
    transition: background 0.3s ease;
}

.slider-btn:hover, .slider-nav button:hover {
    background: rgba(27, 77, 92, 1);
}

.prev-btn, .slider-nav .prev {
    left: 10px;
}

.next-btn, .slider-nav .next {
    right: 10px;
}

/* Tabela de Preços */
.pricing-table {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.pricing-plan {
    background: #fff;
    padding: 38px 28px 32px 28px;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(44, 62, 80, 0.08);
    border: 1.5px solid #eee;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    transition: box-shadow 0.3s, border 0.3s, transform 0.3s;
    animation: fadeInUp 0.6s ease-out;
}

.pricing-plan:hover {
    box-shadow: 0 8px 32px rgba(44, 62, 80, 0.13);
    transform: translateY(-6px) scale(1.03);
    border-color: var(--primary-color);
}

.pricing-plan.featured {
    border: 2.5px solid #ff9800;
    box-shadow: 0 8px 32px rgba(255, 152, 0, 0.13);
    transform: scale(1.04);
    z-index: 2;
}

.featured-badge {
    position: absolute;
    top: -18px;
    left: 50%;
    transform: translateX(-50%);
    background: #ff9800;
    color: #fff;
    padding: 6px 22px;
    border-radius: 20px;
    font-size: 1rem;
    font-weight: 700;
    box-shadow: 0 2px 8px rgba(255,152,0,0.12);
    letter-spacing: 0.02em;
    z-index: 3;
}

.pricing-plan .plan-title {
    font-size: 2rem;
    font-weight: 700;
    color: #5b4ee6;
    margin-bottom: 10px;
    margin-top: 10px;
    letter-spacing: 0.01em;
}

.pricing-plan .price {
    margin-bottom: 24px;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.pricing-plan .price-value {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--success-color);
    letter-spacing: 0.01em;
    line-height: 1.2;
    display: block;
    text-align: center;
}

.pricing-plan.featured .price-value {
    color: var(--success-color);
}

.pricing-plan .price-value strong {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-color);
    display: block;
    margin-top: 2px;
}

.pricing-plan ul {
    margin-bottom: 28px;
    flex-grow: 1;
    text-align: left;
    padding: 0;
    width: 100%;
}

.pricing-plan ul li {
    padding: 8px 0;
    font-size: 1.05rem;
    color: #222;
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: center;
    gap: 8px;
}

.pricing-plan ul li:last-child {
    border-bottom: none;
}

.pricing-plan ul li i {
    color: #4caf50;
    font-size: 1.1rem;
    margin-right: 8px;
}

.pricing-plan .btn {
    width: 100%;
    padding: 14px 0;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 8px;
    background: #5b4ee6;
    color: #fff;
    margin-top: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    box-shadow: 0 2px 8px rgba(91, 78, 230, 0.08);
    transition: background 0.2s, box-shadow 0.2s;
}

.pricing-plan .btn:hover {
    background: #473bb3;
    box-shadow: 0 4px 16px rgba(91, 78, 230, 0.15);
    color: #fff;
    text-decoration: none;
}

.pricing-plan .btn i {
    font-size: 1.2rem;
}

/* Estilo do select de ciclo nos cards de preço */
.pricing-select-wrap {
    width: 100%;
    margin: 14px 0 8px;
    display: flex;
    justify-content: center;
}

.pricing-cycle-select {
    width: 92%;
    max-width: 420px;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background: #f3f4f6;
    border: 1px solid #e6e7ea;
    padding: 12px 40px 12px 18px;
    border-radius: 10px;
    font-size: 1rem;
    color: #223;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.6);
    position: relative;
    background-image: linear-gradient(45deg, transparent 50%, #999 50%), linear-gradient(135deg, #999 50%, transparent 50%);
    background-position: calc(100% - 20px) calc(1em + 2px), calc(100% - 15px) calc(1em + 2px);
    background-size: 6px 6px, 6px 6px;
    background-repeat: no-repeat;
    cursor: pointer;
    transition: box-shadow .18s ease, transform .12s ease;
}

.pricing-cycle-select:focus {
    outline: none;
    box-shadow: 0 6px 20px rgba(60,64,67,0.08);
    transform: translateY(-2px);
}

/* linha de equivalência por mês */
.equivalent {
    margin: 8px 0 16px;
    font-size: 0.98rem;
    color: #6b4b2a; /* tom quente para destaque do valor */
    text-align: center;
}

.equivalent strong {
    color: #d16500; /* cor de destaque laranja/âmbar */
    font-weight: 800;
}

/* responsividade do select dentro do card */
@media (max-width: 768px) {
    .pricing-cycle-select {
        width: 95%;
        font-size: 0.98rem;
        padding: 10px 36px 10px 14px;
    }
}

/* Glass Cards para Benefícios */
.benefits-glass-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-top: 30px;
}

.benefit-glass-card {
    background: rgba(255, 255, 255, 0.18);
    border-radius: 16px;
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.18);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1.5px solid rgba(255, 255, 255, 0.28);
    padding: 33px 18px 32px;
    text-align: center;
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 210px;
    transition: box-shadow 0.3s, transform 0.3s;
}

.benefit-glass-card:hover {
    box-shadow: 0 12px 40px 0 rgba(31, 38, 135, 0.25);
    transform: translateY(-6px) scale(1.03);
}

.benefit-glass-card i {
    font-size: 2.7rem;
    margin-bottom: 18px;
    color: #fff;
    opacity: 0.92;
}

.benefit-glass-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #fff;
}

.benefit-glass-card p {
    font-size: 1.05rem;
    color: #f3f3f3;
    opacity: 0.95;
    margin-bottom: 0;
}

/* Seções Específicas */
.avaliacoes-script-section {
    background-color: var(--light-color);
    padding: 60px 0;
    text-align: center;
}

.avaliacoes-placeholder {
    margin: 0 auto;
}

.clientes-section {
    padding: 80px 0;
    background-color: #f4f4f4;
    text-align: center;
}

.clientes-slider-wrapper {
    overflow: hidden;
    position: relative;
    padding: 20px 0;
}

.clientes-slider {
    display: flex;
    animation: slide-logos 30s linear infinite;
    width: max-content;
}

.cliente-logo {
    height: 111px;
    width: auto;
    margin: 0 15px;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: filter 0.3s, opacity 0.3s, transform 0.3s;
    object-fit: contain;
    box-shadow: 0 0 14px -6px;
    border-radius: 8px;
    padding: 7px;
}

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

.pricing-note {
    font-size: 1.1rem;
    color: var(--dark-color);
    margin-bottom: 25px;
    padding: 15px;
    background: #f0f8ff;
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
    font-weight: 600;
    line-height: 1.5;
}

.pricing-note strong {
    color: var(--primary-color);
    font-size: 1.2rem;
}

/* Footer */
footer {
    background: var(--dark-color);
    color: #fff;
    text-align: center;
    padding: 30px 0;
}

/* Animações */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slide-logos {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Responsividade */
@media (max-width: 1024px) {
    .hero-container, .highlight-container, .slider-wrapper-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .hero-content {
        text-align: center;
    }

    .feature-grid, .how-it-works-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .highlight-list, .benefits-glass-grid {
        grid-template-columns: 1fr;
    }

    .pricing-plan.featured {
        transform: scale(1);
    }

    .benefit-glass-card {
        min-height: 0;
    }

    #slider-images {
        height: 400px;
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    header{
        padding: 0.5rem 0;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 77px;
        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;
        padding: 20px;
        align-items: center;
    }

    .nav-links li {
        margin: 10px 0;
    }

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

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

    .feature-grid, .how-it-works-grid, .pricing-table {
        grid-template-columns: 1fr;
    }

    section h2, .highlight-content h2, .contact-section h2, .ideal-for-section h2 {
        font-size: 2rem;
    }

    #slider-images {
        height: 300px;
    }

    .slider-btn {
        padding: 10px 15px;
        font-size: 1.2rem;
    }
}

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

    .hero-content p {
        font-size: 0.9rem;
    }

    section {
        padding: 50px 0;
    }

    section h2 {
        font-size: 1.8rem;
    }

    #slider-images {
        height: 250px;
    }
}

/* Centraliza conteúdo e botão da seção de contato */
.contact-section .container {
    text-align: center;
    padding: 80px 20px;
}

.contact-section p {
    max-width: 900px;
    margin: 0 auto 18px;
}

.contact-section .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    padding: 12px 22px;
}

.app-review-webcis-appwgr{
    padding: 0 !important;
}
