html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    position: relative;
}
html {
    scroll-behavior: smooth;
}

body {
    margin: 0 auto;
    padding-top: 140px; 
    box-sizing: border-box;
    background-color: #ea974b;
    font-family: 'Arial', sans-serif;
}
            
::-webkit-scrollbar {
  width: 8px;
}


::-webkit-scrollbar-track {
  background: #000000; 
  box-shadow: inset 0 0 5px grey; 
  border-radius: 10px;
}
.top-player {
    display: flex;
    align-items: center;
    gap: 20px;
    background-color: var(--color-neutral-10); 
    padding: 10px 30px;
    color: rgb(255, 255, 255);
    text-transform: uppercase; 
}

.play-circle-red {
    width: 45px;
    height: 45px;
    background-color: #ea974b; 
    border: none;
    border-radius: 50%;
    color: rgb(0, 0, 0);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 20px;
    transition: 0.3s;
}

.player-info-new {
    display: flex;
    flex-direction: column;
    min-width: 200px;
}

.status-text-new {
    font-size: 14px;
    font-weight: bold;
    opacity: 0.9;
}
.status-text-new .dot{
  color: #ff0000;
  font-size: 13px;
  animation: blink 1s infinite;
}
.program-name-new {
    font-size: 18px;
    font-weight: 900;
    margin: 2px 0;
}

.program-time-new {
    font-size: 12px;
    opacity: 0.7;
}

.city-selector-new {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-left: auto;
    background: rgba(255, 255, 255, 0.1);
    padding: 8px 15px;
    border-radius: 5px;
}

.city-selector-new i {
    font-size: 18px;
}

.city-select-new {
    background: transparent;
    border: none;
    color: rgb(255, 255, 255);
    font-weight: bold;
    font-size: 14px;
    cursor: pointer;
    outline: none;
    text-transform: uppercase;
}

.city-select-new option {
    background: #1a1a1a;
    color: white;
}

#locutor-box-new {
    display: flex;
    align-items: center;
    gap: 12px;
    border-left: 1px solid rgba(255, 255, 255, 0.2);
    padding-left: 20px;
}

.locutor-thumb-new {
    width: 60px;
    height: 60px;
    border-radius: 5px;
    object-fit: cover;
}

.locutor-name-new {
    font-size: 14px;
    font-weight: bold;
}
::-webkit-scrollbar-thumb {
  background: #934213; 
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
  background: #ea974b; 
}

#sub {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
    background: var(--color-neutral-10);
    padding: 0 20px;
    box-sizing: border-box;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 3000;
}

#area-radio {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding-right: 20px;
}

.top-player {
  display: flex;
  align-items: center;
  gap: 15px;
  background: var(--color-neutral-10);
  padding: 10px 30px;
  border-radius: 8px;
  height: 60px;
  color: white;
}
i.fas.fa-map-marker-alt::before{
 color: #ea974b;
}
.status-badge {
  background: #000000;
  color: black;
  padding: 6px 12px;
  border-radius: 4px;
  font-weight: bold;
  font-size: 12px;
  display: flex;
  align-items: center;
  gap: 5px;
  white-space: nowrap;
}

.status-badge .dot {
  color: #ff0000;
  font-size: 16px;
  animation: blink 1s infinite;
}

@keyframes blink {
  0%, 50% { opacity: 1; }
  51%, 100% { opacity: 0; }
}

.time-display {
  background: rgba(0, 0, 0, 0.2);
  color: white;
  padding: 6px 10px;
  border-radius: 4px;
  font-weight: bold;
  font-size: 14px;
  white-space: nowrap;
}

.play-btn-mini {
  background: #ff7b00ff;
  color: rgb(0, 0, 0);
  border: none;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  font-weight: bold;
}

.play-btn-mini:hover {
  transform: scale(1.1);
  
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.dj-image-mini {
  width: 70px;
  height: 75px;
  object-fit: cover;
}

/* Info Mini */
.info-mini {
  display: flex;
  flex-direction: column;
  gap: 2px;
  color: white;
  min-width: 150px;
}

.dj-name {
  font-weight: bold;
  font-size: 14px;
  white-space: nowrap;
}

.programa-name {
  font-size: 12px;
  opacity: 0.9;
  white-space: nowrap;
}

#social {
  padding-left: 22%;
  color: white;
}

#social ul {
  display: flex;
  list-style: none;
}
#social ul li {
  width: 43px;
  height: 43px;
  background: #000;        
  border: 2px solid #fff;  
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: 0.3s;
   margin: 10px;
}

#social ul li i {
  color: #fff;
  font-size: 20px;
}

#social ul li:hover {
  background: rgb(255, 255, 255);
  transform: scale(1.1);
  color: black;
}
#social ul li:hover i {
    color: #000; 
}



#area-radio {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding-right: 15%;
}

#tv {
  max-width: 1700px;
  width: 100%;
  margin: 40px auto;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  animation: slideInTV 0.6s ease-out;
}

#logonossa img{

    height: 400px;
    width: auto;
}


#Sertaneja{
  height: 17%;
}

header {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    position: fixed;
    top: 80px;
    width: 100%;
    background-color: #fff;
    z-index: 2000;
    height: 60px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    overflow: hidden;
}


header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at 2px 2px, #f0f0f0 1px, transparent 0);
    background-size: 24px 24px;
    opacity: 0.8;
    z-index: -1;
}

header::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 123, 0, 0.05) 0%, transparent 70%);
    z-index: -1;
}

#title {
    margin: 0;
    padding: 0;
    display: flex;
    height: 100%;
    align-items: center;
}

#title li {
    display: inline-block;
    height: 100%;
    margin: 0;
}

#title li a {
    display: flex;
    align-items: center;
    padding: 0 25px;
    height: 60px;
    text-decoration: none;
    font-weight: bold;
    color: #000;
    transition: all 0.3s;
    text-transform: uppercase;
    border-bottom: 3px solid transparent;
}

#title li a:hover {
    background-color: #ff7b00;
    color: #fff;
    border-bottom: 3px solid #000;
}

a{
  color: rgb(0, 0, 0);
}

a:hover{
  color: #ff9100;
  transition: 0.3s all;
}

:root{
  --color-neutral-0: #0e0c0c;
  --color-neutral-10: #171717;
  --color-neutral-30: #a8a29e;
  --color-neutral-40: #f5f5f5;
  --primary-color: #b8834a; 
    --secondary-color: #8b5a2b; 
    --bg-light: #ffffff; 
    --text-dark: #333333;
    --top-bar-bg: #b8834a;
      --primary-color1: #ea974b;
    --bg-dark: #121212;
    --text-white: #ffffff;
}

.footer {
    width: 100%;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 50%, #1a1a1a 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
    repeating-linear-gradient(45deg, transparent, transparent 35px, rgba(139, 90, 43, 0.03) 35px, rgba(139, 90, 43, 0.03) 70px);
    pointer-events: none;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px 40px 40px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.footer-logo {
    position: absolute;
    top: 20px;
    left: 40px;
    z-index: 10;
}

.footer-logo img {
    height: 170px;
    width: auto;
    filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.5));
}

.footer-section {
    position: relative;
    z-index: 5;
}

.footer-about h2 {
    font-size: 42px;
    font-weight: bold;
    margin-bottom: 25px;
    line-height: 1.2;
    color: #ffffff;
}

.highlight-brown {
  color: #ea974b;
}

.about-text {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 25px;
    color: #e0e0e0;
    max-width: 400px;
}

.frequency {
    display: flex;
    align-items: center;
    gap: 15px;
    background: #ea974b;
    padding: 15px 25px;
    border-radius: 50px;
    max-width: fit-content;
    box-shadow: 0 4px 15px rgba(184, 131, 74, 0.3);
    transition: all 0.3s ease;
}

.frequency:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(184, 131, 74, 0.5);
}

.frequency i {
    font-size: 24px;
    color: white;
}

.frequency span {
    font-size: 18px;
    font-weight: bold;
    color: white;
}
.footer-phone {
    display: flex;
    justify-content: center;
    align-items: center;
}

.phone-mockup {
    width: 280px;
    height: 500px;
    background: linear-gradient(135deg, #2d2d2d, #1a1a1a);
    border-radius: 40px;
    border: 8px solid #3d3d3d;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.phone-mockup::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 25px;
    background: #1a1a1a;
    border-radius: 0 0 20px 20px;
    z-index: 10;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, #2d2d2d 0%, #1a1a1a 100%);
    border-radius: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.2);
    font-size: 14px;
    overflow: hidden;
}

.phone-app-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 32px;
}
.footer-contacts h2 {
    font-size: 42px;
    font-weight: bold;
    margin-bottom: 30px;
  color: #ea974b;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.contact-item i {
     color: #ea974b;
    font-size: 24px;
    min-width: 30px;
    margin-top: 3px;
}

