@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&display=swap');

html {
    scroll-behavior: smooth;
}

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

body {
    background-color: #030816;
    color: #ffffff;
    line-height: 1.6;
    zoom: 0.9;
    overflow-x: hidden;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 5%;
    background-color: rgba(2, 5, 15, 0.85); 
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px); 
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar .logo a {
    font-size: 1.2rem;
    font-weight: bold;
    color: inherit;
    text-decoration: none;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-img {
    height: 45px; 
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0px 0px 8px rgba(255, 255, 255, 0.8));
}

.cor-wash {
    color: #00a8ff;
}

.cor-market {
    color: #00e676;
}

.nav-links {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-links a {
    text-decoration: none;
    color: #e0e0e0;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #00a8ff;
}

.btn-fale-conosco {
    background-color: #00a8ff;
    color: #ffffff !important;
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s, transform 0.2s;
}

.btn-fale-conosco:hover {
    background-color: #0082c8;
    transform: scale(1.05);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: rgba(255, 255, 255, 0.6);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hero-section {
    width: 100%;
    display: flex;
    justify-content: center;
    background-color: #000;
    position: relative;
    margin-top: -1px; 
    z-index: 1; 
}

.hero-banner {
    max-width: 100%;
    height: auto;
    display: block;
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 50px;
    background: linear-gradient(to bottom, transparent, #030816);
    pointer-events: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

hr {
    border: none;
    height: 1px;
    background-color: #1a2235;
    margin: 20px 0;
}

.about-section {
    display: flex;
    gap: 40px;
    align-items: stretch;
    margin-top: 40px;
    margin-bottom: 60px;
}

.about-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.about-image img {
    width: 100%;
    max-width: 100%;
    height: 100%; 
    max-height: 800px;
    object-fit: cover;
    object-position: center top;
    border-radius: 8px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
    display: block;
}

.about-content {
    flex: 1.2;
}

.about-content h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    line-height: 1.2;
    color: #ffffff;
}

.about-content p {
    font-size: 1rem;
    color: #e0e0e0;
    margin-bottom: 30px;
}

.tags-container {
    display: flex;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.tag {
    background-color: #2952ff;
    color: #ffffff;
    padding: 10px 15px;
    font-size: 0.8rem;
    font-weight: 600;
    border-radius: 2px;
}

.tag-green {
    background-color: #00e676;
    color: #000;
}

.subtitle {
    font-size: 1.6rem;
    margin-bottom: 20px;
    font-weight: 400;
    color: #ffffff;
}

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

.reason-box {
    background-color: #2952ff;
    color: #ffffff;
    padding: 30px 15px;
    text-align: center;
    border-radius: 2px;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s;
}

.reason-box:hover {
    transform: translateY(-3px);
}

.reason-box.full-width {
    grid-column: span 3;
    padding: 40px 15px;
    font-size: 1.1rem;
}

.autonomo-section {
    margin-top: 80px;
    margin-bottom: 60px;
}

.autonomo-title {
    font-size: 2.2rem;
    color: #ffffff;
    margin-bottom: 15px;
    font-weight: 500;
}

.autonomo-desc {
    font-size: 1.1rem;
    color: #e0e0e0;
    margin-bottom: 60px;
    max-width: 900px;
}

.autonomo-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    column-gap: 50px;
}

.autonomo-card {
    border: 2px solid #5d8fff;
    border-radius: 6px;
    padding: 35px 25px 25px;
    position: relative;
    background-color: transparent;
}

.card-icon {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #5d8fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-icon svg {
    width: 20px;
    height: 20px;
}

.autonomo-card h3 {
    font-size: 1.3rem;
    color: #ffffff;
    margin-bottom: 12px;
    font-weight: 500;
}

.autonomo-card p {
    font-size: 1rem;
    color: #b0b0b0;
    line-height: 1.5;
}

.locations-section {
    margin-top: 80px;
    margin-bottom: 80px;
    text-align: center;
}

.locations-header {
    margin-bottom: 40px;
}

.locations-header h2 {
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.locations-header p {
    font-size: 1.1rem;
    color: #b0b0b0;
    max-width: 700px;
    margin: 0 auto;
}

.map-wrapper {
    width: 100%;
    margin-bottom: 40px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 168, 255, 0.1);
    border: 1px solid rgba(0, 168, 255, 0.2);
}

.map-image {
    width: 100%;
    height: auto;
    display: block;
}

.locations-list h3 {
    font-size: 1.2rem;
    color: #ffffff;
    margin-bottom: 20px;
    font-weight: 400;
}

.locations-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    max-width: 900px;
    margin: 0 auto;
}

.loc-tag {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #e0e0e0;
    padding: 8px 18px;
    border-radius: 20px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.loc-tag:hover {
    background-color: #00a8ff;
    color: #ffffff;
    border-color: #00a8ff;
    transform: translateY(-2px);
}

.pricing-section {
    margin-top: 80px;
    margin-bottom: 80px;
}

.pricing-header {
    margin-bottom: 40px;
}

.pricing-header h2 {
    font-size: 2.2rem;
    color: #ffffff;
    margin-bottom: 10px;
}

.pricing-header p {
    font-size: 1rem;
    color: #b0b0b0;
}

.pricing-cards-wrapper {
    display: flex;
    gap: 20px;
    justify-content: space-between;
    align-items: stretch;
    flex-wrap: nowrap;
    overflow: visible;
}

.pricing-cards-wrapper.flex-wrap {
    flex-wrap: wrap;
}

.pricing-card {
    flex: 1;
    background-color: transparent;
    padding: 20px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    text-align: center;
}

.pricing-card.card-min-width {
    min-width: 280px;
}

.pricing-card.lavanderia-card {
    border: none;
    background-color: rgba(0, 168, 255, 0.03);
}

.pricing-card.lavanderia-card.highlight {
    border: none;
    background-color: #030610; 
}

.pricing-card.highlight {
    background-color: #030610;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

.pricing-card img {
    width: 100% !important;
    height: 260px !important;
    object-fit: contain !important;
    object-position: center !important;
    margin: 0 auto 20px auto !important;
    margin-bottom: 20px;
}

.pricing-card h3 {
    font-size: 1.6rem;
    color: #ffffff;
    margin-bottom: 5px;
}

.pricing-card h4 {
    font-size: 0.95rem;
    color: #e0e0e0;
    font-weight: normal;
    margin-bottom: 30px;
}

.pricing-card ul {
    list-style: none;
    text-align: left;
    margin-bottom: 30px;
    flex-grow: 1;
}

.pricing-card ul li {
    font-size: 0.85rem;
    color: #c0c0c0;
    margin-bottom: 15px;
    position: relative;
    padding-left: 15px;
}

.pricing-card ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #ffffff;
}

.pricing-total {
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.pricing-total p {
    font-size: 1rem;
    font-weight: bold;
    color: #ffffff;
    margin-bottom: 10px;
}

.price-value {
    font-size: 1.1rem !important;
}

.price-value small {
    display: block;
    font-size: 0.8rem;
    font-weight: normal;
    color: #a0a0a0;
    margin-top: 5px;
}

.pricing-footer {
    margin-top: 40px;
    font-size: 0.9rem;
    color: #b0b0b0;
    display: flex;
    align-items: center;
}

.pricing-footer::before {
    content: '✉';
    margin-right: 10px;
    font-size: 1.2rem;
}

.resultados-section {
    margin-top: 80px;
    margin-bottom: 80px;
}

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

.resultados-header h2 {
    font-size: 2.2rem;
    color: #ffffff;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.resultados-header p {
    color: #b0b0b0;
    font-size: 1.1rem;
}

.resultados-grid {
    display: grid;
    gap: 40px;
    margin-bottom: 60px;
}

.resultados-grid.grid-3-cols {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.resultados-grid.grid-2-cols {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1000px; 
    margin: 0 auto;
}

.linha span:first-child small {
    display: block;
    color: #8892b0;
    font-size: 0.8rem;
    margin-top: 3px;
}

.resultado-card {
    display: flex;
    flex-direction: column;
}

.card-title {
    font-size: 1.4rem;
    color: #ffffff;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.card-title.title-center {
    justify-content: center;
}

.tabela-resultados {
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 25px;
    background-color: transparent;
}

.linha {
    display: flex;
    justify-content: space-between;
    padding: 15px 20px;
    font-size: 0.9rem;
    color: #c0c0c0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.linha:last-child {
    border-bottom: none;
}

.linha:nth-child(odd) {
    background-color: rgba(255, 255, 255, 0.02);
}

.resultado-destaque {
    padding-left: 5px;
}

.lucro {
    color: #00e676;
    font-size: 1.4rem;
    margin-bottom: 8px;
}

.margem {
    color: #ffb300;
    font-size: 1.1rem;
    font-weight: bold;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    text-align: center;
    margin-bottom: 50px;
}

.stats-grid.stats-2-cols {
    grid-template-columns: repeat(2, 1fr);
    max-width: 700px;
    margin: 0 auto 50px auto; 
}

.stat-item h3 {
    font-size: 3rem;
    color: #ffffff;
    margin-bottom: 10px;
    font-weight: 300;
}

.stat-item p {
    font-size: 1.1rem;
    color: #e0e0e0;
    margin-bottom: 5px;
    font-weight: bold;
}

.stat-item small {
    color: #8892b0;
    font-size: 0.9rem;
}

.market-card {
    justify-content: flex-start;
}

.market-desc {
    font-size: 0.9rem;
    color: #b0b0b0;
    text-align: left;
    margin-bottom: 25px;
    line-height: 1.5;
}

.market-desc-center {
    text-align: center;
    font-size: 1.1rem;
    margin-top: 15px;
    border: none;
}

.market-boxes-container {
    margin-top: auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding-top: 20px;
}

.market-box {
    background-color: #041235;
    border: 1px solid rgba(0, 168, 255, 0.15);
    border-radius: 6px;
    padding: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    text-align: left;
}

.market-box svg {
    width: 20px;
    height: 20px;
    color: #00a8ff;
    flex-shrink: 0;
}

.market-box span {
    font-size: 0.9rem;
    color: #ffffff;
    line-height: 1.4;
}

.market-box small {
    display: block;
    font-size: 0.75rem;
    color: #a0a0a0;
    margin-top: 2px;
}

.condicoes-section {
    margin-top: 80px;
    margin-bottom: 80px;
}

.condicoes-layout {
    display: flex;
    gap: 50px;
    align-items: stretch;
}

.condicoes-textos {
    flex: 1.2; 
    padding-right: 50px; 
}

.condicoes-textos h2 {
    font-size: 2.2rem;
    color: #ffffff;
    margin-bottom: 15px;
}

.condicoes-desc {
    font-size: 1rem;
    color: #b0b0b0;
    margin-bottom: 40px;
    line-height: 1.6;
}

.condicoes-desc strong {
    color: #00a8ff;
    font-weight: normal;
}

.condicoes-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.cond-card {
    background-color: #07357c;
    border: 1px solid rgba(0, 168, 255, 0.2);
    border-radius: 8px;
    padding: 25px 20px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.cond-card.full {
    grid-column: span 2;
    flex-direction: row;
    align-items: center;
    gap: 20px;
}

.icon-circle {
    background-color: #4da6ff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.cond-card.full .icon-circle {
    margin-bottom: 0; 
    flex-shrink: 0;
}

.icon-circle svg {
    width: 20px;
    height: 20px;
    color: #030816;
}

.cond-card h3 {
    font-size: 1.1rem;
    color: #ffffff;
    margin-bottom: 10px;
    font-weight: 500;
}

.cond-card.full h3 {
    margin-bottom: 0;
}

.cond-card p {
    font-size: 0.85rem;
    color: #d0d0d0;
    line-height: 1.5;
}

.condicoes-imagem {
    flex: 1;
    display: flex;
    justify-content: flex-end; 
}

.condicoes-imagem img {
    width: 100%;
    max-width: 450px; 
    height: auto;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.oferta-section {
    margin-top: 80px;
    margin-bottom: 80px;
}

.oferta-titulo-principal {
    font-size: 2.2rem;
    color: #ffffff;
    margin-bottom: 30px;
}

.oferta-banner {
    background-color: #041235;
    border-radius: 8px;
    padding: 25px 30px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 50px;
    border: 1px solid rgba(0, 168, 255, 0.2);
}

.oferta-icon svg {
    width: 30px;
    height: 30px;
    color: #00a8ff;
    flex-shrink: 0;
    margin-top: 5px;
}

.oferta-texto h3 {
    font-size: 1.1rem;
    color: #ffffff;
    margin-bottom: 10px;
    line-height: 1.4;
}

.oferta-texto p {
    font-size: 0.95rem;
    color: #d0d0d0;
}

.oferta-subtitulo {
    font-size: 1.8rem;
    color: #ffffff;
    margin-bottom: 15px;
}

.oferta-desc {
    font-size: 1rem;
    color: #b0b0b0;
    margin-bottom: 40px;
}

.destaque-azul {
    color: #00a8ff;
    font-weight: bold;
}

.precos-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.preco-box {
    text-align: center;
    padding: 20px;
}

.preco-box h4 {
    font-size: 3rem;
    margin-bottom: 15px;
    font-weight: 300;
}

.preco-box.antigo h4 {
    color: #8892b0;
    text-decoration: line-through;
}

.preco-box.novo h4 {
    color: #ffffff;
}

.preco-box p {
    font-size: 0.9rem;
    color: #e0e0e0;
    margin-bottom: 10px;
}

.preco-box small {
    display: block;
    font-size: 0.8rem;
    color: #8892b0;
}

.preco-parcelado {
    text-align: center;
    font-size: 2.2rem;
    color: #ffffff;
    margin-bottom: 50px;
}

.oferta-aviso {
    background-color: #041235;
    border-radius: 8px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 40px;
    border: 1px solid rgba(0, 168, 255, 0.2);
}

.aviso-icon svg {
    width: 24px;
    height: 24px;
    color: #00a8ff;
    flex-shrink: 0;
}

.oferta-aviso p {
    font-size: 0.9rem;
    color: #e0e0e0;
    line-height: 1.5;
}

.oferta-cta {
    text-align: center;
    margin-top: 50px;
}

.oferta-cta p {
    font-size: 1.1rem;
    color: #ffffff;
    font-weight: bold;
    margin-bottom: 20px;
}

.btn-garantir-franquia {
    display: inline-block;
    background-color: #00e676;
    color: #000000;
    font-weight: bold;
    font-size: 1.2rem;
    padding: 15px 40px;
    border-radius: 6px;
    text-decoration: none;
    text-transform: uppercase;
    transition: transform 0.3s, background-color 0.3s, box-shadow 0.3s;
    box-shadow: 0 5px 15px rgba(0, 230, 118, 0.3);
    animation: pulsar-botao 2s infinite;
}

.btn-garantir-franquia:hover {
    background-color: #00c853;
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 230, 118, 0.4);
}

@keyframes pulsar-botao {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(0, 230, 118, 0.5); }
    70% { transform: scale(1.03); box-shadow: 0 0 0 15px rgba(0, 230, 118, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(0, 230, 118, 0); }
}

.faq-section {
    max-width: 800px;
    margin: 60px auto 100px;
}

.faq-title {
    text-align: center;
    font-size: 2.2rem;
    color: #ffffff;
    margin-bottom: 40px;
}

.faq-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(0, 168, 255, 0.2);
    border-radius: 8px;
    margin-bottom: 15px;
    padding: 18px 20px;
}

.faq-item summary {
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 500;
    cursor: pointer;
    list-style: none; 
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: '+';
    color: #00a8ff;
    font-size: 1.5rem;
    font-weight: bold;
}

.faq-item[open] summary::after {
    content: '-';
}

.faq-item p {
    margin-top: 15px;
    color: #b0b0b0;
    font-size: 0.95rem;
    line-height: 1.6;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 15px;
}

footer {
    background: #02050f;
    border-top: 1px solid #1a2235;
    padding: 60px 20px 30px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 30px;
    padding-bottom: 40px;
    border-bottom: 1px solid #1a2235;
}

.footer-logo-link {
    font-size: 1.8rem; 
    font-weight: bold; 
    color: #fff; 
    text-decoration: none; 
    display: flex; 
    align-items: center; 
    gap: 15px;
}

.footer-logos {
    flex: 1;
    display: flex;
    flex-direction: row;
    gap: 15px;
}

.footer-logos img {
    height: 100px;
    object-fit: contain;
    align-self: flex-start;
}

.footer-menu {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
    text-align: center;
}

.footer-menu h4 {
    color: #ffffff;
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.footer-menu a {
    color: #b0b0b0;
    text-decoration: none;
    transition: color 0.3s;
    display: block;
    margin-bottom: 8px;
}

.footer-menu a:hover {
    color: #00a8ff;
}

.footer-representantes {
    flex: 1;
    text-align: right;
}

.rep-card h4 {
    color: #ffffff;
    font-size: 1.1rem;
    margin-bottom: 15px;
}

.rep-card p {
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.rep-card a {
    color: #ffffff !important;
    text-decoration: none;
}

.footer-bottom {
    text-align: center;
    margin-top: 30px;
}

.footer-bottom p {
    color: #8892b0;
    font-size: 0.9rem;
    margin-bottom: 5px;
}

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

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

.modal-content {
    background-color: #030816;
    border: 2px solid #00a8ff;
    border-radius: 10px;
    padding: 35px 30px;
    width: 90%;
    max-width: 450px;
    position: relative;
    box-shadow: 0 15px 30px rgba(0,0,0,0.5);
    text-align: center;
}

.close-modal {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 2rem;
    color: #ffffff;
    cursor: pointer;
    transition: color 0.3s;
}

.close-modal:hover {
    color: #00a8ff;
}

.modal-content h3 {
    font-size: 1.8rem;
    color: #ffffff;
    margin-bottom: 10px;
}

.modal-content p {
    color: #b0b0b0;
    font-size: 0.95rem;
    margin-bottom: 25px;
}

.modal-content input,
.modal-content select {
    width: 100%;
    padding: 15px;
    margin-bottom: 15px;
    border-radius: 6px;
    border: 1px solid #1a2235;
    background-color: #02050f;
    color: #ffffff;
    font-size: 1rem;
}

.modal-content select {
    cursor: pointer;
    appearance: auto;
}

.btn-enviar-wa {
    width: 100%;
    padding: 15px;
    background-color: #00e676;
    color: #000;
    border: none;
    border-radius: 6px;
    font-weight: bold;
    font-size: 1.1rem;
    cursor: pointer;
    text-transform: uppercase;
    transition: background-color 0.3s, transform 0.2s;
    margin-top: 10px;
}

.btn-enviar-wa:hover {
    background-color: #00c853;
    transform: scale(1.02);
}

.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease-out;
}

.reveal.ativo {
    opacity: 1;
    transform: translateY(0);
}

.gateway-body {
    background-color: #030816;
    height: 100vh;
    display: flex;
    flex-direction: column;
    overflow: hidden; 
    position: relative;
}

.gateway-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('/img/LOGOTIPO.webp');
    background-repeat: no-repeat;
    background-position: center;
    background-size: 50%;
    opacity: 0.04;
    z-index: 0;
    pointer-events: none;
}

.gateway-header {
    text-align: center;
    padding: 60px 20px 40px;
    z-index: 10;
    position: relative;
}

.gateway-logo-img {
    height: 200px;
    width: auto;
    margin-bottom: 10px;
    filter: drop-shadow(0px 0px 15px rgba(253, 253, 253, 0.4));
    padding: 10px;
    border-radius: 8px;
    background-color: white;
}

.gateway-logo {
    font-size: 2.5rem;
    color: #ffffff;
    font-weight: 700;
    letter-spacing: 2px;
}

.gateway-logo span {
    color: #00a8ff;
}

.gateway-header p {
    color: #b0b0b0;
    margin-top: 10px;
    font-size: 1.1rem;
    font-weight: 500;
}

.gateway-container {
    display: flex;
    flex: 1;
    width: 100%;
    z-index: 10;
    position: relative;
}

.gateway-card {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    position: relative;
    transition: flex 0.4s ease;
    overflow: hidden;
}

.card-condominio {
    background: linear-gradient(rgba(4, 18, 53, 0.8), rgba(4, 18, 53, 0.95));
    border-right: 1px solid rgba(255,255,255,0.1);
}

.card-empreendedor {
    background: linear-gradient(rgba(3, 8, 22, 0.8), rgba(3, 8, 22, 0.95));
}

.gateway-card:hover {
    flex: 1.2;
}

.card-content {
    text-align: center;
    padding: 40px;
    max-width: 450px;
    transform: translateY(0);
    transition: transform 0.3s ease;
}

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

.card-content h2 {
    color: #ffffff;
    font-size: 2.2rem;
    margin-bottom: 15px;
}

.card-content p {
    color: #c0c0c0;
    font-size: 1rem;
    margin-bottom: 30px;
    line-height: 1.6;
}

.btn-gateway {
    display: inline-block;
    padding: 12px 30px;
    border: 2px solid #00a8ff;
    color: #ffffff;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.card-condominio .btn-gateway:hover {
    background-color: #00a8ff;
}

.card-empreendedor .btn-gateway {
    border-color: #00e676;
}

.card-empreendedor .btn-gateway:hover {
    background-color: #00e676;
    color: #000;
}

.midia-section {
    margin-top: 80px;
    margin-bottom: 80px;
}

.midia-header {
    text-align: center;
    margin-bottom: 50px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.midia-header h2 {
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 20px;
}

.midia-header p {
    font-size: 1.1rem;
    color: #b0b0b0;
    margin-bottom: 15px;
    line-height: 1.6;
}

.midia-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.midia-card {
    background-color: transparent; 
    overflow: hidden;
    text-align: center;
    height: fit-content;
}

.midia-card:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 168, 255, 0.4);
}

.midia-card img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.midia-legenda {
    padding: 15px 20px;
    text-align: center;
    background-color: rgba(0, 0, 0, 0.3);
}

.midia-legenda p {
    color: #e0e0e0;
    font-size: 0.95rem;
    font-style: italic;
}

.midia-legenda strong {
    color: #00a8ff;
    font-style: normal;
}

.midia-legenda a {
    color: #00a8ff;
    text-decoration: none;
}

.midia-secundarias {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    align-items: start;
}

.franqueados-section {
    background-color: #02040a;
    padding: 80px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    overflow: hidden;
}

.franqueados-header {
    margin-bottom: 50px;
}

.franqueados-header h2 {
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 15px;
}

.franqueados-header p {
    font-size: 1.1rem;
    color: #b0b0b0;
    max-width: 800px;
}

.carousel-container {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 20px 0;
}

.carousel-container::before,
.carousel-container::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100px;
    z-index: 2;
    pointer-events: none;
}
.carousel-container::before {
    left: 0;
    background: linear-gradient(to right, #02040a, transparent);
}
.carousel-container::after {
    right: 0;
    background: linear-gradient(to left, #02040a, transparent);
}

.carousel-track {
    display: flex;
    gap: 25px;
    width: max-content;
    animation: scroll-carousel 30s linear infinite;
}

.carousel-track:hover {
    animation-play-state: paused;
}

.carousel-card {
    background: #ffffff;
    width: 320px;
    padding: 35px 25px;
    border-radius: 12px;
    flex-shrink: 0;
    text-align: center;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

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

.carousel-card .icon-box {
    background: #e0f2fe;
    width: 65px;
    height: 65px;
    border-radius: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 25px;
}

.carousel-card .icon-box svg {
    width: 30px;
    height: 30px;
    color: #00a8ff;
}

.carousel-card h3 {
    color: #030816;
    font-size: 1.25rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.carousel-card p {
    color: #555555;
    font-size: 0.95rem;
    line-height: 1.5;
}

@keyframes scroll-carousel {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-50% - 12.5px)); }
}

.contato-light-section {
    background-color: #fafafa;
    padding: 100px 0;
    color: #030816;
}

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

.overline-blue {
    color: #00a8ff;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 15px;
}
.overline-blue::before {
    content: '';
    display: block;
    width: 30px;
    height: 2px;
    background-color: #00a8ff;
}

.contato-header h2 {
    font-size: 2.8rem;
    color: #030816;
    margin-bottom: 15px;
}

.contato-header p {
    font-size: 1.1rem;
    color: #555555;
}

.contato-grid {
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

.contato-form-wrapper {
    flex: 2;
    background: #ffffff;
    padding: 45px;
    border-radius: 12px;
    border: 1px solid #eaeaea;
    box-shadow: 0 5px 20px rgba(0,0,0,0.03);
}

.contato-form-wrapper h3 {
    font-size: 1.4rem;
    color: #030816;
    margin-bottom: 10px;
}

.contato-form-wrapper p {
    color: #666666;
    font-size: 0.95rem;
    margin-bottom: 30px;
}

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

.form-group {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 0.85rem;
    font-weight: 600;
    color: #030816;
    margin-bottom: 8px;
}

.form-group label span {
    color: #e53935;
}

.form-claro input, 
.form-claro select {
    width: 100%;
    padding: 15px;
    border: 1px solid #dddddd;
    border-radius: 6px;
    background-color: #ffffff;
    font-size: 0.95rem;
    color: #333333;
    transition: border-color 0.3s;
}

.form-claro input:focus, 
.form-claro select:focus {
    outline: none;
    border-color: #00a8ff;
}

.btn-enviar-claro {
    width: 100%;
    background-color: #00a8ff;
    color: #ffffff;
    border: none;
    padding: 16px;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: background-color 0.3s, transform 0.2s;
    margin-top: 10px;
}

.btn-enviar-claro svg {
    width: 20px;
    height: 20px;
}

.btn-enviar-claro:hover {
    background-color: #0082c8;
    transform: translateY(-2px);
}

.form-claro small {
    display: block;
    text-align: center;
    margin-top: 15px;
    color: #999999;
    font-size: 0.8rem;
}

.contato-sidebar {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.wa-box {
    background-color: #25d366;
    padding: 35px 30px;
    border-radius: 12px;
    color: #ffffff;
}

.wa-icon svg {
    width: 40px;
    height: 40px;
    color: #ffffff;
    margin-bottom: 15px;
}

.wa-box h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
}

.wa-box p {
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 25px;
    opacity: 0.9;
}

.wa-box .btn-wa {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background-color: transparent;
    border: 2px solid #ffffff;
    color: #ffffff;
    text-decoration: none;
    padding: 12px;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.3s, color 0.3s;
}

.wa-box .btn-wa svg {
    width: 20px;
    height: 20px;
}

.wa-box .btn-wa:hover {
    background-color: #ffffff;
    color: #25d366;
}

.canais-box {
    background: #ffffff;
    padding: 30px;
    border-radius: 12px;
    border: 1px solid #eaeaea;
    box-shadow: 0 5px 20px rgba(0,0,0,0.03);
}

.canais-box h4 {
    font-size: 0.9rem;
    color: #888888;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.canal-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid #f0f0f0;
}

.canal-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.canal-item svg {
    width: 20px;
    height: 20px;
    color: #00a8ff;
}

.canal-item span {
    color: #555555;
    font-size: 0.95rem;
}

.operacao-imagem-section {
    margin-top: 80px;
    margin-bottom: 80px;
    display: flex;
    flex-direction: column;
    align-items: center; 
}

.operacao-header {
    text-align: center;
    margin-bottom: 40px;
    max-width: 800px; 
}

.operacao-header h2 {
    font-size: 2.2rem;
    color: #ffffff;
    margin-bottom: 15px;
}

.operacao-header p {
    font-size: 1.1rem;
    color: #b0b0b0;
    line-height: 1.6;
}

.imagem-operacao-full {
    width: 100%;
    max-width: 1200px; 
    height: auto; 
    border-radius: 12px; 
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5); 
    display: block;
    zoom: 0.9;
}

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

.mb-10 {
    margin-bottom: 10px;
}

.mb-40 {
    margin-bottom: 40px;
}

.mb-50 {
    margin-bottom: 50px;
}

.mb-80 {
    margin-bottom: 80px;
}

.timeline-vertical {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
}

.timeline-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.timeline-number {
    background-color: #00a8ff;
    color: #fff;
    border-radius: 50%;
    min-width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: bold;
    flex-shrink: 0;
}

.timeline-number.green {
    background-color: #00e676;
    color: #000;
}

.timeline-content h3 {
    color: #fff;
    margin-bottom: 8px;
    font-size: 1.3rem;
}

.timeline-content p {
    color: #b0b0b0;
    line-height: 1.6;
}

.stat-value-large {
    font-size: 3.5rem;
}


@media (max-width: 900px) {
    .navbar {
        padding: 15px 15px; 
    }
    .logo-link {
        flex-direction: row-reverse;
        gap: 5px;
    }
    .logo-img {
        height: 28px; 
    }
    .navbar .logo a {
        font-size: 0.85rem;
    }

    html, body {
        overflow-x: hidden;
        width: 100%;
    }
    
    body {
        zoom: 1;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        background-color: #02050f;
        padding: 20px 0;
        gap: 20px;
        border-bottom: 1px solid #1a2235;
        box-shadow: 0 10px 15px rgba(0,0,0,0.5);
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .hamburger {
        display: flex;
    }

    .about-section {
        flex-direction: column;
        align-items: center;
    }
    
    .about-image {
        margin-bottom: 20px;
    }

    .about-image img {
        max-height: 350px; 
        width: auto;
    }

    .about-content h2 {
        font-size: 1.6rem;
    }
    
    .reasons-grid {
        grid-template-columns: 1fr;
    }
    
    .reason-box.full-width {
        grid-column: span 1;
        padding: 30px 15px;
    }

    .autonomo-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .autonomo-title {
        font-size: 1.8rem;
    }

    .pricing-cards-wrapper {
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        padding-bottom: 20px;
        justify-content: flex-start;
        scrollbar-width: none; 
        -ms-overflow-style: none; 
    }
    
    .pricing-cards-wrapper::-webkit-scrollbar {
        display: none; 
    }
    
    .pricing-card {
        flex: 0 0 85%;
        scroll-snap-align: center;
        padding: 15px;
    }

    .pricing-card img {
        height: 260px;
        margin: 0 auto 15px;
    }

    .resultados-header h2 {
        font-size: 1.8rem;
    }

    .grid-2-cols, 
    .grid-3-cols,
    .resultados-grid {
        display: grid;
        grid-template-columns: 1fr !important;
        gap: 20px;
        width: 100%;
        padding: 0;
    }

    .resultado-card {
        width: 100%;
        box-sizing: border-box;
        overflow: hidden; 
        padding: 15px; 
    }

    .tabela-resultados .linha {
        font-size: 0.85rem; 
        gap: 10px;
    }
    
    .tabela-resultados .linha span {
        white-space: normal; 
        word-break: break-word;
    }

    .stats-grid,
    .stats-grid.stats-2-cols {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .stat-item h3 {
        font-size: 2.5rem;
    }

    .condicoes-layout {
        display: flex;
        flex-direction: column;
        width: 100%;
    }

    .condicoes-textos {
        display: contents; 
    }

    .condicoes-textos h2 {
        order: 1; 
    }

    .condicoes-textos .condicoes-desc {
        order: 2; 
        margin-bottom: 20px;
    }

    .condicoes-imagem {
        order: 3; 
        width: 100%;
        margin: 0 0 30px 0;
        display: flex;
        justify-content: center;
    }

    .condicoes-imagem img {
        width: 100%; 
        height: auto; 
        max-height: none; 
        border-radius: 10px;
        object-fit: cover;
    }

    .condicoes-cards {
        order: 4; 
        width: 100%;
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .cond-card.full {
        grid-column: span 1;
        flex-direction: column; 
        align-items: flex-start;
        gap: 0;
    }

    .cond-card.full .icon-circle {
        margin-bottom: 15px;
    }

    .oferta-banner {
        flex-direction: column;
        align-items: flex-start;
    }

    .precos-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .preco-box.antigo {
        border-bottom: 1px solid rgba(255,255,255,0.1);
        padding-bottom: 30px;
    }

    .preco-box h4 {
        font-size: 2.5rem;
    }

    .preco-parcelado {
        font-size: 1.8rem;
    }

    .oferta-aviso {
        flex-direction: column;
        align-items: flex-start;
    }

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

    .footer-logos img {
        align-self: center;
    }

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

    .hero-section::after {
        height: 12px; 
    }

    .contato-grid {
        flex-direction: column;
    }
    .form-claro .form-row {
        flex-direction: column;
        gap: 0;
    }
    .form-group {
        margin-bottom: 15px;
    }
    .contato-form-wrapper, .wa-box, .canais-box {
        padding: 25px;
    }
    .carousel-container::before, .carousel-container::after {
        width: 30px;
    }

    .midia-grid {
        gap: 15px;
    }
    
    .operacao-header h2 {
        font-size: 1.8rem;
    }
    .operacao-header p {
        font-size: 1rem;
    }

    .gateway-body {
        height: auto;
        min-height: 100vh;
        overflow: auto;
    }
    
    .gateway-bg-overlay {
        background-size: 90%; 
        opacity: 0.05;
    }

    .gateway-logo-img {
        height: 100px; 
    }

    .gateway-header {
        padding: 40px 20px 20px;
    }

    .gateway-header p {
        font-size: 0.95rem;
    }

    .gateway-container {
        flex-direction: column;
    }
    
    .gateway-card {
        padding: 50px 20px;
    }
    
    .gateway-card:hover {
        flex: 1; 
    }
    
    .card-content h2 {
        font-size: 1.8rem;
    }
}

@media (max-width: 768px) {
    .logo-img {
        height: 30px; 
    }

    .footer-representantes {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .logos-marcas {
        flex-direction: column;
        align-items: center;
    }

    .gateway-body {
        height: auto;
        min-height: 100vh;
        overflow: auto;
    }
    
    .gateway-container {
        flex-direction: column;
    }
    
    .gateway-card {
        padding: 60px 20px;
    }
    
    .gateway-card:hover {
        flex: 1; 
    }

    .midia-header h2 {
        font-size: 2rem;
    }
    
    .midia-secundarias {
        grid-template-columns: 1fr;
        gap: 15px; 
    }
}

.lavanderia-card img {
    width: 100% !important;
    height: 300px !important;
    object-fit: contain !important;
    object-position: center !important;
    display: block !important;
    margin: 0 auto 20px auto !important;
}

/* =========================================
   BOTÃO DE INSTRUÇÕES NO RODAPÉ (INDEX)
   ========================================= */
.instrucoes-rodape {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 40px 20px;
    background-color: #030816;
    z-index: 20;
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.05); /* Uma linha bem sutil para separar */
}

.btn-instrucoes-centro {
    background-color: transparent;
    border: 2px solid #00a8ff;
    color: #ffffff;
    padding: 15px 30px;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 168, 255, 0.15);
    white-space: nowrap;
}

.btn-instrucoes-centro:hover {
    background-color: #00a8ff;
    color: #000000;
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(0, 168, 255, 0.4);
}

.btn-instrucoes-centro svg {
    transition: stroke 0.3s ease;
}

.btn-instrucoes-centro:hover svg {
    stroke: #000000;
}

/* =========================================
   AJUSTES DO MODAL DE INSTRUÇÕES PARA CELULAR
   ========================================= */
@media (max-width: 900px) {
    .modal-instrucoes-content {
        padding: 25px 20px !important; 
        width: 90% !important; 
        max-height: 75vh !important; /* Segura a altura da caixa */
        overflow-y: auto !important; /* FORÇA a barra de rolagem a ficar dentro da borda azul */
        text-align: left !important; /* Arruma a lista, alinhando tudo à esquerda */
    }
    
    .modal-instrucoes-content h3 {
        font-size: 1.3rem !important;
        margin-bottom: 15px;
        padding-right: 25px; 
        line-height: 1.3;
        text-align: center !important; /* Mantém apenas o título centralizado */
    }

    .instrucoes-texto h4 {
        font-size: 1.05rem;
        margin-top: 20px;
    }

    .instrucoes-texto p, 
    .instrucoes-texto ul {
        font-size: 0.9rem;
        line-height: 1.5;
        margin-bottom: 12px;
    }

    .instrucoes-texto li {
        margin-bottom: 10px;
        margin-left: 5px;
    }
    
    .agradecimento {
        font-size: 0.95rem !important;
        padding: 12px;
        margin-top: 20px !important;
        text-align: center !important; /* Mantém o agradecimento centralizado */
    }
    
    .close-modal {
        top: 15px;
        right: 15px;
    }
}