:root{
    --primary: #1A1A1A;
    --secondary: #FFD700;
    --terciary: #E60000;
    --background: #ffff;;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

body {
    background-color: var(--background);
}

h2 {
    font-size: 2.5rem;
}

h2 span{
    color: var(--terciary);
}

/*menu */
.menu-frame {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 5%;
    z-index: 1000;
    transition: all 0.4s ease;
    background: transparent;
}


.menu-frame.scrolled {
    background-color: var(--primary); 
    padding: 30px;
}

.menu-frame.scrolled li a{
     color: var(--background);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.nav-logo img {
    max-height: 50px; 
    transition: 0.3s;
    margin-right: 40px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-links li a {
    text-decoration: none;
    color: var(--primary);
    font-weight: 600;
    font-size: 15px;
    transition: color 0.3s;
}

.nav-links li a:hover {
    color: var(--terciary); 
}

.link-destaque {
    color: var(--secondary) !important;
}

.has-mega-menu {
    position: static !important; 
}

.mega-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--primary);
    border-top: 1px solid rgba(0,0,0,0.05);
    padding: 40px 0;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.has-mega-menu:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mega-menu-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 350px 1fr; 
    gap: 50px;
    padding: 0 30px;
}

.mega-column-featured {
    background: var(--background-secondary);
    padding: 30px;
    border-radius: 4px;
}

.featured-content .tagline {
    font-size: 0.7rem;
    margin-bottom: 10px;
}

.featured-content h3 {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.featured-content p {
    font-size: 0.85rem;
    line-height: 1.6;
    color: var(--text-light);
    margin-bottom: 20px;
}

.featured-content img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 4px;
}

/* Grid de Tópicos */
.topics-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 40px;
}

.topic-item h4 {
    font-size: 0.8rem;
    text-transform: uppercase;
    color: var(--secondary);
    letter-spacing: 1px;
    margin-bottom: 12px;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    padding-bottom: 5px;
}

.topic-item ul {
    list-style: none;
    padding: 0;
}

.topic-item ul li a {
    text-transform: none !important;
    letter-spacing: 0 !important;
    font-size: 0.8rem !important;
    color: var(--background);
    font-weight: 500;
    line-height: 1.4;
    transition: 0.3s;
}

.topic-item ul li a:hover {
    color: var(--secondary);
    padding-left: 5px;
}

/* Footer do Menu */
.mega-menu-footer {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid rgba(0,0,0,0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mega-menu-footer p {
    font-size: 0.85rem;
    font-weight: 500;
}

.mega-menu-footer a {
    color: var(--secondary);
    font-weight: 700;
    text-decoration: none;
    font-size: 0.85rem;
}

/* Botão do Menu */
.btn-contato {
    text-decoration: none;
    background-color: var(--terciary); 
    color: var(--background);
    padding: 12px 24px;
    font-weight: 600;
    transition: background 0.3s;
    margin-left: 30px;
}

.btn-contato:hover {
    background-color: #a50000;
}

/* Botão Mobile */
.mobile-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--terciary);
    margin: 5px 0;
}

/*banner inicial */
.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    padding: 0 5%;
    background-image: url('../img/banner1.png');
    background-size: cover;
    background-position: center;
}

#heroBanner {
    transition: background-image 0.8s ease-in-out;
}
#heroContent {
    transition: opacity 0.5s ease-in-out;
}

.hero-content {
    max-width: 650px;
    color: var(--primary);
    z-index: 2;
}

.hero-content h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 20px;
    font-weight: 700;
}

.hero-content h1 span {
    color: var(--terciary);
}

.hero-content p {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 40px;
    color: var(--primary);
}

.btn-hero {
    text-decoration: none;
    background-color: transparent;
    color: var(--terciary);
    padding: 18px 36px;
    font-weight: 700;
    font-size: 16px;
    transition: background 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 3px solid var(--terciary);
    text-transform: uppercase;
}

.btn-hero:hover {
    background-color: var(--terciary);
    color: var(--background);
}

.side-navigation {
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 10;
}

.nav-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.nav-dot.active {
    background-color: var(--terciary);
    width: 15px;
    height: 15px;
}

.nav-dot:not(.active) {
    border: 3px solid var(--terciary);
    opacity: 0.6;
}

.nav-dot:hover:not(.active) {
    opacity: 1;
    transform: scale(1.1);
}

.hero-footer {
    position: absolute;
    bottom: 30px;
    left: 5%;
    width: 90%;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.divider-line {
    width: 100%;
    height: 1px;
    background-color: var(--background);
    opacity: 0.4;
}

/*services*/
.subtitle{
    border-left: 5px solid var(--terciary);
    display: flex;
    font-size: 1.1rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

#simulacao{
    color: var(--background);
}

.subtitle p{
    margin-left: 5px;
}
.services{
    padding: 80px;
}

.services-container{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    padding: 40px 20px;
    margin-top: 40px;
}

.stats-grid{
    text-align: center;
    line-height: 1.6;
}

.stats-grid h1{
    font-size: 1rem;
}

.stats-grid h2{
    font-size: 1.8rem;
}

.border{
    border-right: 5px solid var(--secondary);
    height:20vh;
}

/*simulador*/
.simulador{
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    padding: 0 5%;
    background-image: url('../img/sumula.png');
    background-size: cover;
    background-position: center;
}

.simulador-content{
    max-width: 750px;
    color: var(--primary);
    line-height: 1.6;
    font-size: 1.5rem;

}

.div-buttons{
    display: flex;
    gap: 30px;
    margin-top: 20px;
}

.btn-banner{
    padding: 18px 36px;
    border: 3px solid var(--terciary);
    background: transparent;
    color: var(--terciary);
    cursor: pointer;
    text-transform: uppercase;
    transition: 0.5s;
    text-decoration: none;
    font-size: 1rem ;
    font-weight: 600;

}

.btn-banner:hover{
    background: var(--terciary);
    color: var(--background);
}

/*sobre-home*/

.sobre-container {
    width: 100%;
    margin: 0 auto;
}

.sobre-card {
    background-color: var(--background);
    display: grid;
    grid-template-columns: 1fr 1fr; 
    overflow: hidden; 
}

.sobre-img-container {
    position: relative;
    background-color: var(--background); 
    overflow: hidden;
}

.sobre-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover; 
    display: block;
}

.sobre-text-container {
    padding: 80px; 
    background-color: #ffc935; 
    display: flex;
    flex-direction: column;
    justify-content: space-between; 
}