.contact-item span {
    font-size: 16px;
    line-height: 1.6;
    color: #e0e0e0;
}

.footer-bottom {
    background: rgba(0, 0, 0, 0.5);
    padding: 20px 0;
    margin-top: 40px;
    border-top: 2px solid rgba(184, 131, 74, 0.2);
}

.footer-bottom-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-copyright p {
    font-size: 14px;
    line-height: 1.6;
    color: #c0c0c0;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 45px;
    height: 45px;
    background: #ea974b;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(184, 131, 74, 0.3);
}

.social-icon:hover {
    background: white;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(184, 131, 74, 0.5);
}

.floating-highlight-container {
    position: fixed;
    top: 10px; 
    left: 60px; 
    z-index: 3001;
    pointer-events: auto;
}

.big-mic-hat {
    width: 25vw; 
    min-width: 200px;
    max-width: 400px; 
    height: auto;
    filter: drop-shadow(2px 5px 15px rgba(0,0,0,0.2));
}
@media (max-width: 1024px) {
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 60px;
    }

    .footer-logo {
        position: relative;
        top: 0;
        left: 0;
        margin-bottom: 40px;
        display: flex;
        justify-content: center;
    }

    .about-text {
        margin: 0 auto 25px;
    }

    .frequency {
        margin: 0 auto;
    }

    .footer-bottom-container {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .footer-container {
        padding: 40px 20px 20px;
    }

    .footer-about h2,
    .footer-contacts h2 {
        font-size: 32px;
    }

    .footer-logo img {
        height: 220px;
    }

    .phone-mockup {
        width: 220px;
        height: 400px;
    }

    .contact-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .about-text {
        font-size: 14px;
    }

    .frequency {
        padding: 12px 20px;
    }

    .frequency i {
        font-size: 20px;
    }

    .frequency span {
        font-size: 16px;
    }
}

.navbar {
    padding: 0;
    position: fixed; 
    top: 80px; 
    left: 0;
    width: 100%;
    z-index: 2500;
    padding-left: 22%;
    background: #ea974b;
    border-bottom: none;
    font-family: "Roboto Slab", serif;
    height: 60px;
    display: flex;
    align-items: center;
    box-sizing: border-box;
}

.navbar-container {
    width: 100%;
    max-width: 1200px; 
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: center; 
    align-items: center;
}

.nav-links {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    height: 60px; 
}

.nav-links li {
    display: flex;
    align-items: stretch;
}
.menu-close-li {
    display: none !important;
}

.nav-links a {
    color: #ffffff;
    text-decoration: none;
    font-weight: bold;
    font-size: 17px;
    padding: 0 30px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    text-transform: uppercase;
    height: 100%;
    position: relative;
}

.nav-links a:hover {
    background-color: var(--color-neutral-10); 
    color: #ffffff;
}
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: #ffffff;
    transform: scaleX(0);
    transition: all 0.3s ease;
}

.nav-links a:hover::after {
    transform: scaleX(1);
}
.hero-section {
    position: relative;
    padding: 60px 0;
    min-height: 720px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #ea974b;

    
}

.hero-container {
    max-width: 1100px;
    width: 90%;
    z-index: 10;
    box-sizing: border-box;
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%; 
    height: 0;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.9);
    animation: jkRotateEntrance 1.8s cubic-bezier(0.15, 0.85, 0.15, 1) forwards;
    transform-style: preserve-3d;
    border-radius: 30px;
    
}

