 :root {
     --primary-green: #00A651;
     --dark-gray: #2C2C2C;
     --light-gray: #F8F9FA;
     --white: #FFFFFF;
     --text-dark: #1A1A1A;
     --border-color: #E5E5E5;
     --accent-red: #D32F2F;
 }

 * {
     margin: 0;
     padding: 0;
     box-sizing: border-box;
 }

 body {
     font-family: 'Poppins', sans-serif;
     color: var(--text-dark);
     line-height: 1.6;
     background-color: var(--light-gray);
 }

 h1,
 h2,
 h3,
 h4,
 h5,
 h6 {
     font-family: 'Playfair Display', serif;
     font-weight: 700;
     color: var(--text-dark);
 }

 /* ===== TOP INFO BAR ===== */
 .top-info-bar {
     background: linear-gradient(135deg, var(--dark-gray) 0%, #1a1a1a 100%);
     color: var(--white);
     padding: 8px 0;
     font-size: 12px;
     border-bottom: 1px solid rgba(255, 255, 255, 0.1);
 }

 .date-weather {
     display: flex;
     align-items: center;
     gap: 20px;
 }

 .current-date {
     display: flex;
     align-items: center;
     gap: 8px;
     font-weight: 500;
 }

 .weather-info {
     display: flex;
     align-items: center;
     gap: 8px;
     color: rgba(255, 255, 255, 0.8);
 }

 .social-header {
     display: flex;
     align-items: center;
     gap: 12px;
 }

 .follow-text {
     color: rgba(255, 255, 255, 0.7);
     font-size: 11px;
 }

 .social-header a {
     color: rgba(255, 255, 255, 0.7);
     font-size: 13px;
     transition: all 0.3s ease;
     width: 24px;
     height: 24px;
     display: flex;
     align-items: center;
     justify-content: center;
     border-radius: 50%;
 }

 .social-header a:hover {
     color: var(--primary-green);
     background-color: rgba(255, 255, 255, 0.1);
     transform: translateY(-2px);
 }

 /* ===== HEADER ===== */
 .header {
     background-color: var(--white);
     border-bottom: 3px solid var(--primary-green);
     padding: 20px 0;
     position: sticky;
     top: 0;
     z-index: 1000;
     box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
 }

 .logo-section {
     display: flex;
     align-items: center;
     gap: 15px;
 }

 .logo-link {
    text-decoration: none;;
 }

 .logo-img {
     height: 60px;
     width: auto;
     border-radius: 8px;
 }

 .logo-text {
     position: relative;
 }

 .logo-text h1 {
     font-size: 28px;
     margin: 0;
     color: var(--primary-green);
     letter-spacing: -0.8px;
     font-weight: 700;
     line-height: 1;
 }

 .tagline {
     font-size: 12px;
     color: var(--dark-gray);
     margin: 2px 0 8px 0;
     font-weight: 500;
     letter-spacing: 0.5px;
     text-transform: uppercase;
 }

 .live-indicator {
     display: inline-flex;
     align-items: center;
     gap: 6px;
     background: rgba(255, 0, 0, 0.1);
     color: #d32f2f;
     padding: 3px 8px;
     border-radius: 12px;
     font-size: 10px;
     font-weight: 700;
     letter-spacing: 0.5px;
     text-transform: uppercase;
 }

 .pulse {
     width: 6px;
     height: 6px;
     background: #d32f2f;
     border-radius: 50%;
     animation: pulse 1.5s infinite;
 }

 @keyframes pulse {
     0% {
         transform: scale(0.8);
         opacity: 1;
     }
     50% {
         transform: scale(1.2);
         opacity: 0.7;
     }
     100% {
         transform: scale(0.8);
         opacity: 1;
     }
 }

 /* ===== NAVIGATION ===== */
 .nav-menu {
     display: flex;
     justify-content: flex-start;
     align-items: center;
     gap: 20px;
     margin: 0;
     flex-wrap: wrap;
 }

 .nav-link {
     display: flex;
     align-items: center;
     gap: 6px;
     text-decoration: none;
     color: var(--text-dark);
     font-weight: 600;
     font-size: 14px;
     padding: 10px 10px;
     border-radius: 25px;
     transition: all 0.3s ease;
     position: relative;
     background: transparent;
     white-space: nowrap;
 }

 .nav-link:hover {
     background: rgba(0, 166, 81, 0.08);
     color: var(--primary-green);
     transform: translateY(-1px);
 }

 .nav-link.active {
     background: var(--primary-green);
     color: var(--white);
     box-shadow: 0 4px 12px rgba(0, 166, 81, 0.3);
 }

 .nav-link i {
     font-size: 12px;
 }

 /* ===== DROPDOWN ===== */
 .dropdown {
     position: relative;
     z-index: 1010;
 }

 .dropdown-menu {
     position: absolute;
     top: 120%;
     left: 0;
     transform: translateX(0);
     background: var(--white);
     border: none;
     border-radius: 12px;
     box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
     z-index: 1020;
     min-width: 180px;
     padding: 12px 0;
     opacity: 0;
     visibility: hidden;
     transition: all 0.3s ease;
 }

 .dropdown:hover .dropdown-menu {
     opacity: 1;
     visibility: visible;
 }

 .dropdown-item {
     padding: 12px 20px;
     font-size: 14px;
     color: var(--text-dark);
     text-decoration: none;
     display: block;
     transition: all 0.3s ease;
     border-left: 3px solid transparent;
 }

 .dropdown-item:hover {
     background-color: rgba(0, 166, 81, 0.08);
     color: var(--primary-green);
     border-left-color: var(--primary-green);
 }

 /* ===== HEADER ACTIONS ===== */
 .header-actions {
     display: flex;
     align-items: center;
     gap: 15px;
     justify-content: flex-end;
     position: relative;
 }

 @media (max-width: 1200px) {
     .header-actions {
         gap: 10px;
     }
 }

 /* ===== COMPACT SEARCH ===== */
 .search-container {
     position: relative;
     z-index: 900;
 }

 .search-box-compact {
     display: flex;
     align-items: center;
     position: relative;
 }

 .search-toggle-btn {
     background: var(--primary-green);
     border: none;
     color: var(--white);
     width: 40px;
     height: 40px;
     border-radius: 50%;
     cursor: pointer;
     display: flex;
     align-items: center;
     justify-content: center;
     transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
     font-size: 14px;
     box-shadow: 0 2px 8px rgba(0, 166, 81, 0.2);
     z-index: 1050;
     position: relative;
 }

 .search-toggle-btn:hover {
     background: #008C3A;
     transform: scale(1.1);
     box-shadow: 0 4px 12px rgba(0, 166, 81, 0.3);
 }

 .search-container.search-active .search-toggle-btn {
     background: #008C3A;
     transform: scale(0.95);
 }

 .search-input-wrapper {
     position: absolute;
     right: 0;
     top: 0;
     display: flex;
     align-items: center;
     background: #fff;
     border: 2px solid var(--primary-green);
     border-radius: 25px;
     padding: 0;
     overflow: hidden;
     width: 0;
     opacity: 0;
     visibility: hidden;
     transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
     box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
     z-index: 1100;
 }

 .search-container.search-active .search-input-wrapper {
     box-shadow: 0 8px 25px rgba(0, 166, 81, 0.2);
     border-color: var(--primary-green);
 }

 .search-container.search-active .search-input-wrapper {
     width: 250px;
     opacity: 1;
     visibility: visible;
     transform: translateX(0);
 }

 .search-input-compact {
     border: none;
     background: transparent;
     outline: none;
     font-size: 14px;
     padding: 12px 16px;
     flex: 1;
     color: var(--text-dark);
     width: 100%;
 }

 .search-input-compact::placeholder {
     color: #999;
     font-weight: 400;
 }

 .search-submit-btn {
     background: var(--primary-green);
     border: none;
     color: var(--white);
     padding: 12px 16px;
     cursor: pointer;
     transition: all 0.3s ease;
     border-radius: 0 23px 23px 0;
     display: none;
     align-items: center;
     justify-content: center;
 }

 .search-container.search-active .search-submit-btn {
     display: flex;
 }

 .search-submit-btn:hover {
     background: #008C3A;
 }

 /* Keep old search styles for mobile compatibility */
 .search-box-modern {
     display: flex;
     align-items: center;
     background: var(--light-gray);
     border: 2px solid transparent;
     border-radius: 50px;
     padding: 0;
     overflow: hidden;
     transition: all 0.3s ease;
     width: 200px;
     max-width: 100%;
 }

 .search-box-modern:focus-within {
     border-color: var(--primary-green);
     box-shadow: 0 0 0 3px rgba(0, 166, 81, 0.1);
 }

 .search-input {
     border: none;
     background: transparent;
     outline: none;
     font-size: 14px;
     padding: 12px 16px;
     flex: 1;
     color: var(--text-dark);
 }

 .search-input::placeholder {
     color: #999;
     font-weight: 400;
 }

 .search-btn {
     background: var(--primary-green);
     border: none;
     color: var(--white);
     padding: 12px 16px;
     cursor: pointer;
     transition: all 0.3s ease;
     border-radius: 0 50px 50px 0;
 }

 .search-btn:hover {
     background: #008C3A;
     transform: scale(1.05);
 }

 /* ===== LANGUAGE SWITCHER ===== */
 .language-switcher {
     display: flex;
     gap: 4px;
     align-items: center;
     background: rgba(0, 166, 81, 0.08);
     border-radius: 20px;
     padding: 4px;
 }

 .lang-btn {
     padding: 6px 12px;
     border-radius: 16px;
     text-decoration: none;
     color: var(--text-dark);
     font-size: 11px;
     font-weight: 600;
     transition: all 0.3s ease;
     text-transform: uppercase;
     letter-spacing: 0.5px;
 }

 .lang-btn:hover,
 .lang-btn.active {
     background-color: var(--primary-green);
     color: var(--white);
     transform: scale(1.05);
 }

 /* ===== MOBILE TOGGLE ===== */
 .mobile-toggle {
     display: none;
     flex-direction: column;
     gap: 3px;
     background: none;
     border: none;
     cursor: pointer;
     padding: 8px;
     border-radius: 6px;
     transition: background 0.3s ease;
 }

 .mobile-toggle:hover {
     background: rgba(0, 166, 81, 0.1);
 }

 .mobile-toggle span {
     width: 22px;
     height: 2px;
     background: var(--text-dark);
     border-radius: 2px;
     transition: all 0.3s ease;
 }

 .mobile-toggle.active span:nth-child(1) {
     transform: rotate(45deg) translate(5px, 5px);
 }

 .mobile-toggle.active span:nth-child(2) {
     opacity: 0;
 }

 .mobile-toggle.active span:nth-child(3) {
     transform: rotate(-45deg) translate(5px, -5px);
 }

 /* ===== MOBILE NAVIGATION ===== */
 .mobile-nav {
     display: none;
     position: absolute;
     top: 100%;
     left: 0;
     right: 0;
     background: var(--white);
     border-top: 1px solid var(--border-color);
     box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
     z-index: 999;
 }

 .mobile-nav-content {
     padding: 20px;
     max-height: 70vh;
     overflow-y: auto;
 }

 .mobile-nav-link {
     display: flex;
     align-items: center;
     gap: 12px;
     padding: 15px 0;
     color: var(--text-dark);
     text-decoration: none;
     font-weight: 500;
     border-bottom: 1px solid rgba(0, 0, 0, 0.05);
     transition: all 0.3s ease;
 }

 .mobile-nav-link:hover,
 .mobile-nav-link.active {
     color: var(--primary-green);
     padding-left: 10px;
 }

 .mobile-search {
     margin: 20px 0;
     padding-top: 20px;
     border-top: 1px solid var(--border-color);
 }

 .search-box-mobile {
     display: flex;
     background: var(--light-gray);
     border-radius: 25px;
     overflow: hidden;
 }

 .search-box-mobile input {
     flex: 1;
     border: none;
     background: transparent;
     padding: 12px 16px;
     outline: none;
     font-size: 14px;
 }

 .search-box-mobile button {
     background: var(--primary-green);
     border: none;
     color: var(--white);
     padding: 12px 16px;
     cursor: pointer;
 }

 .mobile-lang-switcher {
     margin-top: 20px;
     padding-top: 20px;
     border-top: 1px solid var(--border-color);
 }

 .mobile-lang-switcher span {
     display: block;
     margin-bottom: 10px;
     font-weight: 600;
     color: var(--text-dark);
 }

 .mobile-lang-switcher a {
     display: inline-block;
     margin-right: 15px;
     padding: 8px 12px;
     color: var(--text-dark);
     text-decoration: none;
     border-radius: 6px;
     transition: all 0.3s ease;
 }

 .mobile-lang-switcher a.active,
 .mobile-lang-switcher a:hover {
     background: var(--primary-green);
     color: var(--white);
 }

 .logo-section {
     display: flex;
     align-items: center;
     gap: 12px;
 }

 .logo-img {
     height: 50px;
     width: auto;
 }

 .logo-text h1 {
     font-size: 26px;
     margin: 0;
     color: var(--primary-green);
     letter-spacing: -0.5px;
 }

 .logo-text p {
     font-size: 11px;
     color: var(--dark-gray);
     margin: 0;
     font-weight: 600;
     letter-spacing: 1px;
 }

 .nav-menu {
     display: flex;
     gap: 30px;
     align-items: center;
 }

 .nav-menu a {
     text-decoration: none;
     color: var(--text-dark);
     font-weight: 600;
     font-size: 14px;
     transition: color 0.3s ease;
     position: relative;
 }

 .nav-menu a:hover,
 .nav-menu a.active {
     color: #fff;
 }

 .nav-menu a.active::after {
     content: '';
     position: absolute;
     bottom: -8px;
     left: 0;
     right: 0;
     height: 3px;
     background-color: var(--primary-green);
 }

 .language-switcher {
     display: flex;
     gap: 8px;
     align-items: center;
     margin-left: 20px;
 }

 .language-switcher a {
     padding: 4px 8px;
     border-radius: 3px;
     text-decoration: none;
     color: var(--text-dark);
     font-size: 12px;
     font-weight: 600;
     transition: all 0.3s ease;
 }

 .language-switcher a:hover,
 .language-switcher a.active {
     background-color: var(--primary-green);
     color: var(--white);
 }

 .nav-menu .dropdown {
     position: relative;
 }

 .nav-menu .dropdown-menu {
     position: absolute;
     top: 100%;
     left: 0;
     background: var(--white);
     border: 1px solid var(--border-color);
     border-radius: 8px;
     box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
     z-index: 1000;
     min-width: 150px;
     padding: 8px 0;
 }

 .nav-menu .dropdown-item {
     padding: 8px 16px;
     font-size: 14px;
     color: var(--text-dark);
     text-decoration: none;
     display: block;
     transition: background-color 0.3s ease;
 }

 .nav-menu .dropdown-item:hover {
     background-color: var(--light-gray);
     color: var(--primary-green);
 }

 .search-box {
     display: flex;
     align-items: center;
     background-color: var(--light-gray);
     border-radius: 25px;
     padding: 8px 16px;
     gap: 10px;
 }

 .search-box input {
     border: none;
     background: transparent;
     outline: none;
     font-size: 13px;
     width: 150px;
 }

 .search-box input::placeholder {
     color: #999;
 }

 .search-box button {
     background: none;
     border: none;
     color: var(--primary-green);
     cursor: pointer;
     font-size: 14px;
 }

 .mobile-toggle {
     display: none;
     background: none;
     border: none;
     font-size: 20px;
     color: var(--text-dark);
     cursor: pointer;
     padding: 5px;
 }

 .mobile-toggle:hover {
     color: var(--primary-green);
 }

 /* ===== CARROSSEL PRINCIPAL ===== */

 /* Centraliza e estiliza os botões de navegação do carrossel principal */
 #carouselMain .carousel-control-prev,
 #carouselMain .carousel-control-next {
     top: 45%;
     transform: translateY(-50%);
     width: 60px;
     height: 60px;
     background: rgba(0, 166, 81, 0.7);
     /* Cor #00A651 com transparência */
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     opacity: 1;
     transition: background 0.2s;
     margin: 0 10px;
 }

 #carouselMain .carousel-control-prev:hover,
 #carouselMain .carousel-control-next:hover {
     background: #00A651;
 }

 #carouselMain .carousel-control-prev-icon,
 #carouselMain .carousel-control-next-icon {
     filter: invert(1) brightness(2);
     width: 2rem;
     height: 2rem;
 }

 .carousel-section {
     background-color: var(--white);
     padding: 20px 0;
     margin-bottom: 20px;
 }

 .carousel-wrapper {
     display: grid;
     grid-template-columns: 2fr 1fr;
     gap: 15px;
     align-items: stretch;
 }

 /* Carrossel Grande */
 .carousel-main {
     position: relative;
     border-radius: 12px;
     overflow: hidden;
     box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
 }

 .carousel-main .carousel-item {
     height: 450px;
     position: relative;
 }

 .carousel-main img {
     width: 100%;
     height: 100%;
     object-fit: cover;
 }

 .carousel-main .carousel-caption {
     position: absolute;
     bottom: 0;
     left: 0;
     right: 0;
     background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
     padding: 40px 30px 30px;
     text-align: left;
 }

 .carousel-main .carousel-caption h2 {
     font-size: 28px;
     color: var(--white);
     margin-bottom: 12px;
     line-height: 1.3;
 }

 .carousel-main .carousel-caption p {
     font-size: 15px;
     color: rgba(255, 255, 255, 0.95);
     margin-bottom: 15px;
 }

 .carousel-main .carousel-caption .meta {
     font-size: 12px;
     color: rgba(255, 255, 255, 0.8);
 }

 .carousel-main .carousel-indicators {
     position: absolute;
     bottom: 15px;
     left: 30px;
     right: auto;
 }

 .carousel-main .carousel-indicators button {
     width: 8px;
     height: 8px;
     border-radius: 50%;
     background-color: rgba(255, 255, 255, 0.5);
     border: none;
     margin: 0 6px;
 }

 .carousel-main .carousel-indicators button.active {
     background-color: var(--white);
 }

 /* Carrossel Lateral (4 notícias pequenas) */
 .carousel-side {
     display: flex;
     flex-direction: column;
     gap: 15px;
 }

 .carousel-side-item {
     background-color: var(--white);
     border-radius: 8px;
     overflow: hidden;
     display: flex;
     gap: 12px;
     padding: 12px;
     box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
     transition: all 0.3s ease;
     cursor: pointer;
 }

 .carousel-side-item:hover {
     box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
     transform: translateX(4px);
 }

 .carousel-side-item img {
     width: 80px;
     height: 80px;
     object-fit: cover;
     border-radius: 6px;
     flex-shrink: 0;
 }

 .carousel-side-item-content {
     flex: 1;
     display: flex;
     flex-direction: column;
     justify-content: space-between;
 }

 .carousel-side-item h4 {
     font-size: 13px;
     line-height: 1.3;
     color: var(--text-dark);
     margin: 0;
 }

 .carousel-side-item .number-badge {
     display: inline-flex;
     align-items: center;
     justify-content: center;
     width: 24px;
     height: 24px;
     background-color: var(--primary-green);
     color: var(--white);
     border-radius: 50%;
     font-size: 11px;
     font-weight: 700;
     margin-top: 0px;
 }

 /* ===== BANNER PUBLICITÁRIO ===== */
 .ad-banner {
     background-color: var(--light-gray);
     border: 2px dashed var(--border-color);
     padding: 40px 20px;
     text-align: center;
     border-radius: 8px;
     margin: 40px 0;
     min-height: 150px;
     display: flex;
     align-items: center;
     justify-content: center;
     color: #999;
 }

 .ad-banner.large {
     min-height: 300px;
 }

 /* ===== SEÇÃO DE NOTÍCIAS EM DESTAQUE ===== */
 .featured-section {
     padding: 50px 0;
     background-color: var(--white);
     margin-bottom: 40px;
 }

 .section-title {
     font-size: 36px;
     margin-bottom: 10px;
     color: var(--text-dark);
     position: relative;
     padding-bottom: 15px;
 }

 .section-title::after {
     content: '';
     position: absolute;
     bottom: 0;
     left: 0;
     width: 60px;
     height: 4px;
     background-color: var(--primary-green);
 }

 .section-subtitle {
     font-size: 14px;
     color: #666;
     margin-bottom: 30px;
 }

 .featured-card {
     background-color: var(--white);
     border-radius: 8px;
     overflow: hidden;
     box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
     transition: all 0.3s ease;
     height: 100%;
 }

 .featured-card:hover {
     transform: translateY(-5px);
     box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
 }

 .featured-card img {
     width: 100%;
     height: 250px;
     object-fit: cover;
 }

 .featured-card-content {
     padding: 20px;
 }

 .featured-card-category {
     display: inline-block;
     background-color: var(--primary-green);
     color: var(--white);
     padding: 5px 12px;
     border-radius: 20px;
     font-size: 11px;
     font-weight: 600;
     margin-bottom: 10px;
     text-transform: uppercase;
 }

 .featured-card h3 {
     font-size: 18px;
     margin-bottom: 10px;
     line-height: 1.4;
 }

 .featured-card p {
     font-size: 14px;
     color: #666;
     margin-bottom: 12px;
     line-height: 1.5;
 }

 .featured-card-meta {
     display: flex;
     justify-content: space-between;
     align-items: center;
     font-size: 12px;
     color: #999;
     border-top: 1px solid var(--border-color);
     padding-top: 12px;
 }

 .featured-card-meta a {
     color: var(--primary-green);
     text-decoration: none;
     font-weight: 600;
     transition: color 0.3s ease;
 }

 .featured-card-meta a:hover {
     color: var(--dark-gray);
 }

 /* ===== GRID DE NOTÍCIAS ===== */
 .news-grid {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
     gap: 25px;
     margin-bottom: 40px;
 }

 .news-card {
     background-color: var(--white);
     border-radius: 8px;
     overflow: hidden;
     box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
     transition: all 0.3s ease;
     cursor: pointer;
 }

 .news-card:hover {
     transform: translateY(-3px);
     box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
 }

 .news-card img {
     width: 100%;
     height: 200px;
     object-fit: cover;
 }

 .news-card-body {
     padding: 18px;
 }

 .news-card-category {
     display: inline-block;
     background-color: var(--accent-red);
     color: var(--white);
     padding: 4px 10px;
     border-radius: 15px;
     font-size: 10px;
     font-weight: 600;
     margin-bottom: 8px;
     text-transform: uppercase;
 }

 .news-card h4 {
     font-size: 16px;
     margin-bottom: 8px;
     line-height: 1.4;
 }

 .news-card p {
     font-size: 13px;
     color: #666;
     margin-bottom: 10px;
     line-height: 1.5;
 }

 .news-card-meta {
     display: flex;
     justify-content: space-between;
     align-items: center;
     font-size: 11px;
     color: #999;
     border-top: 1px solid var(--border-color);
     padding-top: 10px;
 }

 /* ===== SEÇÃO NEWSLETTER (MOVIDA PARA BAIXO) ===== */
 .newsletter-section {
     background: linear-gradient(135deg, var(--primary-green) 0%, #008C3A 100%);
     color: var(--white);
     padding: 60px 20px;
     border-radius: 12px;
     margin: 60px 0;
     text-align: center;
     position: relative;
     overflow: hidden;
 }

 .newsletter-section::before {
     content: '';
     position: absolute;
     top: -50%;
     right: -10%;
     width: 400px;
     height: 400px;
     background-color: rgba(255, 255, 255, 0.05);
     border-radius: 50%;
 }

 .newsletter-content {
     position: relative;
     z-index: 2;
     max-width: 600px;
     margin: 0 auto;
 }

 .newsletter-section h2 {
     font-size: 36px;
     margin-bottom: 15px;
     color: var(--white);
 }

 .newsletter-section p {
     font-size: 16px;
     margin-bottom: 30px;
     color: rgba(255, 255, 255, 0.95);
 }

 .newsletter-form {
     display: flex;
     gap: 10px;
     margin-bottom: 20px;
 }

 .newsletter-form input {
     flex: 1;
     padding: 12px 20px;
     border: none;
     border-radius: 25px;
     font-size: 14px;
     outline: none;
 }

 .newsletter-form button {
     background-color: var(--white);
     color: var(--primary-green);
     border: none;
     padding: 12px 30px;
     border-radius: 25px;
     font-weight: 600;
     cursor: pointer;
     transition: all 0.3s ease;
 }

 .newsletter-form button:hover {
     background-color: var(--light-gray);
     transform: translateY(-2px);
 }

 /* ===== SIDEBAR ===== */
 .sidebar {
     background-color: var(--white);
     border-radius: 8px;
     padding: 20px;
     box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
     height: fit-content;
 }

 .sidebar h3 {
     font-size: 18px;
     margin-bottom: 20px;
     padding-bottom: 15px;
     border-bottom: 2px solid var(--primary-green);
 }

 .sidebar-item {
     padding: 12px 0;
     border-bottom: 1px solid var(--border-color);
     cursor: pointer;
     transition: all 0.3s ease;
 }

 .sidebar-item:last-child {
     border-bottom: none;
 }

 .sidebar-item:hover {
     padding-left: 8px;
     color: var(--primary-green);
 }

 .sidebar-item a {
     text-decoration: none;
     color: var(--text-dark);
     font-size: 14px;
     display: flex;
     justify-content: space-between;
     align-items: center;
 }

 .sidebar-item a:hover {
     color: var(--primary-green);
 }

 .badge {
     background-color: var(--primary-green);
     color: var(--white);
     padding: 2px 8px;
     border-radius: 12px;
     font-size: 11px;
     font-weight: 600;
 }

 /* ===== RODAPÉ ===== */
 .footer {
     background-color: var(--dark-gray);
     color: var(--white);
     padding: 50px 20px 20px;
     margin-top: 50px;
 }

 .footer-content {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
     gap: 30px;
     margin-bottom: 40px;
 }

 .footer-section h4 {
     font-size: 16px;
     margin-bottom: 15px;
     color: var(--white);
     border-bottom: 2px solid var(--primary-green);
     padding-bottom: 8px;
 }

 .footer-section ul {
     list-style: none;
 }

 .footer-section ul li {
     margin-bottom: 10px;
 }

 .footer-section ul li a {
     color: rgba(255, 255, 255, 0.8);
     text-decoration: none;
     font-size: 14px;
     transition: color 0.3s ease;
 }

 .footer-section ul li a:hover {
     color: var(--primary-green);
 }

 .footer-section p {
     font-size: 13px;
     color: rgba(255, 255, 255, 0.8);
     line-height: 1.6;
 }

 .social-links {
     display: flex;
     gap: 15px;
     margin-top: 15px;
 }

 .social-links a {
     display: inline-flex;
     align-items: center;
     justify-content: center;
     width: 40px;
     height: 40px;
     background-color: rgba(255, 255, 255, 0.1);
     color: var(--white);
     border-radius: 50%;
     text-decoration: none;
     transition: all 0.3s ease;
     font-size: 16px;
 }

 .social-links a:hover {
     background-color: var(--primary-green);
     transform: translateY(-3px);
 }

 .footer-bottom {
     border-top: 1px solid rgba(255, 255, 255, 0.1);
     padding-top: 20px;
     text-align: center;
     font-size: 13px;
     color: rgba(255, 255, 255, 0.7);
 }

 .footer-bottom p {
     margin: 0;
 }

 /* ===== RESPONSIVO ===== */
 @media (max-width: 992px) {
     /* Mobile Toggle - Show for tablets and phones */
     .mobile-toggle {
         display: flex;
     }
     
     /* Adjust logo for tablet */
     .logo-text h1 {
         font-size: 24px;
     }
     
     .search-container.search-active .search-input-wrapper {
         width: 200px;
         z-index: 1100;
     }
     
     .nav-menu {
         gap: 15px;
     }
     
     /* Reduce header padding on tablets */
     .header {
         padding: 18px 0;
     }

     .carousel-wrapper {
         grid-template-columns: 1fr;
     }

     .carousel-main .carousel-item {
         height: 350px;
     }

     .carousel-side {
         flex-direction: row;
         flex-wrap: wrap;
     }

     .carousel-side-item {
         flex: 1;
         min-width: 150px;
     }
 }

 @media (max-width: 768px) {
     /* Top Info Bar Mobile */
     .top-info-bar {
         padding: 6px 0;
         font-size: 11px;
     }
     
     .date-weather {
         gap: 15px;
     }
     
     .weather-info {
         display: none !important;
     }
     
     .follow-text {
         display: none;
     }
     
     .social-header a {
         width: 20px;
         height: 20px;
         font-size: 11px;
     }

     /* Header Mobile */
     .header {
         padding: 15px 0;
     }
     
     .logo-img {
         height: 50px;
     }
     
     .logo-text h1 {
         font-size: 20px;
     }
     
     .tagline {
         font-size: 10px;
     }
     
     .live-indicator {
         font-size: 9px;
         padding: 2px 6px;
     }
     
     .search-container.search-active .search-input-wrapper {
         width: 180px;
         z-index: 1100;
     }
     
     .search-input {
         padding: 10px 12px;
         font-size: 13px;
     }
     
     .search-btn {
         padding: 10px 12px;
     }
     
     .mobile-toggle {
         display: flex;
     }

     .header .row {
         flex-direction: column;
         gap: 15px;
     }

     .nav-menu {
         gap: 12px;
         justify-content: flex-start;
         flex-wrap: wrap;
     }

     .nav-menu a {
         font-size: 12px;
     }

     .language-switcher {
         margin-left: 0;
         justify-content: center;
     }

     .search-box {
         margin-top: 10px;
     }

     .search-box input {
         width: 120px;
     }

     .section-title {
         font-size: 28px;
     }

     .carousel-main .carousel-item {
         height: 280px;
     }

     .carousel-main .carousel-caption h2 {
         font-size: 22px;
     }

     .carousel-main .carousel-caption p {
         font-size: 13px;
     }

     .newsletter-form {
         flex-direction: column;
     }

     .newsletter-form input,
     .newsletter-form button {
         width: 100%;
     }

     .featured-card img {
         height: 200px;
     }

     .news-card img {
         height: 150px;
     }

     .footer-content {
         grid-template-columns: 1fr;
     }
 }

 @media (max-width: 576px) {
     .search-container.search-active .search-input-wrapper {
         width: 160px;
         z-index: 1100;
     }
     
     .search-toggle-btn {
         width: 35px;
         height: 35px;
         font-size: 12px;
     }
     
     .search-input-compact {
         font-size: 13px;
         padding: 10px 12px;
     }
     
     .search-submit-btn {
         padding: 10px 12px;
     }
     
     .header {
         padding: 10px 0;
     }

     .header .row {
         position: relative;
     }

     .logo-section {
         gap: 8px;
     }

     .logo-img {
         height: 40px;
     }

     .logo-text h1 {
         font-size: 18px;
     }

     .logo-text p {
         font-size: 9px;
     }

     .nav-menu {
         display: none;
         position: absolute;
         top: 100%;
         left: 0;
         right: 0;
         background: var(--white);
         flex-direction: column;
         padding: 20px;
         box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
         border-top: 1px solid var(--border-color);
     }

     .nav-menu.show {
         display: flex;
     }

     .nav-menu a {
         padding: 10px 0;
         text-align: center;
         border-bottom: 1px solid var(--border-color);
     }

     .nav-menu a:last-child {
         border-bottom: none;
     }

     .language-switcher {
         margin-left: 0;
         margin-top: 15px;
         justify-content: center;
         padding-top: 15px;
         border-top: 1px solid var(--border-color);
     }

     .search-box {
         width: 100%;
         margin-top: 15px;
     }

     .search-box input {
         width: 100%;
     }

     .mobile-toggle {
         display: block;
         background: none;
         border: none;
         font-size: 20px;
         color: var(--text-dark);
         cursor: pointer;
     }

     .section-title {
         font-size: 24px;
     }

     .carousel-main .carousel-item {
         height: 220px;
     }

     .carousel-main .carousel-caption h2 {
         font-size: 18px;
     }

     .carousel-main .carousel-caption p {
         font-size: 12px;
     }

     .carousel-main .carousel-caption {
         padding: 30px 20px 20px;
     }

     .carousel-side-item {
         flex-direction: column;
         text-align: center;
     }

     .carousel-side-item img {
         width: 100%;
         height: 100px;
     }

     .featured-card-content {
         padding: 15px;
     }

     .featured-card h3 {
         font-size: 16px;
     }

     .news-card-body {
         padding: 12px;
     }

     .news-card h4 {
         font-size: 14px;
     }

     .newsletter-section h2 {
         font-size: 28px;
     }

     .newsletter-section p {
         font-size: 14px;
     }
 }

 /* ===== CARROSSEL PRINCIPAL ===== */
 .carousel-section {
     margin: 40px 0;
 }

 .carousel-wrapper {
     display: grid;
     grid-template-columns: 2fr 1fr;
     gap: 30px;
     max-height: 450px;
 }

 /* Carrossel Grande */
 .carousel-main {
     position: relative;
     border-radius: var(--border-radius);
     overflow: hidden;
     box-shadow: var(--shadow-large);
 }

 .carousel-main .carousel-item {
     height: 450px;
 }

 .carousel-main .carousel-item img {
     width: 100%;
     height: 100%;
     object-fit: cover;
 }

 .carousel-main .carousel-caption {
     background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
     bottom: 0;
     left: 0;
     right: 0;
     text-align: left;
     padding: 60px 40px 40px;
 }

 .carousel-main .carousel-caption h2 {
     font-size: 1.8rem;
     font-weight: 700;
     margin-bottom: 15px;
     line-height: 1.3;
 }

 .carousel-main .carousel-caption p {
     font-size: 1.1rem;
     margin-bottom: 15px;
     opacity: 0.9;
     line-height: 1.5;
 }

 .carousel-main .carousel-caption .meta {
     font-size: 0.9rem;
     opacity: 0.8;
 }

 .carousel-main .carousel-indicators {
     bottom: 20px;
     margin: 0;
 }

 .carousel-main .carousel-indicators [data-bs-target] {
     width: 12px;
     height: 12px;
     border-radius: 50%;
     margin: 0 5px;
     border: none;
     background-color: rgba(255, 255, 255, 0.5);
 }

 .carousel-main .carousel-indicators .active {
     background-color: var(--primary-green);
 }

 /* Carrossel Lateral */
 .carousel-side {
     display: flex;
     flex-direction: column;
     gap: 20px;
 }

 .carousel-side-item {
     display: flex;
     align-items: center;
     gap: 15px;
     padding: 5px;
     background: white;
     border-radius: var(--border-radius);
     box-shadow: var(--shadow-medium);
     cursor: pointer;
     transition: all var(--transition);
     position: relative;
     min-height: 100px;
 }

 .carousel-side-item:hover {
     transform: translateX(5px);
     box-shadow: var(--shadow-large);
 }

 .carousel-side-item img {
     width: 80px;
     height: 80px;
     object-fit: cover;
     border-radius: var(--border-radius);
     flex-shrink: 0;
 }

 .carousel-side-item-content {
     flex: 1;
 }

 .carousel-side-item h4 {
     font-size: 1rem;
     font-weight: 600;
     line-height: 1.4;
     margin: 0;
     color: var(--text-primary);
 }

 .number-badge {
     position: absolute;
     top: 10px;
     right: 15px;
     width: 25px;
     height: 25px;
     background: var(--primary-green);
     color: white;
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 0.8rem;
     font-weight: 700;
 }

 /* ===== SEÇÃO DE NOTÍCIAS EM DESTAQUE ===== */
 .featured-section {
     margin: 60px 0;
 }

 .section-title {
     font-size: 2.5rem;
     font-weight: 800;
     color: var(--text-primary);
     margin-bottom: 10px;
     text-align: center;
 }

 .section-subtitle {
     font-size: 1.1rem;
     color: var(--text-secondary);
     text-align: center;
     margin-bottom: 50px;
 }

 /* Cards Destaque */
 .featured-card {
     position: relative;
     border-radius: var(--border-radius);
     overflow: hidden;
     box-shadow: var(--shadow-large);
     cursor: pointer;
     transition: transform var(--transition);
     height: 400px;
 }

 .featured-card:hover {
     transform: translateY(-10px);
 }

 .featured-card img {
     width: 100%;
     height: 250px;
     object-fit: cover;
 }

 .featured-card-content {
     padding: 25px;
     background: white;
     height: 150px;
     display: flex;
     flex-direction: column;
     justify-content: space-between;
 }

 .featured-card-category {
     display: inline-block;
     background: var(--primary-green);
     color: white;
     padding: 5px 15px;
     border-radius: 20px;
     font-size: 0.8rem;
     font-weight: 600;
     text-transform: uppercase;
     margin-bottom: 10px;
 }

 .featured-card h3 {
     font-size: 1.3rem;
     font-weight: 700;
     line-height: 1.3;
     margin-bottom: 10px;
     color: var(--text-primary);
 }

 .featured-card p {
     color: var(--text-secondary);
     line-height: 1.5;
     margin-bottom: 15px;
     flex: 1;
 }

 .featured-card-meta {
     display: flex;
     justify-content: space-between;
     align-items: center;
     font-size: 0.9rem;
 }

 .featured-card-meta span {
     color: var(--text-secondary);
 }

 .featured-card-meta a {
     color: var(--primary-green);
     text-decoration: none;
     font-weight: 600;
     transition: color var(--transition);
 }

 .featured-card-meta a:hover {
     color: var(--primary-dark);
 }

 /* Grid de Notícias */
 .news-grid {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
     gap: 30px;
     margin-top: 40px;
 }

 .news-card {
     background: white;
     border-radius: var(--border-radius);
     overflow: hidden;
     box-shadow: var(--shadow-medium);
     transition: all var(--transition);
     cursor: pointer;
 }

 .news-card:hover {
     transform: translateY(-5px);
     box-shadow: var(--shadow-large);
 }

 .news-card img {
     width: 100%;
     height: 200px;
     object-fit: cover;
 }

 .news-card-body {
     padding: 20px;
 }

 .news-card-category {
     display: inline-block;
     background: var(--primary-green);
     color: white;
     padding: 4px 12px;
     border-radius: 15px;
     font-size: 0.75rem;
     font-weight: 600;
     text-transform: uppercase;
     margin-bottom: 12px;
 }

 .news-card h4 {
     font-size: 1.1rem;
     font-weight: 600;
     line-height: 1.4;
     margin-bottom: 10px;
     color: var(--text-primary);
 }

 .news-card p {
     color: var(--text-secondary);
     line-height: 1.5;
     margin-bottom: 15px;
     font-size: 0.95rem;
 }

 .news-card-meta {
     display: flex;
     justify-content: space-between;
     align-items: center;
     font-size: 0.85rem;
 }

 .news-card-meta span {
     color: var(--text-secondary);
 }

 .news-card-meta a {
     color: var(--primary-green);
     text-decoration: none;
     font-weight: 600;
     transition: color var(--transition);
 }

 .news-card-meta a:hover {
     color: var(--primary-dark);
 }

 /* ===== BANNERS PUBLICITÁRIOS ===== */
 .ad-banner {
     background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
     border: 2px dashed #ccc;
     border-radius: var(--border-radius);
     display: flex;
     align-items: center;
     justify-content: center;
     text-align: center;
     color: #666;
     min-height: 150px;
     transition: all var(--transition);
 }

 .ad-banner.large {
     min-height: 200px;
 }

 .ad-banner:hover {
     background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
     color: white;
     border-color: var(--primary-green);
 }

 .ad-banner h5 {
     font-size: 1.2rem;
     font-weight: 600;
     margin-bottom: 8px;
 }

 /* ===== RESPONSIVIDADE CARROSSEL ===== */
 @media (max-width: 992px) {
     .carousel-wrapper {
         grid-template-columns: 1fr;
         max-height: none;
     }

     .carousel-main .carousel-item {
         height: 300px;
     }

     .carousel-main .carousel-caption {
         padding: 30px 20px 20px;
     }

     .carousel-main .carousel-caption h2 {
         font-size: 1.5rem;
     }

     .carousel-main .carousel-caption p {
         font-size: 1rem;
     }

     .carousel-side {
         flex-direction: row;
         overflow-x: auto;
         gap: 15px;
         padding-bottom: 5px;
     }

     .carousel-side-item {
         min-width: 280px;
         flex-shrink: 0;
     }

     .section-title {
         font-size: 2rem;
     }

     .news-grid {
         grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
         gap: 20px;
     }

     .featured-card {
         height: auto;
     }

     .featured-card-content {
         height: auto;
     }
 }

 @media (max-width: 768px) {
     .carousel-main .carousel-item {
         height: 250px;
     }

     .carousel-main .carousel-caption {
         padding: 20px 15px 15px;
     }

     .carousel-main .carousel-caption h2 {
         font-size: 1.3rem;
         margin-bottom: 10px;
     }

     .carousel-main .carousel-caption p {
         font-size: 0.9rem;
         margin-bottom: 10px;
     }

     .carousel-side-item {
         min-width: 250px;
         padding: 12px;
     }

     .carousel-side-item img {
         width: 60px;
         height: 60px;
     }

     .carousel-side-item h4 {
         font-size: 0.9rem;
     }

     .number-badge {
         width: 20px;
         height: 20px;
         font-size: 0.7rem;
     }

     .section-title {
         font-size: 1.8rem;
     }

     .featured-card-content {
         padding: 20px;
     }

     .featured-card h3 {
         font-size: 1.2rem;
     }

     .news-card-body {
         padding: 15px;
     }

     .news-card h4 {
         font-size: 1rem;
     }

     .ad-banner {
         min-height: 120px;
     }

     .ad-banner.large {
         min-height: 150px;
     }
 }

 /* ===== WHATSAPP FLOAT BUTTON ===== */
 .whatsapp-float {
     position: fixed;
     bottom: 20px;
     right: 20px;
     width: 60px;
     height: 60px;
     background-color: #25D366;
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     text-decoration: none;
     box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
     z-index: 999;
     transition: all 0.3s ease;
     animation: pulse-whatsapp 2s infinite;
 }

 .whatsapp-float:hover {
     background-color: #128C7E;
     transform: translateY(-3px);
     box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
     text-decoration: none;
 }

 .whatsapp-float i {
     font-size: 28px;
     color: white;
 }

 .bg-custom-footer {
     background: linear-gradient(135deg, var(--dark-gray) 0%, #1a1a1a 100%);
     color: white;
     border: none !important;
     position: relative;
     overflow: hidden;
 }

 .bg-custom-footer::before {
     content: '';
     position: absolute;
     top: -50%;
     right: -20%;
     width: 300px;
     height: 300px;
     background: radial-gradient(circle, rgba(0, 166, 81, 0.1) 0%, transparent 70%);
     border-radius: 50%;
     z-index: 1;
 }

 .bg-custom-footer .card-body {
     position: relative;
     z-index: 2;
 }

 .bg-custom-footer .card-title {
     color: var(--white);
     font-size: 1.4em;
     font-weight: 700;
     margin-bottom: 1.5rem;
     display: flex;
     align-items: center;
     gap: 10px;
     border-bottom: 2px solid rgba(0, 166, 81, 0.3);
     padding-bottom: 10px;
 }

 .bg-custom-footer .card-title i {
     color: var(--primary-green);
     font-size: 1.2em;
     animation: pulse-clock 2s infinite;
 }

 @keyframes pulse-clock {
     0%, 100% {
         transform: scale(1);
         opacity: 1;
     }
     50% {
         transform: scale(1.1);
         opacity: 0.8;
     }
 }

 /* ===== ÚLTIMAS NOTÍCIAS STYLING ===== */
 .footer-news-item {
     background: linear-gradient(145deg, rgba(255, 255, 255, 0.1) 0%, rgba(0, 0, 0, 0.1) 100%) !important;
     border: 1px solid rgba(255, 255, 255, 0.1);
     border-radius: 12px !important;
     cursor: pointer;
     transition: all 0.3s ease;
     position: relative;
     padding: 16px !important;
     backdrop-filter: blur(10px);
     margin-bottom: 12px;
     overflow: hidden;
 }

 .footer-news-item:hover {
     transform: translateY(-3px) scale(1.02);
     box-shadow: 0 12px 30px rgba(0, 166, 81, 0.25);
     background: linear-gradient(145deg, rgba(0, 166, 81, 0.15) 0%, rgba(255, 255, 255, 0.05) 100%) !important;
     border-color: rgba(0, 166, 81, 0.4);
 }

 .footer-news-item::before {
     content: '';
     position: absolute;
     left: 0;
     top: 0;
     bottom: 0;
     width: 4px;
     background: linear-gradient(180deg, var(--primary-green) 0%, #008C3A 100%);
     border-radius: 0 8px 8px 0;
     opacity: 0;
     transition: all 0.3s ease;
 }

 .footer-news-item:hover::before {
     opacity: 1;
     width: 6px;
 }

 .footer-news-item::after {
     content: '';
     position: absolute;
     top: -50%;
     right: -50%;
     width: 100%;
     height: 200%;
     background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.03), transparent);
     transform: rotate(45deg);
     transition: all 0.6s ease;
     opacity: 0;
 }

 .footer-news-item:hover::after {
     animation: shine 0.6s ease-out;
 }

 @keyframes shine {
     0% {
         opacity: 0;
         transform: translateX(-100%) rotate(45deg);
     }
     50% {
         opacity: 1;
     }
     100% {
         opacity: 0;
         transform: translateX(100%) rotate(45deg);
     }
 }

 .footer-news-item h5 {
     color: var(--white) !important;
     font-size: 1.1em !important;
     line-height: 1.3 !important;
     margin-bottom: 8px !important;
     font-weight: 600;
     transition: all 0.3s ease;
     text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
 }

 .footer-news-item:hover h5 {
     color: #f8f9fa !important;
     text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
 }

 .footer-news-item p {
     color: rgba(255, 255, 255, 0.85) !important;
     font-size: 0.95em !important;
     line-height: 1.4;
     margin-bottom: 8px !important;
     text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
 }

 .footer-news-item small {
     color: rgba(255, 255, 255, 0.6) !important;
     font-size: 0.85em;
     display: flex;
     align-items: center;
     gap: 6px;
 }

 .footer-news-item small i {
     color: var(--primary-green);
     font-size: 0.9em;
 }

 /* Responsive para seção Últimas */
 @media (max-width: 768px) {
     .bg-custom-footer .card-title {
         font-size: 1.2em;
     }
     
     .footer-news-item {
         padding: 12px !important;
         margin-bottom: 10px;
     }
     
     .footer-news-item h5 {
         font-size: 1em !important;
     }
     
     .footer-news-item p {
         font-size: 0.9em !important;
     }
 }


 /* ===== NEWS BADGE E EXTRAS ===== */
 .news-badge {
     position: absolute;
     top: 12px;
     right: 12px;
     z-index: 3;
 }

 .badge-number {
     background: var(--primary-green);
     color: var(--white);
     font-size: 0.8em;
     font-weight: 700;
     padding: 4px 8px;
     border-radius: 50%;
     min-width: 24px;
     text-align: center;
     box-shadow: 0 2px 8px rgba(0, 166, 81, 0.3);
 }

 .news-content {
     position: relative;
     z-index: 2;
 }

 .reading-time {
     margin-left: 12px;
     padding-left: 12px;
     border-left: 1px solid rgba(255, 255, 255, 0.2);
 }

 .reading-time i {
     color: rgba(0, 166, 81, 0.8);
 }

 .latest-news-container {
     position: relative;
 }

 .latest-news-container::before {
     content: '';
     position: absolute;
     left: -15px;
     top: 0;
     bottom: 0;
     width: 2px;
     background: linear-gradient(180deg, var(--primary-green), transparent);
     border-radius: 2px;
 }

 .latest-news-container .footer-news-item:nth-child(1) {
     animation: slideInLeft 0.6s ease-out 0.1s both;
 }

 .latest-news-container .footer-news-item:nth-child(2) {
     animation: slideInLeft 0.6s ease-out 0.2s both;
 }

 .latest-news-container .footer-news-item:nth-child(3) {
     animation: slideInLeft 0.6s ease-out 0.3s both;
 }

 @keyframes slideInLeft {
     from {
         opacity: 0;
         transform: translateX(-30px);
     }
     to {
         opacity: 1;
         transform: translateX(0);
     }
 }

 .no-news-message {
     text-align: center;
     padding: 40px 20px;
     opacity: 0.8;
     background: rgba(255, 255, 255, 0.05);
     border-radius: 12px;
     border: 1px dashed rgba(255, 255, 255, 0.2);
 }

 .no-news-message i {
     font-size: 3em;
     color: rgba(0, 166, 81, 0.4);
     margin-bottom: 15px;
     display: block;
     animation: float 3s ease-in-out infinite;
 }

 @keyframes float {
     0%, 100% {
         transform: translateY(0px);
     }
     50% {
         transform: translateY(-10px);
     }
 }

 .no-news-message p {
     font-style: italic;
     margin: 0;
     color: rgba(255, 255, 255, 0.7) !important;
     font-size: 0.95em;
 }

 /* ===== WHATSAPP ANIMATION ===== */
 @keyframes pulse-whatsapp {
     0% {
         transform: scale(1);
         box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
     }

     50% {
         transform: scale(1.05);
         box-shadow: 0 6px 16px rgba(37, 211, 102, 0.4);
     }

     100% {
         transform: scale(1);
         box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
     }
 }   


 @media (max-width: 768px) {
     .whatsapp-float {
         width: 50px;
         height: 50px;
         bottom: 15px;
         right: 15px;
     }

     .whatsapp-float i {
         font-size: 22px;
     }
 }

 /* ===== MAIS LIDAS SECTION ===== */
 /* Card styling para Mais Lidas */
 .col-lg-6:first-child .card {
     background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
     border: 1px solid rgba(255, 107, 53, 0.1);
     box-shadow: 0 8px 25px rgba(255, 107, 53, 0.1);
     position: relative;
     overflow: hidden;
 }

 .col-lg-6:first-child .card::before {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     right: 0;
     height: 4px;
     background: linear-gradient(90deg, #ff6b35 0%, #f7931e 50%, #ff6b35 100%);
     z-index: 1;
 }

 .col-lg-6:first-child .card:hover {
     transform: translateY(-2px);
     box-shadow: 0 12px 35px rgba(255, 107, 53, 0.15);
 }

 .card h3.card-title i.fa-fire {
     color: #ff6b35;
     animation: fire-flicker 1.5s ease-in-out infinite alternate;
     margin-right: 8px;
 }

 @keyframes fire-flicker {
     0% {
         transform: scale(1) rotate(-1deg);
         filter: hue-rotate(0deg);
     }
     50% {
         transform: scale(1.05) rotate(1deg);
         filter: hue-rotate(10deg);
     }
     100% {
         transform: scale(1) rotate(-1deg);
         filter: hue-rotate(-5deg);
     }
 }

 .card h3.card-title {
     position: relative;
     font-size: 1.4em;
     font-weight: 700;
     color: var(--text-dark);
     border-bottom: 2px solid rgba(255, 107, 53, 0.2);
     padding-bottom: 10px;
     margin-bottom: 1.5rem;
 }

 .popular-news-container {
     position: relative;
 }

 .popular-news-item {
     display: flex;
     align-items: center;
     gap: 15px;
     padding: 16px;
     margin-bottom: 12px;
     border-radius: 12px;
     background: linear-gradient(135deg, rgba(0, 166, 81, 0.05) 0%, rgba(0, 166, 81, 0.02) 100%);
     border: 1px solid rgba(0, 166, 81, 0.1);
     cursor: pointer;
     transition: all 0.3s ease;
     position: relative;
     overflow: hidden;
 }

 .popular-news-item:hover {
     transform: translateX(5px);
     box-shadow: 0 8px 25px rgba(0, 166, 81, 0.15);
     background: linear-gradient(135deg, rgba(0, 166, 81, 0.08) 0%, rgba(0, 166, 81, 0.03) 100%);
     border-color: rgba(0, 166, 81, 0.2);
 }

 .popular-news-item::before {
     content: '';
     position: absolute;
     left: 0;
     top: 0;
     bottom: 0;
     width: 3px;
     background: linear-gradient(180deg, var(--primary-green) 0%, #008C3A 100%);
     transform: scaleY(0);
     transition: transform 0.3s ease;
 }

 .popular-news-item:hover::before {
     transform: scaleY(1);
 }

 .popular-news-item::after {
     content: '';
     position: absolute;
     top: 0;
     right: -100%;
     width: 100%;
     height: 100%;
     background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
     transition: right 0.6s ease;
 }

 .popular-news-item:hover::after {
     right: 100%;
 }

 /* Ranking Badge */
 .ranking-badge {
     position: relative;
     display: flex;
     flex-direction: column;
     align-items: center;
     gap: 4px;
 }

 .ranking-number {
     width: 40px;
     height: 40px;
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     font-weight: 800;
     font-size: 1.1em;
     color: var(--white);
     position: relative;
     overflow: hidden;
 }

 .rank-1 {
     background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
     box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
     position: relative;
 }

 .rank-1::before {
     content: '👑';
     position: absolute;
     top: -8px;
     right: -8px;
     font-size: 0.8em;
     animation: crown-glow 2s ease-in-out infinite;
 }

 @keyframes crown-glow {
     0%, 100% {
         transform: scale(1);
         filter: drop-shadow(0 0 3px rgba(255, 215, 0, 0.6));
     }
     50% {
         transform: scale(1.1);
         filter: drop-shadow(0 0 6px rgba(255, 215, 0, 0.8));
     }
 }

 .rank-2 {
     background: linear-gradient(135deg, #C0C0C0 0%, #A9A9A9 100%);
     box-shadow: 0 4px 15px rgba(192, 192, 192, 0.4);
     position: relative;
 }

 .rank-2::before {
     content: '🥈';
     position: absolute;
     top: -8px;
     right: -8px;
     font-size: 0.8em;
 }

 .rank-3 {
     background: linear-gradient(135deg, #CD7F32 0%, #B8860B 100%);
     box-shadow: 0 4px 15px rgba(205, 127, 50, 0.4);
     position: relative;
 }

 .rank-3::before {
     content: '🥉';
     position: absolute;
     top: -8px;
     right: -8px;
     font-size: 0.8em;
 }

 .rank-4,
 .rank-5 {
     background: linear-gradient(135deg, var(--primary-green) 0%, #008C3A 100%);
     box-shadow: 0 4px 15px rgba(0, 166, 81, 0.3);
 }

 .trending-indicator {
     color: var(--primary-green);
     font-size: 0.7em;
     animation: trend-pulse 2s infinite;
 }

 @keyframes trend-pulse {
     0%, 100% {
         transform: scale(1);
         opacity: 1;
     }
     50% {
         transform: scale(1.2);
         opacity: 0.7;
     }
 }

 /* News Info */
 .news-info {
     flex: 1;
     min-width: 0;
 }

 .news-title {
     font-size: 1.05em;
     font-weight: 600;
     line-height: 1.3;
     margin: 0 0 8px 0;
     color: var(--text-dark);
     transition: color 0.3s ease;
 }

 .popular-news-item:hover .news-title {
     color: var(--primary-green);
 }

 .news-meta {
     display: flex;
     align-items: center;
     gap: 15px;
     font-size: 0.85em;
 }

 .news-date {
     color: #666;
     display: flex;
     align-items: center;
     gap: 5px;
 }

 .views-count {
     color: var(--primary-green);
     display: flex;
     align-items: center;
     gap: 5px;
     font-weight: 600;
 }

 /* Popularity Meter */
 .popularity-meter {
     width: 4px;
     height: 50px;
     background: rgba(0, 166, 81, 0.1);
     border-radius: 2px;
     position: relative;
     overflow: hidden;
 }

 .meter-fill {
     position: absolute;
     bottom: 0;
     left: 0;
     right: 0;
     background: linear-gradient(180deg, var(--primary-green) 0%, #008C3A 100%);
     border-radius: 2px;
     transition: height 1s ease-out 0.5s;
 }

 /* Animation on load */
 .popular-news-item:nth-child(1) {
     animation: slideInRight 0.6s ease-out 0.1s both;
 }

 .popular-news-item:nth-child(2) {
     animation: slideInRight 0.6s ease-out 0.2s both;
 }

 .popular-news-item:nth-child(3) {
     animation: slideInRight 0.6s ease-out 0.3s both;
 }

 .popular-news-item:nth-child(4) {
     animation: slideInRight 0.6s ease-out 0.4s both;
 }

 .popular-news-item:nth-child(5) {
     animation: slideInRight 0.6s ease-out 0.5s both;
 }

 @keyframes slideInRight {
     from {
         opacity: 0;
         transform: translateX(30px);
     }
     to {
         opacity: 1;
         transform: translateX(0);
     }
 }

 /* No Popular News State */
 .no-popular-news {
     text-align: center;
     padding: 40px 20px;
     background: rgba(0, 166, 81, 0.05);
     border-radius: 12px;
     border: 1px dashed rgba(0, 166, 81, 0.2);
 }

 .no-popular-news i {
     font-size: 3em;
     color: rgba(0, 166, 81, 0.3);
     margin-bottom: 15px;
     display: block;
     animation: chart-bounce 2s ease-in-out infinite;
 }

 @keyframes chart-bounce {
     0%, 100% {
         transform: translateY(0px);
     }
     50% {
         transform: translateY(-10px);
     }
 }

 .no-popular-news p {
     margin: 0;
     font-style: italic;
     color: #666;
 }

 /* Responsive para Mais Lidas */
 @media (max-width: 768px) {
     .col-lg-6:first-child .card::before {
         height: 3px;
     }
     
     .popular-news-item {
         padding: 12px;
         gap: 12px;
     }
     
     .ranking-number {
         width: 35px;
         height: 35px;
         font-size: 1em;
     }
     
     .rank-1::before,
     .rank-2::before,
     .rank-3::before {
         font-size: 0.7em;
         top: -6px;
         right: -6px;
     }
     
     .news-title {
         font-size: 1em;
     }
     
     .news-meta {
         font-size: 0.8em;
         gap: 10px;
     }
     
     .popularity-meter {
         height: 40px;
         width: 3px;
     }
     
     .card h3.card-title {
         font-size: 1.2em;
     }
     
     .trending-indicator {
         font-size: 0.6em;
     }
 }

/* ===== SEÇÃO SERVIÇOS RÁPIDOS ===== */
.quick-services-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
    margin: 50px 0;
}

.quick-services-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 166, 81, 0.05) 0%, transparent 50%);
    animation: float 20s infinite ease-in-out;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(-20px, -20px) rotate(120deg); }
    66% { transform: translate(20px, -10px) rotate(240deg); }
}

.section-header .section-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
    position: relative;
}

.section-header .section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(135deg, var(--primary-green), #00d26a);
    border-radius: 2px;
}

.section-header .section-subtitle {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 0;
    font-weight: 400;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
    position: relative;
    z-index: 2;
}

.service-item {
    background: var(--white);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 166, 81, 0.1);
    position: relative;
    overflow: hidden;
}