.compregrana-titulo {
    font-size: 36px;
    font-weight: bold;
    color: var(--primary);
    margin: 0 0 40px 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.compregrana-titulo .logo-accent {
    color: var(--primary); 
}

.sobre-content {
    margin-bottom: 50px;
    
}

.sobre-content p {
    font-size: 1.1rem;
    
    text-align: justify;
    line-height: 1.8;
    margin-bottom: 25px;
    color: var(--primary);
}

/* UNIDADES */
.unidades-mapa-section {
    padding: 80px 5%;
    background-color:var(--background); 
    color: var(--primary);
}

.unidades-mapa-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 55% 45%; 
    gap: 40px;
    align-items: center;
    padding-top: 40px;
}

.sidebar-header {
    margin-bottom: 30px;
}

.unidades-titulo {
    font-size: 2.5rem;
    font-weight: 700;
    margin: 10px 0;
    text-align: center;
}

.unidades-p {
    text-align: center;
}

.unidades-titulo span {
    color: var(--terciary); 
    text-align: center;
}

.carousel-wrapper {
    overflow: hidden;
    width: 100%;
    position: relative;
    padding-bottom: 10px;
}

.cards-rolaveis {
    display: flex;
    flex-direction: row; 

    transition: transform 0.5s ease-in-out;
    gap: 20px;
    width: 100%; 
    max-height: none;
    overflow-y: visible;
    padding-right: 0;
}

.cards-rolaveis::-webkit-scrollbar { 
    display: none; 
}

.unidade-card {
    width: calc(50% - 10px); 
    flex-shrink: 0;
    background-color: #ffffff; 
    border-radius: 8px;
    color: var(--primary);
    box-shadow: 0 4px 15px rgba(0,0,0,0.05); 
}

.unidade-card.destaque {
    border-color: #e61e25;
    box-shadow: 0 0 20px rgba(230, 30, 37, 0.3);
    transform: scale(1.02);
}

.card-linha-topo {
    height: 4px;
    width: 100%;
    background: var(--secondary);
    border-radius: 8px 8px 0 0;
}

.unidade-info {
    padding: 20px;
    height: 85%;
}

.unidade-info h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    text-align: center;
}

.unidade-info h3 span {
    color: #e61e25;
    font-size: 0.85rem;
}

.unidade-info p {
    font-size: 0.9rem;
    color: var(--primary);
    margin-bottom: 8px;
    line-height: 1.4;
}

.unidades-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.unidade-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #d4d4d8;
    cursor: pointer;
    transition: 0.3s;
}

.unidade-dot.active {
    background-color: var(--terciary);
    transform: scale(1.2);
}

.btn-whatsapp {
    display: flex;
    text-align: center;
    justify-content: center;
    gap: 10px;
    background-color:  #03a83f;
    color: #ffffff; 
    text-decoration: none;
    padding: 15px;
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 0 0 8px 8px;
    transition: 0.3s;
}

.btn-whatsapp:hover {
    background-color: #25D366;
    color: #fff;
}

/* Lado Direito - MAPA */
.unidades-mapa-visual {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.img-mapa-brasil {
    width: 100%;
    max-width: 700px;
    opacity: 0.9;
     
}

.pin {
    position: absolute;
    width: 14px;
    height: 14px;
    background-color: var(--terciary); 
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
}

.pin-pulse {
    position: absolute;
    top: -6px;
    left: -6px;
    width: 26px;
    height: 26px;
    background-color: rgba(187, 16, 16, 0.425);
    border-radius: 50%;
    animation: pulsar 2s infinite;
    z-index: -1;
}

@keyframes pulsar {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(2.5); opacity: 0; }
}

.pin-tooltip {
    position: absolute;
    bottom: 25px; 
    left: 50%;
    transform: translateX(-50%) translateY(10px); 
    background-color: #ffffff;
    color: var(--primary);
    padding: 10px 15px;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 800;
    opacity: 0;
    pointer-events: none; 
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275); 
    white-space: nowrap;
    border-bottom: 3px solid var(--terciary); 
    z-index: 50;
}

.pin-tooltip::after {
    content: '';
    position: absolute;
    top: 100%; 
    left: 50%;
    transform: translateX(-50%);
    border-width: 6px;
    border-style: solid;
    border-color: var(--terciary) transparent transparent transparent; 
}

.pin:hover .pin-tooltip {
    opacity: 1;
    transform: translateX(-50%) translateY(0); 
}

/* modal */
.pin-modal-overlay {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.pin-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.pin-modal-content {
    background: #fff;
    padding: 30px;
    max-width: 400px;
    width: 90%;
    position: relative;
    transform: translateY(20px);
    transition: all 0.3s ease;
    border-top: 5px solid var(--terciary); 
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
}

.pin-modal-overlay.active .pin-modal-content {
    transform: translateY(0);
}

.close-pin-modal {
    position: absolute;
    top: 15px; right: 15px;
    font-size: 2rem;
    cursor: pointer;
    color: #a1a1aa;
    background: none; border: none;
    transition: 0.3s;
}
.close-pin-modal:hover { color: var(--terciary); }

/* DÚVIDAS */
.faq-section {
    padding: 80px;
    background-color: var(--background); 
    color: var(--primary);
}

.faq-container {
    max-width: 1400px; 
    margin: 0 auto;
}

/* Cabeçalho */
.faq-header {
    text-align: center;
    margin-bottom: 50px;
}

.faq-subtitle {
    display: inline-block;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    color: #e61e25; 
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.faq-titulo {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.faq-titulo span {
    color: #fbbc05; 
}

.faq-header p {
    font-size: 1.1rem;
    color: #666666;
}

.faq-lista {
    display: flex;
    flex-direction: column;
    gap: 15px; 
}

.faq-item {
    border: 1px solid #e4e4e7;
    border-radius: 12px;
    overflow: hidden;
    background-color: #fcfcfc;
    transition: all 0.3s ease;
}

.faq-item.ativo {
    border-color: #e61e25; 
    background-color: #ffffff;
    box-shadow: 0 10px 20px rgba(230, 30, 37, 0.05);
}

.faq-pergunta {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px;
    background: none;
    border: none;
    font-family: inherit;
    font-size: 1.1rem;
    font-weight: 700;
    color: #111111;
    text-align: left;
    cursor: pointer;
    transition: color 0.3s;
}

.faq-item:hover .faq-pergunta {
    color: #e61e25;
}

.faq-icone {
    font-size: 1.5rem;
    font-weight: 400;
    color: #a1a1aa;
    transition: transform 0.4s ease;
}

.faq-item.ativo .faq-icone {
    transform: rotate(45deg);
    color: #e61e25;
}

.faq-resposta {
    display: grid;
    grid-template-rows: 0fr; 
    transition: grid-template-rows 0.4s ease;
}

.faq-item.ativo .faq-resposta {
    grid-template-rows: 1fr; 
}

.faq-resposta-conteudo {
    overflow: hidden;
}

.faq-resposta-conteudo p {
    padding: 0 25px 25px 25px;
    margin: 0;
    font-size: 1rem;
    line-height: 1.6;
    color: #555555;
}

/* CTA Final */
.faq-cta-final {
    text-align: center;
    margin-top: 50px;
    padding-top: 40px;
    border-top: 1px solid #eeeeee;
}

.faq-cta-final p {
    font-weight: 600;
    color: #333;
    margin-bottom: 20px;
}

.btn-faq-whatsapp {
    display: inline-block;
    background-color: #25D366; 
    color: #ffffff;
    padding: 15px 30px;
    border-radius: 8px;
    font-weight: 700;
    text-decoration: none;
    transition: 0.3s;
}

.btn-faq-whatsapp:hover {
    background-color: #1ebc59;
}

/* Responsividade */
@media (max-width: 768px) {
    .faq-titulo {
        font-size: 2rem;
    }
    .faq-pergunta {
        font-size: 1rem;
        padding: 20px;
    }
    .faq-resposta-conteudo p {
        padding: 0 20px 20px 20px;
    }
}

@media (max-width: 992px) {
    .unidades-mapa-container {
        grid-template-columns: 1fr;
    }
    
    .unidades-mapa-visual {
        grid-row: 1;
        padding-bottom: 30px;
    }
    
    .unidades-sidebar {
        grid-row: 2;
    }
}

/* Responsividade */
@media (max-width: 768px) {
    .unidade-card {
        min-width: 85vw; 
    }
    .unidades-header {
        flex-direction: column;
        align-items: flex-start;
    }
    .desktop-only {
        display: none;
    }
}

/*foter*/
footer {
    font-family: 'Montserrat', sans-serif; 
    color: #111111;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    
}

.footer-top-section {
    background-color: var(--background); 
    padding: 80px;;
}

.footer-links-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
   
    
}

.link-column h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--terciary);
}

