
        :root {  
            --orange-vibrant: #FF8C00;  
            --purple-dark: #8A2BE2;  
            --text-primary: #121212;  
            --text-light: #f0f0f0;  
            --gradient-main: linear-gradient(90deg, var(--orange-vibrant) 0%, var(--purple-dark) 100%);  
            --gradient-reversed: linear-gradient(90deg, var(--purple-dark) 0%, var(--orange-vibrant) 100%);  
            --bg-page: #f9f9f9;  
        }  * {  
        margin: 0;  
        padding: 0;  
        box-sizing: border-box;  
    }  

    body {  

        background-color: var(--bg-page);  
        color: var(--text-primary);  
        line-height: 1.6;  
    }  

    a {  
        text-decoration: none;  
        color: inherit;  
    }  

    .btn-action {  
        display: inline-block;  
        padding: 10px 25px;  
        background: var(--gradient-reversed);  
        color: white;  
        font-weight: 700;  
        border-radius: 5px;  
        transition: all 0.3s ease;  
        box-shadow: 0 5px 15px rgba(138, 43, 226, 0.5);   
        text-transform: uppercase;  
    }  

    .btn-action:hover {  
        box-shadow: 0 8px 25px rgba(255, 140, 0, 0.7); 
        transform: translateY(-2px);  
    }  

    .container {  
        width: 90%;  
        max-width: 1300px;  
        margin: 0 auto;  
        padding: 30px 0;  
    }

/* ==================================== /
/ HEADER
/ ==================================== */

body {
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  background: #f5f5f5;
}

.header {
    background: var(--text-primary);
    padding: 12px 5%;
    height: 65px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 2000;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-left: auto; 
}

.logo-container img {
    height: 40px;
}

.logo-container span {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.9em;
    letter-spacing: 2px;
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
}

.menu-toggle span {
    width: 26px;
    height: 3px;
    background: white;
    border-radius: 2px;
}

/* MENU */
.nav-menu {
    position: absolute;
    left: 10px;
    top: 70px;               
    background: var(--text-primary);
    padding: 15px 20px;
    border-radius: 10px;
    display: none;
    flex-direction: column;
    gap: 12px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.4);
    z-index: 3000;
}

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

.nav-menu a {
    color: white;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9em;
}

.nav-menu .btn-action {
    margin-top: 10px;
}

