/* Estilos encapsulados dentro da classe .anuncio */
        .anuncio {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            max-width: 1000px;
            margin: 0 auto;
            background: #ffffff;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            margin-top: 20px;
        }
        
        .anuncio .header {
            background: linear-gradient(135deg, #0d47a1, #1a6fb0);
            color: white;
            padding: 40px 30px 30px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        
        .anuncio .header::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ffffff" fill-opacity="0.1" d="M0,160L48,176C96,192,192,224,288,213.3C384,203,480,149,576,128C672,107,768,117,864,138.7C960,160,1056,192,1152,197.3C1248,203,1344,181,1392,170.7L1440,160L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat bottom;
            background-size: cover;
        }
        
        .anuncio h1 {
            font-size: 2.5rem;
            margin-bottom: 15px;
            position: relative;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
        }
        
        .anuncio .subtitle {
            font-size: 1.25rem;
            max-width: 800px;
            margin: 0 auto 25px;
            font-weight: 300;
            position: relative;
        }
        
        .anuncio .anniversary-badge {
            background-color: #ffd700;
            color: #0d47a1;
            padding: 8px 25px;
            border-radius: 30px;
            font-weight: 700;
            display: inline-block;
            margin: 20px 0;
            font-size: 1.2rem;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
            position: relative;
        }
        
        .anuncio .content {
            padding: 35px;
        }
        
        .anuncio h2 {
            color: #0d47a1;
            margin: 25px 0 15px;
            font-size: 1.7rem;
            border-bottom: 3px solid #ffd700;
            padding-bottom: 8px;
        }
        
        .anuncio h3.attention {
            background: linear-gradient(135deg, #ff5252, #d32f2f);
            color: white;
            padding: 20px;
            border-radius: 10px;
            text-align: center;
            margin: 40px 0;
            font-size: 1.8rem;
            box-shadow: 0 5px 15px rgba(211, 47, 47, 0.35);
            animation: pulse 2s infinite;
            position: relative;
            overflow: hidden;
        }
        
        .anuncio h3.attention::after {
            content: "";
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: linear-gradient(transparent, rgba(255, 255, 255, 0.2), transparent);
            transform: rotate(30deg);
            animation: shine 3s infinite;
        }
        
        @keyframes pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.02); }
            100% { transform: scale(1); }
        }
        
        @keyframes shine {
            0% { transform: rotate(30deg) translateX(-100%); }
            100% { transform: rotate(30deg) translateX(100%); }
        }
        
        .anuncio .highlight {
            background: #e3f2fd;
            border-left: 5px solid #2196f3;
            padding: 20px;
            margin: 25px 0;
            border-radius: 0 8px 8px 0;
            font-size: 1.1rem;
        }
        
        .anuncio p {
            margin-bottom: 15px;
            font-size: 1.1rem;
            line-height: 1.7;
            color: #333;
        }
        
        .anuncio .mission-vision {
            display: flex;
            gap: 30px;
            margin: 30px 0;
            flex-wrap: wrap;
        }
        
        .anuncio .card {
            flex: 1;
            min-width: 300px;
            background: #f8f9fa;
            border-radius: 10px;
            padding: 25px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            border-top: 4px solid #0d47a1;
        }
        
        .anuncio .card h3 {
            color: #0d47a1;
            margin-bottom: 15px;
            font-size: 1.4rem;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        p.subtitle{
            color: white;
        }
        
        .anuncio .values {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            margin: 30px 0;
        }
        
        .anuncio .value-item {
            background: #f8f9fa;
            padding: 20px;
            border-radius: 8px;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
            display: flex;
            align-items: flex-start;
            gap: 15px;
            transition: all 0.3s ease;
        }
        
        .anuncio .value-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }
        
        .anuncio .value-item i {
            font-size: 1.8rem;
            color: #0d47a1;
            min-width: 40px;
            text-align: center;
            margin-top: 5px;
        }
        
        .anuncio .timeline {
            margin: 40px 0;
            position: relative;
        }
        
        .anuncio .timeline::before {
            content: "";
            position: absolute;
            top: 0;
            bottom: 0;
            left: 50%;
            width: 4px;
            background: #0d47a1;
            margin-left: -2px;
        }
        
        .anuncio .timeline-item {
            margin-bottom: 40px;
            position: relative;
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            padding-left: 50%;
            padding-right: 20px;
        }
        
        .anuncio .timeline-item:nth-child(even) {
            align-items: flex-end;
            padding-left: 20px;
            padding-right: 50%;
            text-align: right;
        }
        
        .anuncio .timeline-content {
            background: white;
            padding: 20px;
            border-radius: 8px;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
            max-width: 400px;
            position: relative;
            z-index: 1;
            border: 2px solid #e3f2fd;
        }
        
        .anuncio .timeline-content::before {
            content: "";
            position: absolute;
            top: 20px;
            right: -15px;
            width: 0;
            height: 0;
            border-top: 15px solid transparent;
            border-bottom: 15px solid transparent;
            border-left: 15px solid white;
        }
        
        .anuncio .timeline-item:nth-child(even) .timeline-content::before {
            right: auto;
            left: -15px;
            border-left: none;
            border-right: 15px solid white;
        }
        
        .anuncio .timeline-date {
            font-weight: bold;
            color: #0d47a1;
            margin-bottom: 10px;
            font-size: 1.1rem;
        }
        
        .anuncio .timeline-circle {
            position: absolute;
            top: 15px;
            left: 50%;
            width: 20px;
            height: 20px;
            background: #0d47a1;
            border-radius: 50%;
            margin-left: -10px;
            z-index: 2;
            border: 4px solid white;
            box-shadow: 0 0 0 2px #0d47a1;
        }
        
        .anuncio .prize {
            background: linear-gradient(135deg, #ffecb3, #ffd54f);
            padding: 30px;
            border-radius: 10px;
            text-align: center;
            margin: 40px 0;
            box-shadow: 0 5px 15px rgba(255, 179, 0, 0.3);
            border: 3px dashed #ff9800;
        }
        
        .anuncio .prize h3 {
            font-size: 1.8rem;
            color: #333;
            margin-bottom: 20px;
        }
        
        .anuncio .prize-icon {
            font-size: 3rem;
            color: #333;
            margin-bottom: 15px;
        }
        
        .anuncio .cta-buttons {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin: 40px 0 20px;
            flex-wrap: wrap;
        }
        
        .anuncio .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 16px 32px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1.1rem;
            text-decoration: none;
            transition: all 0.3s ease;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
            min-width: 250px;
            text-align: center;
        }
        
        .anuncio .btn-primary {
            background: linear-gradient(135deg, #2196f3, #0d47a1);
            color: white;
        }
        
        .anuncio .btn-secondary {
            background: white;
            color: #0d47a1;
            border: 2px solid #0d47a1;
        }
        
        .anuncio .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
        }
        
        .anuncio .btn i {
            margin-right: 10px;
        }
        
        .anuncio .footer {
            text-align: center;
            margin-top: 20px;
            padding: 20px;
            color: #666;
            font-size: 0.9rem;
            background: #f5f5f5;
            border-top: 1px solid #eee;
        }
        
        @media (max-width: 768px) {
            .anuncio .timeline::before {
                left: 30px;
            }
            
            .anuncio .timeline-item,
            .anuncio .timeline-item:nth-child(even) {
                padding-left: 70px;
                padding-right: 20px;
                text-align: left;
            }
            
            .anuncio .timeline-content::before {
                right: auto;
                left: -15px;
                border-left: none;
                border-right: 15px solid white;
            }
            
            .anuncio .timeline-item:nth-child(even) .timeline-content::before {
                left: -15px;
                border-right: 15px solid white;
            }
            
            .anuncio .timeline-circle {
                left: 30px;
            }
            
            .anuncio .mission-vision {
                flex-direction: column;
            }
            
            .anuncio h1 {
                font-size: 2rem;
            }
        }