.video-wrapper iframe,
.video-wrapper img#tv-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    
}
@keyframes floatV20 {
    0%, 100% { transform: translate(0, 0) rotate(0deg) scale(1); }
    33% { transform: translate(25px, -35px) rotate(10deg) scale(1.05); }
    66% { transform: translate(-15px, 15px) rotate(-8deg) scale(0.95); }
}
@keyframes jkRotateEntrance {
    0% {
        transform: rotateY(-70deg) rotateX(10deg) translateZ(-500px);
        opacity: 0;
    }
    100% {
        transform: rotateY(0deg) rotateX(0deg) translateZ(0);
        opacity: 1;
    }
}
.floating-shape {
  position: absolute;
    font-size: 40px;
    color: var(--primary-color);
    opacity: 0.2;
    z-index: 1;
    pointer-events: none;
    transition: transform 0.1s ease-out;
    display: flex;
    align-items: center;
    justify-content: center;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

.curve-decoration {
    position: absolute;
    width: 300px;
    height: 300px;
    border: 10px solid var(--primary-color);
    border-radius: 50%;
    opacity: 0.2;
    z-index: 1;
}

.top-right { top: -150px; right: -100px; border-color: var(--primary-color); }
.bottom-left { bottom: -150px; left: -100px; border-color: #ffffff; }

@media (max-width: 768px) {
    .top-status .program-info { display: none; }
    .hero-section { 
        padding: 20px 0 40px 0;
        min-height: auto;
        box-sizing: border-box;
    }
    
    .hero-container {
        width: 95%;
        margin-top: 20px;
        box-sizing: border-box;
    }
    
    .video-wrapper {
        border-radius: 15px;
    }
}

.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #6a00ff 0%, #3d0066 100%);
  color: white;
  border: none;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(106, 0, 255, 0.4);
  transition: all 0.3s ease;
  z-index: 999;
}

.back-to-top.show {
  display: flex;
  background-color: #ff9900;
}

.back-to-top:hover {
  background: linear-gradient(135deg, #8a2be2 0%, #4d0080 100%);
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(106, 0, 255, 0.6);
}

.back-to-top {
  background: linear-gradient(135deg, #ea974b 0%, #ea974b 100%);
  box-shadow: 0 4px 15px rgba(255, 123, 0, 0.4);
}

.back-to-top:hover {
  background: linear-gradient(135deg, #ff9900 0%, #ff9900 100%);
  box-shadow: 0 8px 25px rgba(255, 123, 0, 0.6);
}

.on-air-section { background-color: var(--color-neutral-10); 
    padding: 80px 0; 
    position: relative; 
    overflow: hidden; }

.on-air-container { max-width: 1200px; 
    margin: 0 auto; 
    padding: 0 40px; text-align: center; 
    position: relative;
     z-index: 5; 
     box-sizing: border-box; }

.on-air-header { margin-bottom: 50px; 
    display: flex; 
    justify-content: center; }

.yellow-triangle { background-color: #000; 
    width: 280px; 
    height: 120px; 
    clip-path: polygon(0% 0%, 85% 50%, 0% 100%);
     display: flex; align-items: center; 
     padding-left: 30px; }

.triangle-text { font-size: 65px; 
    font-weight: 900; 
    color: #fff; }

.programs-display { 
    display: flex; 
    justify-content: center; 
    align-items: center; 
    gap: 20px; 
    flex-wrap: nowrap; 
    max-width: 1300px;
    margin: 0 auto;
}
.program-card { 
    background: transparent; 
    border: 2px solid rgba(255, 255, 255, 0.6); 
    border-radius: 25px; 
    padding: 20px; 
    color: white; 
    text-align: left; 
    position: relative; 
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    flex: 1; 
    min-width: 300px;
}
.program-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}
.prev-program, .next-program { 
    opacity: 0.7; 
    transform: scale(0.9); 
}
.prev-program:hover, .next-program:hover { 
    transform: translateY(-15px) scale(0.92); 
    opacity: 1; 
}
.current-program { 
    flex: 1.2; 
    background: rgba(0, 0, 0, 0.05); 
    border: 2px solid white; 
    box-shadow: 0 15px 35px rgba(0,0,0,0.1); 
}
.current-program:hover { transform: translateY(-20px); }

@media (max-width: 1100px) {
    .programs-display {
        flex-wrap: wrap;
    }
    .program-card {
        min-width: 350px;
    }
}
.current-program:hover { transform: translateY(-20px); }
.card-time { background: white; color: #000; padding: 6px 18px; border-radius: 8px; font-weight: 900; font-size: 14px; position: absolute; top: -15px; right: 40px; }
.card-badges { display: flex; position: absolute; top: -15px; left: 40px; border-radius: 8px; overflow: hidden; }
.badge-live { background: #000; color: #fff; padding: 6px 15px; font-weight: 900; font-size: 12px; display: flex; align-items: center; gap: 5px; }
.badge-time { background: white; color: #000; padding: 6px 15px; font-weight: 900; font-size: 12px; }
.card-content { display: flex; gap: 25px; align-items: center; margin-top: 10px; }
.card-img-wrapper { width: 100px; height: 100px; border-radius: 20px; overflow: hidden; background: #fff; border: 3px solid white; }
.card-locutor-img { width: 100%; height: 100%; object-fit: cover; }
.card-locutor-name { font-size: 22px; font-weight: 900; }
.card-program-name { font-size: 16px; font-weight: bold; opacity: 0.9; }
.card-play-btn { 
    width: 45px; 
    height: 45px; 
    background: #ea974b; 
    color: white; 
    border: 2px solid white; 
    border-radius: 50%; 
    cursor: pointer; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    margin-top: 10px; 
    opacity: 0;
    visibility: hidden;
    transition: 0.3s ease;
}
.current-program:hover .card-play-btn {
    opacity: 1;
    visibility: visible;
}

.badge-live .dot{
  color: #ff0000;
  font-size: 16px;
  animation: blink 1s infinite;
}

.on-air-footer { margin-top: 50px; }
.btn-full-schedule { display: inline-block; padding: 14px 40px; border: 2px solid white; border-radius: 35px; color: white; text-decoration: none; font-weight: 900; transition: 0.3s; }
.btn-full-schedule:hover { background: white; color: var(--jk-orange); }

.bottom-decoration { position: absolute; bottom: -20px; right: -20px; display: flex; align-items: flex-end; gap: 5px; }
.pixel-block { background-color: #000; width: 40px; height: 40px; }
.pixel-block.large { width: 80px; height: 80px; }
.pixel-block.medium { width: 60px; height: 60px; }
.pixel-block.green { background-color: #00ff00; }
.pixel-block.yellow { background-color: #ffff00; }
.prizes-section 
{ background-color: var(--color-neutral-10);
color: white;
padding: 210px 0; 
position: relative; 
overflow: hidden; 
clip-path: polygon(
  0 0,
  100% 0,

  100% 96%,
  80% 94.5%,
  60% 93%,
  40% 91.5%,
  20% 90%,
  0 88.5%
);

}
.prizes-section span{
position: absolute;
top: 40px; 
left: 48%;
transform: translateX(-50%);
z-index: 10;  
color: white;
font-size: 60px;
}
.top-left-decoration { position: absolute; top: -20px; left: -20px; display: flex; align-items: flex-start; gap: 5px; z-index: 10;}
.pixel-block.black { background-color: #000; }
.plus-sign { font-size: 40px; font-weight: 900; color: #000; margin-left: 10px; }

.prizes-container {   width: 100%;
    max-width: 100%; margin: 0 auto; padding: 0 40px; text-align: center; box-sizing: border-box; }
.yellow-triangle-prizes { background-color: var(--jk-yellow, #ffff00); width: 220px; height: 100px; clip-path: polygon(0% 0%, 100% 50%, 0% 100%); display: flex; align-items: center; padding-left: 30px; margin: 0 auto 50px; }
.triangle-text-prizes { font-size: 36px; font-weight: 900; color: #000; }

.carousel-main-wrapper { position: relative; max-width: 100%; margin: 0 auto; }
.carousel-viewport { overflow: hidden; border-radius: 30px; box-shadow: 0 20px 50px rgba(0,0,0,0.15);max-width: 100%; }
.carousel-track { display: flex; transition: transform 0.5s ease-in-out; }


.carousel-nav-arrows { 
    position: absolute; 
    top: 50%; 
    left: 0; 
    width: 100%; 
    transform: translateY(-50%); 
    display: flex; 
    justify-content: space-between; 
    padding: 0 10px; 
    pointer-events: none; 
    z-index: 10; 
    box-sizing: border-box; 
}
.nav-arrow { 
    width: 60px; 
    height: 60px; 
    background: transparent !important; 
    border: none !important; 
    color: white !important; 
    font-size: 60px !important; 
    font-weight: 100 !important;
    cursor: pointer; 
    pointer-events: auto; 
    transition: all 0.3s ease; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    margin: 0; 
    opacity: 0.7;
    border-radius: 0 !important;
    box-shadow: none !important;
}
#prev-prize { margin-left: -10px;}
#next-prize { margin-right: 10px; }
.nav-arrow:hover { 
    color: #ea974b !important; 
    transform: scale(1.1); 
    opacity: 1;
}

.prizes-actions { margin-top: 50px; display: flex; justify-content: center; gap: 20px; }
.btn-participate { background-color: black; color: white; border: none; padding: 15px 40px; border-radius: 15px; font-weight: 900; font-size: 18px; cursor: pointer; transition: 0.3s; }
.btn-participate:hover { transform: translateY(-5px); box-shadow: 0 10px 20px rgba(255, 166, 0, 0.3); }
.btn-rules { background-color: white; color: #000; border: 2px solid #000000; padding: 15px 40px; border-radius: 15px; font-weight: 900; font-size: 18px; cursor: pointer; transition: 0.3s; }
.btn-rules:hover { background: #ffffff; color: rgb(0, 0, 0); }

#sub, 
.floating-highlight-container, 
.big-mic-hat, 
.navbar,
.locutor-thumb-new,
.play-circle-red {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

#sub.scrolled {
    height: 80px; 
}
.floating-highlight-container.scrolled {
    top: 5px;
    left: 60px; 
}
.big-mic-hat.scrolled {
    width: 20vw; 
    min-width: 160px;
    max-width: 330px;
}
.navbar.scrolled {
    top: 80px; 
}
#sub.scrolled .locutor-thumb-new {
    width: 60px;
    height: 60px;
}

#sub.scrolled .play-circle-red {
    width: 45px;
    height: 45px;
    font-size: 20px;
}

#sub.scrolled .program-name-new {
    font-size: 18px;
}

#sub.scrolled .status-text-new {
    font-size: 14px;
}

.news-promo-section {
    background-color: #ea974b; 
    padding: 60px 0;
    color: #fff;
 
}

.news-promo-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr; 
    gap: 50px;
    box-sizing: border-box;
}

.news-header-styled {
    margin-bottom: 40px;
}

.news-title-badge {
    font-family: 'Roboto Slab', serif; 
    color: white;
    padding: 10px 10px;
    font-weight: 900;
    font-size: 70px; 
    display: inline-block;
    position: relative;
}


.news-column {
    display: flex;
    flex-direction: column;
}

.news-list-jk {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.news-item-jk {
    display: flex;
    align-items: center;
    gap: 20px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background-color: transparent; /* Sem fundo preto */
    border-radius: 15px; /* Bordas arredondadas */
    padding: 15px 0; /* Espaçamento interno */
    box-shadow: none; /* Sem sombra */
    border-bottom: 1px solid rgba(234, 151, 75, 0.2); 
}

.news-item-jk:hover {
    transform: translateY(-3px); 
    border-bottom-color: rgba(234, 151, 75, 0.5); 
}

.news-thumb-jk {
    width: 180px;
    height: 110px;
    flex-shrink: 0;
    border-radius: 10px; 
    overflow: hidden;
    border: 2px solid var(--primary-color1); 
}

.news-thumb-jk img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-info-jk {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.news-tag-jk {
    color: #000;
    padding: 6px 15px;
    font-size: 22px;
    font-weight: 900;
    border-radius: 10px; 
    width: fit-content;
    
}

.news-headline-jk {
    font-family: 'Roboto Slab', serif; 
    font-size: 21px; 
    font-weight: bold;
    line-height: 1.3;
    color: #fff;
    transition: color 0.3s;
}

.news-item-jk:hover .news-headline-jk {
    color: #ffffff;
}

.featured-column-right {
    display: block !important;
    background-color: transparent !important;
    border-radius: 20px;
    overflow: hidden;
    min-height: 500px;
    width: 100%;
    height: auto;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    border: 1px solid #333;
    transition: transform 0.3s ease;
    position: relative;
    padding: 0 !important;
    margin: 0 !important;
}

.featured-column-right:hover {
    transform: translateY(-5px);
    border-color: #ff6600;
}

.featured-column-right * {
    display: none !important;
    visibility: hidden !important;
}

.news-card-featured-large {
    background-color: #111;
    border-radius: 20px;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid #333;
    transition: transform 0.3s ease;
}

.news-card-featured-large:hover {
    transform: translateY(-5px);
    border-color: #ff6600;
}

.featured-img-wrapper {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.featured-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.featured-tag-large {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: #ff6600;
    color: #000;
    padding: 8px 20px;
    font-weight: 900;
    border-radius: 5px;
    font-size: 14px;
}

.featured-content-large {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.featured-content-large h3 {
    font-size: 32px;
    color: #ff6600;
    margin-bottom: 20px;
    line-height: 1.2;
}

.featured-content-large p {
    font-size: 18px;
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 30px;
}

.btn-read-more {
    background-color: #ff6600;
    color: #000;
    border: none;
    padding: 15px 30px;
    font-weight: bold;
    border-radius: 5px;
    cursor: pointer;
    width: fit-content;
    transition: background 0.3s;
}

.btn-read-more:hover {
    background-color: #ff8533;
}

.news-footer-jk {
    margin-top: 40px;
}

.btn-ver-mais-jk {
    background-color: var(--primary-color1); 
    border: none; 
    color: #000; 
    padding: 15px 40px; 
    font-weight: 900; 
    font-size: 18px; 
    border-radius: 50px; 
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3); 
}

.btn-ver-mais-jk:hover {
    background-color: #fff; 
    color: var(--primary-color1);
    transform: translateY(-3px); 
    box-shadow: 0 8px 20px rgba(0,0,0,0.4);
}
.btn-ver-mais-jk a{
   text-decoration: none;
   color: inherit; 

}
.btn-ver-mais-jk:hover {
    background-color: var(--color-neutral-10);

}
@media (max-width: 1024px) {
    .news-promo-container {
        grid-template-columns: 1fr;
    }
    .promo-column {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .news-title-badge {
        font-size: 40px; 
    }
    .news-item-jk {
        flex-direction: column;
        align-items: flex-start;
        padding: 10px;
    }
    .news-thumb-jk {
        width: 100%;
        height: 180px;
        border-radius: 10px;
    }
    .news-headline-jk {
        font-size: 18px;
    }
    .promo-column {
        grid-template-columns: 1fr;
    }
    .featured-column-right {
        min-height: 350px;
    }
    
    .news-footer-jk {
        margin-top: 20px;
        padding: 0 20px;
    }
    .featured-carousel-main {
        height: 280px;
    }
    
    .featured-carousel-main::before {
        height: 110px;
    }
    
    .featured-carousel-content {
        bottom: 50px;
        padding: 15px 20px;
        max-height: 120px;
    }
    
    .featured-carousel-title {
        font-size: 16px;
        line-height: 1.2;
    }
    
    .featured-carousel-dots {
        bottom: 12px;
        padding: 8px 15px;
    }
    
    .featured-carousel-dot {
        width: 10px;
        height: 10px;
    }
    .news-column {
        display: flex;
        flex-direction: column;
    }
    
    .news-footer-jk {
        order: 999;
        margin-top: 40px;
        padding: 0 20px;
    }
    
    .featured-carousel-slide {
        flex-direction: column;
        padding: 20px;
        gap: 20px;
    }
    
    .featured-slide-image {
        width: 100%;
        height: 250px;
    }
    
    .featured-slide-title {
        font-size: 24px;
    }
    
    .featured-slide-excerpt {
        font-size: 14px;
    }
    
    .carousel-nav-btn {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
    
    .carousel-nav-btn.prev {
        left: 10px;
    }
    
    .carousel-nav-btn.next {
        right: 10px;
    }
    .prizes-section {
       
        padding: 280px 0 190px 0 !important;
        box-sizing: border-box !important;
        width: 100vw !important;
        position: relative !important;
        left: 50% !important;
        right: 50% !important;
        margin-left: -50vw !important;
        margin-right: -50vw !important;
    }

    .prizes-section span {
        position: static !important;
        transform: none !important;
        display: block !important;
        margin-bottom: 30px !important;
        font-size: 48px !important;
    }

    .prizes-header {
        margin-bottom: 30px !important; 
    }

    .prizes-container {
        max-width: 95% !important; 
        margin: 0 auto !important;
        padding: 0 5px !important;
        box-sizing: border-box !important;
        width: 100% !important;
    }

    .carousel-main-wrapper {
        max-width: 100% !important;
        width: 100% !important;
    }

    .carousel-slide {
        min-width: 100% !important;
    }

    .carousel-slide img {
        width: 100% !important;
        height: 450px !important; 
        max-width: 100% !important;
        object-fit: cover;
    }
  
 .prizes-actions {
        margin-top: 60px !important; 
        padding: 0 10px !important;
        box-sizing: border-box !important;
    }

    .btn-participate,
    .btn-rules {
        padding: 12px 30px !important;
        font-size: 16px !important;
        width: 100% !important;
    }
    .on-air-section {
        clip-path: none !important;
        padding: 60px 0 60px 0 !important;
        box-sizing: border-box !important;
        width: 100vw !important;
        position: relative !important;
        left: 50% !important;
        right: 50% !important;
        margin-left: -50vw !important;
        margin-right: -50vw !important;
    }

    .on-air-container {
        max-width: 95% !important;
        margin: 0 auto !important;
        padding: 0 10px !important;
        box-sizing: border-box !important;
        width: 100% !important;
    }

    .pesquisa-section {
        clip-path: none !important;
        padding: 60px 0 60px 0 !important;
        box-sizing: border-box !important;
        width: 100vw !important;
        position: relative !important;
        left: 50% !important;
        right: 50% !important;
        margin-left: -50vw !important;
        margin-right: -50vw !important;
        overflow: visible !important;
        box-sizing: border-box !important;
    }

    .pesquisa-text h5 {
        font-size: 36px !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
    }

    .pesquisa-container {
        padding: 40px 15px !important;
        box-sizing: border-box !important;
    }

    .pesquisa-content {
        gap: 30px !important;
    }

    .news-promo-section {
        margin-top: 0 !important;
        box-sizing: border-box !important;
    }

    .news-promo-container {
        padding: 0 15px !important;
        box-sizing: border-box !important;
    }

    .on-air-container {
        padding: 0 15px !important;
        box-sizing: border-box !important;
    }

    .prizes-container {
        padding: 0 15px !important;
        box-sizing: border-box !important;
    }

    .prizes-actions {
        flex-direction: column !important;
        gap: 15px !important;
        padding: 0 15px !important;
        box-sizing: border-box !important;
    }

    .btn-participate,
    .btn-rules {
        width: 100% !important;
        text-align: center !important;
    }
}
.city-selector-new{
    background-color: #000;
}


.parada-section {
    background-color: #ff7b00; 
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.parada-header {
    width: 100%;
    max-width: 1200px;
    margin-bottom: 80px;
    display: flex;
    justify-content: center;
    z-index: 10;
}



.yellow-triangle-parada h2 {
    color: var(--ns-white);
    font-size: 48px;
    font-weight: 900;
    margin: 0;
    letter-spacing: 2px;
}
.parada-mosaico {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: repeat(3, 150px);
    gap: 40px; 
    width: 95%;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
}

.parada-item {
    position: relative;
    border-radius: 15px;
    overflow: visible;
    cursor: pointer;
    transition: z-index 0.3s;
    z-index: 1;
    width: 100%;
    height: 100%;
}

.parada-item img {
    width: 100%;
    height: 100%;
    object-fit: cover; 
    object-position: center;
  
    border: 4px solid var(--ns-white); 
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    display: block;
}

.rank-number {
    position: absolute;
    top: -15px;
    left: -15px;
    background: var(--ns-orange);
    color: #fff;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-weight: 900;
    font-size: 18px;
    z-index: 5;
    border: 3px solid var(--ns-white);
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}
.parada-item:hover {
    z-index: 100;
}

.parada-item:hover img {
    transform: scale(1.3) rotate(2deg);
    border-color: var(--ns-orange);
    box-shadow: 0 25px 50px rgba(255, 123, 0, 0.3);
}

@media (max-width: 1100px) {
    .parada-mosaico {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
        gap: 30px;
    }
    .parada-item {
        grid-column: span 1 !important;
        grid-row: auto !important;
        height: 220px;
    }
}

.pesquisa-section {
    background-color: #ea974b; 
    padding: 10px 0; 
    overflow: hidden;
    position: relative; 

    
}

.pesquisa-container {
    max-width: 1800px;
    margin: 0 auto;
    padding: 0 20px;
    padding-top: 80px;     
  padding-bottom: 180px; 
}

.pesquisa-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20%; 
    flex-wrap: wrap;
}

.pesquisa-image {
  position: relative;
  padding-left: 61%;
  flex: 1;
  max-width: 550px; 
  z-index: 3;
  position: absolute;
  bottom: 0;            
  left: 50%;
  transform: translateX(-50%);
  max-width: 100%;
  height: auto;

    
}

.pesquisa-image img {
  
    width: 800px;
    height: auto;
    display: block;
    filter: drop-shadow(0px 0px 30px rgba(255, 123, 0, 0.2)); 
 
    
}

.pesquisa-text {
    flex: 1;
    min-width: 200px;
    color: #ffffff; 
    text-align: left; 
    z-index: 10;
    position: relative;
}

.pesquisa-text h5 {
    font-size: 80px; 
    font-weight: 900;
    margin-bottom: 20px;
    font-family: 'Roboto Slab', serif;
    color: white;
    text-transform: uppercase;
}

.pesquisa-highlight {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 15px;
    color: black;
}

.pesquisa-description {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 40px;
    color: #cccccc;
}

.btn-comecar {
    display: inline-block;
    background-color: var(--color-neutral-10); 
    color: white;
    padding: 20px 80px; 
    border-radius: 50px; 
    font-weight: 900;
    font-size: 22px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(255, 123, 0, 0.3);
    text-transform: uppercase;
}

.btn-comecar:hover {
    transform: translateY(-5px);
    background-color: #ffffff; 
    color: #ea974b; 
    box-shadow: 0 15px 30px rgba(255, 255, 255, 0.2);
}

@media (max-width: 768px) {
    .pesquisa-text h2 {
        font-size: 48px;
    }
    .pesquisa-content {
        flex-direction: column;
        text-align: center;
    }

    .btn-comecar {
        font-size: 18px;
    }
}

.bg-floating {
    position: absolute; 
    z-index: 1; 
    opacity: 0.3;
    pointer-events: none;
    animation: float 6s ease-in-out infinite;
}

.bg-floating img {
    width: 500px;
    height: auto;
}

.bg-left-1 {
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.bg-left-2 {
    bottom: 10%;
    left: 8%;
    animation-delay: 2s;
}

.bg-middle {
    top: 35%;
    left: 40%;
    animation-delay: 4s;
}

@keyframes float {
    0% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
    100% { transform: translateY(0px) rotate(0deg); }
}



@media (max-width: 768px) {
    .pesquisa-text h2 {
        font-size: 36px !important;
    }
    .pesquisa-text h5 {
        font-size: 32px !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
    }
    .pesquisa-content {
        flex-direction: column;
        text-align: center;
        padding: 0 10px !important;
    }
    .bg-floating img {
        width: 150px !important;
    }
}
.video-modal {
    display: none; 
    position: fixed;
    z-index: 9999; 
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9); 
    backdrop-filter: blur(5px);
}

.modal-content {
    position: relative;
    margin: auto;
    top: 50%;
    transform: translateY(-50%);
    width: 80%;
    max-width: 900px;
    background-color: #000;
    border: 3px solid #ff7b00; 
    border-radius: 15px;
    box-shadow: 0 0 30px rgba(255, 123, 0, 0.5);
    overflow: hidden;
}

.close-modal {
    position: absolute;
    top: 10px;
    right: 20px;
    color: #ff7b00;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10;
    transition: 0.3s;
}

.close-modal:hover {
    color: #fff;
    transform: scale(1.1);
}

.video-container {
    position: relative;
    padding-bottom: 56.25%; 
    height: 0;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.video-trigger {
    cursor: pointer;
}

.cookie-consent {
    position: fixed;
    bottom: -100%;
    left: 0;
    width: 100%;
    background-color: #000000;
    color: #ffffff;
    padding: 20px 0;
    z-index: 10000;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.5);
    border-top: 3px solid #ea974b;
    transition: bottom 0.5s ease-in-out;
}

.cookie-consent.show {
    bottom: 0;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.cookie-content p {
    font-size: 14px;
    line-height: 1.5;
    margin: 0;
}

.cookie-content a {
    color: #ea974b;
    text-decoration: underline;
}

.btn-accept-cookies {
    background-color: #ea974b;
    color: #000000;
    border: none;
    padding: 10px 30px;
    font-weight: 900;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s;
    white-space: nowrap;
}

.btn-accept-cookies:hover {
    background-color: #ffffff;
    color: #ff7b00;
}

@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    .btn-accept-cookies {
        width: 100%;
    }
}
.hero-floating-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
    z-index: 5; 
}

.hero-floating-img {
    position: absolute;
    opacity: 0.6;
    animation: hero-float 20s infinite ease-in-out;
}

.hero-floating-img img {
    width: 100%;
    height: auto;
    display: block;
}

.hero-size-sm { width: 180px; }
.hero-size-md { width: 500px; }
.hero-size-lg { width: 440px; }
.hero-size-xl { width: 900px; }
.hero-size-giant { width: 100px; } 

.h-img-1 { top: 10%; left: 5%; animation-delay: 0s; }
.h-img-2 { top: 65%; left: 10%; animation-delay: -5s; }
.h-img-3 { top: 27%; right: 9%; animation-delay: -10s; }
.h-img-4 { top: 60%; right: 10%; animation-delay: -15s;}
.h-img-5 { top: 20%; left: 25%; animation-delay: -2s; opacity: 0.4; }
.h-img-6 { top: 1%; left: 30%; animation-delay: -8s; opacity: 0.3; }
.h-img-7 { top: 1%; right: 18%; animation-delay: -3s; opacity: 0.5; }
.h-img-8 { top: 50%; left: 25%; animation-delay: -12s; opacity: 0.4; }
.h-img-9 { top: 25%; left: 5%; animation-delay: -12s; }
.h-img-right-giant { top: 15%; right: -50px; animation-delay: -1s; opacity: 0.7; z-index: 6; } /* A grandona no lado direito */


@keyframes hero-float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(30px, -50px) rotate(5deg); }
    66% { transform: translate(-20px, 30px) rotate(-5deg); }
}

#tudop {
    background-color: var(--color-neutral-10);
    color: white;
    padding: 110px 0; 
    position: relative; 
    overflow: hidden; 
    clip-path: polygon(
          0% 100%, 
        100% 100%, 
        100% 25%, 
        92% 25%, 92% 15%, 
        85% 15%, 85% 22%, 
        75% 22%, 75% 12%, 
        60% 12%, 60% 18%, 
        50% 18%, 50% 5%, 
        
        42% 5%, 42% 20%, 
        35% 20%, 35% 10%, 
        
        25% 10%, 25% 22%, 
        
        18% 22%, 18% 15%, 
        10% 15%, 10% 28%, 
        
        10% 15%, 10% 28%, 
        10% 15%, 10% 28%, 
        
        5% 28%, 5% 18%, 
        0% 18%
    );
}

.conta {
    max-width: 1400px;
    margin: 0 auto;
    overflow-x: hidden; 
    padding: 100px 0;

}
@media (max-width: 768px) {
    .conta{
            padding: 10px 0;
    }
}

.header {
    text-align: center;
    margin-bottom: 60px;
}

.header h1 {
    font-size: 80px; 
    font-weight: 900;
    margin-bottom: 20px;
    font-family: 'Roboto Slab', serif;
    color: white;
    text-transform: uppercase;
}
.carousel-section {
    margin-top: 40px;
}
 .hero-floating-img hero-size-md h-img-10  { top: 30%; right: 70%; 
position: absolute;
  right: 0;
transform: translateY(-50%);}
   


.carousel-section h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 60px;
    color: black;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.carousel-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
}

.carousel-wrapper {
    width: 100%;
    max-width: 1200px;
    overflow: visible;
    display: flex;
    justify-content: flex-start; 
}

.carousel {
    display: flex;
    gap: 30px;
    width: max-content;
    transition: none; }

.carousel-item {
    flex: 0 0 200px;
    height: 250px;
    position: relative;
    z-index: 1;
    transition: z-index 0.3s;
}

.carousel-item:hover {
    z-index: 100; 
}

.card {
    position: relative;
    display: block;
    text-decoration: none;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    width: 100%;
    height: 100%;
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.card:hover {
    transform: scale(1.4); 
    box-shadow: 0 15px 40px rgba(0,0,0,0.6), 0 0 20px rgba(255, 140, 0, 0.4);
    z-index: 100;
}

.card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.card:hover img {
    transform: scale(1.05); 
}

.card-number {
    position: absolute;
    top: 15px;
    left: 15px;
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #ea974b 0%, #ea974b 100%);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 20px;
    z-index: 10;
    transition: opacity 0.3s ease;
}

.card:hover .card-number {
    opacity: 0; 
}
@media (max-width: 1024px) {
    .carousel-container {
        gap: 30px;
    }

    .carousel-wrapper {
        width: 600px;
        overflow: visible;
    }

    .carousel-item {
        flex: 0 0 180px;
        height: 220px;
    }

    .btn-prev,
    .btn-next {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }
}
@media (max-width: 951px) {
    .carousel-container {
        gap: 15px;
        flex-direction: column;
        align-items: center;
        padding: 0 10px;
    }

    .carousel-wrapper {
        width: 100%;
        max-width: 100%;
        overflow: visible;
        display: block;
    }

    .carousel {
        display: flex;
        flex-direction: column;
        gap: 20px;
        align-items: center;
        width: 100%;
        max-width: 100%;
        transform: none !important;
    }

    .carousel-item {
        flex: 0 0 auto;
        width: 100%;
        max-width: 320px;
        height: 200px;
    }

    .btn-prev,
    .btn-next {
        display: none !important; 
    }

    .card:hover {
        transform: scale(1.05);
    }
    .titulo-wrapper .x-img {
        width: 220px; 
        margin-top: -60px;
        padding-right: 10px;
        z-index: 0; 
    }
}

@media (max-width: 768px) {
    .header h1 {
        font-size: 32px;
    }

    .carousel-section h2 {
        font-size: 24px;
        margin-bottom: 40px;
    }
}

@media (max-width: 480px) {
    body {
        display: flex;
        flex-direction: column;
        min-height: 100vh;
    }

    .header h1 {
        font-size: 24px;
    }

    .carousel-section h2 {
        font-size: 20px;
        margin-bottom: 30px;
    }

    .carousel-container {
        gap: 15px;
        flex-direction: column;
        align-items: center;
        padding: 0 10px;
    }

    .carousel-wrapper {
        width: 100%;
        max-width: 100%;
        overflow: visible;
        display: block;
    }

    .carousel {
        display: flex;
        flex-direction: column;
        gap: 20px;
        align-items: center;
        width: 100%;
        max-width: 100%;
        transform: none !important;
    }

    .carousel-item {
        flex: 0 0 auto;
        width: 100%;
        max-width: 320px;
        height: 200px;
    }

    .btn-prev,
    .btn-next {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }

    .card-number {
        width: 30px;
        height: 30px;
        font-size: 14px;
        top: 8px;
        left: 8px;
    }
    
    .card:hover {
        transform: scale(1.05);
    }
}


#banner img{
    width: 100%;
    z-index: 2;
    position: relative;
    
}

@media (max-width: 768px) {

    #social {
        display: none !important;
    }
    #sub {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        width: 100% !important;
        height: 80px !important;
        z-index: 9999 !important;
        background: #171717 !important;
        padding: 0 15px !important;
        display: flex !important;
        flex-direction: row !important;
        justify-content: space-between !important;
        align-items: center !important;
        box-shadow: none !important;
        margin: 0 !important;
        border: none !important;
        box-sizing: border-box !important;
    }
    .top-player {
        padding: 10px !important;
        margin: 0 !important;
        width: 100% !important;
        height: 100% !important;
        background: transparent !important;
        display: flex !important;
        flex-direction: row !important;
        justify-content: space-between !important;
        align-items: center !important;
        gap: 10px !important;
    }

    .play-circle-red {
        width: 45px !important;
        height: 45px !important;
        font-size: 18px !important;
    }

    .player-info-new {
        flex: 1;
        min-width: 0 !important;
    }

    .program-name-new {
        font-size: 14px !important;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .program-time-new, .status-text-new {
        font-size: 10px !important;
    }

   
    .city-selector-new {
        display: flex !important;
        background: rgba(255, 255, 255, 0.1) !important;
        padding: 5px 10px !important;
        border-radius: 5px !important;
        max-width: 120px !important;
    }

    .city-select-new {
        font-size: 11px !important;
        width: 100% !important;
    }
    #locutor-box-new {
        display: none !important;
    }
    body {
        padding-top: 130px !important; 
    }
    .navbar {
        position: fixed !important;
        top: 80px !important;
        left: 0 !important;
        width: 100% !important;
        height: 50px !important;
        z-index: 9998 !important;
        background: #ea974b !important;
        display: flex !important;
        align-items: center !important;
        margin: 0 !important;
        padding: 0 !important;
        border: none !important;
        box-shadow: 0 2px 10px rgba(0,0,0,0.3) !important;
        padding-left: 0 !important;
        box-sizing: border-box !important;
    }

    .navbar-container {
        padding: 0 15px !important;
        width: 100% !important;
        height: 100% !important;
        display: flex !important;
        justify-content: flex-end !important;
        align-items: center !important;
        box-sizing: border-box !important;
    }
    .menu-toggle {
        display: block !important;
        background: none !important;
        border: none !important;
        color: #000 !important;
        font-size: 28px !important;
        cursor: pointer !important;
        z-index: 10001 !important;
        padding: 10px !important;
        position: static !important;
       
    }
    .nav-links {
        position: fixed !important;
        top: 0 !important;
        right: -100% !important;
        left: auto !important;
        width: 75% !important;
        max-width: 300px !important;
        height: 100vh !important;
        background: #ea974b !important;
        flex-direction: column !important;
        padding: 110px 30px 40px !important;
        z-index: 10002 !important;
        overflow-y: auto !important;
        justify-content: flex-start !important;
        align-items: flex-start !important;
        margin: 0 !important;
        gap: 20px;
        box-shadow: -5px 0 15px rgba(0,0,0,0.5) !important;
        display: flex !important;
        transition: right 0.3s ease-in-out !important;
    }

   
    .nav-links.active {
        right: 0 !important;
    }
    .menu-close-li {
        display: block !important;
        width: 100% !important;
        text-align: right !important;
        margin-bottom: 20px !important;
    }

    .menu-close-btn {
        display: block !important;
        background: none !important;
        border: none !important;
        color: #fff !important;
        font-size: 32px !important;
        cursor: pointer !important;
        padding: 10px 0 !important;
    }

    .menu-toggle.active {
        display: none !important;
    }
    .nav-links::before {
        content: '' !important;
        display: none !important;
    }

 
    .floating-highlight-container {
        position: relative !important;
        z-index: 10 !important;
        width: 100% !important;
        max-width: 100vw !important;
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        padding: 30px 0 15px 0 !important;
        left: auto !important;
        top: auto !important;
    }

    .big-mic-hat {
        width: 250px !important;
        height: auto !important;
        margin: 0 auto !important;
        display: block !important;
        filter: drop-shadow(2px 5px 15px rgba(0,0,0,0.2)) !important;
    }
    .hero-floating-container {
        z-index: 2 !important;
        overflow: visible !important;
    }

    .hero-floating-img {
        display: none !important;
    }
    .h-img-1 {
        display: block !important;
        width: 250px !important;
        opacity: 0.5 !important;
        top: 5% !important;
        left: -30px !important;
    }

    .h-img-4 {
        display: block !important;
        width: 350px !important;
        opacity: 0.35 !important;
        top: -160px !important;
        left: 10% !important;
        z-index: 1;
    }

    .h-img-7 {
        display: block !important;
        width: 280px !important;
        opacity: 0.4 !important;
        top: 60% !important;
        right: -20px !important;
        left: auto !important;
    }

    .nav-links li {
        width: 100% !important;
        text-align: left !important;
        margin: 0 !important;
        padding: 0 !important;
        list-style: none !important;
        border-bottom: 1px solid rgba(255,255,255,0.1) !important;
    }

    .nav-links li a {
        color: #fff !important;
        font-size: 18px !important;
        font-weight: bold !important;
        display: block !important;
        padding: 18px 0 !important;
        text-transform: uppercase !important;
        text-decoration: none !important;
        transition: all 0.3s ease !important;
    }

    .nav-links li a:hover {
        color: #fff !important;
        padding-left: 0 !important;
        background: none !important;
    }

   
    .hero-section {
        padding-top: 10px !important;
    }
}


.menu-toggle {
    display: none;
}

#splash {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #ea974b;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 100000; 
}

#splash img {
  width: 350px;
}
.prizes-section {
    background-color: var(--primary-color1); 
    color: var(--text-white);
    padding: 340px 0 240px;
    position: relative;
    overflow: hidden;
    min-height: auto;
}

.titulo-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px; 
}

.titulo-wrapper .x-img {
    position: absolute;
    width: 600px;
    z-index: 10; 
    padding-right: 12%;
    margin-top: -160px;
    pointer-events: none; 
}

.titulo-wrapper .x1-img {
    position: absolute;
    width: 510px;
    z-index: -1;
    padding-right: 28%;
  
}
.titulo-wrapper .x2-img {
    position: absolute;
    width: 510px;
    z-index: -2;
    padding-right: 28%;
  
}



.triangle-text-prizes {
    position: relative;
    z-index: 2;
    font-size: 70px;
    font-weight: bold;
}

.skyline-top {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #1a1a1a; /* Parte preta */
    z-index: 1;
    clip-path: polygon(
          0% 100%, 
        100% 100%, 
        100% 25%, 
        92% 25%, 92% 15%, 
        85% 15%, 85% 22%, 
        75% 22%, 75% 12%, 
        60% 12%, 60% 18%, 
        50% 18%, 50% 5%, 
        
        42% 5%, 42% 20%, 
        35% 20%, 35% 10%, 
        
        25% 10%, 25% 22%, 
        
        18% 22%, 18% 15%, 
        10% 15%, 10% 28%, 
        
        10% 15%, 10% 28%, 
        10% 15%, 10% 28%, 
        
        5% 28%, 5% 18%, 
        0% 18%
    );
}

.skyline-decoration-right {
    position: absolute;
    top: 0;
    right: 0;
    width: 150px;
    height: 150px;
    background-color: #ea974b;
    z-index: 0;
    clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
}
.decoration-cross {
    position: absolute;
    background-color: var(--primary-color1);
    z-index: 2;
}

.cross-large {
    top: 20px;
    left: 10%;
    width: 60px;
    height: 60px;
    clip-path: polygon(35% 0%, 65% 0%, 65% 35%, 100% 35%, 100% 65%, 65% 65%, 65% 100%, 35% 100%, 35% 65%, 0% 65%, 0% 35%, 35% 35%);
    opacity: 0.7;
}

.cross-small {
    top: 40px;
    left: 25%;
    width: 30px;
    height: 30px;
    background-color: #ffcc33;
    clip-path: polygon(35% 0%, 65% 0%, 65% 35%, 100% 35%, 100% 65%, 65% 65%, 65% 100%, 35% 100%, 35% 65%, 0% 65%, 0% 35%, 35% 35%);
    box-shadow: 0 0 15px rgba(255, 204, 51, 0.6);
}

.prizes-container {
    max-width: 1800px; 
    margin: 0 auto;
    padding: 150px 20px 0; 
    text-align: center;
    position: relative;
    z-index: 5;
}

.prizes-header {
    margin-bottom: 60px; 
}

.triangle-text-prizes {
    font-size: 64px;
    font-weight: 900;
    color: var(--text-white);
    text-transform: uppercase;
    letter-spacing: 4px;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.8);
}
.carousel-main-wrapper {
    position: relative;
    margin: 0 auto;
    width: 100%;
}

.carousel-viewport {
    overflow: hidden;
    border-radius: 30px;
    border: none;
    width: 100%;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
}

.carousel-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.45, 0, 0.55, 1);
}

.carousel-slide {
    min-width: 100%;
}

.carousel-slide img {
    width: 100%;
    height: 550px; 
    display: block;
    object-fit: cover; 
    object-position: center; 
}
.carousel-nav-arrows {
    position: absolute;
    top: 50%;
    left: 20px;
    right: 20px;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    pointer-events: none;
    z-index: 10;
}

.video-modal {
  display: none; 
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.9);
  align-items: center;
  justify-content: center;
}

.video-modal.active {
  display: flex; 
}

.video-content {
  position: relative;
  width: 80%;
  max-width: 900px;
  margin: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.fechar {
  color: #fff;
  font-size: 30px;
  cursor: pointer;
  position: absolute;
  right: 20px;
  top: -50px;
  z-index: 10000;
  transition: 0.3s;
}

.fechar:hover {
  color: #ea974b;
  transform: scale(1.2);
}

@media (max-width: 768px) {
  .video-modal {
    padding: 20px;
    box-sizing: border-box;
  }
  
  .video-content {
    width: 100%;
    max-width: 100%;
    max-height: 80vh;
  }
  
  .fechar {
    font-size: 28px;
    right: 15px;
    top: -45px;
  }
  
  #iframeVideo {
    width: 100% !important;
    height: auto !important;
    aspect-ratio: 16 / 9;
    border-radius: 10px;
  }
}

@media (max-width: 480px) {
  .video-modal {
    padding: 15px;
  }
  
  .video-content {
    width: 100%;
    max-width: 100%;
  }
  
  .fechar {
    font-size: 24px;
    right: 10px;
    top: -40px;
  }
  
  #iframeVideo {
    width: 100% !important;
    height: auto !important;
    aspect-ratio: 16 / 9;
    border-radius: 8px;
  }
}
.prizes-actions {
    margin-top: 80px; 
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.btn-participate {
    background-color: var(--primary-color1);
    color: white;
    border: none;
    padding: 20px 60px;
    border-radius: 15px;
    font-weight: 900;
    font-size: 22px;
    cursor: pointer;
    transition: 0.3s;
    text-transform: uppercase;
}

.btn-participate:hover {
    transform: translateY(-5px);
    background-color: #f0a868;
}

.btn-rules {
    background-color: transparent;
    color: var(--text-white);
    border: 2px solid var(--text-white);
    padding: 20px 60px;
    border-radius: 15px;
    font-weight: 900;
    font-size: 22px;
    cursor: pointer;
    transition: 0.3s;
    text-transform: uppercase;
}

.btn-rules:hover {
    background: var(--text-white);
    color: var(--bg-dark);
}

/* Responsive */
@media (max-width: 1024px) {
    .carousel-slide img {
        height: 450px;
    }
}

@media (max-width: 768px) {
    .carousel-slide img {
        height: 450px !important; 
    }
    
    .carousel-nav-arrows {
        left: 5px !important;
        width: calc(100% - 10px) !important;
        padding: 0 !important;
    }
    
    .nav-arrow {
        width: 40px !important;
        height: 40px !important;
        font-size: 40px !important;
        margin: 0 !important;
    }
    #prev-prize, #next-prize { margin: 0 !important; }
    
    .triangle-text-prizes {
        font-size: 40px;
    }
    .triangle-text {
        font-size: 45px;
    }
    .prizes-container {
        padding-top: 120px;
    }
    
    .skyline-decoration-right {
        width: 100px;
        height: 100px;
    }
    #tudop {
        background-color: var(--color-neutral-10) !important;
        color: white !important;
        padding: 100px 0 60px 0 !important; 
        position: relative !important; 
        overflow: hidden !important; 
        width: 100% !important;
        height: 100% !important;
        left: 0 !important;
        margin-left: 0 !important;
        clip-path: polygon(
            0% 100%, 
            100% 100%, 
            100% 5%, 
            92% 5%, 92% 3%, 
            85% 3%, 85% 4.5%, 
            75% 4.5%, 75% 2.5%, 
            60% 2.5%, 60% 3.5%, 
            50% 3.5%, 50% 1%, 
            42% 1%, 42% 4%, 
            35% 4%, 35% 2%, 
            25% 2%, 25% 4.5%, 
            18% 4.5%, 18% 3%, 
            10% 3%, 10% 5.5%, 
            5% 5.5%, 5% 3.5%, 
            0% 3.5%
        ) !important;
    }

    .x1-img{
        display: none;
    }

    .x-img{
        display: none;
    }
    .x-top10-img{
        display: none;
    }

    .btn-participate, .btn-rules {
        width: 100%;
        padding: 18px 20px;
        font-size: 18px;
    }
}
.titulo-wrapper-top10 {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    margin-bottom: 20px;
}

.titulo-wrapper-top10 .x-top10-img {
    position: absolute;
    width: 630px;
    z-index: 1;
    padding-right: 38%;
    margin-top: 10px;
}

.titulo-wrapper-top10 h1 {
    position: relative;
    z-index: 2;
}
@media (max-width: 1024px) {
    .titulo-wrapper-top10 .x-top10-img {
        width: 450px;
        margin-top: -120px;
        padding-right: 18%;
    }
}

@media (max-width: 768px) {
    .titulo-wrapper-top10 .x-top10-img {
        width: 300px;
        margin-top: -80px;
        padding-right: 20%;
    }
    
    .header h1 {
        font-size: 50px;
    }
    .header {
        display: block !important;
    }
}

@media (max-width: 480px) {
    .titulo-wrapper-top10 .x-top10-img {
        width: 200px;
        margin-top: -50px;
        padding-right: 15%;
    }
    
    .header h1 {
        font-size: 36px;
    }
}
@media (max-width: 768px) {
    .pesquisa-image,
    .pesquisa-image2 {
        display: none;
    }
    .hero-floating-img {
        display: none !important;
    }
    
    .hero-floating-container {
        display: none !important;
    }
    
    .banner-decor-container {
        display: none !important;
    }
    
    .banner-decor-item {
        display: none !important;
    }
}
@media (max-width: 1366px) {
    .floating-highlight-container {
        left: 30px; 
    }
    .big-mic-hat {
        width: 22vw;
    }
}

@media (max-width: 1366px) {
    #sub {
    padding-right: 3%;

    }
    
}


@media (max-width: 1366px) {
    #locutor-box-new {
   display: none;
    }
    
}
@media (max-width: 1366px) {
    .big-mic-hat.scrolled {
        width: 250px;
        margin-left: -30px;
        margin-right: auto;
    
    }
    
}
@media (max-width: 1366px) {
    .pesquisa-image {
        display: none;
    
    }
    
}
@media (max-width: 1366px) {
    .pesquisa-image2 {
        display: none;
    
    }
    
}

@media (max-width: 1366px) {
    .nav-links a::after{
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: #ffffff;
    transform: scaleX(0);
    transition: all 0.3s ease;
    
    }
    
}

@media (max-width: 1366px) {
.nav-links {
    display: flex;
    list-style: none;
    margin: 0;
    height: 60px; /
    
}
    
}
.video-wrapper.no-border-radius {
    border-radius: 0;
}

.news-date-jk {
    font-size: 13px;
    color: #bbb; 
}
.rules-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
}

