/* css/saiba-mais.css */
.container-saiba-mais {
    max-width: 1100px;
    margin: 0 auto;
    padding: 20px;
}

.section-title {
    text-align: center;
    font-size: 2.2rem;
    color: #023e8a;
    margin-bottom: 40px;
}

/* Seção Hero */
.hero-saiba-mais {
    text-align: center;
    padding: 60px 20px;
    background-color: #f8f9fa;
    border-radius: 12px;
    margin-bottom: 50px;
}
.hero-saiba-mais h1 {
    font-size: 2.8rem;
    color: #023e8a;
    margin-bottom: 15px;
}
.hero-saiba-mais p {
    font-size: 1.2rem;
    color: #6c757d;
    max-width: 700px;
    margin: 0 auto;
}

/* Seção "Por que anunciar" */
.info-section {
    margin-bottom: 60px;
}
.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}
.info-card {
    background: #fff;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.07);
    text-align: center;
}
.info-card h3 {
    color: #0077b6;
    margin-bottom: 10px;
}

/* Seção de Planos */
.planos-section {
    margin-bottom: 60px;
    background-color: #f8f9fa;
    padding: 50px 20px;
    border-radius: 12px;
}
.planos-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 30px;
    align-items: center;
}
.plano-card {
    background: #fff;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.07);
    border: 1px solid #dee2e6;
    transition: transform 0.3s, box-shadow 0.3s;
}
.plano-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}
.plano-card.destaque {
    border: 2px solid #0077b6;
    transform: scale(1.05);
}
.plano-header {
    margin-bottom: 25px;
    position: relative;
}
.plano-badge {
    position: absolute;
    top: -45px;
    left: 50%;
    transform: translateX(-50%);
    background: #0077b6;
    color: #fff;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
}
.plano-card h3 { font-size: 1.5rem; color: #023e8a; }
.plano-price { font-size: 1.1rem; color: #6c757d; font-weight: bold; }
.plano-features { list-style: none; padding: 0; margin-bottom: 30px; }
.plano-features li { padding: 8px 0; color: #6c757d; }
.plano-features li:not(:last-child) { border-bottom: 1px dashed #dee2e6; }
.btn-plano { display: inline-block; padding: 12px 30px; background: #6c757d; color: #fff; text-decoration: none; border-radius: 8px; font-weight: bold; transition: background 0.3s; }
.btn-plano.btn-destaque { background: #0077b6; }
.btn-plano:hover { background: #023e8a; }

/* Seção de Contato */
.contato-section { margin-bottom: 50px; }
.contato-wrapper { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; background: #fff; padding: 40px; border-radius: 12px; box-shadow: 0 4px 15px rgba(0,0,0,0.07); }
.contato-info p { margin-bottom: 15px; line-height: 1.6; }
.contato-form .form-group { margin-bottom: 20px; }
.contato-form label { display: block; margin-bottom: 5px; font-weight: bold; }
.contato-form input, .contato-form textarea { width: 100%; padding: 12px; border: 1px solid #dee2e6; border-radius: 8px; box-sizing: border-box; }
.btn-submit { width: 100%; padding: 15px; background: #0077b6; color: #fff; border: none; border-radius: 8px; font-size: 1rem; cursor: pointer; font-weight: bold; }
.btn-submit:hover { background: #023e8a; }
.msg-sucesso { padding: 15px; background-color: #d4edda; color: #155724; border: 1px solid #c3e6cb; border-radius: 8px; margin-bottom: 20px; }
.msg-erro { padding: 15px; background-color: #f8d7da; color: #721c24; border: 1px solid #f5c6cb; border-radius: 8px; margin-bottom: 20px; }

/* Botão WhatsApp */
.whatsapp-float { position: fixed; width: 60px; height: 60px; bottom: 40px; right: 40px; background-color: #25d366; color: #FFF; border-radius: 50px; text-align: center; font-size: 30px; box-shadow: 2px 2px 3px #999; z-index: 100; display: flex; align-items: center; justify-content: center; }
.whatsapp-float svg { width: 32px; height: 32px; }

/* Responsividade */
@media(max-width: 992px) {
    .planos-grid { grid-template-columns: 1fr; }
    .plano-card.destaque { transform: scale(1); }
    .contato-wrapper { grid-template-columns: 1fr; }
}
@media(max-width: 768px) {
    .hero-saiba-mais h1 { font-size: 2rem; }
    .section-title { font-size: 1.8rem; }
    .whatsapp-float { width: 50px; height: 50px; bottom: 20px; right: 20px; }
}
/* css/saiba-mais.css */

/* Layout geral da página */
.saiba-mais-container {
    padding: 40px 20px;
    max-width: 1200px;
    margin: 0 auto;
    font-family: 'Poppins', sans-serif; /* Usando uma fonte moderna */
    color: #333;
}

.saiba-mais-header {
    text-align: center;
    margin-bottom: 60px;
}

.saiba-mais-header h1 {
    font-size: 3em;
    color: #023e8a; /* Um azul mais profundo */
    margin-bottom: 10px;
    font-weight: 700;
}

.saiba-mais-header p {
    font-size: 1.2em;
    color: #555;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Grid para os blocos de informação */
.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); /* 300px de largura mínima */
    gap: 30px; /* Espaçamento entre os blocos */
}

/* Estilo individual para cada bloco de informação */
.info-block {
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08); /* Sombra mais pronunciada e elegante */
    padding: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease; /* Transição suave ao hover */
    border: 1px solid #e0e0e0; /* Borda sutil */
}

.info-block:hover {
    transform: translateY(-8px); /* Efeito de "levantar" ao passar o mouse */
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.12);
}

.info-block .icon {
    font-size: 3.5em; /* Ícones maiores */
    color: #0077b6; /* Cor vibrante para ícones */
    margin-bottom: 20px;
    padding: 15px;
    background-color: #e6f7ff; /* Fundo suave para o ícone */
    border-radius: 50%; /* Formato circular */
}

.info-block h2 {
    font-size: 1.8em;
    color: #023e8a;
    margin-bottom: 15px;
    font-weight: 600;
    line-height: 1.3;
}

.info-block p {
    font-size: 1em;
    color: #666;
    line-height: 1.7;
    margin-bottom: 20px;
}

.info-block .btn-saiba-mais {
    display: inline-block;
    background-color: #0077b6; /* Botão com a cor do ícone */
    color: #ffffff;
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: background-color 0.3s ease;
    margin-top: auto; /* Empurra o botão para o final do bloco */
}

.info-block .btn-saiba-mais:hover {
    background-color: #005f99;
}

/* Responsividade */
@media (max-width: 768px) {
    .saiba-mais-header h1 {
        font-size: 2.5em;
    }
    .saiba-mais-header p {
        font-size: 1em;
    }
    .info-grid {
        grid-template-columns: 1fr; /* Uma coluna em telas menores */
    }
    .info-block {
        padding: 25px;
    }
    .info-block .icon {
        font-size: 3em;
    }
    .info-block h2 {
        font-size: 1.6em;
    }
}

@media (max-width: 480px) {
    .saiba-mais-container {
        padding: 20px 15px;
    }
    .saiba-mais-header h1 {
        font-size: 2em;
    }
    .info-block .icon {
        font-size: 2.5em;
    }
    .info-block h2 {
        font-size: 1.4em;
    }
    .info-block p {
        font-size: 0.9em;
    }
    .info-block .btn-saiba-mais {
        padding: 10px 20px;
        font-size: 0.9em;
    }
}