.link-column a {
    display: block;
    font-size: 0.95rem;
    color: var(--primary); 
    text-decoration: none;
    margin-bottom: 16px;
    transition: color 0.2s;
}

.link-column a:hover {
    color: var(--terciary);
}

.footer-divider {
    height: 1px;
    background-color: #d4d4d8;
    margin-bottom: 40px;
}

.footer-brand-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.footer-logo {
    max-width: 220px;
    height: auto;
}

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

.social-icon img {
    width: 30px; 
    height: 30px;
    object-fit: contain;

}

.social-icon:hover {
    background-color: #d4d4d8;
    transform: scale(1.05);
}

/* Slogan e Endereço */
.footer-brand-bottom {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
     margin-bottom: 60px;
}

.footer-brand-bottom h3 {
    font-size: 1.6rem;
    font-weight: 700;
    color: #3f2c25; 
}

.footer-brand-bottom p {
    font-size: 0.85rem;
    color: #52525b;
}

.footer-bottom-section {
    background-color: #ffc935; 
    padding: 40px 0;
    color: #000000;
}

.legal-box-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.legal-box-top h4 {
    font-size: 1.1rem;
    font-weight: 700;
}

.partners-box {
    display: flex;
    align-items: center;
    gap: 20px;
}

.partners-text {
    font-size: 0.9rem;
    font-weight: 700;
}

.partner-logo {
    height: 40px;
    opacity: 0.5;
    filter: brightness(0) invert(0);
}

.legal-box-bottom p {
    font-size: 0.85rem;
    line-height: 1.6;
    color: var(--primary); 
    text-align: justify;
}

.footer-copy{
    display: flex;
    justify-content: center ;
    gap: 50px;
    padding: 20px;
    margin: 0;
    font-size: 0.8rem;
    background: #ffc935;
}

/*franqueado-home*/
.franquia-home-section {
    background-color: var(--background); 
    padding: 100px 5%;
    color: var(--primary);
    overflow: hidden;
}

.franquia-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr; 
    gap: 60px;
    align-items: center;
}

.franquia-content {
    max-width: 550px;
}


.franquia-titulo {
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
}

.franquia-titulo span {
    color: var(--terciary); 
}

.franquia-texto {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--primary); 
    margin-bottom: 30px;
}

.franquia-beneficios {
    list-style: none;
    padding: 0;
    margin-bottom: 40px;
}

.franquia-beneficios li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--primary);
}

.franquia-beneficios li img {
    width: 20px;
    height: 20px;
    filter: brightness(0) saturate(100%) invert(86%) sepia(35%) saturate(1514%) hue-rotate(352deg) brightness(105%) contrast(106%); 
    
}
.franquia-imagem-wrapper {
    position: relative;
    border-radius: 16px;
}

.franquia-img {
    width: 100%;
    height: 100%;
    max-height: 550px;
    object-fit: cover;
    border-radius: 16px;
    position: relative;
    z-index: 2;
}

.franquia-detalhe-visual {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100%;
    height: 100%;
    border: 3px solid #fbbc05; 
    border-radius: 16px;
    z-index: 1;
}

/*simuladores*/

main {
    align-items: center;
    width: 100%;
    margin: 0 auto; 
}


.sim-layout-premium {
    width: 100%;
    background-color: var(--background); 
    padding-bottom: 80px;
    font-family: 'Montserrat', sans-serif;
}

.sim-header {
    width: 100%;
    height: 100vh;
    background-image: url('../img/banner-simulador.png');
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    align-items: center; 
    justify-content: center;
    position: relative;
}

.sim-header-textos {
    display: flex;
    flex-direction: column;
    text-align: center;
    color: var(--primary);
    max-width: 700px;
    justify-content: center;
    align-items: center;
}


.sim-header-textos p {
    font-size: 1.1rem;
    color: var(--primary);
}

.centralizar-botoes {
    justify-content: center;
    width: 100%;
    margin-top: 30px;
}

.sim-premium-wrapper {
    max-width: 1100px;
    margin: -100px auto 0 auto; 
    padding: 0 20px;
    position: relative;
    z-index: 10;
}

.hidden-info {
    display: none;
    opacity: 0;
    transform: translateY(30px);
}

.visible-info {
    display: block;
    animation: deslizarSuave 0.6s ease forwards;
}

.info-modalidade-wrapper {
    max-width: 900px;
    margin: -80px auto 40px auto; 
    padding: 0 20px;
    position: relative;
    z-index: 10;
}

.info-card-premium {
    background-color: var(--background);
    padding: 50px 40px;
    text-align: center;
}

.info-icon {
    font-size: 3.5rem;
    color: var(--terciary);
    margin-bottom: 15px;
}