.rules-modal-content {
    background-color: #171717; 
    margin: 8% auto;
    padding: 0;
    border: 2px solid #ea974b; /* Borda laranja do site */
    width: 85%;
    max-width: 800px;
    border-radius: 15px;
    box-shadow: 0 20px 50px rgba(234, 151, 75, 0.2);
    animation: modalFadeIn 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    overflow: hidden;
    position: relative;
}

@keyframes modalFadeIn {
    from { opacity: 0; transform: scale(0.9) translateY(30px); }
    to { opacity: 1; transform: scale(1) translateY(0); }
}

.rules-modal-header {
    background-color: transparent;
    padding: 30px 40px 15px 40px;
    border-bottom: 2px solid rgba(234, 151, 75, 0.2);
    margin: 0 40px;
}

.rules-modal-header h2 {
    color: #ea974b; 
    margin: 0;
    font-size: 26px;
    text-transform: uppercase;
    font-weight: 800;
    letter-spacing: 1.5px;
}

.rules-modal-body {
    padding: 30px 80px;
    max-height: 450px;
    overflow-y: auto;
}
.rules-modal-body::-webkit-scrollbar {
    width: 10px;
}
.rules-modal-body::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.3);
}
.rules-modal-body::-webkit-scrollbar-thumb {
    background: #ea974b;
    border-radius: 10px;
}

