/* ========================================
   Estilos da Página Principal
   ======================================== */

/* YouTube Embed - Classes profissionais */
.youtube-embed-wrapper {
    max-width: 600px;
    margin: 0 auto;
}

.youtube-embed-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* Proporção 16:9 */
    height: 0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    background: #000;
    transition: box-shadow 0.3s ease;
}

.youtube-embed-container:hover {
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

.youtube-embed-iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 8px;
}

/* Hero Video Container - Compatibilidade */
.hero-video-container {
    position: relative;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
}

.hero-video-container .youtube-embed-container {
    max-width: 100%;
}

/* Hero Section - Melhorias profissionais */
.hero-title {
    font-size: clamp(2rem, 5vw, 2.8rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    line-height: 1.6;
    margin-bottom: 2rem;
    color: #666;
}

.hero-single-image {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: none;
    transition: transform 0.3s ease;
}

.hero-single-image:hover {
    transform: translateY(-4px);
}

/* Section Titles - Padrão profissional */
.section-title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.section-description {
    font-size: clamp(1rem, 2vw, 1.1rem);
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}

.section-divider {
    width: 60px;
    height: 3px;
    margin: 1rem auto;
    border-radius: 2px;
}

/* Classes originais dos planos */
.pricing-plane-area {
    padding: 80px 0;
    background: #f8fafc;
}

.single-price-plan {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 2px 16px rgba(40,81,106,0.08);
    padding: 2.5rem 2rem;
    position: relative;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
    border: 1px solid #e5e7eb;
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 580px;
}

.single-price-plan:hover {
    box-shadow: 0 4px 24px rgba(40,81,106,0.12);
    transform: translateY(-4px);
}

.single-price-plan.active {
    border: 2px solid #F3921B;
    box-shadow: 0 4px 24px rgba(243,146,27,0.15);
}

.package-plan {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 0;
}

.package-plan h5 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1rem;
}

.ca-price {
    margin-bottom: 0.75rem;
    padding: 0.5rem 0;
}

.ca-price span {
    font-size: 0.95rem;
    color: #666;
    font-weight: 500;
}

.ca-price del {
    font-size: 1rem;
    opacity: 0.7;
}

.promo-price {
    display: flex;
    justify-content: center;
    align-items: baseline;
    margin-bottom: 1rem;
}

.promo-price span {
    font-size: 1.2rem;
    font-weight: 600;
}

.promo-price h4 {
    font-size: 2.5rem;
    font-weight: 800;
    margin: 0 0 0 0.5rem;
}

.package-description {
    margin-bottom: 2rem;
    flex: 1;
    padding: 0;
}

.package-description ul {
    list-style: none;
    padding: 0;
    text-align: left;
}

.package-description li {
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    font-size: 1rem;
    color: #444;
    line-height: 1.5;
}

.package-description li i {
    margin-right: 0.75rem;
    font-size: 1rem;
    flex-shrink: 0;
}

.plan-button {
    margin-top: auto;
    margin-bottom: 1rem;
    width: 100%;
}

.plan-button a {
    display: block;
    width: 100%;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    text-align: center;
    transition: opacity 0.3s ease, transform 0.2s ease;
}

.plan-button a:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

.line-shape {
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #F3921B, #004085);
    margin: 0 auto 20px;
    border-radius: 2px;
}

.pricing-cards-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
}

.pricing-card {
    background: #fff;
    border-radius: 22px;
    box-shadow: 0 4px 32px rgba(40,81,106,0.08);
    padding: 2.5rem 2rem 2rem 2rem;
    max-width: 350px;
    min-width: 270px;
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: box-shadow 0.2s, transform 0.2s;
}

.pricing-card:hover {
    box-shadow: 0 8px 40px rgba(40,81,106,0.16);
    transform: translateY(-6px) scale(1.03);
}

.pricing-card .plan-title {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--azul-srpedidos);
    margin-bottom: 0.5rem;
}

.pricing-card .plan-price {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--laranja-srpedidos);
    margin-bottom: 0.2rem;
}

.pricing-card .plan-sub {
    font-size: 1rem;
    color: #888;
    margin-bottom: 1.2rem;
}

.pricing-card .plan-benefits {
    width: 100%;
    margin-bottom: 1.5rem;
}

.pricing-card .plan-benefits li {
    display: flex;
    align-items: center;
    font-size: 1.05rem;
    color: #444;
    margin-bottom: 0.7rem;
}

.pricing-card .plan-benefits i {
    color: var(--laranja-srpedidos);
    margin-right: 0.7rem;
    font-size: 1.1rem;
}

