/* CSS Específico para index.html */
/* Refatoração para limpeza de código - Mantendo design original */

/* --- CORREÇÃO DE ALINHAMENTO (Cards do mesmo tamanho) --- */
.pricing-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    align-items: stretch;
    /* Estica todos os cards para a mesma altura */
}

.price-plan {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    /* Ocupa 100% da altura da grid */
}

.plan-body {
    flex-grow: 1;
    /* Empurra o botão para baixo para alinhar tudo */
}

/* --- ESTILOS EXTRAÍDOS (Inline Styles) --- */

/* Header & Top Bar */
.top-bar-custom {
    background: #111;
    border: none;
}

.logo-custom {
    font-size: 1.8rem;
    font-weight: 800;
    color: #D6F32F;
    text-decoration: none;
}

.area-cliente-link {
    color: #666;
}

.area-cliente-link:hover {
    color: #D6F32F;
}

.btn-primary-custom {
    background: #D6F32F !important;
    border-color: #D6F32F !important;
    box-shadow: 0 4px 12px rgba(214, 243, 47, 0.3) !important;
    color: #1a1a1a !important;
}

.btn-primary-custom:hover {
    background: #B0CC24 !important;
    border-color: #B0CC24 !important;
    transform: translateY(-3px);
}

.btn-outline-custom {
    border-color: #D6F32F !important;
    color: #1a1a1a !important;
    /* Changed to dark for contrast on white bg, or keep neon if bg is dark? Assuming buttons on white */
}

.btn-outline-custom:hover {
    background: rgba(214, 243, 47, 0.1) !important;
}

/* Hero Section */
.pill-badge-custom {
    background: rgba(214, 243, 47, 0.1);
    border: 1px solid rgba(214, 243, 47, 0.3);
}

.pill-badge-dot-custom {
    background: #00C851;
}