.hero-banner {
    width: 100%;
    overflow: hidden;
    margin-bottom: 10px !important; 
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

    .hero-banner img {  
        width: 100%;  
        height: auto;  
        display: block;  
    }  
      
    .blitz-headline {  
        display: flex;  
        background: var(--gradient-reversed);  
        color: white;  
        border-radius: 10px;  
        overflow: hidden;  
        margin-bottom: 50px;  
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);  
    }  

    .blitz-content {  
        padding: 40px;  
        width: 60%;  
        display: flex;  
        flex-direction: column;  
        justify-content: center;  
    }  

    .blitz-tag {  
        font-family: 'Bebas Neue', sans-serif;  
        font-size: 1.8em;  
        color: var(--text-light);  
        margin-bottom: 10px;  
    }  

    .blitz-content h1 {  
        font-family: 'Bebas Neue', sans-serif;  
        font-size: 3.8em;  
        line-height: 1;  
        margin-bottom: 20px;  
        letter-spacing: 3px;  
        color: var(--orange-vibrant); 
        text-shadow: 2px 2px 0 var(--purple-dark);  
    }  

    .blitz-img {  
        width: 40%;  
        overflow: hidden;  
    }  

    .blitz-img img {  
        width: 100%;  
        height: 100%;  
        object-fit: cover;  
        transition: transform 0.5s;  
    }  

    .blitz-headline:hover .blitz-img img {  
        transform: scale(1.05);  
    }  

    .section-title {  
        font-family: 'Bebas Neue', sans-serif;  
        font-size: 3em;  
        letter-spacing: 2px;  
        margin-bottom: 30px;  
        color: var(--purple-dark);  
        border-left: 6px solid var(--orange-vibrant);  
        padding-left: 15px;  
        display: inline-block;  
    }  
      
    .news-grid {  
        display: grid;  
        grid-template-columns: 2fr 1fr; 
        gap: 40px;  
    }  

    .main-content {  
        display: grid;  
        grid-template-columns: repeat(2, 1fr);  
        gap: 30px;  
    }  

    .side-content {  
        background-color: white;  
        border-radius: 10px;  
        padding: 20px;  
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);  
        border: 1px solid #eee;  
    }  

    .news-card {  
        background: white;  
        border-radius: 10px;  
        overflow: hidden;  
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);  
        transition: all 0.3s ease;  
        position: relative;  
    }  

    .news-card::after {  
        content: '';  
        position: absolute;  
        bottom: 0;  
        left: 0;  
        width: 100%;  
        height: 5px;  
        background: var(--gradient-main);  
        transform: scaleX(0);  
        transition: transform 0.4s ease-out;  
        transform-origin: left;  
    }  

    .news-card:hover {  
        transform: translateY(-5px);  
    }  

    .news-card:hover::after {  
        transform: scaleX(1);  
    }  

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

    .card-content {  
        padding: 20px;  
    }  

    .card-category {  
        font-size: 0.9em;  
        font-weight: 900;  
        color: var(--purple-dark);  
        text-transform: uppercase;  
    }  

    .card-content h3 {  
        font-family: 'Bebas Neue', sans-serif;  
        font-size: 1.6em;  
        line-height: 1.2;  
        margin: 5px 0 10px 0;  
        letter-spacing: 0.5px;  
    }  

    .side-content h4 {  
        font-family: 'Bebas Neue', sans-serif;  
        font-size: 2.2em;  
        color: var(--orange-vibrant);  
        border-bottom: 3px solid var(--purple-dark);  
        padding-bottom: 10px;  
        margin-bottom: 20px;  
    }  

    .trend-item {  
        display: flex;  
        align-items: flex-start;  
        padding: 15px 0;  
        border-bottom: 1px dashed #eee;  
    }  
      
    .trend-item:last-child {  
        border-bottom: none;  
    }  

    .trend-number {  
        font-family: 'Bebas Neue', sans-serif;  
        font-size: 3em;  
        font-weight: 900;  
        margin-right: 15px;  
        background: var(--gradient-main);  
        -webkit-background-clip: text;  
        -webkit-text-fill-color: transparent;  
        line-height: 1;  
    }  

    .trend-item a {  
        font-weight: 700;  
        color: var(--text-primary);  
        transition: color 0.3s;  
    }  

    .trend-item a:hover {  
        color: var(--purple-dark);  
    }

.footer {
background: var(--text-primary);
color: white;
padding: 45px 5%;
margin-top: 60px;
text-align: center;
}

.footer-logo img {
height: 55px;
filter: drop-shadow(0 0 8px var(--orange-vibrant));
margin-bottom: 18px;
}

.footer-links {
margin: 18px 0;
}

.footer-links a {
margin: 0 15px;
font-size: 0.95em;
opacity: 0.8;
transition: 0.3s;
}

.footer-links a:hover {
opacity: 1;
color: var(--orange-vibrant);
}

.social-icons {
margin-top: 20px;
}

.social-icons a {
display: inline-block;
margin: 0 6px;
padding: 10px;
background: var(--purple-dark);
color: white;
border-radius: 50%;
font-weight: 900;
transition: background 0.3s;
}

.social-icons a:hover {
background: var(--orange-vibrant);
}

@media (max-width: 768px) {

    .header {
        flex-direction: row;       
        height: 60px;
        padding: 10px 4%;
    }

    .logo-container img {
        height: 36px;
    }

    .logo-container span {
        font-size: 1.6em;
    }

    .nav-menu {
        top: 60px;                       
        left: 10px;
    }
}
.nav-menu a {  
    font-size: 0.85em;  
    margin: 0;  
    display: inline-block;  
}  

.btn-action {  
    padding: 8px 16px;  
    font-size: 0.8em;  
}  

.hero-banner img {  
    height: auto;  
}  