.rules-text-container {
    color: #fff;
    line-height: 1.8;
    font-size: 17px;
    font-weight: 400;
    white-space: pre-line;
}

.rules-modal-footer {
    padding: 20px 80px 40px 80px;
    border-top: 2px solid rgba(234, 151, 75, 0.2);
    margin: 0 40px;
    display: flex;
    justify-content: flex-end;
    background-color: transparent;
}

.btn-close-rules {
    background-color: #ea974b; 
    color: #000;
    border: none;
    padding: 15px 50px;
    border-radius: 12px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s;
    text-transform: uppercase;
    font-size: 18px;
    box-shadow: 0 4px 15px rgba(234, 151, 75, 0.3);
}

.btn-close-rules:hover {
    background-color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(234, 151, 75, 0.5);
}
@media (max-width: 768px) {
    .rules-modal-content {
        width: 95%;
        margin: 15% auto;
    }
    .rules-modal-header {
        padding: 20px 20px 10px 20px;
        margin: 0 20px;
    }
    .rules-modal-header h2 {
        font-size: 20px;
    }
    .rules-modal-body {
        padding: 20px 30px;
    }
    .rules-modal-footer {
        padding: 20px 30px 30px 30px;
        margin: 0 20px;
    }
    .btn-close-rules {
        width: 100%;
        padding: 12px;
        font-size: 16px;
    }
}
.app-stores {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 20px;
}

