/* Estilos específicos para a página de detalhes do plano (reutilizados) */
        .page-title-section {
            background-color: #0F286F;
            color: white;
            padding: 2em 20px;
            text-align: center;
        }
        .page-title-section h1 {
            font-size: 2.8em;
            margin: 0;
            color: #FF5A00;
        }
        .plan-detail-container {
             
            max-width: 900px;
            margin: 30px auto;
            padding: 20px;
            background-color: #FFFFFF;
            border-radius: 8px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.08);
        }
        .plan-detail-header {
            text-align: center;
            margin-bottom: 30px;
        }
        .plan-detail-header img {
            max-width: 250px;
            height: auto;
            margin-bottom: 15px;
            border-radius: 5px;
        }
        .plan-detail-header h2 {
            color: #00509e;
            font-size: 2.2em;
            margin-bottom: 10px;
        }
        .plan-detail-header .plan-tagline {
            font-size: 1.2em;
            color: #555555;
            margin-bottom: 20px;
        }
        .plan-features-section h3, .plan-pricing-section h3 {
            color: #0F286F;
            font-size: 1.6em;
            margin-bottom: 15px;
            padding-bottom: 5px;
            border-bottom: 2px solid #FF5A00;
        }
        .plan-features-list {
            
            list-style: none;
            padding: 0;
            margin-bottom: 30px;
            columns: 2;
            column-gap: 30px;
        }
        /* Preço do Plano*/
        .plan-detail-sale{
            position: absolute;
            display: block;
            margin: -250px 150px 150px 650px;
        }
        .plan-detail-sale button {
            background-color: #0F286F;
            color: #FFFFFF;
            font-weight:bold; 
            font-size:18px;
            margin: 0px;
            text-align: center;
            text-decoration: none;
            padding: 20px 20px;
            border-radius: 12px;
        } 
        .plan-detail-sale button:hover{
            transform: scale(1.15);
            transition: 0.2s;
        }
        .plan-features-list li {
            font-size: 1.1em;
            color: #333333;
            margin-bottom: 12px;
            padding-left: 25px;
            position: relative;
        }
        .plan-features-list li::before {
            content: '\2714'; /* Ícone de check */
            color: #FF5A00;
            position: absolute;
            left: 0;
            font-weight: bold;
        }
        .plan-pricing-section p {
            font-size: 1.1em;
            color: #333333;
            line-height: 1.6;
        }
        .plan-pricing-section .price {
            font-size: 1.8em;
            font-weight: bold;
            color: #FF5A00;
            margin: 10px 0;
        }
        .cta-plan-detail {
            text-align: center;
            margin-top: 30px;
        }
        .cta-button-plan-detail {
            background-color: #FF5A00;
            color: white;
            padding: 15px 35px;
            text-decoration: none;
            font-size: 1.3em;
            border-radius: 8px;
            font-weight: bold;
            transition: background-color 0.3s ease, transform 0.2s ease;
            display: inline-block;
            border: 2px solid #FF5A00;
        }
        .cta-button-plan-detail:hover {
            background-color: #e04e00;
            transform: scale(1.05);
        }
        .back-to-plans-link {
            display: block;
            text-align: center;
            margin-top: 30px;
            font-size: 1.1em;
            color: #0F286F;
            text-decoration: none;
            font-weight: bold;
        }
        .back-to-plans-link:hover {
            color: #FF5A00;
            text-decoration: underline;
        }
        @media (max-width: 768px) {
            .plan-features-list {
                columns: 1;
            }
        }