:root {
	--bg-dark: #130617;
	--color-green-dark: #095A59;
  	--color-green: #328582;
  	--color-orange: #f5651c;
  	--color-white: #EAECEF;
}

* {
    padding: 0;
    margin: 0;
}

@font-face {
    font-family: 'Mont Regular';
    src: url('/assets/fonts/Montserrat-Regular.ttf') format('truetype');
}

@font-face {
    font-family: 'Mont Medium';
    src: url('/assets/fonts/Montserrat-Medium.ttf') format('truetype');
}

@font-face {
    font-family: 'Confortaa';
    src: url('/assets/fonts/Comfortaa-Medium.ttf') format('truetype');
}


body {
	color: var(--color-white);
	background-color: var(--bg-dark);
	font-family: 'Confortaa', sans-serif;
}

.icon_whats {
	width: 50px;
	position: fixed;
	bottom: 15px;
	z-index: 3;
	right: 15px;
}

@media (max-width: 1024px) {
  	.icon_whats {
		width: 50px;
		position: fixed;
		bottom: 10px;
		z-index: 3;
		right: 5px;
	}
}


.line-top {
	padding: 10px;
	background-image: linear-gradient(130deg, var(--color-green-dark) 20%, var(--color-green) 75%);
	text-align: center;
}

@media (max-width: 1024px) {
    .line-top {
		padding: 5px 45px;
    }
}

#principal {
    background-color: var(--bg-dark); /* cor de fundo */
    
    background-image: 
        linear-gradient(
            542deg,                
            var(--color-green) -82%, 
            rgba(0,0,0,0) 80%,     
            var(--bg-dark) 95%    
        ),
        url('/assets/img/BG1.webp');

    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    /* height: 85vh; */
}

@media (max-width: 1024px) {
   	#principal {
		height: auto;
	}
}

#principal .content-title {
	margin-top: 100px;
}

@media (max-width: 1024px) {
   	#principal .content-title {
		margin-top: 10px;
	}
}

#principal .logo_mais {
	width: 250px;
	display: block;
	margin: 0 auto;
}

@media (max-width: 1024px) {
   #principal .logo_mais {
		width: 200px;
		display: none;
		margin: 0 auto;
	}
}

#principal .title {
	width: 91%;
    margin-top: 15px;
    text-align: justify;
}

@media (max-width: 1024px) {
   #principal .title  {
		width: 100%;
    	margin-top: 15px;
    	text-align: center;
	}
}

#principal .title span {
	color: var(--color-green-dark);
	font: bold;
	text-transform: uppercase;
}

#principal .content-title p {
    width: 95%;
    font-size: 18px;
    margin-top: 20px;
    text-align: justify;
}

@media (max-width: 1024px) {
   	#principal .content-title p {
    	width: 95%;
		display: block;
		margin: 0 auto;
    	font-size: 16px;
    	margin-top: 20px;
    	text-align: center;
	}
}


#principal .content-title a {
    position: relative;  /* essencial para o ::before */
    overflow: hidden;    /* esconde a faixa fora do botão */
    background-color: var(--color-green);
    color: var(--color-white);
    font-weight: bold;
    padding: 14px;
    border-radius: 4px;
    width: 73%;
    display: block;
    text-align: center;
    margin-top: 25px;
    text-transform: uppercase;
    text-decoration: none;
    z-index: 0; /* garante que o texto fique acima da faixa */
}

@media (max-width: 1024px) {
   	#principal .content-title a {
		margin: 0 auto;
		margin-top: 25px;
	}
}

#principal .content-title a::before {
    content: "";
    position: absolute;
    top: 0;
    left: -50%;
    width: 50%;
    height: 100%;
    background: linear-gradient(130deg, rgba(255,255,255,0.2) 0%, rgba(255,255,255,0.5) 50%, rgba(255,255,255,0.2) 100%);
    transform: skewX(-20deg);
    animation: slide 2s infinite;
    z-index: 1; /* abaixo do texto */
}

@keyframes slide {
    0% {
        left: -50%;
    }
    100% {
        left: 100%;
    }
}


#principal .body-img {
	display: block;
	position: relative;
}

#principal .devices {
	width: 100%;
}




#content_streaming {
	margin-top: 110px;
}

#content_streaming h2 {
	text-align: center;
	text-transform: uppercase;
	font-weight: bold;
	margin-bottom: 60px;
}

@media (max-width: 1024px) {
	#content_streaming h2 {
		margin-bottom: 20px;
	}
}

#content_streaming h2 span {
	color: var(--color-green-dark);
}

.swiper {
  width: 100%;
  padding: 20px 0;
}

.swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
}

.swiper-slide img {
  max-width: 100%;
  height: auto;
  object-fit: contain; /* mantém proporção sem cortar */
  border-radius: 10px; /* opcional */
}

.swiper.mySwiperRight {
	margin: 5px 0;
}