.btn-app-store {
    display: flex;
    align-items: center;
    gap: 15px;
    background-color: #000;
    color: #fff;
    padding: 12px 20px;
    border-radius: 10px;
    text-decoration: none;
    transition: 0.3s;
    border: 1px solid rgba(234, 151, 75, 0.3);
    width: fit-content;
}

.btn-app-store i {
    font-size: 24px;
    color: #ea974b;
}

.btn-app-store span {
    font-size: 14px;
    font-weight: bold;
    letter-spacing: 0.5px;
}

.btn-app-store:hover {
    background-color: #ea974b;
    transform: translateY(-3px);
    border-color: #fff;
}

.btn-app-store:hover i,
.btn-app-store:hover span {
    color: #000;
}

@media (max-width: 768px) {
    .app-stores {
        align-items: center;
    }
    .btn-app-store {
        width: 90%;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .programs-display {
        flex-direction: column !important;
        gap: 30px !important;
        padding: 0 20px !important;
        display: flex !important;
    }

    .program-card {
        width: 100% !important;
        min-width: unset !important;
        margin: 0 !important;
        box-sizing: border-box !important;
    }

    .current-program {
        order: 0; 
        transform: scale(1) !important;
    }

    .prev-program {
        order: -1; 
        opacity: 1 !important;
        transform: scale(1) !important;
    }

    .next-program {
        order: 1; 
        opacity: 1 !important;
        transform: scale(1) !important;
    }
}
.pagination-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin: 40px 0 60px;
    flex-wrap: wrap;
}

