@import url("../js/blocks/header/header.css");
@import url("../js/blocks/hero/hero.css");
@import url("../js/blocks/services/services.css");
@import url("../js/blocks/values/values.css");
@import url("../js/blocks/process/process.css");
@import url("../js/blocks/stats/stats.css");
@import url("../js/blocks/testimonials/testimonials.css");
@import url("../js/blocks/quote/quote.css");
@import url("../js/blocks/footer/footer.css");
@import url("../js/blocks/whatsapp/whatsapp.css");

:root {
    --navy: #001a34;
    --navy-deep: #001126;
    --navy-soft: #06345f;
    --blue: #0b3f78;
    --yellow: #ffc20f;
    --yellow-dark: #eab308;
    --green: #22c55e;
    --ink: #081b36;
    --muted: #64748b;
    --line: #e2e8f0;
    --surface: #ffffff;
    --surface-soft: #f5f8fc;
    --shadow: 0 16px 34px rgba(8, 27, 54, 0.12);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 92px;
}

body {
    background: #ffffff;
    color: var(--ink);
    font-family: "Inter", Arial, sans-serif;
    line-height: 1.5;
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    display: block;
    max-width: 100%;
}

button,
input,
select,
textarea {
    font: inherit;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    margin: 0;
    -webkit-appearance: none;
}

input[type="number"] {
    -moz-appearance: textfield;
}

.container {
    width: min(100% - 56px, 1180px);
    margin: 0 auto;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    border: 0;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 800;
    line-height: 1;
    padding: 0 22px;
    transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
    white-space: nowrap;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-primary {
    background: var(--yellow);
    color: #111827;
}

.btn-primary:hover {
    background: var(--yellow-dark);
}

.btn-secondary {
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.42);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
}

.btn-whatsapp {
    width: 100%;
    background: var(--green);
    color: #ffffff;
}

.section {
    padding: 78px 0;
}

.eyebrow,
.section-title span {
    display: inline-flex;
    margin-bottom: 12px;
    color: var(--yellow);
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.section-title {
    max-width: 700px;
    margin: 0 auto 34px;
    text-align: center;
}

.section-title h2 {
    color: var(--ink);
    font-size: clamp(1.8rem, 3vw, 2.55rem);
    font-weight: 900;
    line-height: 1.08;
}

.content-error {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 2000;
    width: 100%;
    padding: 14px 20px;
    background: #991b1b;
    color: #ffffff;
    font-weight: 700;
    text-align: center;
}

@media (max-width: 1040px) {
    .container {
        width: min(100% - 36px, 1200px);
    }
}

@media (max-width: 680px) {
    html {
        scroll-padding-top: 76px;
    }

    .section {
        padding: 78px 0;
    }

    .section-title {
        margin-bottom: 36px;
    }

    .btn {
        width: 100%;
        white-space: normal;
    }
}