.pricing-card .plan-action {
    width: 100%;
}

.pricing-card .plan-action .btn {
    width: 100%;
    font-size: 1.1rem;
    padding: 0.9rem 0;
    border-radius: 30px;
    font-weight: 700;
    background: var(--laranja-srpedidos);
    color: #fff;
    border: none;
    box-shadow: 0 2px 8px rgba(243,146,27,0.10);
    transition: background 0.2s, color 0.2s, transform 0.2s;
}

.pricing-card .plan-action .btn:hover {
    background: var(--azul-srpedidos);
    color: #fff;
    transform: scale(1.04);
}

.badge-mais-vendido {
    position: absolute;
    top: -18px;
    right: 18px;
    background: var(--laranja-srpedidos);
    color: #fff;
    padding: 7px 20px 7px 16px;
    border-radius: 20px;
    font-size: 1rem;
    font-weight: 700;
    box-shadow: 0 2px 8px rgba(243,146,27,0.12);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    z-index: 10;
}

/* Grid de planos melhorado */
.planos-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: stretch;
    gap: 2rem;
}

.planos-grid > div {
    flex: 1 1 auto;
    min-width: 280px;
    max-width: 420px;
}

/* Responsividade original dos planos */
@media (max-width: 991px) {
    .pricing-cards-row {
        flex-direction: column;
        align-items: center;
        gap: 2rem;
    }
    
    .planos-grid {
        flex-direction: column;
        align-items: center;
    }
    
    .planos-grid > div {
        max-width: 100%;
        width: 100%;
    }
    
    .single-price-plan {
        min-height: auto;
    }
}

@media (max-width: 768px) {
    .implementacao-alert-modern {
        padding: 1.5rem;
        margin: 1.5rem auto 2rem auto;
        border-radius: 12px;
    }
    
    .implementacao-header {
        font-size: 0.95rem;
        flex-wrap: wrap;
    }
    
    .recursos-lista ul {
        grid-template-columns: 1fr;
    }
    
    .single-price-plan {
        padding: 2rem 1.5rem;
        min-height: auto;
    }
}

/* Última seção - alinhamento perfeito */
#ultima-secao {
    padding: 4rem 0;
}

/* Container usa largura padrão do Bootstrap */

#ultima-secao .flex {
    display: flex !important;
    align-items: center !important;
}

#ultima-secao .justify-between {
    justify-content: space-between !important;
}

#ultima-secao h2 {
    color: #333 !important;
    font-weight: 700 !important;
    margin-bottom: 1rem !important;
}

#ultima-secao p {
    color: #666 !important;
    font-size: 1.1rem !important;
    line-height: 1.6 !important;
}

/* Botão da última seção */
#ultima-secao a {
    background: #007bff !important;
    color: white !important;
    padding: 12px 24px !important;
    border-radius: 8px !important;
    text-decoration: none !important;
    font-weight: 600 !important;
    font-size: 1rem !important;
    transition: all 0.3s ease !important;
    white-space: nowrap !important;
}

#ultima-secao a:hover {
    background: #0056b3 !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 12px rgba(0,123,255,0.3) !important;
}

/* Responsividade */
@media (max-width: 768px) {
    #ultima-secao .flex {
        flex-direction: column !important;
        text-align: center !important;
    }
    
    #ultima-secao .w-full:first-child {
        margin-bottom: 2rem !important;
    }
    
    #ultima-secao a {
        display: inline-block !important;
        margin: 0 auto !important;
    }
}

.implementacao-alert-modern {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 1.5rem;
    margin: 2rem auto;
    max-width: 860px;
    box-shadow: none;
}

/* estilos simplificados - sem destaques animados */

.implementacao-header {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 1.25rem;
    font-size: 1rem;
    font-weight: 600;
    color: #1f2937;
}

.implementacao-header i {
    font-size: 1.1rem;
    color: #F3921B;
}

.implementacao-valor {
    text-align: center;
    margin-bottom: 1.25rem;
    padding: 0.75rem 0;
}

.recursos-section {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #e2e8f0;
}

.recursos-header {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 1rem;
    font-size: 0.95rem;
    font-weight: 600;
    color: #1f2937;
}

.recursos-header i {
    font-size: 1rem;
    color: #16a34a;
}

.recursos-lista {
    background: #f8fafc;
    border-radius: 10px;
    padding: 1.25rem;
}

.recursos-lista ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 0.75rem 1.25rem;
}

.recursos-lista li {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    padding: 0.25rem 0;
    font-size: 0.9rem;
    color: #475569;
}

.recursos-lista li:hover {
    background: transparent;
    transform: none;
}