.service-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 166, 81, 0.1), transparent);
    transition: all 0.6s;
}

.service-item:hover::before {
    left: 100%;
}

.service-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 166, 81, 0.15);
    border-color: var(--primary-green);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 30px;
    background: linear-gradient(135deg, var(--primary-green), #00d26a);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
    position: relative;
}

.service-icon::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, transparent, rgba(255, 255, 255, 0.2));
    border-radius: 20px;
    top: 0;
    left: 0;
}

.service-item:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
}

.service-icon i {
    font-size: 32px;
    color: var(--white);
    z-index: 1;
    position: relative;
}

.service-content h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--text-dark);
    font-weight: 700;
}

.service-content p {
    color: #666;
    margin-bottom: 25px;
    font-size: 16px;
    line-height: 1.6;
}

.service-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--primary-green), #00b359);
    color: var(--white);
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 166, 81, 0.3);
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.service-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: all 0.5s;
}

.service-button:hover::before {
    left: 100%;
}

.service-button:hover {
    background: linear-gradient(135deg, #00b359, var(--primary-green));
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 166, 81, 0.4);
    color: var(--white);
    text-decoration: none;
}

.service-button i {
    transition: all 0.3s ease;
}

.service-button:hover i {
    transform: translateX(5px);
}

/* Responsividade para serviços */
@media (max-width: 768px) {
    .quick-services-section {
        padding: 60px 0;
    }
    
    .section-header .section-title {
        font-size: 2.2rem;
        margin-bottom: 10px;
    }
    
    .section-header .section-subtitle {
        font-size: 1rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 30px;
    }
    
    .service-item {
        padding: 30px 20px;
    }
    
    .service-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 20px;
    }
    
    .service-icon i {
        font-size: 24px;
    }
    
    .service-content h3 {
        font-size: 20px;
        margin-bottom: 10px;
    }
    
    .service-content p {
        font-size: 14px;
        margin-bottom: 20px;
    }
    
    .service-button {
        padding: 12px 24px;
        font-size: 13px;
    }
}

@media (max-width: 576px) {
    .section-header .section-title {
        font-size: 1.8rem;
    }
    
    .section-header .section-subtitle {
        font-size: 0.9rem;
    }
}

/* ===== BANNERS ===== */
.banner-inside-news {
    margin: 30px 0;
    padding: 20px;
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    text-align: center;
    position: relative;
}

.banner-inside-news::before {
    content: 'Publicidade';
    position: absolute;
    top: -10px;
    left: 15px;
    background: #fff;
    color: #6c757d;
    font-size: 12px;
    padding: 2px 8px;
    border: 1px solid #e9ecef;
    border-radius: 4px;
}

.banner-adsense {
    text-align: center;
    margin: 20px 0;
}

/* Responsivo para banners */
@media (max-width: 768px) {
    .banner-inside-news {
        margin: 20px 0;
        padding: 15px;
    }
}