/* Global Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    scroll-behavior: smooth;
}

:root {
    --primary: #4f46e5;
    --dark: #0a0d13;
    --light: #f8fafc;
    --text: #334155;
}

body {
    color: var(--text);
    background-color: #ffffff;
    line-height: 1.6;
}

.container {
    width: 90%;
    max-width: 1100px;
    margin: 0 auto;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #ffffff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    z-index: 1000;
    padding: 15px 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--dark);
    text-decoration: none;
}
.logo img{
    height: 36px;
}

.nav-links a {
    text-decoration: none;
    color: var(--text);
    margin-left: 20px;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--primary);
}

.btn-nav {
    background: var(--primary);
    color: #fff !important;
    padding: 8px 16px;
    border-radius: 6px;
}


/* Mobile Menu Toggle Button */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
}

.menu-toggle span {
    width: 100%;
    height: 3px;
    background: var(--dark);
    border-radius: 2px;
}

/* home Section */
.home {
    padding: 140px 0 80px;
    background: linear-gradient(135deg, #f5f7ff 0%, #fff 100%);
}

.home-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.home-text h1 {
    font-size: 48px;
    color: var(--dark);
    line-height: 1.2;
    margin-bottom: 20px;
}

.home-text p {
    font-size: 18px;
    margin-bottom: 30px;
}

.btn-main {
    display: inline-block;
    background: var(--primary);
    color: #fff;
    text-decoration: none;
    padding: 14px 28px;
    border-radius: 6px;
    font-weight: 600;
    box-shadow: 0 4px 14px rgba(79, 70, 229, 0.3);
}
.btn-play-store {
    display: inline-block;
    color: #000;
    text-decoration: none;
    padding: 0px;
    font-weight: 600;
    width: 50%;
    max-width:200px;
}
.btn-play-store img{
    width: 100%;
}

.mock-img {
    width: 100%;
    height: 0;
    padding-bottom: calc(63.25% - 9px);
    background: #cbd5e1;
    border-radius: 24px;
    overflow:hidden;
    border: 7px solid #111;
    box-shadow:0 0 15px #000;
    position: relative;
    container-type: inline-size;
}
.mock-img img{
    width: 100%;
    display:block;
}
.mock-img .texto{
    width: 100%;
    display:block;
    background-color: rgba(0,0,0,1);
    border-top:2px solid #000;
    text-align: center;
    font-weight: bold;
    color: #fff;
    padding: 5px;
    font-style: oblique;
    font-size: 3cqi;
    padding-bottom: 10%;
}
.logoCromo{
    border: 1px solid #456;
    border-radius: 10px;
    overflow: hidden;
    width: 100px;
    height: 100px;
    background-color: #000;
}
.logoCromo img{
    height: 100px;
    display: block;
    position: relative;
    left:-1px;
    top:-1px;
}

/* Features Section */
.features {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    font-size: 32px;
    color: var(--dark);
    margin-bottom: 40px;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.card {
    padding: 30px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    transition: transform 0.3s;
}

.card:hover {
    transform: translateY(-5px);
}

.card h3 {
    margin-bottom: 15px;
    color: var(--dark);
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: var(--dark);
    color: #fff;
    text-align: center;
}

.form-container h2 {
    margin-bottom: 10px;
}

.form-container p {
    color: #94a3b8;
    margin-bottom: 30px;
}
.form-container a {
    color: #fff;
    text-decoration: none;
}
.form-container a:hover {
    color: #ddd;
}

#leadForm {
    display: flex;
    justify-content: center;
    gap: 10px;
    max-width: 500px;
    margin: 0 auto;
}

#leadForm input {
    flex: 1;
    padding: 12px;
    border-radius: 6px;
    border: none;
    outline: none;
}

.btn-submit {
    background: var(--primary);
    color: #fff;
    border: none;
    padding: 0 24px;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
}

.hidden {
    display: none;
}

#formSuccess {
    margin-top: 15px;
    color: #4ade80;
}

/* Footer */
footer {
    text-align: center;
    padding: 30px 0;
    font-size: 14px;
    color: #94a3b8;
    border-top: 1px solid #e2e8f0;
}

/* Responsive Media Queries */
@media (max-width: 768px) {
    .menu-toggle {
        display: none; /*flex*/
    }

    .nav-links {
        display: block;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #fff;
        flex-direction: column;
        padding: 20px 0;
        box-shadow: 0 4px 10px rgba(0,0,0,0.05);
        text-align: center;
    }

    .nav-links a {
        margin: 15px 0;
    }

    .home-grid, .feature-grid {
        grid-template-columns: 1fr;
    }

    .home-text h1 {
        font-size: 34px;
    }

    #leadForm {
        flex-direction: column;
    }

    .btn-submit {
        padding: 12px 0;
    }
}





/*CONSENT*/
#cookieConsent,
#cookieSettingsPanel{
    position:fixed;
    left:0;
    right:0;
    bottom:0;
    background:#f6f6f6;
    color:#000;
    z-index:99999;
    padding:25px;
    font-family:Arial;
}

.cookie-hidden{
    display:none;
}

.cookie-box{
    max-width:900px;
    margin:auto;
}

.cookie-buttons{
    margin-top:20px;
}

.cookie-buttons button{
    margin-right:10px;
    padding:10px 20px;
    cursor:pointer;
}
#cookieSave{
    background: var(--primary);
    color: #fff !important;
    padding: 8px 16px;
    border-radius: 6px;
    cursor: pointer;
}