.dot-item {
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    border: 2px solid #ea974b;
    background: transparent;
    color: #ea974b;
    font-weight: 900;
    font-size: 16px;
    transition: all 0.3s ease;
}

.dot-item.active {
    background: #ea974b;
    color: #fff;
    box-shadow: 0 4px 12px rgba(234, 151, 75, 0.3);
}

.dot-item:hover:not(.active) {
    background: rgba(234, 151, 75, 0.1);
    transform: translateY(-2px);
}
.featured-carousel-wrapper {
    position: relative;
    width: 100%;
    margin-bottom: 30px;
    border-radius: 20px;
    overflow: hidden;
}

.featured-carousel-main {
    position: relative;
    width: 100%;
    height: 400px;
    background-size: cover;
    background-position: center;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.featured-carousel-main:hover {
    transform: scale(1.02);
}

.featured-carousel-main::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 150px;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    z-index: 2;
}

.featured-carousel-content {
    position: absolute;
    bottom: 60px;
    left: 0;
    right: 0;
    padding: 20px 30px;
    color: #fff;
    z-index: 3;
    max-height: 140px;
    overflow: hidden;
}

.featured-carousel-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 10px;
}

.featured-carousel-tag {
    background: #ea974b;
    color: white;
    padding: 4px 10px;
    font-size: 12px;
    font-weight: bold;
    border-radius: 3px;
    text-transform: uppercase;
}