.info-card-premium h2 {
    color: var(--primary);
    margin-bottom: 20px;
}

.info-card-premium h2 span {
    color: var(--terciary);
}

.info-card-premium p {
    font-size: 1.1rem;
    color: var(--primary);
    line-height: 1.7;
    margin-bottom: 30px;
    text-align: justify;
}

.info-lista {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 15px;
   
    margin: 0 auto 40px auto;
    text-align: left;
}

.info-lista li {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--primary);
}

.info-lista li ion-icon {
    font-size: 1.5rem;
    color: var(--terciary); 
}

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

.info-moldura-wrapper {
    position: relative;
    width: 100%;
    z-index: 2;
}

.info-detalhe-visual {
    position: absolute;
    top: -15px; 
    right: -15px; 
    width: 100%;
    height: 100%;
    border: 3px solid; 
    z-index: 1; 
}


.border-vermelho { 
    border-color: var(--terciary); 
}

.info-card-premium {
    position: relative;
    z-index: 2; 
    background-color: #ffffff;
   
}

/*solucoes page*/
.solucoes-hero {
    width: 100%;
    background-image: url('../img/banner-solucao.png');
    background-size: cover;
    display: flex;
    justify-content: left;
    align-items: center;
    text-align: left;
    padding: 0 5%; 
    height: 90vh;
}

.solucoes-hero-content {
    max-width: 600px;
    color: var(--primary);
}

.solucoes-hero-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.solucoes-hero-content h1 span {
    color: var(--terciary);
}

.solucoes-hero-content p {
    font-size: 1.2rem;
    line-height: 1.6;
    color: var(--primary);
}

.solucoes-main-lista { 
    background-color: var(--background); 
}
.solucoes-intro-bloco {
    text-align: left; 
    max-width: 1400px;
    margin: 0 auto; 
    padding: 80px;
 }

.solucoes-intro-bloco h2 { 
    font-size: 2.2rem; 
    color: var(--primary); 
    margin-bottom: 15px; 
}

.solucoes-intro-bloco p { 
    font-size: 1.1rem; 
    color: #555; 
    line-height: 1.7; 
}

.bloco-solucao { 
    padding: 80px 5%; 
    border-bottom: 1px solid #eeeeee;
}

.bloco-solucao.fundo-cinza { 
    background-color: #f8f9fa; 
}

.bloco-container { 
    max-width: 1200px; 
    margin: 0 auto; 
    display: flex; 
    align-items: center; 
    gap: 80px; 
} 


.solucao-imagem-wrapper {
    flex: 1; 
    position: relative; 
    border-radius: 16px;
    z-index: 2;
    display: flex; 
    justify-content: center;
    align-items: center;
}

/* A Imagem Real */
.solucao-img {
    width: 100%;
    height: 100%;
    max-height: 450px; 
    object-fit: cover; 
    border-radius: 16px;
    position: relative; 
    z-index: 2; 
}

.solucao-detalhe-visual {
    position: absolute;
    top: -20px; 
    right: -20px; 
    width: 100%;
    height: 100%;
    border: 3px solid; 
    border-radius: 16px;
    z-index: 1; 
}

.bloco-solucao.invertido .solucao-detalhe-visual {
    right: auto; 
    left: -20px; 
}

.border-vermelho { border-color: var(--terciary); }
.border-amarelo { border-color: var(--secondary); }
.border-preto { border-color: var(--primary); }

.bloco-texto { 
    flex: 1.2; 
}

.bloco-texto h3 { 
    font-size: 2.2rem; 
    color: var(--primary); 
    margin-bottom: 10px; 
    line-height: 1.2;
 }

.subtitulo-destaque { 
    font-size: 1.1rem; 
    color: var(--terciary); 
    font-weight: 700;
    margin-bottom: 25px; 
}
.bloco-texto p { 
    font-size: 1.05rem; 
    color: #555;
    line-height: 1.8; 
    margin-bottom: 25px; 
    text-align: justify; 
}

.lista-beneficios { 
    list-style: none; 
    margin-bottom: 40px; 
}

.lista-beneficios li { 
    display: flex; 
    align-items: flex-start; 
    gap: 15px; 
    font-size: 1rem; 
    color: #444; 
    margin-bottom: 15px; 
    line-height: 1.5; 
}
.lista-beneficios li ion-icon { 
    font-size: 1.5rem; 
    color: var(--terciary); 
    flex-shrink: 0; 
}

.lista-beneficios li span { 
    color: var(--terciary); 
    font-weight: 800; 
    font-size: 1.1rem; 
}

/* BOTÕES DOS BLOCOS */
.btn-bloco-solucao {
    display: inline-flex; 
    align-items: center; 
    gap: 10px; 
    background-color: transparent;
    color: var(--terciary); 
    padding: 16px 32px; 
    border: 3px solid var(--terciary); 
    font-weight: 700;
    font-size: 1.1rem; 
    text-decoration: none; 
    transition: 0.3s;
    text-transform: uppercase
}
.btn-bloco-solucao:hover { 
    background-color: var(--terciary);
    color: var(--background);
}

.btn-outline { 
    background-color: transparent; 
    color: var(--primary); 
    border: 2px solid var(--primary); 
}

.btn-outline:hover { 
    background-color: var(--primary); 
    color: var(--secondary); 
 }


/*planos page*/
.sonhos-hero {
    width: 100%;
    background-image: url('../img/plano.png');
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 5%; 
    height: 90vh;
}

.sonhos-hero-content {
    max-width: 800px;
    color: var(--primary);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#franqueados-text{
    text-align: left;
    justify-content: left;
    align-items: self-start;
    margin-right: 520px;
    width: 55%;



}

 #certificado-hero {
    align-items: self-start;
    text-align: left;
    padding-left: 200px;
    }


.sonhos-hero-content h1 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.sonhos-hero-content h1 span {
    color: var(--terciary); 
}

.sonhos-hero-content p {
    font-size: 1.2rem;
    line-height: 1.6;
    color: var(--primary);
}

/* 2. INTRODUÇÃO */
.sonhos-main {
    background-color: var(--background);
}

.sonhos-intro {
    text-align: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 5% 60px 5%;
    display: flex;
    flex-direction: column;
    text-align: justify;
    
}

.sonhos-intro h2 {
    font-size: 2.2rem;
    color: var(--primary);
    margin-bottom: 15px;
    align-items: center;
}

.sonhos-intro p {
    font-size: 1.15rem;
    color: var(--primary);
    line-height: 1.8;
}

.sonhos-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5% 80px 5%;
}

.sonhos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

