body, .formatos-nobeta-hero {
    background: linear-gradient(135deg, #071a33 0%, #0a2a4e 100%) !important;
    background-color: #071a33 !important;
    background-image: none !important;
}

body {
    min-height: 100vh;
}

/* Header com linha colorida dos formatos */
body.formatos-page .header::after,
body .header::after,
html body .header::after,
.header::after {
    background: linear-gradient(to right, 
        #ff9800 0%, 
        #f44336 30%, 
        #4CAF50 60%, 
        #2196F3 100%
    ) !important;
    box-shadow: 
        0 0 10px rgba(255, 152, 0, 0.5),
        0 0 15px rgba(244, 67, 54, 0.5),
        0 0 15px rgba(76, 175, 80, 0.5),
        0 0 15px rgba(33, 150, 243, 0.5) !important;
    height: 3px !important;
    display: block !important;
    content: '' !important;
    position: absolute !important;
    bottom: 0 !important;
    left: 0 !important;
    width: 100% !important;
    z-index: 900 !important;
}

/* Esconder linha colorida quando menu mobile estiver aberto na página de formatos */
body.menu-open .header::after {
    display: none !important;
}

/* Hero section principal */
.formatos-nobeta-hero {
    min-height: calc(100vh - 120px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-top: 140px !important;
    padding-bottom: 120px !important;
    box-shadow: none;
}

/* Sobrescrever regras globais do mobile-overrides para esta seção específica */
@media (max-width: 992px) {
    section.formatos-nobeta-hero {
        padding-top: 110px !important; /* Reduzido para equilibrar o espaçamento */
    }
}

.formatos-nobeta-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 10px;
    letter-spacing: 0.5px;
}

.formatos-nobeta-desc {
    text-align: center;
    color: #b0c4d8;
    font-size: 1.15rem;
    margin-bottom: 44px;
    font-weight: 400;
}

/* Container dos cards de formatos */
.formatos-nobeta-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
    margin-top: 0;
}

/* Card individual de formato */
.fn-card {
    background: #101a28;
    border-radius: 16px;
    box-shadow: 0 4px 24px 0 rgba(0,0,0,0.18);
    padding: 28px 18px 22px 18px;
    width: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: box-shadow 0.3s, transform 0.3s;
    position: relative;
    min-height: 220px;
}

.fn-card:hover {
    box-shadow: 0 8px 32px 0 rgba(0,0,0,0.28);
    transform: translateY(-4px) scale(1.03);
}

.fn-card-icon {
    font-size: 2.1rem;
    margin-bottom: 12px;
    opacity: 1 !important;
    transition: all 0.3s ease;
}

/* Cores específicas para ícones dos formatos */
.fn-card.orange .fn-card-icon {
    color: #ff9800;
}

.fn-card.red .fn-card-icon {
    color: #f44336;
}

.fn-card.blue .fn-card-icon {
    color: #2196F3;
}

.fn-card.green .fn-card-icon {
    color: #4CAF50;
}