.swiper.mySwiperLeft {
	margin: 5px 0;
}

#content_streaming a {
    position: relative;  /* essencial para o ::before */
    overflow: hidden;    /* esconde a faixa fora do botão */
    background-color: var(--color-green);
    color: var(--color-white);
    font-weight: bold;
    padding: 14px;
    border-radius: 4px;
    width: 450px;
    display: block;
    text-align: center;
	margin: 0 auto;
    margin-top: 40px;
    text-transform: uppercase;
    text-decoration: none;
    z-index: 0; /* garante que o texto fique acima da faixa */
}

@media (max-width: 1024px) {
   	#content_streaming a {
		width: 95%;
		margin: 0 auto;
		margin-top: 25px;
	}
}

#content_streaming a::before {
    content: "";
    position: absolute;
    top: 0;
    left: -50%;
    width: 50%;
    height: 100%;
    background: linear-gradient(130deg, rgba(255,255,255,0.2) 0%, rgba(255,255,255,0.5) 50%, rgba(255,255,255,0.2) 100%);
    transform: skewX(-20deg);
    animation: slide 2s infinite;
    z-index: 1; /* abaixo do texto */
}

@keyframes slide {
    0% {
        left: -50%;
    }
    100% {
        left: 100%;
    }
}



#channels {
	margin-top: 60px;
}

#channels h2 {
	text-align: center;
}

#channels h2 span{
	text-transform: uppercase;
	color: var(--color-green-dark);
}

#channels .body_channel {
	border: 0px solid var(--color-green);
	border-radius: 4px;
	margin: 15px 0 10px;
	background-color: var(--color-green-dark);
	/* background-color: #486e6c; */
}

#channels .body_channel img {
	border-top-left-radius: 4px;
	border-top-right-radius: 4px;
}

#channels .body_text {
	padding: 15px 8px 5px;
}

#plans h2 {
    margin-top: 60px;
    text-align: center;
}

#plans .content_plan {
    margin-top: 15px;
    border: 2px solid var(--color-green);
    z-index: 1;
    border-radius: 20px;
    padding: 15px 0px 0px;
    position: relative;
}

#plans .content_plan .header_plan {
    text-align: center;
    text-transform: uppercase;
}

#plans .content_plan .header_plan span {
    color: var(--color-orange);
}

#plans .content_plan .body_plan {
    margin-top: 20px;
}

#plans .content_plan .body_plan li {
    margin: 10px 0px;
}


#plans .content_plan .off_price {
    text-align: center;
    margin-top: 20px;
    min-height: 73px;
}

#plans .content_plan .off_price .percentual img {
    height: 24px;
    margin-right: 5px;
}

#plans .content_plan .off_price .percentual {
    background-color: var(--color-white);
    color: var(--color-orange);
    font-weight: bold;
    padding: 6px 3px;
    display: flex;
    font-size: 18px;
    margin: 0 auto;
    z-index: -1;
    position: relative;
    align-items: flex-start;
    justify-content: center;
    margin-top: 15px;
}

#plans .content_plan .off_price .numbers {
    margin-top: 10px;
}

#plans .content_plan .off_price .numbers span {
    text-decoration: line-through;
}

#plans .content_plan .footer_plan {
    /* margin-top: 40px; */
    text-align: center;
    font-size: 40px;
    text-transform: uppercase;
    font-weight: bold;
    position: relative;
}

#plans .content_plan .footer_plan a  {
    position: relative;  
    overflow: hidden;   
    font-size: 16px; 
    text-align: center;
    background-color: var(--color-green);
    color: var(--color-white);
    font-weight: bold;
    padding: 14px;
    border-bottom-right-radius: 15px;
    border-bottom-left-radius: 15px;
    display: block;
    text-align: center;
    /* margin-top: 25px; */
    text-transform: uppercase;
    text-decoration: none;
    z-index: 0; /* garante que o texto fique acima da faixa */
}


footer {
    border-top: 2px solid var(--color-green-dark);
    margin-top: 80px;
    padding: 30px 0px 10px;
}

@media (max-width: 1024px) {
   	footer {
        padding: 0px 0px 10px;
		text-align: center;
        /* margin-top: 35px; */
	}

    footer h3 {
        margin-top: 20px;
    }
}


footer .tvmais {
    object-fit: contain;
    height: 250px;
} 

footer .flex-items {
    text-align: center;
    display: flex;
    justify-content: left;
    align-items: center;
}

@media (max-width: 1024px) {
   	footer .flex-items {
        justify-content: center;
    }
}


footer .flex-items img {
    width: 30px;
    margin-right: 5px;
}



.top {
    margin-top: 45px;
}

.copy {
    font-size: 15px;
    margin-top: 20px;
    color: #CCCCCC;
}

.cell {
    text-decoration: none;
    color: var(--color-white);
}