.hero-title-custom {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-highlight-text {
    color: #5a7a1f;
    /* Um tom mais escuro para leitura no branco, ou gradient */
    background: linear-gradient(90deg, #111 0%, #666 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
}

.hero-description-custom {
    font-size: 1.15rem;
    color: #555;
    max-width: 580px;
    margin: 0 auto;
    line-height: 1.6;
}

.btn-plans-custom {
    background: #D6F32F;
    border: none;
    padding: 16px 40px;
    font-size: 1.05rem;
    box-shadow: 0 6px 20px rgba(214, 243, 47, 0.35);
    font-weight: 600;
    color: #1a1a1a;
}

.btn-specialist-custom {
    border: 2px solid #D6F32F;
    color: #5a7a1f;
    padding: 14px 40px;
    font-size: 1.05rem;
    font-weight: 600;
}

.trust-bar-custom {
    margin-top: 40px;
}

.trust-label {
    color: #5a7a1f;
    /* Darker green for text readability */
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
}

.tech-icons-custom {
    gap: 30px;
}

.tech-icon-color-gray {
    color: #666;
}

.tech-icon-color-blue {
    color: #D6F32F;
}

/* Serviços Section */
.services-section-custom {
    background: linear-gradient(180deg, #ffffff 0%, #f7f9fc 100%);
    border: none;
    padding: 70px 0;
}

.section-title-h2-custom {
    font-size: 2rem;
    color: #1a1a2e;
    margin-bottom: 12px;
}

.section-title-p-custom {
    font-size: 1.05rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.services-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 50px;
}

.service-card-white {
    background: white;
    padding: 35px 28px;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(214, 243, 47, 0.08);
    /* Green shadow */
    text-align: center;
}

.icon-circle-blue {
    width: 60px;
    height: 60px;
    background: #D6F32F;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.icon-white {
    font-size: 1.7rem;
    color: #1a1a1a;
    /* Dark icon on bright green */
}

.card-title-dark {
    font-size: 1.2rem;
    margin-bottom: 12px;
    color: #1a1a2e;
    font-weight: 700;
}

.card-desc-gray {
    color: #666;
    line-height: 1.6;
    font-size: 0.9rem;
}

/* Features Grid */
.features-grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.feature-card-blue {
    background: #D6F32F;
    padding: 35px 25px;
    border-radius: 12px;
    color: #1a1a1a;
    /* Dark text on bright green */
}

.icon-circle-glass {
    width: 55px;
    height: 55px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}

.icon-md {
    font-size: 1.6rem;
}

.card-title-md {
    font-size: 1.25rem;
    margin-bottom: 12px;
    font-weight: 700;
}

.card-desc-light {
    opacity: 0.95;
    line-height: 1.6;
    font-size: 0.9rem;
}

.feature-card-border {
    background: white;
    padding: 35px 25px;
    border-radius: 12px;
    border: 2px solid #D6F32F;
}

.icon-circle-blue-light {
    width: 55px;
    height: 55px;
    background: rgba(214, 243, 47, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}

.icon-blue-md {
    font-size: 1.6rem;
    color: #D6F32F;
}

/* Sócio Digital Section */
.socio-digital-section {
    background: linear-gradient(135deg, #f7f9fc 0%, #ffffff 100%);
    padding: 70px 0;
}

.socio-panel-custom {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    background: white;
    padding: 50px;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(214, 243, 47, 0.08);
    /* Green shadow */
}

.badge-partnership {
    display: inline-block;
    background: rgba(214, 243, 47, 0.1);
    color: #5a7a1f;
    /* Darker green text */
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.socio-title {
    font-size: 1.9rem;
    color: #1a1a2e;
    margin-bottom: 20px;
    line-height: 1.3;
}

.socio-quote {
    border-left: 3px solid #D6F32F;
    padding-left: 20px;
    margin-bottom: 25px;
    background: rgba(214, 243, 47, 0.03);
    /* Green tint */
    padding: 18px 20px;
    border-radius: 0 8px 8px 0;
}

.socio-quote p {
    font-style: italic;
    color: #555;
    line-height: 1.7;
    margin: 0;
}

.socio-text-desc {
    color: #666;
    line-height: 1.7;
    margin-bottom: 25px;
    font-size: 0.95rem;
}

.socio-list {
    margin-bottom: 30px;
    list-style: none;
    padding: 0;
}

.socio-list-item {
    margin-bottom: 12px;
    display: flex;
    align-items: start;
    gap: 10px;
}

.icon-check-blue {
    color: #D6F32F;
    font-size: 1.1rem;
    margin-top: 2px;
    text-shadow: 0 0 1px rgba(0, 0, 0, 0.5);
}

.item-text {
    color: #555;
    font-size: 0.95rem;
}

.item-text strong {
    color: #1a1a2e;
}

.btn-apply-selection {
    display: inline-block;
    background: #D6F32F;
    color: #1a1a1a;
    padding: 14px 35px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    box-shadow: 0 4px 16px rgba(214, 243, 47, 0.3);
    transition: all 0.3s;
}

.socio-visual-custom {
    display: flex;
    justify-content: center;
    align-items: center;
}

.circle-visual-blue {
    width: 280px;
    height: 280px;
    border-radius: 50%;
    border: 3px solid #D6F32F;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(214, 243, 47, 0.05) 0%, rgba(214, 243, 47, 0.02) 100%);
    position: relative;
}

.icon-handshake-lg {
    font-size: 4rem;
    color: #D6F32F;
    margin-bottom: 15px;
}

.circle-text-label {
    text-align: center;
    font-size: 1.4rem;
    font-weight: 700;
    color: #1a1a2e;
    line-height: 1.3;
}

/* Preços Section */
.prices-section-custom {
    background: linear-gradient(180deg, #ffffff 0%, #f7f9fc 100%);
    padding: 70px 0;
}

.max-w-650 {
    max-width: 650px;
}

.price-note-blue {
    color: #5a7a1f;
    font-weight: 600;
}

.domain-info-box {
    text-align: center;
    margin-bottom: 30px;
    background: rgba(214, 243, 47, 0.05);
    /* Green tint */
    padding: 18px;
    border-radius: 10px;
    border: 1px solid rgba(214, 243, 47, 0.2);
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
}

.text-blue {
    color: #5a7a1f;
    /* Darker green text */
}

.payment-tags-container {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 45px;
}

.tag-payment-flex {
    background: #D6F32F;
    color: #1a1a1a;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    box-shadow: 0 4px 12px rgba(214, 243, 47, 0.25);
}

.tag-support-flex {
    background: rgba(214, 243, 47, 0.1);
    color: #5a7a1f;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    border: 1px solid rgba(214, 243, 47, 0.3);
}

.hr-divider {
    border: 0;
    border-top: 1px solid #eee;
    margin: 10px 0;
}

.check-blue {
    color: #D6F32F !important;
    /* Neon checkmarks */
}

.text-blue {
    color: #5a7a1f !important;
    /* Darker text */
}

.text-strong-blue {
    color: #5a7a1f !important;
    /* Darker green for strong text */
    font-weight: bold;
}

/* --- OVERRIDES AZUIS PARA PREÇOS --- */
.popular-custom {
    border: 2px solid #D6F32F !important;
    transform: scale(1.02);
    z-index: 5;
}

.popular-custom .pop-tag {
    background: #D6F32F !important;
    color: #1a1a1a !important;
}

.highlight-blue {
    color: #5a7a1f !important;
}

.popular-custom:hover {
    transform: scale(1.02) translateY(-8px);
}

/* SEÇÃO COMPRA (BUYOUT) */
.buyout-section {
    margin-top: 60px;
    background: #f8f9fa;
    border: 2px dashed #999;
    border-radius: 12px;
    padding: 40px;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.buyout-content h3 {
    font-size: 1.5rem;
    color: #333;
    font-weight: 800;
    margin-bottom: 15px;
}

.buyout-content p {
    color: #555;
    max-width: 650px;
    margin: 0 auto 25px;
    line-height: 1.6;
    font-size: 1rem;
}

.btn-buyout {
    background: #333;
    color: white;
    padding: 14px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
}

.btn-buyout:hover {
    background: #000;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.card-complete-package {
    border: 1px solid #333;
    background: #fafafa;
}

.btn-outline-dark {
    border-color: #333;
    color: #333;
}

/* Footer Section */
.footer-custom {
    background: #2a2d3a;
    color: white;
}

.brand-title-blue {
    font-size: 1.8rem;
    font-weight: 800;
    color: #5B7FFF;
    margin-bottom: 15px;
}

.text-gray-light {
    color: #c8c8c8;
}

.footer-heading-white {
    color: #ffffff;
}

.social-btn-custom {
    background: rgba(91, 127, 255, 0.2);
    color: #5B7FFF;
}

.footer-bottom-custom {
    border-top: 1px solid #3a3d4a;
    padding-top: 25px;
    margin-top: 40px;
}

.text-gray-dim {
    color: #b0b0b0;
}

.security-badge-custom {
    color: #5B7FFF;
}

/* NOVO ESTILO ADICIONADO */
.tag-growth-partner {
    background: #D6F32F;
    color: #1a1a1a;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    box-shadow: 0 4px 12px rgba(214, 243, 47, 0.35);
    display: flex;
    align-items: center;
    gap: 8px;
}

.tag-growth-partner i {
    color: #1a1a1a;
    /* Dark color for the star to match text */
}
/* --- REFATORAO DE ESTILOS INLINE --- */
.list-clean-green { list-style: none; padding: 0; margin: 0; font-size: 0.95rem; color: #155724; }
.list-clean-green li { margin-bottom: 5px; }
.box-warning-custom { background: rgba(255, 193, 7, 0.1); padding: 15px; border-radius: 8px; border-left: 4px solid #ffc107; }
.text-warning-custom { color: #856404; font-weight: 700; margin-bottom: 5px; }
.list-clean-warning { list-style: none; padding: 0; margin: 0; font-size: 0.95rem; color: #856404; }
.list-clean-warning li { margin-bottom: 5px; }
.socio-subtitle-custom { color: var(--primary); margin-bottom: 10px; font-size: 1.1rem; }
.socio-desc-no-margin { margin-bottom: 0; }
.socio-benefits-grid-custom { display: grid; grid-template-columns: 1fr; gap: 15px; margin-bottom: 30px; }
.box-success-custom { background: rgba(40, 167, 69, 0.1); padding: 15px; border-radius: 8px; border-left: 4px solid #28a745; }
.text-success-custom { color: #155724; font-weight: 700; margin-bottom: 5px; }
.pix-discount-text { color: #28a745; font-weight: bold; }
.pix-discount-underline { text-decoration: underline; }
.icon-red-cross { color: #ff6b6b; }
.footer-brand-title { color: var(--primary); font-size: 1.8rem; font-weight: 800; margin-bottom: 20px; }
.footer-brand-quote { font-size: 0.9rem; margin-top: 15px; opacity: 0.8; }

