
/* Estilos modernos para página de divulgação */
.hero-section {
    background: linear-gradient(135deg, #1a3d5c 0%, #2c5aa0 50%, #f8aa7a 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="rgba(255,195,17,0.1)"/><circle cx="80" cy="80" r="3" fill="rgba(255,195,17,0.1)"/><circle cx="40" cy="60" r="1" fill="rgba(255,195,17,0.1)"/></svg>');
    animation: float 20s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}
.mai-cart-falar{
    color: #ffffff !important;
}
.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    padding: 77px;
}

.hero-title {
    color: #ffffff !important;
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 30px;
}

.cta-btn {
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.cta-primary {
    background: #f8aa7a;
    color: #1a3d5c;
    box-shadow: 0 8px 25px rgba(255,195,17,0.3);
}

.cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255,195,17,0.4);
    color: #1a3d5c;
}

.cta-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.cta-secondary:hover {
    background: white;
    color: #1a3d5c;
    transform: translateY(-3px);
}

.stats-section {
    background: #f8f9fa;
    padding: 60px 0;
}

.stat-item {
    text-align: center;
    padding: 30px 20px;
}

.stat-number {
    font-size: 3rem;
    font-weight: 900;
    color: #f8aa7a;
    display: block;
}

.stat-label {
    font-size: 1.1rem;
    color: #666;
    margin-top: 10px;
}