/*Cards */
.sonhos-card {
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    overflow: hidden; 
    border: 1px solid #eeeeee;
    transition: transform 0.3s;
}

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

.card-img-wrapper {
    width: 100%;
    height: 220px;
    position: relative;
}

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

.card-icon {
    position: absolute;
    bottom: -25px;
    right: 30px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.8rem;
    border: 4px solid var(--background);
}

.bg-vermelho { background-color: var(--terciary); color: var(--background); }
.bg-amarelo { background-color: var(--secondary); color: var(--background); }
.bg-preto { background-color: var(--primary); color: var(--background); }

.card-body {
    padding: 40px 30px 30px 30px;
}

.card-body h3 {
    font-size: 1.6rem;
    color: var(--terciary);
    margin-bottom: 15px;
}

.card-body p {
    font-size: 1rem;
    color:var(--primary);
    line-height: 1.6;
    margin-bottom: 25px;
    text-align: justify;
}

.sonhos-lista {
    list-style: none;
    padding: 0;
}

.sonhos-lista li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 12px;
}

.sonhos-lista li ion-icon {
    color: var(--terciary);
    font-size: 1.2rem;
}

.sonhos-cta {
    background-image: url('../img/contato.png');
    background-size: cover;
    text-align: center;
    border-top: 1px solid #e4e4e7;
    padding: 0 5%; 
    height: 90vh;
    display:flex;
    flex-direction: column;
    align-items:center;
    justify-content: center;
}

.cta-content {
    max-width: 1400px;
    margin: 0 auto;
    padding-left: 400px;
    text-align: left;
   
}

.cta-content h2 {
    font-size: 2.2rem;
    color: var(--b);
    margin-bottom: 15px;
}

.cta-content p {
    font-size: 1.1rem;
    color: var(--primary);
    margin-bottom: 35px;
    line-height: 1.6;
}

/*certificado*/
.certificado-hero {
    width: 100%;
    background-image: url('../img/certificado.png');
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 5%; 
    height: 90vh;
}