.recursos-lista li i {
    margin-top: 0.2rem;
    flex-shrink: 0;
    color: #16a34a;
}

.feature-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 2px 16px rgba(40,81,106,0.07);
    padding: 2rem 1.2rem 1.5rem 1.2rem;
    text-align: center;
    transition: box-shadow 0.2s, transform 0.2s;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

.feature-card:hover {
    box-shadow: 0 8px 32px rgba(40,81,106,0.13);
    transform: translateY(-4px) scale(1.03);
}

.feature-card i {
    font-size: 2.2rem;
    color: #00c853 !important;
    margin-bottom: 1rem;
}

.feature-card h5 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--azul-srpedidos);
    margin-bottom: 0.5rem;
}

.feature-card p {
    color: #444;
    font-size: 1rem;
    font-weight: 600;
}

.why-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(40,81,106,0.08);
    padding: 2rem 1.2rem 1.5rem 1.2rem;
    text-align: center;
    transition: box-shadow 0.2s, transform 0.2s;
    min-height: 220px;
}

.why-card:hover {
    box-shadow: 0 8px 32px rgba(40,81,106,0.16);
    transform: translateY(-6px) scale(1.03);
}

.why-card i {
    font-size: 2.2rem;
    color: #F3921B;
    margin-bottom: 1rem;
}

.why-card h5 {
    font-weight: 700;
    color: #28516A;
    margin-bottom: 0.5rem;
}

.why-card p {
    color: #444;
    font-size: 1.05rem;
}

.btn-whatsapp {
    background: #fff !important;
    color: #25D366 !important;
    border-radius: 30px !important;
    border: none;
    font-weight: 700;
    padding: 10px 32px;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.1rem;
    box-shadow: 0 2px 8px rgba(40,81,106,0.08);
    transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}

.btn-whatsapp:hover {
    background: #e8f5e9 !important;
    color: #128C7E !important;
    box-shadow: 0 4px 16px rgba(40,81,106,0.12);
}