.pricing-section {
    padding: 80px 0;
    background: linear-gradient(45deg, #f8f9fa 0%, #ffffff 100%);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: #1a3d5c;
    margin-bottom: 20px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.pricing-card {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    margin-bottom: 30px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #f8aa7a, #ff6b35);
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.pricing-card.featured {
    transform: scale(1.05);
    border: 3px solid #f8aa7a;
}

.pricing-card.featured::before {
    height: 8px;
}

.card-badge {
    position: absolute;
    top: 80px;
    right: 20px;
    background: linear-gradient(45deg, #ff6b35, #f8aa7a);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.package-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a3d5c;
    margin-bottom: 25px;
}

.package-price {
    font-size: 3rem;
    font-weight: 900;
    color: #f8aa7a;
    margin-bottom: 15px;
}

.package-period {
    color: #666;
    font-size: 1rem;
    margin-bottom: 30px;
}

.features-list {
    list-style: none;
    padding: 0;
    margin: 30px 0;
}

.features-list li {
    padding: 10px 0;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #555;
}

.features-list li::before {
    content: '✓';
    background: #28a745;
    color: white;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: bold;
    flex-shrink: 0;
}

.package-btn {
    width: 100%;
    padding: 15px;
    background: linear-gradient(45deg, #25d366, #f8aa7a);
    color: white;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.3);
    font-size: 1rem;
}

.package-btn:hover {
    background: linear-gradient(45deg, #f8aa7a, #25d366);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    text-decoration: none;
}

.package-btn i {
    margin-right: 8px;
    font-size: 18px;
}

.how-to-section {
   
    color: white;
    padding: 80px 0;
}

.how-to-section .section-title {
    color: white;
}

.requirements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.requirement-item {
    background: rgba(93,92,92,0.09);
    padding: 30px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
}

.requirement-icon {
    font-size: 2.5rem;
    color: #f8aa7a;
    margin-bottom: 20px;
}

.requirement-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.requirement-desc {
    color: #000;
    opacity: 0.9;
    line-height: 1.6;
}
.divulgar-descrition{

    font-size: 1.3rem;
    line-height: 1.8;
    color: #555;
    max-width: 800px;
    margin: 0 auto;
}
.contact-section {
    background: #f8f9fa;
    padding: 80px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.events_stats_section {
    background: white;
    padding: 60px 0;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.contact-icon {
    font-size: 3rem;
    color: #f8aa7a;
    margin-bottom: 20px;
}

.contact-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a3d5c;
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.social-link {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #1a3d5c, #2c5aa0);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: linear-gradient(135deg, #f8aa7a, #ff6b35);
    color: #1a3d5c;
    transform: translateY(-3px);
}

.breadcrumb-modern {
    background: rgba(255,255,255,0.1);
    padding: 10px 20px;
    border-radius: 25px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
}

.breadcrumb-modern a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
}
.pagarColor{
    color: #fff;
}
.breadcrumb-modern a:hover {
    color: #f8aa7a;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .pricing-card {
        padding: 20px;
        margin-bottom: 20px;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .package-price {
        font-size: 2.5rem;
    }
    
    .package-name {
        font-size: 1.3rem;
    }
    
    .card-badge {
        top: 15px;
        right: 15px;
        padding: 6px 12px;
        font-size: 0.7rem;
    }
    
    .requirements-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

/* Estilos para nova seção de instruções */
.alert-box {
    background: linear-gradient(135deg, #fff3cd, #ffeaa7);
    border: 1px solid #f8aa7a;
    border-radius: 15px;
    padding: 25px;
    margin: 40px 0;
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.alert-icon {
    background: #f8aa7a;
    color: #1a3d5c;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.alert-content h4 {
    color: #1a3d5c;
    margin-bottom: 10px;
    font-weight: 700;
}

.alert-content p {
    color: #666;
    margin: 0;
    line-height: 1.6;
}

.contact-cta {
    text-align: center;
    margin-top: 40px;
    padding: 30px;
    background: rgba(255, 195, 17, 0.1);
    border-radius: 15px;
}

.contact-cta p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 20px;
}

.cta-btn {
    display: inline-block;
    padding: 15px 30px;
    background: linear-gradient(45deg, #25d366, #f8aa7a);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.3);
}

.cta-btn:hover {
    background: linear-gradient(45deg, #f8aa7a, #25d366);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    color: white;
    text-decoration: none;
}

/* Estilos para seção de pagamento e contactos */
.payment-contact-section {
    background: #f8f9fa;
    padding: 80px 0;
}

.payment-card,
.contact-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.payment-card:hover,
.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.card-header {
    background: linear-gradient(135deg, rgba(254, 121, 69, 1), #f8aa7a);
    color: white;
    padding: 25px 30px;
    text-align: center;
}

.card-header h3 {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 600;
}

.card-header i {
    margin-right: 10px;
    font-size: 1.3rem;
}

.card-body {
    padding: 30px;
}

.payment-instruction {
    color: #666;
    line-height: 1.6;
    margin-bottom: 30px;
    text-align: center;
}

.bank-details {
    margin: 30px 0;
}

.bank-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid #ecf0f1;
}

.bank-item:last-child {
    border-bottom: none;
}

.bank-item i {
    background: #f8aa7a;
    color: #1a3d5c;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.bank-info {
    flex-grow: 1;
}

.bank-info strong {
    display: block;
    color: #1a3d5c;
    font-weight: 600;
    margin-bottom: 5px;
}

.bank-info span {
    color: #666;
    font-size: 0.95rem;
}

.iban-number {
    font-family: 'Courier New', monospace;
    background: #f8f9fa;
    padding: 5px 10px;
    border-radius: 5px;
    font-weight: 600 !important;
    color: #1a3d5c !important;
}

.payment-cta {
    text-align: center;
    margin-top: 30px;
}

.payment-btn {
    display: inline-block;
    padding: 15px 25px;
    background: linear-gradient(45deg, #25d366, #f8aa7a);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.3);
}

.payment-btn:hover {
    background: linear-gradient(45deg, #f8aa7a, #25d366);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    color: white;
    text-decoration: none;
}

.contact-methods {
    margin-bottom: 30px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid #ecf0f1;
}

.contact-item:last-child {
    border-bottom: none;
}

.contact-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    flex-shrink: 0;
}

.contact-icon.whatsapp {
    background: linear-gradient(45deg, #25d366, #f8aa7a);
}

.contact-icon.email {
    background: linear-gradient(45deg, #ea4335, #d93025);
}

.contact-info strong {
    display: block;
    color: #1a3d5c;
    font-weight: 600;
    margin-bottom: 5px;
}

.contact-info a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: #f8aa7a;
}

.social-section {
    border-top: 1px solid #ecf0f1;
    padding-top: 25px;
}

.social-section h4 {
    color: #1a3d5c;
    font-size: 1.1rem;
    margin-bottom: 20px;
    text-align: center;
}

.social-links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