/*quem somos*/
.quem-somos-hero {
    width: 100%;
    background-image: url('../img/sobre-nos.png');
    background-size: cover;
    padding: 0 5%; 
    height: 90vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.quem-somos-intro {
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 5%;
    display: flex;
    align-items: center;
    gap: 60px;
}

.intro-texto { 
    flex: 1; 
}

.intro-texto h2 { 
    margin-bottom: 15px; 
}

.intro-texto p { font-size: 1.1rem; color: var(--primary); line-height: 1.8; margin-bottom: 15px; text-align: justify; }
.intro-texto strong { color: var(--terciary); }

.intro-imagem {
    flex: 1;
    position: relative;
    border-radius: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.intro-imagem img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 16px;
    position: relative;
    z-index: 2;
}

.borda-decorativa-vermelha {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100%;
    height: 100%;
    border: 4px solid var(--terciary);
    border-radius: 16px;
    z-index: 1;
}

.como-funciona-section {
    background-color: var(--background); 
    padding: 80px 5%;
}

.como-funciona-header {
    text-align: center;
    max-width: 1400px;
    margin: 0 auto 60px auto;
    align-items: center;
    justify-content: center;
    display: flex;
    flex-direction: column;
    
}
.como-funciona-header h2 {  
    margin-bottom: 15px; 
}

.como-funciona-header h2 span { 
    color: var(--terciary);  
}

.como-funciona-header p { 
    font-size: 1.1rem; 
    color: var(--primary); 
}

.passo-a-passo-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.passo-card {
    background: var(--background);
    padding: 40px 20px 30px 20px;
    border-radius: 16px;
    position: relative;
    text-align: center;
    border-top: 4px solid #e4e4e7;
    transition: 0.3s;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.passo-card:hover {
    transform: translateY(-10px);
    border-top-color: var(--secondary);
}

.passo-numero {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: var(--terciary);
    color: #fff;
    font-size: 1.2rem;
    font-weight: 800;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.passo-icone {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 15px;
    margin-top: 10px;
}

.passo-card h3 { 
    font-size: 1.3rem; 
    color: var(--primary); 
    margin-bottom: 10px; 
}

.passo-card p { 
    font-size: 0.95rem; 
    color: var(--primary); 
    line-height: 1.5; 
}

.passo-card strong { 
    color: var(--primary); 
}

/*franqueado page*/
.franquia-page-hero {
    width: 100%;
    background-image: url('../img/banner4.png');
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 5%; 
    height: 90vh;
}

.franquia-hero-content p { 
    font-size: 1.2rem; 
    line-height: 1.6; 
    color: #e4e4e7; 
}

/* CONTAINER GERAL */
.franquia-container {
    max-width: 1400px; 
    margin: 0 auto; 
    padding: 80px 5%; 
}

.split-layout { 
    display: flex; 
    align-items: center; 
    gap: 80px; 
}


.vantagens-grid-moderno {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 40px;
}

.vantagem-item-clean {
    text-align: center;
    padding: 30px;
    border-radius: 16px;
    background: #f8f9fa; 
    transition: 0.3s;
}

.vantagem-item-clean:hover {
    background: #ffffff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transform: translateY(-5px);
}

.vantagem-item-clean ion-icon { font-size: 3rem; color: var(--terciary); margin-bottom: 15px; }
.vantagem-item-clean h3 { font-size: 1.3rem; color: var(--primary); margin-bottom: 10px; }
.vantagem-item-clean p { font-size: 0.95rem; color: var(--primary); line-height: 1.6; }

/* SEÇÃO DO FORMULÁRIO */
.franquia-form-section {
    background-color: #f4f4f5; 
    padding: 40px 0;
}

.form-texto-lado { 
    flex: 1; 
    padding-right: 20px; 
}

.form-texto-lado h2 { 
    font-size: 2.5rem; 
    color: var(--primary); 
    margin-bottom: 15px; 
    line-height: 1.2; 
}
.form-texto-lado p { 
    font-size: 1.1rem; 
    color: var(--primary); 
    line-height: 1.7; 
    margin-bottom: 40px; }

.contato-direto-info {
    border-left: 4px solid var(--secondary); 
    padding-left: 20px; 
}

.info-item { 
    display: flex; 
    align-items: center; 
    gap: 15px; 
    font-size: 1.1rem; 
    font-weight: 700; 
    color: var(--primary); 
    margin-bottom: 15px; 
}

.info-item ion-icon { 
    color: var(--terciary); 
    font-size: 1.5rem; 
}


.form-input-lado { flex: 1.2; }

.form-moldura-wrapper {
    position: relative;
    width: 100%;
    z-index: 2;
}

.form-detalhe-visual {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100%;
    height: 100%;
    border: 3px solid var(--secondary);
    z-index: 1; 
}

.form-card-premium {
    position: relative;
    z-index: 2; 
    background-color: #ffffff;
    padding: 40px;
}

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


.flat-input-group textarea {
    width: 100%;
    padding: 16px;
    border: 2px solid #e4e4e7;
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    color: #333;
    outline: none;
    transition: 0.3s;
    background: #fafafa;
}

.flat-input-group textarea {
    resize: vertical;
    line-height: 1.5;
}

.flat-input-group textarea:focus {
    border-color: var(--terciary); 
    background: #ffffff;
}

.btn-submit-premium {
    width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background-color: transparent; 
    color: var(--terciary); 
    padding: 20px;
    border: 1px solid var(--terciary);
    font-size: 1.1rem;
    font-weight: 800;
    cursor: pointer;
    transition: 0.3s;
    margin-top: 10px;
}

.btn-submit-premium ion-icon { font-size: 1.5rem; }

.btn-submit-premium:hover {
    background-color: var(--terciary); 
    color: var(--background);
    transform: translateY(-3px);
}

/*formularios*/
.sim-pagina {
    min-height: 100vh;
    padding: 140px 5% 0 5%;
    background: #ffc935;
}

.simulador-split-layout {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
}

.split-left {
    flex: 1;
}

.form-header {
    text-align: left;
    margin-bottom: 40px;
}

.form-header h1 {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 10px;
}

.form-header p {
    font-size: 1.1rem;
    color: var(--primary);
}

.img-form img {
    max-width: 900px;
    height: 100vh;
    display: block;
    
}


.split-right{
    flex: 1.5;
}

.form-card-wizard {
    position: relative;
    z-index: 2; 
    background: #ffffff;
    padding: 50px 40px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

.info-moldura-wrapper-form {
    position: relative;
    width: 100%;
    z-index: 2;
}

.info-detalhe-visual-form  {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    z-index: 1;
}

/*etapas*/

.progress-bar{
    height: 100%;
    background: var(--terciary);
    transition: width 1s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.cg-stepper { display: flex; align-items: center; justify-content: space-between; margin-bottom: 50px; }
.cg-step { display: flex; flex-direction: column; align-items: center; position: relative; z-index: 2; }
.cg-circle { width: 40px; height: 40px; border-radius: 50%; background: #f4f4f5; color: #a1a1aa; display: flex; align-items: center; justify-content: center; font-weight: 800; transition: 0.4s; border: 3px solid #ffffff; }
.cg-step-text { font-size: 0.75rem; color: #a1a1aa; margin-top: 8px; font-weight: 600; text-transform: uppercase; }

.cg-step.active .cg-circle { 
    background: var(--secondary); 
    color: var(--primary); 
    transform: scale(1.1); 
    box-shadow: 0 0 0 3px var(--terciary); 
}

.cg-step.active .cg-step-text { 
    color: var(--primary); 
    font-weight: 800; 
}
.cg-step.completed .cg-circle { 
    background: var(--terciary); 
    color: #ffffff; 
}

.cg-line { 
    flex: 1; 
    height: 4px; 
    background: #f4f4f5; 
    margin: 0 -15px; 
    position: relative; 
    top: -12px; 
    z-index: 1; 
}

.cg-line::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0%;
    background: var(--terciary);
    transition: width 0.8s ease-in-out;
}

.cg-line.active::before {
    width: 100%;
}

.cg-line.active { 
    background: var(--terciary); 
}

#step-2 label{
    margin-top: 15px;
}
.form-step{
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.flat-input-group label {  
    font-size: 0.8rem; 
    font-weight: 700; 
    color: #333; 
    margin-bottom: 8px;
}

.flat-input-group input, 
.flat-input-group select {
    width: 100%; 
    padding: 10px; 
    border: none;
    border-bottom: 2px solid #e4e4e7;
    font-size: 1rem; 
    color: #333; 
    outline: none; 
    transition: 0.3s;
}
.flat-input-group input:focus, 
.flat-input-group select:focus {
    border-color: var(--terciary); 
    background: #fff;
}

.display-valor-clean { 
    width: 100%; 
    border: none; 
    background: transparent; 
    font-size: 1.8rem; 
    font-weight: 800; 
    color: var(--terciary); 
    outline: none; 
    text-align: center; 
    margin: 10px 0; 
}

.cg-slider{
    -webkit-appearance: none; 
    appearance: none;        
    width: 100%;              
    height: 5px;              
    background: #e4e4e7;    
    border-radius: 4px;       
    outline: none;            
    margin: 15px 0;
}

.cg-slider::-webkit-slider-thumb{
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--terciary);
    cursor: pointer;
    transition: 0.2s ease;
}

.cg-slider::-webkit-slider-thumb:hover{
    transform: scale(1.15);
    background: var(--secondary);
}

.cg-slider::-moz-range-thumb {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: var(--terciary);
    cursor: pointer;
    border: 4px solid var(--secondary);
    transition: 0.2s ease;
}

.cg-slider::-moz-range-thumb:hover {
    transform: scale(1.15);
    background: #cc0000;
}

.slider-minmax{
    display: flex;
    justify-content: space-between;
}

.slider-header{
    font-weight: 600;
    font-size: 1.2rem;
}

.resultado-flat-box {
    margin-top: 10px;
}
.res-linha-flat { 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    margin-bottom: 8px; 
}

.res-linha-flat span { 
    font-weight: 600; 
    color: var(--primary); 
}

.res-linha-flat strong { 
    font-size: 1.5rem; 
    font-weight: 800; 
}

.btn-form{
    align-items:center;
    justify-content: right;
    display: flex;
}

.btn-advance{
    text-decoration: none;
    background-color: transparent;
    color: var(--terciary);
    padding: 18px 36px;
    font-weight: 700;
    font-size: 16px;
    transition: background 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 3px solid var(--terciary);

}

.btn-disabled{
    cursor: block;
    border: #b6b6b6;
    color: #b6b6b6;
}

#TED-group{
    display: flex;
    gap: 10px;
}

/*input img*/
.flat-input-group label[for^="file_"] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    background-color: #f8f9fa; 
    border: 2px dashed #d4d4d8; 
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
    margin-top: 15px;
}

.flat-input-group label[for^="file_"]:hover {
    background-color: #ffffff; 

}
.flat-input-group label[for^="file_"] div:first-child {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary);
    transition: color 0.3s;
}

.flat-input-group label[for^="file_"]:hover div:first-child {
    color: var(--terciary); 
}

.img-label {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 10px;
}

.img-label img {
    max-width: 100%;
    height: 180px !important; 
    object-fit: cover; 
    border-radius: 12px;
}

.img-label img[src=""] {
    display: none !important;
}

.whats-finalizar{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 50px;;
}

.whats-finalizar p{
    font-weight: 600;
}


/*whatsapp*/

.whatsapp-float {
    position: fixed; 
    width: 60px; 
    height: 60px; 
    bottom: 60px; 
    right: 40px; 
    border-radius: 50%; 
    text-align: center; 
    font-size: 30px; 
    z-index: 1000; 
    display: flex;
    align-items: center; 
    justify-content: center; 
    text-decoration: none; 
    background: #0f9b49;
    cursor: pointer;
}

.whatsapp-float img.whatsapp-icon {
    width: 30px; 
    height: 30px; 
    vertical-align: middle; 
    border: none; 
   
}

.whatsapp-float:hover {
    transform: scale(1.05); 
    transition: all 0.3s ease; 
}

.whatsapp-badge {
    position: absolute; 
    top: -10px; 
    right: 70px; 
    background-color: var(--background); 
    color:  #0f9b49; 
    padding: 10px 15px; 
    border-radius: 5px; 
    font-size: 14px; 
    font-weight: 600;
    white-space: nowrap; 
    opacity: 0; 
    visibility: hidden; 
    transform: translateX(10px); 
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease; 
}

.whatsapp-badge::after {
    content: "";
    position: absolute;
    top: 50%;
    right: -5px; 
    border-width: 5px;
    border-style: solid;
    border-color: transparent transparent transparent #075E54; 
    transform: translateY(-50%);
}


.whatsapp-float:hover .whatsapp-badge {
    opacity: 1; 
    visibility: visible; 
    transform: translateX(0); 
}



/* Responsividade */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.2rem;

    }
    .hero-buttons, .div-buttons {
        flex-direction: column; 
        width: 90%;
        gap: 15px;
    }
    .btn-banner, .btn-hero {
        text-align: center;
        justify-content: center;
        width: 100%;
    }

    /* Serviços */
    .services {
        padding: 40px 20px;
    }

    /* Simulador */
    .simulador-content {
        font-size: 1.2rem; 
    }

    /* Sobre a Empresa */
    .sobre-text-container {
        padding: 40px 20px;
    }
    .compregrana-titulo {
        font-size: 28px;
    }

    /* Unidades */
    .unidade-card {
        min-width: 85vw; 
    }
    .unidades-titulo {
        font-size: 2rem;
    }

    /* Dúvidas */
    .faq-section {
        padding: 60px 5%;
    }
    .faq-titulo {
        font-size: 2rem;
    }
    .faq-pergunta {
        font-size: 1rem;
        padding: 20px;
    }
    .faq-resposta-conteudo p {
        padding: 0 20px 20px 20px;
    }

    /* Footer */
    .footer-top-section {
        padding: 50px 5%;
    }
    .footer-links-grid {
        grid-template-columns: 1fr; 
        gap: 40px;
    }
    .footer-copy {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .sim-tabs {
        flex-direction: column;
    }
    .sim-valor-display {
        font-size: 1.8rem;
    }
    .sim-valor-final {
        font-size: 2rem;
    }

    /* .sonhos-hero-content h1 { 
        font-size: 2.8rem; 
    }
    .sonhos-intro h2 { 
        font-size: 1.8rem; 
    } */
    .sonhos-grid {
        grid-template-columns: 1fr; 
    }

    .certificado-hero-content h1 { 
        font-size: 2.8rem; 
    }

    .certificado-intro h2 { 
        font-size: 1.8rem; 
    }

    .certificado-grid {
        grid-template-columns: 1fr;
    }

    .quem-somos-hero-content h1 { 
        font-size: 2.8rem; 
    }
    .passo-a-passo-grid { 
        grid-template-columns: 1fr; 
    } 

     .franquia-hero-content h1 { font-size: 2.5rem; }
    .form-row { flex-direction: column; gap: 20px; } 
    .form-card-premium { padding: 30px 20px; }

    .info-card-premium { padding: 40px 20px; }
    .info-card-premium h2 { font-size: 1.8rem; }
    .info-detalhe-visual {
        top: -10px;
        right: -10px;
    }

    .form-card-wizard { padding: 30px 20px; }
    .cg-step-text { display: none; } 
    .cg-circle { width: 30px; height: 30px; font-size: 0.9rem; }
    .display-valor-clean { font-size: 2rem; }

    
}

/*responsividade*/
@media (max-width: 992px) {
    .nav-links, .desktop-only {
        display: none;
    }
    .mobile-toggle {
        display: block;
    }

   .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--primary); 
        flex-direction: column;
        align-items: center;
        padding: 30px 0;
        display: none !important; 
        box-shadow: 0 10px 20px rgba(0,0,0,0.2);
    }

    .nav-links.active {
        display: flex !important; 
    }

    .nav-links li a {
        color: var(--background) !important; 
        font-size: 1.2rem;
        padding: 10px;
        display: block;
    }

    .mobile-toggle span {
        transition: 0.3s all ease-in-out;
    }
    
    .mobile-toggle.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    
    .mobile-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-toggle.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .hero-content h1 {
        font-size: 2.8rem;
    }

    .side-navigation {
        display: flex !important; 
        flex-direction: row;     
        top: auto;                
        right: auto;            
        bottom: 40px;             
        left: 50%;                
        transform: translateX(-50%); 
        gap: 15px;
    }

    .hero{
        height: 100vh; 
        min-height: 55vh; 
        padding: 120px 5% 60px 5%; 
        background-position: left center; 
        background-size: cover; 
        display: flex;
        align-items: center;
        justify-content: center;
        /* background-image: linear-gradient(to right, #6644109c, #6644109c); */
    }

    .hero-content {
        display: flex; 
        padding: 10px;
        width: 100%;
        text-align: center;
        flex-direction: column;
        padding-bottom: 180px;
    }

    .hero-content #heroText{
        display: none;
    }

    .hero-content h1 {
        font-size: 2.5rem;
        margin-bottom: 10px;
    }

    .hero-content h1 span {
        display: block; 
        font-size: 2rem;
    }

    .hero-content p{
        text-align: justify;
        font-size: 1rem;
        
    }

    /* Serviços */
    .services-container {
        flex-direction: column;
        gap: 30px;
    }
    .border {
        border-right: none;
        border-bottom: 5px solid var(--secondary);
        width: 100%;
        max-width: 250px;
        height: 0;
        margin: 10px 0;
    }

    .sobre-card {
        grid-template-columns: 1fr; 
    }
    .sobre-img-container {
        height: 350px; 
    }
    .sobre-text-container {
        padding: 50px 30px;
    }

    /* Unidades e Mapa */
    .unidades-mapa-container {
        grid-template-columns: 1fr;
    }
    .unidades-mapa-visual {
        grid-row: 1; 
        padding-bottom: 30px;
    }
    .unidades-sidebar {
        grid-row: 2; 
    }

    /* Seja um Franqueado */
    .franquia-container {
        grid-template-columns: 1fr; 
        gap: 50px;
    }
    .franquia-imagem-wrapper {
        margin-right: 20px; 
    }
    .franquia-titulo {
        font-size: 2.3rem;
    }

    /* Footer */
    .footer-links-grid {
        grid-template-columns: repeat(1, 1fr);
        text-align: center;
    }
    .footer-brand-top, .footer-brand-bottom, .legal-box-top {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    .footer-brand-bottom p {
        margin-top: 10px;
    }

    .footer-bottom-section{
        padding: 40px;
        text-align: center;
    }

    .footer-container{
        text-align: center;
    }

       .sim-grid-card {
        grid-template-columns: 1fr; 
    }
    .sim-side-calc {
        border-right: none;
        border-bottom: 1px solid #eeeeee;
    }
    .sim-premium-hero { 
        height: auto; 
        padding-bottom: 150px; 
    }

    .sim-hero-textos h1 { 
        font-size: 2.2rem; 
    }

    .sim-card {
        flex-direction: column;
        gap: 40px;
    }
    /* .sim-divisor {
        width: 100%;
        height: 1px;
    } */
    .sim-resultado {
        text-align: center;
        align-items: center;
        width: 100%;
    }

    .sim-side-calc, .sim-side-form { 
        padding: 30px 20px; 
    }

    .clean-input-grid { 
        grid-template-columns: 1fr; 
    } 

    .full-span { 
        grid-column: span 1; 
    }

    .display-valor { 
        font-size: 2.2rem; 
    }

     .sonhos-grid {
        grid-template-columns: repeat(1, 1fr);
    }

    .certificado-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .quem-somos-intro { 
        flex-direction: column; 
        gap: 40px; 
    }

    .intro-imagem { 
        width: 100%; 
        max-width: 600px; 
    }

    .passo-a-passo-grid { 
        grid-template-columns: repeat(1, 1fr); 
        gap: 40px 30px; 
    } 

    .split-layout { 
        flex-direction: column; 
        gap: 50px; 
    }

    .vantagens-grid { 
        grid-template-columns: repeat(2, 1fr); 
    }

    .form-texto-lado { 
        padding-right: 0; 
        text-align: center; 
    }

    .split-layout { flex-direction: column; gap: 60px; }
    .vantagens-grid-moderno { grid-template-columns: 1fr; gap: 20px; }
    .form-texto-lado { padding-right: 0; text-align: center; }
    .contato-direto-info { text-align: left; display: inline-block; }

    .form-detalhe-visual { top: -15px; right: -15px; }

    .whatsapp-float {
        width: 50px; 
        height: 50px;
        bottom: 20px;
        right: 20px;
    }
    
    .whatsapp-float img.whatsapp-icon {
        width: 30px; 
        height: 30px; 
    }
    
    .whatsapp-badge {
        right: 60px; 
        font-size: 12px;
    }

    .simulador-split-layout{
        flex-direction: column-reverse;
    }

    .img-form img{
        max-width: 300px;
        height: auto;
    }

    .cg-line{
        top: 0;
    }

    .sonhos-cta{
        background-image: url('../img/mobile/1.png');
        background-size: cover;
        text-align: center;
        
    }

    .cta-content{
       padding: 5px;
       margin-bottom: 255px;
    }

    .cta-content p{
        display: none;
    }

    .subtitle {
        text-align: center;
        margin-bottom: 40px;;
    }

    h2{
        text-align: center;
        font-size: 2rem;
    }

    .simulador-content{
        text-align: center;
        padding-top: 100px;
    
    }

    .div-buttons{
        justify-content: center;
        align-items:center;
        margin-bottom: 130px;
        width: 100%;
        /* padding: 20px; */
    }

    #simul-btns button{
        padding: 10px 5px;
        font-size: 0.9rem;
        
    }

     #simul-btns{
        width: 80%;
        margin-bottom: 130px;

     }

    /* .div-buttons a{
        background: var(--terciary);
        color: #fff;
    } */

    .bloco-container{
        display: flex;
        flex-direction: column-reverse;
        gap:50px;
    }

    .solucoes-intro-bloco{
        padding: 30px;
        text-align: justify;
    }

    .bloco-texto{
        padding: 10px;
    }

    .lista-beneficios li{
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .bloco-solucao.invertido{
        flex-direction: column;
        display: flex;
    }

    .solucoes-hero{
        background-image: url('../img/mobile/22.png');
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    
    .solucoes-hero-content h1{
        text-align: center;
        margin-bottom: 100px;
        font-size: 2.5rem;
        
    }

    .solucoes-hero-content p{
        display: none;
    }

    .sonhos-hero{
        background-image: url('../img/mobile/3.png');
        
    }

    .sonhos-hero-content h1{
        font-size: 2.5rem;
    }

    .quem-somos-hero{
        background-image: url('../img/mobile/9.png');

    }

    .sonhos-hero-content #p-somos {
        display: none;
    }

    .sonhos-hero-content{
        margin-bottom: 200px;
    }

    #sonhos{
        margin-bottom: 0;
        
    }

    .certificado-hero{
        background-image: url('../img/mobile/10.png');
    }

    .certificado-hero #p-somos{
        display: none;
    }

    .franquia-page-hero{
         background-image: url('../img/mobile/6.png');
    }

    .sim-header{
        background-image: url('../img/mobile/4.png');
    }

    .sim-header-textos{
        align-items: center;
        display: flex;
        flex-direction: column;

    }

    .sim-header-textos h2{
        font-size: 1.5rem;
    }

    .sim-header-textos p{
        font-size: 0.9rem;
    }

    .btn-bloco-solucao{
        display: flex;
        align-items: center;
        justify-content: center;
    }

    #certificado-hero{
        align-items: center;
        text-align: center;
        padding-left: 0;
    }

    .cards-rolaveis {
        flex-direction: column;
        width: 100%;
        transform: none !important; 
        max-height: 550px;
        overflow-y: auto;
    }
    
    .unidade-card {
        width: 100%; /* Ocupa tudo no celular */
    }
    
    .unidades-dots {
        display: none; 
    }

    .btn-hero ion-icon{
        font-size: 2rem;
    }
   
    #franqueados-text{
        align-items: center;
        text-align: center;
        width: 100%;
        margin-right: 0;
        padding-top: 90px;

    }




    
    
}