.btn-demo {
    background: var(--acao-cor-botao, #F3921B) !important;
    color: var(--acao-cor-texto, #ffffff) !important;
    border-radius: 30px;
    font-weight: 700;
    font-size: 1.15rem;
    padding: 12px 36px;
    border: none;
    box-shadow: 0 2px 8px rgba(40,81,106,0.08);
    transition: background 0.2s, color 0.2s, box-shadow 0.2s;
    display: inline-block;
}

.btn-demo:hover {
    background: var(--acao-cor-hover, #E67E22) !important;
    color: var(--acao-cor-texto, #ffffff) !important;
    box-shadow: 0 4px 16px rgba(40,81,106,0.12);
}

/* FAQ Styles */
.faq-area .card {
    background-color: #f8f9fa;
    border: 1px solid #ddd;
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
}

.faq-area .card-header button i {
    margin-right: 10px;
}

.faq-area .section-heading h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.faq-area p {
    font-size: 1.1rem;
    color: #666;
}

/* Footer Styles */
footer.footer-social-icon {
    position: relative;
    width: 100%;
    padding: 60px 0 30px 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    padding: 0;
}

.footer-section {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.footer-section h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    width: 100%;
}

.footer-logo img {
    max-width: 180px;
    height: auto;
    filter: brightness(0) invert(1);
}

.contato-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    padding: 8px 0;
}

.contato-item i {
    font-size: 18px;
    margin-right: 15px;
    width: 20px;
    text-align: center;
    opacity: 0.8;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1) !important;
    border-radius: 50%;
    text-decoration: none;
    transition: transform 0.3s ease, opacity 0.3s ease, background 0.3s ease;
}

.social-icon:hover {
    transform: scale(1.1);
    background: rgba(255, 255, 255, 0.2) !important;
}

.social-icon i {
    font-size: 20px;
}

.copyright-text {
    margin-top: 40px;
    padding-top: 30px;
    font-size: 12px;
    text-align: center;
}

/* Logo do desenvolvedor */
.dev-logo-hover {
    max-width: 80px;
    max-height: 40px;
    object-fit: contain;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.dev-logo-hover:hover {
    opacity: 1;
}

.dev-nome, .dev-slogan, .dev-descricao {
    margin-bottom: 8px;
}

.dev-info {
    margin-top: 20px;
    transition: opacity 0.3s ease;
}

.dev-info:hover {
    opacity: 0.9;
}

.dev-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 15px;
}

/* Responsividade */
@media (max-width: 991px) {
    .pricing-cards-row {
        flex-direction: column;
        align-items: center;
        gap: 2rem;
    }
}

@media (max-width: 1200px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0 20px;
    }
    
    .footer-section {
        align-items: center;
        text-align: center;
    }
    
    .footer-section h3 {
        font-size: 16px;
        margin-bottom: 15px;
    }
    
    .contato-item {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .contato-item a {
        word-break: break-word;
        text-align: center;
    }
    
    .footer-logo img {
        max-width: 150px;
    }
    
    .footer-social-icons {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        gap: 10px;
    }
    
    .faq-area .section-heading h2 {
        font-size: 2rem;
    }
    
    /* Informações do desenvolvedor responsivo */
    .dev-header {
        flex-direction: column;
        gap: 10px;
    }
    
    .dev-nome, .dev-slogan, .dev-descricao {
        text-align: center;
        word-break: break-word;
    }
    
    .dev-info {
        padding: 0 10px;
    }
    
    .copyright-text {
        padding: 20px 15px 15px 15px;
        font-size: 11px;
    }
    
    .copyright-text p {
        word-break: break-word;
        line-height: 1.4;
    }
}

@media (max-width: 600px) {
    .implementacao-alert-modern {
        max-width: 98vw;
        font-size: 0.97rem;
        padding: 0.6rem 0.5rem;
    }
    
    footer.footer-social-icon {
        padding: 40px 0 20px 0;
    }
    
    .footer-content {
        gap: 25px;
        padding: 0 15px;
    }
    
    .footer-section h3 {
        font-size: 14px;
    }
    
    .contato-item {
        font-size: 14px;
        margin-bottom: 12px;
    }
    
    .contato-item i {
        font-size: 16px;
        margin-right: 10px;
    }
}

@media (max-width: 480px) {
    footer.footer-social-icon {
        padding: 30px 0 15px 0;
    }
    
    .footer-content {
        gap: 20px;
        padding: 0 10px;
    }
    
    .footer-section h3 {
        font-size: 13px;
        margin-bottom: 12px;
    }
    
    .footer-logo img {
        max-width: 120px;
    }
    
    .social-icon {
        width: 40px;
        height: 40px;
    }
    
    .social-icon i {
        font-size: 18px;
    }
    
    .contato-item {
        font-size: 13px;
        padding: 6px 0;
    }
    
    .contato-item i {
        font-size: 14px;
        margin-right: 8px;
    }
    
    .copyright-text {
        padding: 15px 10px 10px 10px;
        font-size: 10px;
    }
    
    .dev-logo-hover {
        max-width: 60px;
        max-height: 30px;
    }
    
    .dev-nome span {
        font-size: 0.85em !important;
    }
    
    .dev-slogan span {
        font-size: 0.75em !important;
    }
    
    .dev-descricao span {
        font-size: 0.7em !important;
    }
    
    .dev-header span {
        font-size: 0.8em !important;
    }
    
    /* Horário de atendimento responsivo */
    .horario-item-footer {
        font-size: 13px;
    }
}

/* Estilos para vídeos das FAQs */
.faq-video-container {
    position: relative;
    width: 100%;
    margin-top: 1rem;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    background: #000;
    padding-bottom: 56.25%; /* Proporção 16:9 */
    height: 0;
}

.faq-video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 8px;
    transition: transform 0.2s ease;
}

.faq-video-container:hover iframe {
    transform: scale(1.02);
}

/* Responsividade para vídeos das FAQs */
@media (max-width: 768px) {
    .faq-video-container {
        padding-bottom: 56.25%; /* Mantém proporção 16:9 */
    }
}

@media (max-width: 480px) {
    .faq-video-container {
        padding-bottom: 56.25%; /* Mantém proporção 16:9 */
        border-radius: 6px;
    }
    
    .faq-video-container iframe {
        border-radius: 6px;
    }
}
.afiliado-toast {
    position: fixed;
    left: 50%;
    bottom: 32px;
    transform: translateX(-50%);
    background: rgba(17, 24, 39, 0.95);
    color: #fff;
    padding: 1rem 1.5rem;
    border-radius: 14px;
    box-shadow: 0 15px 30px rgba(15, 23, 42, 0.35);
    font-size: 0.95rem;
    line-height: 1.5;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease, transform 0.25s ease;
    z-index: 9999;
}

.afiliado-toast.show {
    opacity: 1;
    transform: translate(-50%, -10px);
}

.afiliado-toast strong {
    color: #fbbf24;
}

@media (max-width: 640px) {
    .afiliado-toast {
        width: calc(100% - 2rem);
        bottom: 24px;
        font-size: 0.9rem;
        padding: 0.9rem 1.2rem;
    }
}