/* BLITZ  */  
.blitz-headline {  
    flex-direction: column;  
    text-align: center;  
}  
.blitz-content {  
    width: 100%;  
    padding: 25px;  
}  
.blitz-img {  
    width: 100%;  
}  
.blitz-content h1 {  
    font-size: 2em;  
    line-height: 1.1;  
}  

/* NOTÍCIAS */  
.news-grid {  
    grid-template-columns: 1fr !important;  
    gap: 25px;  
}  

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

.footer {
    background: linear-gradient(135deg, #121212, #1a1a1a);
    padding: 55px 5%;
    color: #fff;
    text-align: center;
    border-top: 4px solid var(--orange-vibrant);
    position: relative;
}

.footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #FF8C00, #8A2BE2, #FF8C00);
    background-size: 300% 300%;
    animation: footerGradient 4s linear infinite;
}

@keyframes footerGradient {
    0% { background-position: 0% 50%; }
    100% { background-position: 300% 50%; }
}

/* ===============================
   FOOTER 
================================ */
footer {
  width: 100%;
  background: #0e0e0e;
  border-top: 1px solid rgba(255,255,255,0.08);
  margin-top: 80px;
  padding: 35px 20px 25px;
  text-align: center;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

.footer-links a {
  color: #bdbdbd;
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none;
  position: relative;
  transition: all .25s ease;
}

.footer-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0%;
  height: 2px;
  background: linear-gradient(90deg, #7b2cff, #ff7b00);
  transition: width .3s ease;
}

.footer-links a:hover {
  color: #fff;
}

.footer-links a:hover::after {
  width: 100%;
}

.footer-copy {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
}

/* ===============================
   MOBILE
================================ */
@media (max-width: 600px) {
  .footer-links {
    gap: 16px;
  }

  .footer-links a {
    font-size: 0.9rem;
  }
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 12px;
}

.social-icons a {
    width: 42px;
    height: 42px;
    display: flex;
    justify-content: center;
    align-items: center;

    background: rgba(255,255,255,0.12);
    border-radius: 50%;
    transition: 0.3s ease;
    font-size: 1.2em;
}

.social-icons a:hover {
    background: var(--orange-vibrant);
    transform: scale(1.15);
    color: #fff;
}

.gradient-line {
width: 100%;
height: 6px;
background: linear-gradient(90deg, #FF8C00, #8A2BE2, #FF8C00);
background-size: 300% 300%;
animation: rotateGradient 5s linear infinite;
}

@keyframes rotateGradient {
0% { background-position: 0% 50%; }
100% { background-position: 300% 50%; }
}

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

.carousel-section {
    padding-top: 50px;
}

.carousel-container {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.carousel-slide {
    min-width: 100%;
    height: 420px;
    position: relative;
    overflow: hidden;
    background: #000;
}

.slide-image {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    object-fit: cover;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.slide-content-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60%;
    padding: 30px;
    background: linear-gradient(90deg, rgba(138,43,226,0.9), rgba(255,140,0,0.85));
    color: white;
    border-top-right-radius: 12px;
    box-shadow: 5px -5px 20px rgba(0,0,0,0.3);
    z-index: 3; 
    pointer-events: none; 
}

.carousel-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.6);
    color: white;
    border: none;
    padding: 15px;
    font-size: 2em;
    cursor: pointer;
    z-index: 9999; 
    border-radius: 8px;
}

.prev-control { left: 10px; }
.next-control { right: 10px; }

.carousel-indicators {
    position: absolute;
    bottom: 20px;
    right: 20px;
    display: flex;
    gap: 10px;
    z-index: 10000;
}

.indicator {
    width: 12px;
    height: 12px;
    background: rgba(255,255,255,0.6);
    border-radius: 50%;
    cursor: pointer;
}

.indicator.active-indicator {
    background: var(--orange-vibrant);
    transform: scale(1.2);
    border: 2px solid var(--purple-dark);
}

/* ===== MOBILE ===== */
@media (max-width: 768px) {
    .carousel-slide {
        height: 340px;
    }

    .slide-content-overlay {
        width: 100%;
        padding: 15px;
        border-radius: 0;
    }

    .carousel-control { display: none; }
}
        
.carousel-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    
    font-size: 26px;
    font-weight: 900;
    
    background: rgba(255,255,255,0.22);
    backdrop-filter: blur(6px);

    color: white;
    cursor: pointer;
    border: none;

    border-radius: 50%;
    z-index: 999;

    box-shadow: 0 4px 20px rgba(0,0,0,0.25);

    transition: 0.25s ease;
}