/* Efeitos de brilho no hover */
.fn-card:hover .fn-card-icon {
    filter: drop-shadow(0 2px 8px #0e2233aa) brightness(1.2);
}

.fn-card.orange:hover .fn-card-icon {
    text-shadow: 0 0 15px rgba(255, 152, 0, 0.8);
    filter: drop-shadow(0 0 10px rgba(255, 152, 0, 0.6)) brightness(1.3);
}

.fn-card.red:hover .fn-card-icon {
    text-shadow: 0 0 15px rgba(244, 67, 54, 0.8);
    filter: drop-shadow(0 0 10px rgba(244, 67, 54, 0.6)) brightness(1.3);
}

.fn-card.blue:hover .fn-card-icon {
    text-shadow: 0 0 15px rgba(33, 150, 243, 0.8);
    filter: drop-shadow(0 0 10px rgba(33, 150, 243, 0.6)) brightness(1.3);
}

.fn-card.green:hover .fn-card-icon {
    text-shadow: 0 0 15px rgba(76, 175, 80, 0.8);
    filter: drop-shadow(0 0 10px rgba(76, 175, 80, 0.6)) brightness(1.3);
}

/* Tipografia dos cards */
.fn-card h2 {
    font-size: 1.08rem;
    font-weight: 700;
    margin-bottom: 7px;
    color: #fff;
    text-align: center;
    letter-spacing: 0.1px;
}

.fn-card p {
    color: #c7d6e6;
    font-size: 0.98rem;
    text-align: center;
    margin-bottom: 18px;
    font-weight: 400;
}

.fn-card-actions {
    display: flex;
    justify-content: center;
}

/* Botão de especificações */
.btn-spec {
    padding: 7px 18px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.98rem;
    border: none;
    outline: none;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* Estilos específicos dos botões por formato */
.fn-card.orange .btn-spec {
    background: #ff9800;
    color: #fff;
}

.fn-card.orange .btn-spec:hover {
    background: #f57c00;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    transform: translateY(-2px);
}

.fn-card.red .btn-spec {
    background: #f44336;
    color: #fff;
}

.fn-card.red .btn-spec:hover {
    background: #d32f2f;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    transform: translateY(-2px);
}

.fn-card.blue .btn-spec {
    background: #2196F3;
    color: #fff;
}

.fn-card.blue .btn-spec:hover {
    background: #1976D2;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    transform: translateY(-2px);
}

.fn-card.green .btn-spec {
    background: #4CAF50;
    color: #fff;
}

.fn-card.green .btn-spec:hover {
    background: #388E3C;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    transform: translateY(-2px);
}

.btn-preview {
    display: none;
}

/* Responsividade */
@media (max-width: 1100px) {
    .formatos-nobeta-cards {
        gap: 14px;
    }
    .fn-card {
        width: 160px;
        padding: 18px 6px 14px 6px;
        min-height: 160px;
    }
}

@media (max-width: 700px) {
    section.formatos-nobeta-hero {
        padding-top: 120px !important; /* Reduzido para melhor proporção */
        min-height: unset;
    }
    .formatos-nobeta-cards {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }
    .fn-card {
        width: 95%;
        max-width: 350px;
        min-height: 180px !important; /* Aumentado a altura dos cards */
        padding: 35px 20px 30px 20px !important; /* Mais padding para melhor proporção */
    }
    
    .fn-card-icon {
        font-size: 2.8rem !important; /* Ícone maior no mobile */
        margin-bottom: 16px !important;
    }
    
    .fn-card h2 {
        font-size: 1.3rem !important; /* Título maior */
        margin-bottom: 12px !important;
    }
    
    .fn-card p {
        font-size: 1.1rem !important; /* Descrição maior */
        margin-bottom: 25px !important;
        line-height: 1.4 !important;
    }
    
    .btn-spec {
        padding: 10px 22px !important; /* Botão maior */
        font-size: 1.05rem !important;
    }
}

@media (max-width: 480px) {
    section.formatos-nobeta-hero {
        padding-top: 110px !important; /* Reduzido para espaçamento mais equilibrado */
    }
    
    .formatos-nobeta-title {
        font-size: 2rem !important;
        margin-top: 15px !important; /* Margem reduzida */
    }
    
    .formatos-nobeta-desc {
        font-size: 1rem !important;
        padding: 0 15px !important;
    }
}

@media (max-width: 390px) {
    section.formatos-nobeta-hero {
        padding-top: 120px !important; /* Espaço otimizado para telas pequenas */
    }
    
    .formatos-nobeta-title {
        margin-top: 20px !important; /* Margem equilibrada */
    }
}

/* Footer logo - laranja para combinar com 1ª coluna */
.footer-logo::after {
    background: linear-gradient(to right, #ff9800, transparent) !important;
}

/* Regras específicas para ícones do Font Awesome - mantendo base neutra */
.footer .fab,
.footer .fas,
.footer .fa {
    color: #e0e0e0 !important;
}

/* Ícones específicos de redes sociais - mantendo base neutra */
.fa-facebook-f,
.fa-linkedin-in,
.fa-instagram {
    color: #e0e0e0 !important;
}

/* Estilos gerais do footer - removendo conflitos */
.footer a::after,
.footer a::before {
    display: none !important;
}

.footer a:hover::after,
.footer a:hover::before {
    display: none !important;
}

.footer *,
.footer *:hover {
    text-decoration: none !important;
    border: none !important;
}

/* Footer com cores dos cartões na sequência: Laranja, Vermelho, Verde, Azul */
.footer {
    border-left: 3px solid #ff9800 !important;
    border-right: 3px solid #2196F3 !important;
}

.footer::before {
    background: radial-gradient(circle at left, rgba(255, 152, 0, 0.15), transparent 50%),
                radial-gradient(circle at right, rgba(33, 150, 243, 0.15), transparent 50%) !important;
}

/* Footer - colunas com títulos seguindo sequência dos cartões */
/* 1ª coluna - Intercontent (Laranja) */
.footer-column:nth-child(1) h3::after {
    background: linear-gradient(to right, #ff9800, transparent) !important;
    box-shadow: 0 0 15px rgba(255, 152, 0, 0.5) !important;
    width: 40px !important;
    height: 2px !important;
    border-radius: 2px !important;
    display: block !important;
    position: absolute !important;
    left: 0 !important;
    bottom: 0 !important;
    content: '' !important;
    opacity: 1 !important;
}

.footer-column:nth-child(1)::before {
    background: linear-gradient(to bottom, #ff9800, transparent) !important;
}

/* 2ª coluna - Alert (Vermelho) */
.footer-column:nth-child(2) h3::after {
    background: linear-gradient(to right, #f44336, transparent) !important;
    box-shadow: 0 0 15px rgba(244, 67, 54, 0.5) !important;
    width: 40px !important;
    height: 2px !important;
    border-radius: 2px !important;
    display: block !important;
    position: absolute !important;
    left: 0 !important;
    bottom: 0 !important;
    content: '' !important;
    opacity: 1 !important;
}

.footer-column:nth-child(2)::before {
    background: linear-gradient(to bottom, #f44336, transparent) !important;
}

/* 3ª coluna - Footer (Verde) */
.footer-column:nth-child(3) h3::after {
    background: linear-gradient(to right, #4CAF50, transparent) !important;
    box-shadow: 0 0 15px rgba(76, 175, 80, 0.5) !important;
    width: 40px !important;
    height: 2px !important;
    border-radius: 2px !important;
    display: block !important;
    position: absolute !important;
    left: 0 !important;
    bottom: 0 !important;
    content: '' !important;
    opacity: 1 !important;
}

.footer-column:nth-child(3)::before {
    background: linear-gradient(to bottom, #4CAF50, transparent) !important;
}

/* 4ª coluna - PreParagraph (Azul) */
.footer-column:nth-child(4) h3::after {
    background: linear-gradient(to right, #2196F3, transparent) !important;
    box-shadow: 0 0 15px rgba(33, 150, 243, 0.5) !important;
    width: 40px !important;
    height: 2px !important;
    border-radius: 2px !important;
    display: block !important;
    position: absolute !important;
    left: 0 !important;
    bottom: 0 !important;
    content: '' !important;
    opacity: 1 !important;
}

.footer-column:nth-child(4)::before {
    background: linear-gradient(to bottom, #2196F3, transparent) !important;
}

/* Footer links - cores por coluna */
/* 1ª coluna - Intercontent (Laranja) */
.footer-column:nth-child(1) .footer-links a,
.footer-column:nth-child(1) .social-links a,
.footer-column:nth-child(1) .privacy-link {
    color: #e0e0e0 !important;
    text-decoration: none !important;
}

.footer-column:nth-child(1) .footer-links a:hover,
.footer-column:nth-child(1) .social-links a:hover,
.footer-column:nth-child(1) .privacy-link:hover {
    color: #ff9800 !important;
    text-decoration: none !important;
}

.footer-column:nth-child(1) .social-links a:hover i {
    color: #ff9800 !important;
    text-shadow: 0 0 10px rgba(255, 152, 0, 0.6) !important;
    filter: drop-shadow(0 0 5px rgba(255, 152, 0, 0.8)) !important;
}

/* 2ª coluna - Alert (Vermelho) */
.footer-column:nth-child(2) .footer-links a,
.footer-column:nth-child(2) .social-links a {
    color: #e0e0e0 !important;
    text-decoration: none !important;
}

.footer-column:nth-child(2) .footer-links a:hover,
.footer-column:nth-child(2) .social-links a:hover {
    color: #f44336 !important;
    text-decoration: none !important;
}

.footer-column:nth-child(2) .social-links a:hover i {
    color: #f44336 !important;
    text-shadow: 0 0 10px rgba(244, 67, 54, 0.6) !important;
    filter: drop-shadow(0 0 5px rgba(244, 67, 54, 0.8)) !important;
}

/* 3ª coluna - Footer (Verde) */
.footer-column:nth-child(3) .footer-links a,
.footer-column:nth-child(3) .social-links a {
    color: #e0e0e0 !important;
    text-decoration: none !important;
}

.footer-column:nth-child(3) .footer-links a:hover,
.footer-column:nth-child(3) .social-links a:hover {
    color: #4CAF50 !important;
    text-decoration: none !important;
}

.footer-column:nth-child(3) .social-links a:hover i {
    color: #4CAF50 !important;
    text-shadow: 0 0 10px rgba(76, 175, 80, 0.6) !important;
    filter: drop-shadow(0 0 5px rgba(76, 175, 80, 0.8)) !important;
}

/* 4ª coluna - PreParagraph (Azul) */
.footer-column:nth-child(4) .footer-links a,
.footer-column:nth-child(4) .social-links a {
    color: #e0e0e0 !important;
    text-decoration: none !important;
}

.footer-column:nth-child(4) .footer-links a:hover,
.footer-column:nth-child(4) .social-links a:hover {
    color: #2196F3 !important;
    text-decoration: none !important;
}

.footer-column:nth-child(4) .social-links a:hover i {
    color: #2196F3 !important;
    text-shadow: 0 0 10px rgba(33, 150, 243, 0.6) !important;
    filter: drop-shadow(0 0 5px rgba(33, 150, 243, 0.8)) !important;
}

/* Footer newsletter button - azul para combinar com 4ª coluna */
.footer-newsletter .btn {
    background: #2196F3 !important;
    border-color: #2196F3 !important;
    box-shadow: 0 0 10px rgba(33, 150, 243, 0.2) !important;
}

.footer-newsletter .btn::before {
    background: #1976D2 !important;
}

.footer-newsletter .btn:hover {
    background: #1976D2 !important;
    box-shadow: 0 4px 12px rgba(33, 150, 243, 0.4) !important;
}

.footer-newsletter .btn:hover::before {
    background: #2196F3 !important;
}

.footer-newsletter::before {
    background: radial-gradient(circle at center, rgba(33, 150, 243, 0.1), transparent 70%) !important;
} 