/* 
 * ESTILOS CENTRALIZADOS PARA AS PÁGINAS DE PRODUTO
 * Arquivo criado para manter o padrão WAF (Template Mestre) 
 * nas páginas: CDN, DDoS Protection, Rate Limit, Edge Insights, Load Balancer.
 */

/* Importação da fonte Creato Display */
@import url('https://fonts.cdnfonts.com/css/creato-display?styles=96722,96723,96720,96721,96714,96715');

.font-creato-display,
.font-creato-display *:not(i) {
    font-family: 'Creato Display', sans-serif !important;
}

/* Base e Hero Intro */
.waf-intro-flex {
    display: flex;
    align-items: center;
    gap: 50px;
    text-align: left;
}
.waf-intro-image {
    display: none; /* Escondido por padrão (mobile/tablet) */
}
.waf-intro-content {
    flex: 1;
}

@media (min-width: 1025px) {
    .waf-intro-image {
        display: block;
        flex: 0 0 450px;
    }
    .image-card {
        background: #ffffff;
        padding: 15px;
        border-radius: 20px;
        box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
        border: 1px solid rgba(0, 0, 0, 0.05);
        transition: transform 0.3s ease;
    }
    .image-card:hover {
        transform: translateY(-10px);
    }
    .waf-intro-image img,
    .waf-intro-image video {
        width: 100%;
        height: auto;
        border-radius: 12px;
        display: block;
    }
}

/* Centralização de títulos específicos */
.waf-importance h2, 
.waf-comparison h2, 
.waf-steps h2, 
.featured-cases-section h2,
.waf-faq-section h2 {
    text-align: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
    display: block !important;
}

/* Seção de Comparação (WAF/CDN) - Modo Escuro */
.waf-comparison {
    background-color: #111217 !important;
    color: #ffffff !important;
    padding: 100px 20px !important;
}

.waf-comparison h2 {
    color: #ffffff !important;
}

.waf-comparison .section-subtitle {
    color: #a0aec0 !important;
}

.waf-comparison .comparison-card {
    background-color: #1a1c23 !important;
    border: 1px solid #2d3748 !important;
    color: #ffffff !important;
}

.waf-comparison .comparison-card h3 {
    color: #ffffff !important;
}

.waf-comparison .comparison-card ul li {
    color: #e2e8f0 !important;
}

.waf-comparison .comparison-card.safe {
    border-left: 4px solid #0ed1b2 !important;
}

.waf-comparison .comparison-card.danger {
    border-left: 4px solid #ef4444 !important;
}

/* Ajuste de ícones na lista de comparação */
.comparison-card ul li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.comparison-card ul li i {
    font-size: 1.1rem;
    flex-shrink: 0;
}

.comparison-card.danger ul li i {
    color: #ef4444;
}

.comparison-card.safe ul li i {
    color: #0ed1b2;
}

/* Seção de CTA e Steps */
.contact-cta-section {
    padding-top: 100px !important;
    margin-top: 50px !important;
}

.waf-steps {
    padding: 100px 20px !important;
    background-color: #f8f9fa !important;
}

/* Componente de Features List em Colunas (CDN, Rate Limit, Edge Insights, Load Balancer) */
.cdn-features-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
}

/* Ajuste para 1 coluna se necessário */
.cdn-features-list.single-col {
    grid-template-columns: repeat(1, 1fr);
    max-width: 800px;
    margin: 40px auto 0;
}

.cdn-features-list ul {
    list-style: none;
    padding: 0;
}

.cdn-features-list ul li {
    margin-bottom: 10px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.cdn-features-list ul li i {
    color: #0ed1b2;
    margin-top: 4px;
}

@media (max-width: 992px) {
    .cdn-features-list,
    .cdn-features-list.single-col {
        grid-template-columns: 1fr;
    }
}

/* Ajustes Específicos para a página DDoS Protection e similares */
.btn-agenda {
    box-shadow: 0px 4px 4px 0px #00000040;
}
.container-beneficios p {
    margin-top: 0 !important;
}
.recursos-ddos-item {
    box-shadow: 0px 4px 4px 0px #00000040;
}
.recursos-ddos-item p {
    margin: 0 !important;
}
.recursos-ddos-item--title {
    margin-top: auto;
}
.hero-description span,
.hero-description strong {
    color: inherit !important;
}

/* Grid para Benefícios do DDoS (Lista com ícone de check/seta SVG) */
.ddos-benefits-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    max-width: 800px;
    margin: 40px auto 0;
}

.ddos-benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    border-left: 4px solid #0ed1b2;
}

.ddos-benefit-item svg {
    width: 30px;
    height: 30px;
    fill: #0ed1b2;
    flex-shrink: 0;
    margin-top: 3px;
}

@media (min-width: 768px) {
    .ddos-benefits-list {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Modificadores de Seção Dark Adicionais */
.bg-dark-section {
    background-color: #111217 !important;
    color: #fff;
    padding: 100px 20px;
}
.bg-dark-section h2 { color: #fff !important; }
.bg-dark-section .section-subtitle { color: #a0aec0 !important; }
.card-dark {
    background-color: #1a1c23 !important;
    border: 1px solid #2d3748 !important;
    color: #fff;
}
.card-dark h3 { color: #fff !important; }
.card-dark p { color: #e2e8f0 !important; }
 / *   F i x   f o r   t w o   c o l u m n s   l i s t   u s e d   i n   E d g e   I n s i g h t s   * / 
 . t w o - c o l u m n s - l i s t   { 
         d i s p l a y :   g r i d ; 
         g r i d - t e m p l a t e - c o l u m n s :   1 f r   1 f r ; 
         g a p :   0   1 5 p x ; 
 } 
 @ m e d i a   ( m a x - w i d t h :   7 6 8 p x )   { 
         . t w o - c o l u m n s - l i s t   { 
                 g r i d - t e m p l a t e - c o l u m n s :   1 f r ; 
         } 
 } 
 
 