.carousel-control:hover {
    background: rgba(255,255,255,0.35);
    transform: translateY(-50%) scale(1.08);
}

.prev-control {
    left: 15px;
}

.next-control {
    right: 15px;
}

@media (max-width: 768px) {
    .carousel-control {
        width: 40px;
        height: 40px;
        font-size: 22px;
    }
}

/* ========================= */
/* STORIES
/* ========================= */

.stories-wrapper {
  width: 100vw;
  margin-left: calc(50% - 50vw); 
  margin-right: calc(50% - 50vw);
  background: var(--bg-page);
  padding: 0px; 
  border-bottom: 1px solid rgba(0,0,0,0.08);
}

.stories-container {
  display: flex;
  overflow-x: auto;
  overflow-y: hidden;
  gap: 12px;
  padding: 8px 12px;
  scrollbar-width: none;
  white-space: nowrap;       
  scroll-behavior: smooth;    
}

.stories-container::-webkit-scrollbar {
  display: none;
}

.story,
.storye {
  position: relative;
  flex-shrink: 0;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  transition: transform 0.25s ease;
}

.story {
  border: 3px solid var(--orange-vibrant);
}

.storye {
  border: 3px solid var(--purple-dark);
  filter: grayscale(100%);
}

.story:hover,
.storye:hover {
  transform: scale(1.1);
}

.story img,
.storye img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
        
.story.faz::after {
  content: "";
  position: absolute;
  top: -45px;
  right: -31px;
  width: 105px;
  height: 95px;
  background: url('https://i.ibb.co/93rGmxZt/Background-Eraser-20240907-212424658.png') no-repeat center/contain;
  pointer-events: none;
}

.story.roça::after {
  content: "🔥";
  position: absolute;
  top: -16px;
  right: -11px;
  font-size: 26px;
  transform: rotate(-5deg);
  pointer-events: none;
}

.story.final::after {
  content: "🌟";
  position: absolute;
  top: -16px;
  right: -11px;
  font-size: 26px;
  transform: rotate(-5deg);
  pointer-events: none;
}

.story.lamp::after {
  content: "";
  position: absolute;
  top: -18px;
  right: -18px;
  width: 60px;
  height: 50px;
  background: url('https://i.ibb.co/4RtNz4gc/Chat-GPT-Image-21-de-out-de-2025-11-33-57-fotor-bg-remover-20251021113422.png') no-repeat center/contain;
  pointer-events: none;
}

.story.inco::after {
  content: "";
  position: absolute;
  top: -8px;
  right: -11px;
  width: 43px;
  height: 33px;
  background: url('https://i.ibb.co/fd5gvrfZ/Chat-GPT-Image-26-de-out-de-2025-22-35-43-fotor-bg-remover-20251026223635.png') no-repeat center/contain;
  pointer-events: none;
}

.gradient-line {
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg, #FF8C00, #8A2BE2, #FF8C00);
    background-size: 300% 300%;
    animation: gradientMove 4s linear infinite;
}

@keyframes gradientMove {
    0% { background-position: 0% 50%; }
    100% { background-position: 300% 50%; }
}

.spacer-left,
.spacer-right {
    width: 20px;      
    height: 100%;
    flex-shrink: 0;
    pointer-events: none; 
    background: transparent;
}

.blitz-headline {
    margin-left: 5%;
    margin-right: 5%;
    width: 90% !important;  
}

.blitz-headline {
    margin-top: 10px !important;     
    margin-bottom: 15px !important;  
}

.blitz-headline .blitz-img img {
    display: block;
}

.blitz-headline,
.news-grid,
.side-content {
    padding-left: 16px;
    padding-right: 16px;
    box-sizing: border-box; 
}

@media (min-width: 1024px) {
    .blitz-headline,
    .news-grid,
    .side-content {
        padding-left: 24px;
        padding-right: 24px;
    }
}