.featured-carousel-date {
    color: rgba(255, 255, 255, 0.9);
    font-size: 13px;
    font-weight: 500;
}

.featured-carousel-title {
    font-size: 22px;
    font-weight: 900;
    line-height: 1.2;
    margin: 0;
    font-family: 'Roboto Slab', serif;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.featured-carousel-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    padding: 12px 25px;
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 4;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 25px;
}

.featured-carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    padding: 0;
}

.featured-carousel-dot.active {
    background-color: #ea974b;
    transform: scale(1.3);
}

.featured-mini-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-bottom: 40px;
}

.featured-mini-card {
    position: relative;
    height: 200px;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background-size: cover;
    background-position: center;
}

.featured-mini-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}

.featured-mini-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(234,151,75,0.8), rgba(234,151,75,0.6));
    z-index: 1;
}

.featured-mini-card-category {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: #ea974b;
    color: #000;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
    z-index: 3;
}

.featured-mini-card-title {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 15px;
    color: #fff;
    font-size: 14px;
    font-weight: bold;
    line-height: 1.3;
    z-index: 2;
    background: linear-gradient(to top, rgba(0,0,0,0.5), transparent);
}
@media (max-width: 768px) {
    .featured-carousel-main {
        height: 250px;
    }

    .featured-carousel-title {
        font-size: 18px;
    }

    .featured-mini-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .featured-mini-card {
        height: 180px;
    }

    .featured-mini-card-title {
        font-size: 12px;
        padding: 12px;
    }
}

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

    .featured-carousel-title {
        font-size: 18px;
    }

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

    .featured-mini-cards {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .featured-mini-card {
        height: 150px;
    }

    .featured-mini-card-category {
        font-size: 10px;
        padding: 4px 8px;
    }

    .featured-mini-card-title {
        font-size: 11px;
        padding: 10px;
    }
}
.banner-whatsapp-link {
    display: block;
    width: 100%;
    min-height: 350px;
    height: auto;
    aspect-ratio: 1920 / 1080;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: scroll;
    text-decoration: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

@media (max-width: 1024px) {
    .banner-whatsapp-link {
        min-height: auto;
        aspect-ratio: 1920 / 1080;
        background-size: contain;
        background-color: #000; 
    }
}
@media (max-width: 768px) {
    .banner-whatsapp-link {
        min-height: auto;
        aspect-ratio: 1920 / 1080;
        background-size: contain;
        background-color: #000;

    }
}
@media (max-width: 480px) {
    .banner-whatsapp-link {
        min-height: auto;
        aspect-ratio: 1920 / 1080;
        background-size: contain;
        background-color: #000;
        
    }
}


@media (max-width: 1024px) {
    #banner-destaque {
        display: none !important;
    }
}


@media (min-width: 1025px) {
    .pesquisa-image {
        margin-top: 50px !important; 
    }
}

@media (max-width: 768px) {
    .pesquisa-image {
        display: none !important;
    }
    
    .pesquisa-content {
        flex-direction: column !important;
        align-items: center !important;
        gap: 20px !important;
    }

    .pesquisa-text {
        text-align: center !important;
        width: 100% !important;
    }
}

@media (max-width: 768px) {
    .nav-links a:hover::after,
    .nav-links a::after {
        display: none !important;
        transform: scaleX(0) !important;
    }
    
    .nav-links a:hover {
        background-color: transparent !important;
    }
}

.featured-column-right {
    display: block !important;
    width: 100%;
    min-height: 500px;
    height: auto;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid #333;
    transition: transform 0.3s ease;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    background-attachment: scroll !important;
    padding: 0 !important;
    margin: 0 !important;
    flex: none !important;
    flex-direction: unset !important;
}

.featured-column-right:hover {
    transform: translateY(-5px);
    border-color: #ff6600;
}

.featured-column-right * {
    display: none !important;
}