/* Sizesystems — site estático (atualizado 2026-05) */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

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

html {
    scroll-behavior: smooth;
}

/* ====== Scroll Indicator Badge ====== */

.scroll-indicator {
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    text-decoration: none;
    color: #64748b;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.5px;
    animation: scroll-bounce 2s ease-in-out infinite;
    transition: color 0.3s ease;
    z-index: 2;
}

.scroll-indicator:hover {
    color: #1a56db;
}

.scroll-indicator i {
    font-size: 22px;
}

@keyframes scroll-bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); opacity: 1; }
    50% { transform: translateX(-50%) translateY(8px); opacity: 0.6; }
}

body{
    min-height: 100vh;
    background: #f5f7fb;
    overflow-x: hidden;
    color: #1e293b;
    position: relative;
}

/* ====== Background Decorative Patterns ====== */

@keyframes orb-drift-1 {
    0% { opacity: 0; transform: scale(0.3); }
    40% { opacity: 1; }
    100% { opacity: 1; transform: scale(1); }
}

@keyframes orb-drift-2 {
    0% { opacity: 0; transform: scale(0.5) translateY(40px); }
    100% { opacity: 1; transform: scale(1) translateY(0); }
}

@keyframes orb-pulse {
    0%, 100% { transform: scale(1); opacity: 0.85; }
    50% { transform: scale(1.08); opacity: 1; }
}

@keyframes orb-float-left {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(-15px, 10px); }
}

@keyframes orb-float-right {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(15px, -10px); }
}

@keyframes circle-expand {
    0% { opacity: 0; transform: scale(0); }
    60% { opacity: 1; }
    100% { opacity: 1; transform: scale(1); }
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle 600px at 5% 15%, rgba(139, 92, 246, 0.18) 0%, transparent 100%),
        radial-gradient(circle 500px at 92% 45%, rgba(6, 182, 212, 0.18) 0%, transparent 100%),
        radial-gradient(circle 400px at 45% 85%, rgba(244, 114, 182, 0.15) 0%, transparent 100%);
    pointer-events: none;
    z-index: -1;
    animation: orb-drift-1 1.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle, rgba(26, 86, 219, 0.08) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
    z-index: -1;
    mask-image: linear-gradient(180deg, rgba(0,0,0,0.4) 0%, transparent 35%, transparent 65%, rgba(0,0,0,0.3) 100%);
    -webkit-mask-image: linear-gradient(180deg, rgba(0,0,0,0.4) 0%, transparent 35%, transparent 65%, rgba(0,0,0,0.3) 100%);
}

body > * {
    position: relative;
}

/* ====== Scroll Reveal Animation ====== */

.reveal {
    opacity: 0;
    transform: translateY(50px) scale(0.97);
    transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), 
                transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.35s; }

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 0 0 0 rgba(26, 86, 219, 0.3); }
    50% { box-shadow: 0 0 20px 6px rgba(26, 86, 219, 0.15); }
}

