@import url('https://fonts.googleapis.com/css2?family=Archivo+Black&family=Boogaloo&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Archivo+Black&display=swap');

html {
  scroll-behavior: smooth;
}

body { 
    margin: 0; 
    font-family: 'Poppins', sans-serif; 
    font-size: 13px;
    background: linear-gradient(
    45deg,
    hsl(0, 0%, 0%) 10%,
    hsl(1, 100%, 16%),
    hsl(359, 100%, 50%),
    hsl(1, 100%, 16%),
    hsl(0, 0%, 0%)
    );
    background-repeat: no-repeat;
    background-attachment: fixed; /* Fixa o fundo na janela de visualização */
    animation: animate-bg-size 55s ease infinite;
}

@keyframes animate-bg-size {
  0% {
    background-size: 100vw 100vh;
  }

  50% {
    background-size: 100vw 2000vh;
  }

  100% {
    background-size: 100vw 100vh;
  }
}


a {
   text-decoration: none; 
   cursor: pointer;
   color: inherit;
}


/* ------------------------------------------------------ MENU E SUB MENU --------------------------------------------------------------- */

/* O sub-menu que vai sumir */
.top-bar {
  background-color: #a80002;
  color: white;
  padding: 4px 30px;
  text-align: center;
  height: 35px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.top-bar a {
   width: 120px;
   display: flex;
   justify-content: center;
   align-items: center; 
}

.top-bar a:first-child {
   border-right: 1px solid #fff;
   margin-right: 10px;
}

/* O menu principal que vai fixar */
.main-menu {
    background-color: rgb(0 0 0 / 86%);
    padding: 12px 50px;
    position: sticky;
    top: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    box-shadow: 0 10px 10px -10px rgb(227 30 36 / 48%);
    justify-content: space-between;
    border-bottom: 1px solid #ea020273;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 40px;
}

.main-menu ul { 
    margin: 0;
    color: #a20a12; 
}

.main-menu ul li {
    font-size: 14px;
    font-weight: 500;
    color: #fff;
}

.main-menu ul li:hover {
    color: #df1d23;
}

.content { 
    height: auto; 
    padding-bottom: 30px;
}

.logo_home {
    height: 55px;
    margin-right: 20px;
}

.main-util {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 30px;
}

.main-section {
    display: flex;
    align-items: center;
}

.zap-mobile {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #f5f4f4;
    display: flex;
    font-size: 28px;
    text-align: center;
    align-items: center;
    justify-content: center;
    color: #0e9e15;
}

.mn-contrato {
    width: 150px;
    background: #ea0202;
    padding: 5px 15px;
    display: block;
    text-align: center;
    border-radius: 20px;
    color: #fff;
}

.mn-trabalhe {
    width: 150px;
    background: #ea0202;
    padding: 5px 15px;
    display: block;
    text-align: center;
    border-radius: 20px;
    color: #fff;
}

.mn-whatsapp {
    width: 172px;
    background: #0e9e15;
    padding: 5px 10px;
    display: flex;
    text-align: center;
    border-radius: 12px;
    color: #fff;
    height: 50px;
    align-items: center;
    justify-content: space-between;
}

.text-zap {
    font-size: 12px;
    text-align: justify;
}

.menu-toggle {
  display: none; /* Escondido no desktop */
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: none;
  cursor: pointer;
}

.menu-toggle span {
  width: 25px;
  height: 3px;
  background: #ea0202;
  display: block;
}

.icon-mn-u {
   display: none; 
}

.text-mn-u {
   display: block; 
}

/* Responsivo: Telas até 834px */
@media (max-width: 834px) {
  .menu-toggle {
    display: flex; /* Exibe o botão hambúrguer */
  }

  .nav-menu {
    display: none; /* Esconde o menu padrão */
    flex-direction: column;
    position: absolute;
    top: 77px;
    left: 0;
    width: 100%;
    background: #a20a12;
    padding: 20px;
    box-shadow: 0 10px 10px -10px rgba(0, 0, 0, 0.5);
    color: #fff;
  }
  
  .main-menu ul li {
    color: #fff;
  }

  /* Classe que o JavaScript vai ativar */
  .nav-menu.active {
    display: flex;
  }
  
  .text-zap {
    display: none;
  }
  
  .zap-mobile {
    width: 50px;
    height: 50px;
    background: #0e9e15;
    font-size: 32px;
    color: #fff;
  }
  
  .mn-whatsapp {
    width: 50px;
    background: none;
    padding: 0;
    position: fixed;
    bottom: 30px;
    right: 30px;
  }
}

/* Responsivo: Telas até 440px */
@media (max-width: 440px) {
    .icon-mn-u {
       display: block; 
    }
    
    .text-mn-u {
       display: none; 
    }
    
    .mn-trabalhe {
        height: 40px;
        padding: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        font-size: 16px;
    }
    
    .mn-contrato {
        height: 40px;
        padding: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        font-size: 16px;
    }
    
    .main-menu {
        padding: 12px 15px;
    }
    
    .main-util {
        gap: 8px;
    }
}

/* ------------------------------------------------------ SLIDER BANNER --------------------------------------------------------------- */

* { box-sizing: border-box; }

.slider-container {
  position: relative;
  /*max-width: 1000px;*/
  margin: auto;
  overflow: hidden;
  /*border-radius: 10px;*/
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.slide {
  display: none;
  width: 100%;
}

.slide.active {
  display: block;
  animation: fade 0.8s ease-in-out;
}

.slide img {
  width: 100%;
  height: auto;
  display: block;
}

/* Efeito de Transição */
@keyframes fade {
  from { opacity: 0.6; }
  to { opacity: 1; }
}

/* Bolinhas Indicadoras */
.dot-container {
    position: absolute;
    right: 15px;
    transform: rotate(90deg);
    top: 50%;
    margin: 0 -70px 0 0;
}

.dot {
  cursor: pointer;
  height: 5px;
  width: 30px;
  margin: 0 5px;
  background-color: rgba(255, 255, 255, 0.5);
  border-radius: 10px;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.dot.active, .dot:hover {
  background-color: white;
}

/* Responsivo: Telas até 440px */
@media (max-width: 440px) {
    .dot {
        height: 10px;
        width: 10px;
    }
    
    .dot-container {
        margin: 0 -32px 0 0;
    }
}

/* ------------------------------------------------------ PLANOS DE INTERNET --------------------------------------------------------------- */

.pricing-section {
    max-width: 1200px;
    margin: -70px auto 70px;
    padding: 0 20px;
    text-align: center;
    position: relative;
}

.pricing-section h2 {
    font-size: 2rem;
    margin-bottom: 40px;
    color: #333;
}

/* Container do Carrossel */
.carousel-container {
    display: flex;
    align-items: center;
    position: relative;
}

/* Linha dos Planos (Garante exibição horizontal) */
.pricing-grid {
    display: flex;
    gap: 24px;
    overflow-x: hidden; /* Esconde a barra de rolagem */
    scroll-behavior: smooth; /* Suaviza a transição de rolagem */
    width: 100%;
    padding: 10px 0;
}

/* Card de Preço (Tamanho fixo para caberem exatamente 3 por tela) */
.card {
    background-color: rgb(0 0 0 / 50%);
    border: 1px solid #e0e0e0;
    border-radius: 15px;
    padding: 30px 20px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    flex: 0 0 calc(24.5% - 16px); /* Ocupa exatamente 1/3 da tela descontando o gap */
    box-sizing: border-box;
    transition: transform 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
}

.card.highlight {
    border: 2px solid #ea0202;
}

.card h4 {
    margin-top: 0;
    font-size: 16px;
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    margin-bottom: 12px;
}

.card h3 {
    margin-top: 0;
    font-size: 26px;
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
}

.card ul {
    list-style-type: none;
    padding: 0;
    color: #fff;
}

.card ul li {
    font-size: 10px;
    padding: 4px 12px;
    background: #c30102;
    display: inline-block;
    border-radius: 20px;
    margin-bottom: 5px;
}

.price {
    font-size: 2rem;
    font-weight: bold;
    color: #111;
    margin: 20px 0 12px;
    font-family: "Archivo Black", sans-serif;
    display: flex;
    align-content: flex-start;
    align-items: flex-start;
    flex-wrap: nowrap;
}

.price-cifra, .price-cent {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-content: flex-start;
}

.apenas {
    font-family: 'Poppins';
    font-weight: 400;
    font-size: 8px;
    padding: 2px 7px;
    background: #ea0202;
    border-radius: 6px;
    color: #fff;
}

.simbolo {
    font-size: 0.8em;
    margin-right: 2px;
    align-self: flex-start;
    font-family: 'Poppins', sans-serif;
    color: #ea0202;
}

.valor-real {
  font-size: 2em;
    font-weight: bold;
    line-height: 1;
    color: #fff;
}

.centavos {
  font-size: 0.8em;
    vertical-align: super;
    line-height: 1;
    color: #fff;
}

.por-mes {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 14px;
    color: #ea0202;
}

.qnt-mega {
    font-size: 85px;
    font-family: "Archivo Black", sans-serif;
    color: #fff;
    letter-spacing: -0.3rem;
    position: relative;
    display: block;
    line-height: 0.8;
}

.megas {
    border-radius: 8px;
    font-size: 12px;
    padding: 4px 10px;
    background: #ea0202;
    color: #fff;
    font-weight: 600;
    letter-spacing: 1px;
    position: absolute;
    top: 40%;
    right: 0;
    margin: 0;
    font-family: 'Poppins', sans-serif;
}

.instalacao24 {
    text-transform: uppercase;
    width: 200px;
    display: block;
    padding: 2px;
    background: #ea0202;
    color: #fff;
    border-radius: 20px;
    margin: 0 auto;
}

.card button {
    background-color: #ea0202;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 4px;
    font-size: 1rem;
    cursor: pointer;
    width: 100%;
    font-family: 'Poppins', sans-serif;
}

/* Botões de Navegação Seta Direita/Esquerda */
.nav-btn {
    background-color: #222;
    color: white;
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, opacity 0.2s;
}

.nav-btn:hover {
     background-color: #ea0202;
}

.prev-btn {
     left: -25px;
}

.next-btn {
     right: -25px;
}

.price-cor-back {
    background: #ea0202;
}

.price-cor-text {
    color: #ea0202;
}

/* Responsividade para telas menores (Exibe 1 por vez no celular) */
@media (max-width: 834px) {
    .pricing-section {
        margin: 0 auto 50px;
    }
}

/* Responsividade para telas menores (Exibe 1 por vez no celular) */
@media (max-width: 440px) {
    .card {
        flex: 0 0 100%;
    }
    .nav-btn {
        transform: none;
        margin: 20px -20px 0 -20px;
    }
    .carousel-container {
        flex-direction: column;
    }
    .button-wrapper {
        display: flex;
        justify-content: center;
    }
    .pricing-section {
        margin: 0 auto 50px;
        padding: 20px 50px;
    }
    .pricing-grid {
        gap: 0;
    }
    .megas {
        right: 15px;
    }
}

/* ------------------------------------------------------ BOX DE CONSULTA PLANOS --------------------------------------------------------------- */

.consulta-box {
    width: 1200px;
    margin: 0 auto;
    padding: 30px;
    background: #ea0202;
    border-radius: 20px;
    border: 1px solid #a80002;
}

.consulta-indica {
    text-transform: uppercase;
    font-size: 16px;
    color: #fff;
    letter-spacing: 1px;
}

.consulta-box h2 {
    font-size: 35px;
    color: #fff;
    margin: 0;
}

.consulta-box h4 {
    font-size: 15px;
    font-weight: 400;
    color: #fff;
    margin-top: 0;
}

.consulta-btn {
    padding: 12px 28px;
    background: #fff;
    font-size: 16px;
    font-weight: 600;
    color: #e31e24;
    border-radius: 50px;
}

/*	CURRENT MAX WIDTH IS JUST FOR DEMO PURPOSES */
.tag-scrollers {
	width: 100%;
	max-width: 1200px;
	overflow: hidden;
	margin-top:30px;
}

/*	POSSIBLY UPDATE COLORS IN THE GRADIENT
		TO MATCH THE PROJECTS DESIGN SYSTEM
*/
.tag-scroller {
	display: grid;
	gap: 1.5rem;
	mask: linear-gradient(
		90deg,
		#0000,
		var(--background) 15%,
		var(--background) 85%,
		#0000
	);
}

.tag-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	/*	IF THE GAP IS CHANGED, DON'T FORGET TO CHANGE 
			THE TRANSFORM VALUE IN THE SCROLL ANIMATION
			AT THE END OF THE STYLING
	*/
	gap: 1.5rem;
}

/*	IF THE USERS PREFERS REDUCED MOTION
		PRESENT THEM WITH A HOROZONTAL LIST
		OF ALL ELEMENTS AND GIVE THEM THE
		OPTION TO MANUALLY SCROLL BY SWIPING
*/
@media (prefers-reduced-motion) {
	.tag-list {
		flex-flow: row nowrap;
		overflow: auto;
		scrollbar-width: none;
		scrollbar-color: transparent transparent;
	}
	.tag-list::-webkit-scrollbar-track {
		background: transparent;
	}
	.tag-list::-webkit-scrollbar-thumb {
		background: transparent;
	}
	.tag-list::-webkit-scrollbar {
		display: none;
		width: 0;
		height: 0;
	}
}

/*	BASIC STYLING OF THE LIST ITEMS
		FOR DEMO PURPOSES. MOST PROPERTIES
		SHOULD BE KEPT AS IS BUT PROBABLY
		UPDATE THE VALUE FOR font-family
		AND border
*/
.tag-list li {
	font-family: system-ui;
	font-size: 14px;
	line-height: 1;
	padding: 0.5rem 1.375rem;
	border: 1px solid #fff;
	border-radius: 10ch;
	white-space: nowrap;
	color: #fff
}

/*	THE DURATION IS SET FROM A CUSTOM PROPERTY
		CALCULATED IN THE SCRIPT AS IT'S ONLY NEEDED
		IF THE ANIMATION SHOULD RUN, WHICH IS ALSO
		CHECKED BY THE SCRIPT

		THE DIRECTION IS SET TO normal AS DEFULT
		AND THEN SET TO reverse	FOR EVERY OTHER SCROLLER
*/
.tag-scroller.scrolling .tag-list {
	width: max-content;
	flex-wrap: nowrap;
	animation: horizontal-scroll var(--duration) var(--direction, normal) linear
		infinite;
}

.tag-scroller.scrolling .tag-list:nth-child(even) {
	--direction: reverse;
}

/* PAUSING THE ANIMATION ON HOVER */
.tag-scroller:hover .tag-list {
	animation-play-state: paused;
}

@keyframes horizontal-scroll {
	to {
		/*	0.75rem FOR HALF THE GAP
				OF THE .tag-scroller
		*/
		transform: translateX(calc(-50% - 0.75rem));
	}
}

@media (max-width: 834px) {
    .consulta-box {
        border: none;
        width: 100%;
        padding: 30px 18px;
        border-radius: 0;
    }
    
    .consulta-box h2 {
        line-height: 40px;
        margin: 15px 0;
    }
}

/* ------------------------------------------------------ SOBRE A EMPRESA --------------------------------------------------------------- */

.about {
    position: relative; 
    width: 100%;
    height: 850px; /* Altura de exemplo */
    overflow: hidden;
    margin: 50px 0;
}

.about-text {
    position: relative;
    max-width: 1200px;
    width: 100%;
    height: 100%;
    margin: 0 auto; /* Centraliza o bloco de 1200px na tela */
    z-index: 4; /* Garante que fique acima da Div 3 */
    pointer-events: none; /* Permite clicar no que estiver atrás se necessário */
}

.about-text .about-a-empresa, 
.about-text .about-img {
    pointer-events: auto;
}

.about-a-empresa {
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 500px;
    padding: 25px;
    z-index: 1;
}

.about-img {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 580px;
    z-index: 3; /* Fica acima da Div 3 */
}

.about-img img {
    width: auto;
    height: 100%;
    object-fit: cover;
    padding: 15px 15px 0;
}

.about-quali {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%; /* 100% da tela inteira */
    height: 350px;
    background: #ea0202;
    padding: 20px;
    z-index: 2; /* Fica abaixo da Div 2 devido ao z-index */
}

.about-quali-conteudo {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    padding: 20px;
}

.about-quali-grade {
    display: flex;
    margin: 20px 0;
}

.about-a-empresa h2 {
    font-size: 42px;
    margin: 25px 0;
    line-height: 55px;
    color: #fff;
}

.about-a-empresa h4 {
    margin: 0;
    font-size: 18px;
    font-weight: 500;
    color: #fff;
}

.about-quali-conteudo h4 {
    margin: 0;
    font-size: 18px;
    font-weight: 500;
    color: #fff;
}

.about-a-empresa p {
    font-size: 15px;
    color: #fff;
}

.d-flex {
    height: 200px;
    padding: 10px;
    text-align: center;
    margin: 0 15px;
    color: #fff;
}

@media (max-width: 834px) {
    .about {
        height: 800px; 
    }
    
    .about-a-empresa {
        height: 400px;
    }
    
    .about-img {
        height: 400px;
    }
    
    .about-img img {
        width: 100%;
        height: auto;
    }
    
    .about-quali {
        height: 400px;
    }
    
    .about-a-empresa h2 {
        font-size: 30px;
        line-height: 35px;
    }
    
    .about-a-empresa p {
        font-size: 13px;
    }
}

/* Responsividade para telas menores (Exibe 1 por vez no celular) */
@media (max-width: 440px) {
    .about {
        height: auto;
        margin: 20px 0;
    }
    
    .about-text {
        position: relative;
        height: auto;
        z-index: 1; /* Garante que fique acima da Div 3 */
    }
    
    .about-a-empresa {
        position: relative;
        width: 100%;
        height: auto;
    }
    
    .about-img {
        position: relative;
        width: 100%;
        height: auto;
        z-index: 1; /* Fica acima da Div 3 */
    }
    
    .about-quali {
        position: relative;
        height: auto;
        z-index: 1; /* Fica abaixo da Div 2 devido ao z-index */
    }
    
    .about-quali-grade {
        display: block;
    }
    
    .d-flex {
        margin: 20px 0;
    }
}

/* ------------------------------------------------------ BENEFÍCIOS EXCLUSIVOS --------------------------------------------------------------- */

.beneficios {
    width: 100%;
    max-width: 1200px;
    height: 600px;
    margin: 0 auto;
    display: flex;
}

.beneficios-img-group {
    height: 600px;
    width: 50%;
    padding: 40px;
}

.beneficios-descrito {
    height: 600px;
    width: 50%;
    padding: 40px 0;
}

.beneficios-dashed {
    border: 3px dashed #e31e24;
    width: 520px;
    height: 520px;
    border-radius: 130px;
    padding: 10px;
}

.beneficios-block-principal {
    width: 100%;
    height: 100%;
    border-radius: 130px;
}

.beneficios-block-inferior {
    width: 100%;
    height: 50%;
    display: flex;
}

.beneficios-block-superior {
    width: 100%;
    height: 50%;
    display: flex;
}

.beneficios-block-1 {
    width: 50%;
    height: 100%;
    border-radius: 50% 0 50% 0;
    text-decoration: none;
    background-size:100%;
    list-style-type: none;
    margin: 0;
    transition: transform 0.5s ease;
}

.beneficios-block-1.hover-ativo {
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    transform: scale(1.12);
}

.beneficios-block-2 {
    width: 50%;
    height: 100%;
    border-radius: 0 50% 0 50%;
    text-decoration: none;
    background-size:100%;
    list-style-type: none;
    margin: 0;
    transition: transform 0.5s ease;
}

.beneficios-block-2.hover-ativo {
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    transform: scale(1.12);
}

.beneficios-block-3 {
    width: 50%;
    height: 100%;
    border-radius: 0 50% 0 50%;
    text-decoration: none;
    background-size:100%;
    list-style-type: none;
    margin: 0;
    transition: transform 0.5s ease;
}

.beneficios-block-3.hover-ativo {
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    transform: scale(1.12);
}

.beneficios-block-4 {
    width: 50%;
    height: 100%;
    border-radius: 50% 0 50% 0;
    text-decoration: none;
    background-size:100%;
    list-style-type: none;
    margin: 0;
    transition: transform 0.5s ease;
}

.beneficios-block-4.hover-ativo {
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    transform: scale(1.12);
}

.beneficios-descrito-title, 
.beneficios-descrito-b1, 
.beneficios-descrito-b2, 
.beneficios-descrito-b3, 
.beneficios-descrito-b4 {
    height: 100px;
    width: 100%;
}

.beneficios-descrito-title {
    padding: 0 10px;
}

.beneficios-descrito-title h2 {
    font-size: 28px;
    margin: 25px 0;
    line-height: 35px;
    color: #fff;
}

.beneficios-descrito-b1 {
    padding: 10px;
    display: flex;
    border-radius: 20px;
    transition: box-shadow 0.3s ease-in-out;
}

.beneficios-descrito-b1.hover-ativo {
    box-shadow: 0px 0px 20px 0px #a20a1261;
    background-color: rgb(0 0 0 / 86%);
}

.beneficios-descrito-b2 {
    padding: 10px;
    display: flex;
    border-radius: 20px;
    transition: box-shadow 0.3s ease-in-out;
}

.beneficios-descrito-b2.hover-ativo {
    box-shadow: 0px 0px 20px 0px #a20a1261;
    background-color: rgb(0 0 0 / 86%);
}

.beneficios-descrito-b3 {
    padding: 10px;
    display: flex;
    border-radius: 20px;
    transition: box-shadow 0.3s ease-in-out;
}

.beneficios-descrito-b3.hover-ativo {
    box-shadow: 0px 0px 20px 0px #a20a1261;
    background-color: rgb(0 0 0 / 86%);
}

.beneficios-descrito-b4 {
    padding: 10px;
    display: flex;
    border-radius: 20px;
    transition: box-shadow 0.3s ease-in-out;
}

.beneficios-descrito-b4.hover-ativo {
    box-shadow: 0px 0px 20px 0px #a20a1261;
    background-color: rgb(0 0 0 / 86%);
}

.beneficios-descrito-icon {
    width: 80px;
    padding: 10px 10px 0;
}

.beneficios-descrito-mobile {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #ea0202;
    display: flex;
    font-size: 28px;
    text-align: center;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    position: relative;
}

.beneficios-descrito-sobre {
    width: 460px;
    padding: 0 10px;
}

.beneficios-descrito-sobre h4 {
    margin: 5px 0;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
}

.beneficios-descrito-sobre p {
    margin: 5px 0;
    font-size: 14px;
    color: #fff;
}

.beneficios-legenda {
    width: 15px;
    height: 15px;
    position: absolute;
    top: 0;
    right: 0;
    border-radius: 10px;
}

.tooltip-div {
  position: absolute;
  bottom: 140%; /* Joga o balão para cima do círculo */
  left: 50%;
  transform: translateX(-50%); /* Centraliza horizontalmente sobre o círculo */
  color: #fff;
  padding: 6px 12px;
  border-radius: 4px;
  font-size: 12px;
  width: 300px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.tooltip-div::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border-width: 5px;
  border-style: solid;
  border-color: #222 transparent transparent transparent;
}

.beneficios-descrito-b1:hover .tooltip-div {
  opacity: 1;
}
.beneficios-descrito-b2:hover .tooltip-div {
  opacity: 1;
}
.beneficios-descrito-b3:hover .tooltip-div {
  opacity: 1;
}
.beneficios-descrito-b4:hover .tooltip-div {
  opacity: 1;
}

@media (max-width: 1120px) {
    .beneficios-block-1 {
        width: 220px;
        height: 220px;
        border-radius: 50% 0 0 50%;
    }
    .beneficios-block-2 {
        width: 220px;
        height: 220px;
        border-radius: 0 50% 0 0;
    }
    .beneficios-block-3 {
        width: 220px;
        height: 220px;
        border-radius: 0 0 0 50%;
    }
    .beneficios-block-4 {
        width: 220px;
        height: 220px;
        border-radius: 0 50% 50% 0;
    }
    .beneficios-block-superior {
        padding-right: 220px;
    }
    .beneficios-block-inferior {
        padding-left: 220px;
    }
    .beneficios-block-principal {
        width: 660px;
        height: 440px;
    }
    .beneficios-dashed {
        width: 685px;
        height: 465px;
        border: none;
        margin: 0 auto;
    }
    .beneficios-img-group {
        height: auto;
        width: 100%;
        padding: 0;
    }
    .beneficios {
        max-width: 834px;
        height: auto;
        display: block;
    }
    .beneficios-descrito {
        max-width: 834px;
        width: 100%;
        padding: 0 40px;
        height: auto;
    }
    .beneficios-descrito-title {
        text-align: center;
    }
    .beneficios-descrito-title, .beneficios-descrito-b1, .beneficios-descrito-b2, .beneficios-descrito-b3, .beneficios-descrito-b4 {
        justify-content: center;
    }
}

@media (max-width: 440px) {
    .beneficios-dashed {
        width: 100%;
        height: auto;
        border: none;
        margin: 0 auto;
    }
    
    .beneficios-block-principal {
        width: 320px;
        height: 320px;
        margin: 0 auto;
    }
    
    .beneficios-block-superior {
        padding-right: 0;
    }
    
    .beneficios-block-1 {
        width: 160px;
        height: 160px;
        border-radius: 50% 0 0 0;
    }
    
    .beneficios-block-2 {
        width: 160px;
        height: 160px;
        border-radius: 0 50% 0 0;
    }
    
    .beneficios-block-inferior {
        padding-left: 0;
    }
    
    .beneficios-block-3 {
        width: 160px;
        height: 160px;
        border-radius: 0 0 0 50%;
    }
    
    .beneficios-block-4 {
        width: 160px;
        height: 160px;
        border-radius: 0 0 50% 0;
    }
    
    .beneficios-descrito {
        max-width: 441px;
        width: 100%;
        padding: 0 10px;
        height: auto;
    }
    
    .beneficios-descrito-title h2 {
        font-size: 24px;
    }
    
    .beneficios-descrito-title, .beneficios-descrito-b1, .beneficios-descrito-b2, .beneficios-descrito-b3, .beneficios-descrito-b4 {
        height: auto;
    }
    
    .tooltip-div {
        left: 0;
        transform: translateX(-20%);
    }
    
    .tooltip-div::after {
        left: 23%;
    }
}

/* ------------------------------------------------------ AUTO ATENDIMENTO PARA CLIENTES --------------------------------------------------------------- */

.auto-at {
    max-width: 1200px;
    margin: 30px auto;
    height: 300px;
    padding: 10px;
    display: flex;
    align-items: center;
}

.auto-at-ola {
    width: 380px;
    padding: 10px;
}

.auto-at-direct {
    width: 800px;
    display: flex;
}

.auto-at-ola h2 {
    font-size: 36px;
    margin: 25px 0;
    line-height: 55px;
    color: #fff;
}

.auto-at-ola p {
    font-size: 18px;
    color: #fff;
}

.auto-at-ola-p {
    background: linear-gradient(to right, #ffbd07, #ff8b07);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    display: inline-block;
}

.auto-at-superior {
    width: 50%;
    display: flex;
}

.auto-at-inferior {
    width: 50%;
    display: flex;
}

.auto-at-box1, .auto-at-box2, .auto-at-box3, .auto-at-box4 {
    width: 180px;
    height: 180px;
    margin: auto 10px;
    background: #ea0202;
    border-radius: 20px;
    padding: 10px;
} 

.auto-at-box1:hover, .auto-at-box2:hover, .auto-at-box3:hover, .auto-at-box4:hover {
    background: #a80002;
} 

.borda-aab {
    border: 1px solid #fff;
    border-radius: 20px;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-shadow: 0px 0px 7px 0px rgb(0 0 0 / 46%);
}

.auto-at-box1 i, .auto-at-box2 i, .auto-at-box3 i, .auto-at-box4 i {
    font-size: 45px;
    display: block;
    text-align: center;
    color: #fff;
} 

.auto-at-span {
    font-size: 16px;
    color: #fff;
    text-align: center;
    display: block;
    line-height: 20px;
    margin: 10px 0;
}

@media (max-width: 834px) {
    .auto-at {
        max-width: 100%;
        height: auto;
        margin: 60px auto;
    }
    
    .auto-at-direct {
        width: 400px;
        flex-direction: column;
    }
    
    .auto-at-superior {
        width: 100%;
        margin-bottom: 10px;
    }
    
    .auto-at-inferior {
        width: 100%;
        margin-top: 10px;
    }
}

@media (max-width: 440px) {
    .auto-at {
        max-width: 100%;
        height: auto;
        margin: 60px auto;
        display: block;
    }
    
    .auto-at-direct {
        width: 100%;
        flex-direction: column;
    }
    
    .auto-at-box1, .auto-at-box2, .auto-at-box3, .auto-at-box4 {
        width: 160px;
        height: 160px;
    } 
}

/* ------------------------------------------------------ FAQ - PERGUNTAS E RESPOSTAS --------------------------------------------------------------- */

.faq {
    width: 100%;
    background: #c30102;
    padding: 35px 20px;
}

.faq-container {
    max-width: 1200px;
    margin: 0 auto;
}

.faq-title {
    text-align: center;
    font-size: 2rem;
    font-weight: 900;
    margin-bottom: 30px;
    color: #fff;
}

.faq-item {
    background: #fff;
    border-radius: 10px;
    margin: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
    width: 580px;
    float: left;
}

.faq-question {
    background: #fff;
    border: none;
    width: 100%;
    text-align: left;
    padding: 12px 20px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #222;
    transition: background 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

.faq-question:hover {
    background: #f0f0f0;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    background: #fce4e4;
    transition: all 0.4s ease;
    padding: 0 20px;
    line-height: 1.6;
}

.faq-item.actives .faq-answer {
    max-height: 300px;
    padding: 15px 20px;
}

.faq-icon {
    font-size: 25px;
    transition: transform 0.3s ease;
    color: #e31e24;
}

.faq-item.actives .faq-icon {
    transform: rotate(45deg);
}

@media (max-width: 834px) {
    .faq-item {
        margin: 10px auto;
        width: 100%;
    }
}

.footer-section {
    max-width: 1200px;
    margin: 50px auto 0;
    padding: 10px;
}

.footer-section h2 {
    font-size: 35px;
    font-weight: 900;
    margin: 10px 0;
    color: #fff;
}

.color-fsh2 {
    background: linear-gradient(to bottom, #ea0202, #fff, #ea0202);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    display: inline-block;
}

.footer-40 {
    margin: 0;
    font-size: 18px;
    font-weight: 500;
    color: #fff;
}

.footer-section-hp {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}

.footer-suporte {
    width: 49%;
}

.footer-suporte h4, .footer-comercial h4 {
    font-size: 18px;
    color: #fff;
}

.footer-suporte p, .footer-comercial p {
    font-size: 16px;
    color: #fff;
}

.footer-comercial {
    width: 49%;
}

.footer-redes {
    display: flex;
    width: 100%;
    margin: 25px 0;
}

.footer-img {
    width: 49%;
}

.footer-link {
    width: 49%;
}

.list-inline {
    display: flex;
    align-content: center;
    align-items: center;
    list-style-type: none;
    flex-wrap: wrap;
    justify-content: space-around;
}

.list-inline-item {
    margin-bottom: 5px;
}

.list-inline-item a {
    color: #fff;
    font-size: 15px;
}

.logo_footer {
    height: 80px;
    margin-right: 20px;
}

.rede-footer {
    padding: 8px;
    background: #fff;
    border-radius: 8px;
    color: #c30102;
}

.rede-footer:hover {
    background: #e31e24;
    color: #fff;
}

.footer-final {
    width: 100%;
    text-align: center;
    font-size: 15px;
    margin: 30px 0;
    color: #fff;
}

.links-maps {
    margin: 30px auto 50px;
    width: 400px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    color: #fff;
}

@media (max-width: 834px) {
    .footer-section {
        max-width: 100%;
    }
    .list-inline {
        display: block;
    }
}

@media (max-width: 440px) {
    .footer-section-hp {
        display: block;
    }
    .list-inline {
        display: block;
    }
    .footer-suportel {
        width: 100%;
    }
    .footer-comercial {
        width: 100%;
    }
    .footer-link {
        width: 100%;
    }
    .footer-redes {
        display: block;
    }
}


/* Dialog container */
dialog {
  border: none;
  padding: 0;
  border-radius: 16px;
  background: #f4f4f4;
  width: 420px;
  max-width: 90%;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.7);
  animation: fadeIn 0.18s ease-out;
}

/* Backdrop */
dialog::backdrop {
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(6px);
}

/* Card inside dialog */
.dialog-card {
  padding: 22px;
}

.fechar-dialog {
    position: absolute;
    top: 10px;
    right: 10px;
}

/* Close button */
.close-btn {
    width: 30px;
    height: 30px;
    display: flex;
    background: #a20a12;
    border: 1px solid #a20a12;
    border-radius: 50px;
    color: #fff;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.close-btn:hover {
  background: #6b0006;
}

.style-ti-d {
    font-size: 20px;
    font-weight: 500;
}

.style-span-d {
    text-align: right;
    display: block;
    font-weight: 600;
}

.style-div-d {
    width: 100%;
    font-size: 12px;
    display: flex;
    align-items: center;
    background: #d4d4d4;
    padding: 10px 10px 10px 0;
    position: relative;
    justify-content: flex-end;
    border-radius: 8px;
    margin-top: 20px;
}

.style-type-d {
    position: absolute;
    left: 10px;
    padding: 3px 15px;
    background: #e31e24;
    color: #fff;
    text-transform: uppercase;
    border-radius: 5px;
}

.style-text-d {
    cursor: pointer;
    max-width: 39ch;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* Simple entrance animation */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(6px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.form-container {
    width: 100%;
}

.drop-zone {
    border: 2px dashed #e31e24;
    border-radius: 12px;
    padding: 8px;
    text-align: center;
    background-color: #f8fafc;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    align-items: center;
}

.drop-zone--over {
    background-color: #edf5ff;
    border-color: #2563eb;
    transform: scale(1.02);
}

.drop-zone__input {
    display: none;
}

.drop-zone__icon {
    font-size: 35px;
}

.drop-zone__text {
    color: #64748b;
    font-size: 14px;
    line-height: 1.5;
    margin: 0;
}

.drop-zone__text strong {
    color: #e31e24;
}

.file-list {
    margin-top: 20px;
    max-height: 150px;
    overflow-y: auto;
}

.file-item {
    background-color: #f1f5f9;
    padding: 10px 14px;
    border-radius: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
    font-size: 14px;
    color: #334155;
}

.btn-submit {
    width: 100%;
    background-color: #e31e24;
    color: white;
    border: none;
    padding: 14px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s;
}

.btn-submit:hover {
    background-color: #a20a12;
}

/* Grupo de campos */
.form-group {
    margin-bottom: 10px;
}

.form-group2 {
    margin-bottom: 10px;
}

.form-row {
    display: flex;
    gap: 10px;
}

.form-row .form-group {
    flex: 1;
}

label {
    display: block;
    margin-bottom: 2px;
    font-size: 14px;
    font-weight: 500;
}

/* Estilização dos Inputs e Textarea */
input[type="text"],
input[type="email"],
textarea {
    width: 100%;
    padding: 10px 16px;
    border: 1.5px solid #cbd5e1;
    border-radius: 8px;
    font-size: 13px;
    color: #334155;
    background-color: #fff;
    transition: all 0.2s ease;
    outline: none;
    font-family: 'Poppins', sans-serif;
}

input[type="text"]:focus,
input[type="email"]:focus,
textarea:focus {
    border-color: #e31e24;
    box-shadow: 0 0 0 3px rgba(74, 144, 226, 0.15);
}

textarea {
    resize: vertical;
    min-height: 70px;
}

 /* Estilização das Checkboxes */
.checkbox-group {
    margin-top: 15px;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 5px;
    color: #475569;
    font-size: 12px;
    font-weight: normal;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    margin-top: 3px;
    accent-color: #0e9e15; /* Cor moderna para o preenchimento da caixinha */
    width: 16px;
    height: 16px;
    cursor: pointer;
}

.checkbox-label a {
    color: #4a90e2;
    text-decoration: none;
}

.checkbox-label a:hover {
    text-decoration: underline;
}

.text-blue-500 {
    text-align: center;
    font-weight: 600;
    margin: 5px 0;
}

.dados-seguro {
    padding: 10px;
    border: 1px solid #a609ff;
    border-radius: 20px;
    background: #eee2f5;
    margin: 10px 0 25px;
}

/* Responsividade para telas menores */
@media (max-width: 480px) {
    .form-row {
        flex-direction: column;
        gap: 0;
    }
}
