:root {
    --bg: #0f172a;
    --text: #e5e7eb;
    --brand: #22d3ee;
    --accent: #a78bfa;
    --ok: #4ade80;
    --danger: #f87171;
    --radius: 18px;
    --shadow: 0 10px 30px rgba(0, 0, 0, .35);
}

* {
    box-sizing: border-box
}

body {
    margin: 0;
    font-family: Inter, sans-serif;
    background: #10c1de;
    /* background: var(--bg); */
    /* color: var(--text); */
    color: #ffffff;
    scroll-behavior: smooth
}

a {
    text-decoration: none;
    color: inherit
}

.container {
    width: min(1100px, 92%);
    margin: auto
}

/* Header */
header {
    position: sticky;
    top: 0;
    background: rgba(15, 23, 42, .9);
    backdrop-filter: blur(10px);
    z-index: 50
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0
}

.brand {
    display: flex;
    align-items: center;
    font-weight: 800;
    font-size: 1.2rem
}

.btn-new {
    padding: 10px 18px;
    border-radius: 999px;
    background: black;
    color: white;
    font-weight: 700;
}

.logo-img {
    height: 122px;
    width: auto;
    margin-right: 10px
}

tr th {
    color: #000;
    font-weight: bold;
    background: #f5f5f5;
    padding: 8px;
}

.nav-links {
    display: flex;
    gap: 18px;
    align-items: center
}

.btn {
    padding: 10px 18px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--brand), #06b6d4);
    color: #0b1324;
    font-weight: 700;
    box-shadow: var(--shadow)
}

.btn.alt {
    background: #1f2937;
    color: var(--text);
    border: 1px solid #334155
}

/* Hero */
.hero {
    padding: 33px 0;
    display: grid;
    /* grid-template-columns: 1fr 1fr; */
    grid-template-columns: 0fr -6fr;
    gap: 30px;
    align-items: center
}

.hero h1 {
    font-size: 2.5rem;
    margin: 10px 0
}

.highlight {
    /* color: var(--brand) */
    color: #ffc426;
}

.hero p {
    color: #ffffff;
}

.chip {
    font-size: 24px;
    font-weight: 500px;
}

.cta {
    margin-top: 18px;
    display: flex;
    gap: 12px;
    flex-wrap: wrap
}

.phone-mock {
    aspect-ratio: 9/16;
    border-radius: 28px;
    background: #0c1528;
    border: 1px solid #223046;
    box-shadow: var(--shadow);
    padding: 16px;
    display: grid
}

.screen {
    border-radius: 18px;
    background: #0b1222;
    padding: 18px;
    display: grid;
    gap: 10px
}

.row {
    display: flex;
    gap: 8px
}

.pill {
    height: 10px;
    border-radius: 999px;
    background: #142034
}

/* Sections */
section {
    padding: 30px 0
}

.section-title {
    font-size: 28px;
    margin-bottom: 20px
}

/* Grid */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px
}

.logo-name {
    font-size: 30px;
}

.card {
    background: #111827;
    border: 1px solid #1e293b;
    border-radius: var(--radius);
    padding: 20px;
    box-shadow: var(--shadow)
}

.card h3 {
    margin-top: 0
}

.icon {
    font-size: 30px;
    margin-bottom: 10px
}

.price {
    font-weight: 800;
    font-size: 22px;
    color: var(--brand)
}

/* Steps */
.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 50px
}

.step {
    background: #0b1324;
    border: 1px solid #1b2736;
    padding: 14px;
    border-radius: 14px
}

.num {
    font-weight: 800;
    color: var(--brand);
    margin-bottom: 6px
}

/* Contact */
.contact {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px
}

form {
    display: grid;
    gap: 12px
}

input,
select,
textarea {
    background: #0c1528;
    border: 1px solid #1f2c3e;
    color: var(--text);
    padding: 12px 14px;
    border-radius: 12px;
    width: 100%
}

label {
    font-size: 14px;
    color: #cbd5e1;
}

#inquiryForm .form-group label {
    color: #000000;
}

.inline {
    display: grid;
    grid-template-columns: 1fr 1fr;
    /* grid-template-columns: 0fr -6fr; */
    gap: 12px
}

.map {
    width: 100%;
    height: 100%;
    min-height: 320px;
    border-radius: 14px;
    border: 0
}

/* Footer */
footer {
    padding: 30px 0;
    border-top: 1px solid #1b2736;
    /* color: #a3b2c7 */
    color: #ffffff;
}

.footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px
}

.footer-links {
    display: flex;
    gap: 10px;
    align-items: center
}

/* Animations */
.reveal {
    opacity: 0;
    transform: translateY(12px);
    transition: .5s ease
}

.reveal.show {
    opacity: 1;
    transform: none;
    text-align: center;
}

.whatsapp {
    position: fixed;
    bottom: 30px;
    right: 11px;
    height: 50px;
    width: 50px;
    z-index: 9;
    -webkit-transition: all .9s;
    transition: all .9s;
}


@media (min-width: 0px) and (max-width: 450px) {

    .logo-img {
        height: 70px;
        width: auto;
        margin-right: 10px;
    }

    .logo-name {
        font-size: 20px;
    }

    .hero {
        padding: 33px 0;
    }

    section {
        padding: 20px 0;
    }

    #pricing {
        margin: auto;
        width: min(1100px, 100%);
    }

    .nav {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 12px 0;
        flex-direction: column;
    }

    .nav-links {
        display: none;
    }

    .brand {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    div {
        text-align: center;
    }

    #contact .contact {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 12px 0;
        flex-direction: column;
    }

    .inline div {
        text-align: left;
    }

    .footer {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-wrap: wrap;
        gap: 23px;
    }


}