@keyframes fade-in-down {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

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

/* ====== Navbar ====== */

.navbar{
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    height: 72px;
    padding: 0 48px;
    transition: all 0.4s ease;
    background: #0f172a;
    animation: fade-in-down 0.8s ease;
}

.navbar.scrolled {
    background: #0f172a;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.25);
}

.navbar h2{
    color: #fff;
    font-weight: 700;
    font-size: 22px;
    letter-spacing: -0.5px;
}

.navbar h2 span {
    color: #00aaff;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.navbar-logo {
    width: 36px;
    height: 36px;
    object-fit: contain;
}

.navbar ul{
    display: flex;
    gap: 8px;
    margin: 0 auto;
}

.navbar-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.navbar ul li{
    list-style: none;
}

.navbar ul li a{
    text-decoration: none;
    color: rgba(255, 255, 255, 0.65);
    font-size: 14px;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
}

.navbar ul li a::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    width: 0;
    height: 2px;
    background: #00aaff;
    border-radius: 2px;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.navbar ul li a:hover{
    color: #fff;
    background: rgba(255, 255, 255, 0.06);
}

.navbar ul li a:hover::after {
    width: 50%;
}

.hire-btn{
    background: linear-gradient(135deg, #1a56db, #00aaff);
    background-size: 200% 200%;
    padding: 10px 24px;
    border: none;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    border-radius: 10px;
    color: #fff;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    position: relative;
    overflow: hidden;
}

.hire-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.hire-btn:hover::before {
    left: 100%;
}

.hire-btn:hover{
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 10px 30px rgba(26, 86, 219, 0.4);
    background-position: right center;
}

.hire-btn:active {
    transform: translateY(0) scale(0.98);
}

.hire-btn i {
    transition: transform 0.3s ease;
}

.hire-btn:hover i {
    transform: translateX(3px);
}

/* ====== Admin Button ====== */

.admin-btn {
    padding: 8px 18px;
    border: 2px solid rgba(255, 255, 255, 0.25);
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(8px);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    border-radius: 10px;
    color: #fff;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s ease;
}

.admin-btn:hover {
    background: rgba(255, 255, 255, 0.18);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

.admin-mobile {
    background: rgba(26, 86, 219, 0.1);
    border: 1px solid rgba(26, 86, 219, 0.3);
    color: #1a56db;
}

.admin-mobile:hover {
    background: rgba(26, 86, 219, 0.2);
}

/* ====== Hero Section ====== */

.main{
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 120px 48px 60px;
    position: relative;
    overflow: hidden;
}

.main::before {
    content: '';
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.18) 0%, rgba(6, 182, 212, 0.10) 40%, transparent 70%);
    pointer-events: none;
    animation: orb-pulse 6s ease-in-out infinite;
}

.main::after {
    content: '';
    position: absolute;
    top: 15%;
    right: -120px;
    width: 350px;
    height: 350px;
    border-radius: 50%;
    border: 2px solid rgba(139, 92, 246, 0.2);
    pointer-events: none;
    animation: spin-slow 30s linear infinite, circle-expand 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.3s both;
}

@keyframes spin-slow {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

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

.main .badge {
    display: inline-block;
    background: rgba(26, 86, 219, 0.08);
    border: 1px solid rgba(26, 86, 219, 0.18);
    color: #1a56db;
    font-size: 13px;
    font-weight: 600;
    padding: 6px 16px;
    border-radius: 100px;
    margin-bottom: 24px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.main h4{
    font-size: 28px;
    color: #334155;
    font-weight: 500;
    margin-bottom: 8px;
}

.main h4 .highlight{
    color: #1a56db;
    text-decoration: none;
    font-weight: 700;
}

.main p.tittle{
    font-size: 56px;
    font-weight: 800;
    color: #0f172a;
    margin-top: 8px;
    letter-spacing: -1.5px;
    line-height: 1.1;
}

.gradient-text {
    background: linear-gradient(135deg, #1a56db, #00aaff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.main p.subtitle{
    font-size: 17px; 
    color: #64748b;
    margin-top: 20px;
    text-align: center;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.main p.subtitle strong {
    color: #1e293b;
}

.main img{
    width: 220px;
    height: auto;
    margin-top: 48px;
    padding-bottom: 50px;
    animation: float 4s ease-in-out infinite;
    filter: drop-shadow(0 20px 40px rgba(26, 86, 219, 0.15));
}

/* ====== Stats / Guarantee ====== */

.guarantee{
    padding: 0 48px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 20px;
    position: relative;
}

.guarantee::before {
    content: '';
    position: absolute;
    left: -80px;
    top: -60px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    border: 2px solid rgba(139, 92, 246, 0.25);
    pointer-events: none;
    z-index: -1;
    animation: circle-expand 1s cubic-bezier(0.16, 1, 0.3, 1) 0.2s both, orb-float-left 8s ease-in-out infinite;
}

.guarantee::after {
    content: '';
    position: absolute;
    left: -40px;
    top: -20px;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: rgba(6, 182, 212, 0.18);
    pointer-events: none;
    z-index: -1;
    animation: orb-drift-2 1s cubic-bezier(0.16, 1, 0.3, 1) 0.4s both, orb-float-right 7s ease-in-out infinite;
}

.guarantee .item{
    background: #fff;
    border: 1px solid #e2e8f0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100px;
    width: 380px;
    border-radius: 16px;
    padding: 0 28px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.guarantee .item:hover{
    border-color: rgba(26, 86, 219, 0.3);
    background: #fff;
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 16px 48px rgba(26, 86, 219, 0.12);
}

.guarantee .item .icon{
    width: 48px;
    height: 48px;
    background: rgba(26, 86, 219, 0.08);
    border: 1px solid rgba(26, 86, 219, 0.12);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.guarantee .item:hover .icon{
    background: linear-gradient(135deg, #1a56db, #00aaff);
    border-color: transparent;
    transform: rotate(-8deg) scale(1.1);
    box-shadow: 0 6px 20px rgba(26, 86, 219, 0.25);
}

.guarantee .item .icon i{
    font-size: 24px;
    color: #1a56db;
    transition: color 0.3s ease;
}

.guarantee .item:hover .icon i {
    color: #fff;
}

.guarantee .item .info{
    display: flex;
    flex-direction: column;
    align-items: center;
}

.guarantee .item .info h3{
    color: #0f172a;
    font-size: 28px;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.guarantee .item .info p{
    color: #64748b;
    font-size: 13px;
    font-weight: 500;
}

.guarantee .item > i{
    color: #cbd5e1;
    font-size: 24px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.guarantee .item:hover > i{
    color: #1a56db;
    transform: translateX(6px);
}

/* ====== Section Separator ====== */

.separator{
    margin: 80px 48px 40px;
    padding: 8px 20px;
    background: rgba(26, 86, 219, 0.06);
    border: 1px solid rgba(26, 86, 219, 0.12);
    display: inline-block;
    color: #1a56db;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* ====== Solutions Cards ====== */

.solucoes {
    position: relative;
    overflow: visible;
}

.solucoes::before {
    content: '';
    position: absolute;
    right: -60px;
    top: 40px;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(244, 114, 182, 0.18), transparent 70%);
    pointer-events: none;
    z-index: -1;
    animation: orb-drift-1 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.2s both, orb-float-right 9s ease-in-out infinite;
}

.solucoes::after {
    content: '';
    position: absolute;
    left: 5%;
    bottom: -40px;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    border: 2px dashed rgba(6, 182, 212, 0.3);
    pointer-events: none;
    z-index: -1;
    animation: circle-expand 1s cubic-bezier(0.16, 1, 0.3, 1) 0.5s both;
}

.box{
    padding: 0 48px;
}

.box h3{
    color: #0f172a;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.box .cards{
    margin-top: 40px;    
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    justify-content: center;
    gap: 24px;
} 

.box .card{ 
    background: #fff;
    border: 1px solid #e2e8f0;
    width: 560px;
    border-radius: 20px;
    padding: 24px;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.box .card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #1a56db, #00aaff);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.box .card:hover::after {
    opacity: 1;
}

.box .card:hover {
    border-color: rgba(26, 86, 219, 0.2);
    transform: translateY(-8px);
    box-shadow: 0 24px 64px rgba(26, 86, 219, 0.12);
}

.box .card .card-img-wrapper {
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 20px;
}

.box .card .card-img{
    width: 100%;
    display: block;
    transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.box .card .card-body {
    flex: 1;
}

.box .card .card-body .titulo{
    color: #0f172a;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 8px;
    letter-spacing: -0.3px;
}

.box .card .card-body .descricao{
    color: #64748b;
    font-size: 14px;
    line-height: 1.7;
    padding-bottom: 20px;
}

.box .card .card-body .app-stores-text {
    padding-bottom: 12px;
    font-weight: 500;
    color: #475569;
}

.box .card .app-store-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
    margin-bottom: 20px;
}

.box .card .app-store-badges a {
    display: inline-block;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.box .card .app-store-badges a:hover {
    transform: translateY(-2px);
    opacity: 0.88;
}

.box .card .app-store-badges img {
    height: 40px;
    width: auto;
    display: block;
}

.box .card .hire-btn {
    align-self: flex-start;
}

/* ====== About Section ====== */

.about{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 80px;
    padding: 20px 48px;
    position: relative;
    overflow: visible;
}

.about::before {
    content: '';
    position: absolute;
    right: 8%;
    top: -30px;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.18), transparent 70%);
    pointer-events: none;
    z-index: -1;
    animation: orb-drift-2 1s cubic-bezier(0.16, 1, 0.3, 1) 0.3s both, orb-float-left 10s ease-in-out infinite;
}

.about::after {
    content: '';
    position: absolute;
    left: 3%;
    bottom: 10%;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 2px solid rgba(244, 114, 182, 0.25);
    pointer-events: none;
    z-index: -1;
    animation: circle-expand 1s cubic-bezier(0.16, 1, 0.3, 1) 0.6s both, orb-float-right 8s ease-in-out infinite;
}

.about img{
    width: 100%;
    max-width: 500px;
    border-radius: 24px;
}

.about .info{
    max-width: 550px;
}

.about .info h3{
    color: #0f172a;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.about .info p{
    color: #64748b;
    font-size: 16px;
    line-height: 1.8;
}

/* ====== Footer ====== */

footer{
    position: relative;
    background: #0f172a;
    border-top: 1px solid #e2e8f0;
    padding: 100px 48px 40px;
    margin-top: 120px;
}

footer .start{
    display: flex;
    align-items: center;
    justify-content: space-around;
    position: absolute;
    background: linear-gradient(135deg, #1a56db, #00aaff);
    padding: 32px 40px;
    border-radius: 20px;
    width: 70%;
    top: -50px;
    left: 15%;
    box-shadow: 0 20px 60px rgba(26, 86, 219, 0.3);
}

footer .start h3 {
    font-size: 22px;
    font-weight: 700;
    letter-spacing: -0.3px;
    color: #fff;
}

footer .start p{
    font-size: 14px;
    width: 35%;
    color: rgba(255, 255, 255, 0.7);
}

footer .start button{
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.25);
    color: #fff;
    cursor: pointer; 
    padding: 10px 24px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

footer .start button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: #fff;
    border-radius: 50%;
    transition: all 0.5s ease;
    transform: translate(-50%, -50%);
    z-index: -1;
}

footer .start button:hover::before {
    width: 300px;
    height: 300px;
}

footer .start button:hover{
    color: #1a56db;
    border-color: transparent;
}

footer .cols{
    display: flex;
    align-items: start;
    padding-top: 30px;
    gap: 40px;
}

footer .cols .about-col{
    flex: 3;
}

footer .cols .about-col h3{
    color: #00aaff;
    margin-bottom: 12px;
    font-size: 20px;
    font-weight: 700;
}

footer .cols .about-col p{
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

footer .cols .links-col{
    flex: 3;
}

footer .cols .links-col h4{
    color: #fff;
    margin-bottom: 16px;
    font-size: 15px;
    font-weight: 600;
}

footer .cols .links-col a{
    display: inline-flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    padding: 6px 14px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

footer .cols .links-col a:hover{
    color: #00aaff;
    border-color: rgba(0, 170, 255, 0.4);
    background: rgba(0, 170, 255, 0.08);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 170, 255, 0.1);
}

footer .cols .links-col a i {
    transition: transform 0.3s ease;
}

footer .cols .links-col a:hover i {
    transform: scale(1.2);
}

footer .cols .links-col a i {
    font-size: 18px;
}

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

.direitos {
    background: #0f172a;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: 16px 48px;
}

.direitos h4 {
    color: rgba(255, 255, 255, 0.4);
    font-size: 12px;
    font-weight: 500;
    text-align: center;
}

/* ====== Mobile Menu & Toggle Button ====== */

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: #fff;
    font-size: 28px;
    cursor: pointer;
    padding: 4px;
    transition: color 0.3s ease;
}

.menu-toggle:hover {
    color: #00aaff;
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: #0f172a;
    padding: 0 24px;
    z-index: 999;
    flex-direction: column;
    align-items: center;
    gap: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1), padding 0.4s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.mobile-menu.active {
    max-height: 400px;
    padding: 20px 24px 28px;
    visibility: visible;
    pointer-events: auto;
}

.mobile-menu ul {
    list-style: none;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.mobile-menu ul li a {
    display: block;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.75);
    font-size: 16px;
    font-weight: 500;
    padding: 12px 16px;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.mobile-menu ul li a:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.06);
}

.mobile-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 16px;
    background: linear-gradient(135deg, #1a56db, #00aaff);
    color: #fff;
    text-decoration: none;
    padding: 12px 28px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.mobile-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(26, 86, 219, 0.4);
}

/* ====== Responsive ====== */

/* ---- Tablet ---- */
@media (max-width: 1024px) {
    .navbar {
        padding: 0 24px;
    }

    .main p.tittle {
        font-size: 44px;
    }

    .box h3 {
        font-size: 26px;
    }

    .box .card {
        width: 100%;
        max-width: 560px;
    }

    footer .start {
        width: 85%;
        left: 7.5%;
    }

    .about {
        gap: 40px;
    }
}

/* ---- Mobile ---- */
@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    .mobile-menu {
        display: flex;
        visibility: hidden;
        pointer-events: none;
    }

    .navbar {
        padding: 0 20px;
    }

    .navbar ul {
        display: none;
    }

    .navbar .navbar-actions {
        display: none;
    }

    /* Hero */
    .main {
        padding: 100px 20px 60px;
        min-height: auto;
    }

    .main::before {
        width: 400px;
        height: 400px;
    }

    .main::after {
        width: 180px;
        height: 180px;
        right: -60px;
    }

    .main p.tittle {
        font-size: 32px;
        letter-spacing: -1px;
    }

    .main h4 {
        font-size: 18px;
    }

    .main p.subtitle {
        font-size: 15px;
    }

    .main img {
        width: 160px;
        margin-top: 32px;
        padding-bottom: 40px;
    }

    .scroll-indicator {
        bottom: 16px;
        font-size: 12px;
    }

    /* Stats */
    .guarantee {
        padding: 0 20px;
    }

    .guarantee .item {
        width: 100%;
        height: 80px;
        padding: 0 20px;
    }

    .guarantee .item .info h3 {
        font-size: 24px;
    }

    .guarantee::before,
    .guarantee::after {
        display: none;
    }

    /* Separator */
    .separator {
        margin: 48px 20px 24px;
    }

    /* Solutions */
    .box {
        padding: 0 20px;
    }

    .box h3 {
        font-size: 24px;
    }

    .box .cards {
        margin-top: 24px;
        gap: 20px;
    }

    .box .card {
        width: 100%;
        padding: 16px;
        border-radius: 16px;
    }

    .box .card .card-body .titulo {
        font-size: 20px;
    }

    .box .card .card-body .descricao {
        font-size: 13px;
    }

    .solucoes::before,
    .solucoes::after {
        display: none;
    }

    /* About */
    .about {
        padding: 20px;
        gap: 32px;
        flex-direction: column;
    }

    .about img {
        max-width: 100%;
        border-radius: 16px;
    }

    .about .info {
        min-width: unset;
    }

    .about .info h3 {
        font-size: 28px;
    }

    .about .info p {
        font-size: 15px;
    }

    .about::before,
    .about::after {
        display: none;
    }

    /* Footer */
    footer {
        padding: 100px 20px 30px;
        margin-top: 100px;
    }

    footer .start {
        flex-direction: column;
        text-align: center;
        gap: 16px;
        width: 90%;
        left: 5%;
        padding: 24px 20px;
        top: -60px;
    }

    footer .start h3 {
        font-size: 18px;
    }

    footer .start p {
        width: 100%;
        font-size: 13px;
    }

    footer .cols {
        flex-direction: column;
        gap: 32px;
    }

    footer .cols .links-col iframe {
        width: 100%;
        height: 200px;
    }

    .direitos {
        padding: 16px 20px;
    }

    .direitos h4 {
        font-size: 11px;
    }

    /* Reduce decorative orbs for performance */
    body::before {
        background:
            radial-gradient(circle 300px at 10% 20%, rgba(139, 92, 246, 0.12) 0%, transparent 100%),
            radial-gradient(circle 250px at 90% 50%, rgba(6, 182, 212, 0.12) 0%, transparent 100%);
    }
}

/* ---- Small phones ---- */
@media (max-width: 400px) {
    .main p.tittle {
        font-size: 26px;
    }

    .main h4 {
        font-size: 16px;
    }

    .navbar h2 {
        font-size: 18px;
    }

    .navbar-logo {
        width: 30px;
        height: 30px;
    }

    footer .start {
        padding: 20px 16px;
    }

    footer .start h3 {
        font-size: 16px;
    }

    .guarantee .item {
        height: 72px;
        padding: 0 16px;
    }

    .guarantee .item .info h3 {
        font-size: 20px;
    }

    .guarantee .item .info p {
        font-size: 12px;
    }
}

/* ====== Legal / Privacy Policy ====== */

.legal-page {
    padding: 104px 24px 48px;
    min-height: 100vh;
}

.legal-container {
    max-width: 820px;
    margin: 0 auto;
}

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

.legal-header h1 {
    font-size: 40px;
    font-weight: 800;
    color: #0f172a;
    letter-spacing: -1px;
    margin: 16px 0 8px;
    line-height: 1.15;
}

.legal-updated {
    font-size: 13px;
    color: #64748b;
    margin-bottom: 20px;
}

.legal-intro {
    font-size: 16px;
    line-height: 1.75;
    color: #475569;
}

.legal-content {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 36px 40px;
    box-shadow: 0 12px 40px rgba(15, 23, 42, 0.06);
}

.legal-content section + section {
    margin-top: 32px;
    padding-top: 32px;
    border-top: 1px solid #f1f5f9;
}

.legal-content h2 {
    font-size: 20px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 12px;
    letter-spacing: -0.3px;
}

.legal-content p,
.legal-content li {
    font-size: 15px;
    line-height: 1.75;
    color: #475569;
}

.legal-content p + p,
.legal-content ul {
    margin-top: 12px;
}

.legal-content ul {
    padding-left: 22px;
}

.legal-content li + li {
    margin-top: 8px;
}

.legal-content a {
    color: #1a56db;
    text-decoration: none;
    font-weight: 500;
}

.legal-content a:hover {
    text-decoration: underline;
}

.legal-footer {
    margin-top: 28px;
}

.legal-back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #1a56db;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    padding: 10px 16px;
    border-radius: 10px;
    border: 1px solid rgba(26, 86, 219, 0.2);
    background: rgba(26, 86, 219, 0.05);
    transition: all 0.25s ease;
}

.legal-back:hover {
    background: rgba(26, 86, 219, 0.1);
    transform: translateY(-1px);
}

.direitos a {
    color: rgba(255, 255, 255, 0.65);
    text-decoration: none;
    margin-left: 4px;
}

.direitos a:hover {
    color: #00aaff;
    text-decoration: underline;
}

@media (max-width: 768px) {
    .legal-page {
        padding: 92px 16px 32px;
    }

    .legal-header h1 {
        font-size: 30px;
    }

    .legal-content {
        padding: 24px 20px;
        border-radius: 16px;
    }

    .legal-content h2 {
        font-size: 18px;
    }
}