/* RESET */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Inter", sans-serif;
    background: #fff;
    color: #111827;
    line-height: 1.6;
}

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

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

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

/* VARIÁVEIS VK */

:root {
    --vk-blue-dark: #06182f;
    --vk-blue: #0b315c;
    --vk-blue-light: #124c85;
    --vk-gold: #d9a928;
    --vk-gold-light: #ffe58a;
    --vk-gold-dark: #a87308;
    --white: #ffffff;
    --black: #050a12;
    --text: #1c2530;
    --text-light: #697384;
    --background: #ffffff;
    --background-light: #f5f7fa;
    --border: #e3e7ec;
    --radius: 18px;
    --container: 1180px;
    --transition: 0.3s ease;
}

/* GERAL */

.container {
    width: min(calc(100% - 40px), var(--container));
    margin: 0 auto;
}

.section {
    padding: 120px 0;
}

.section-tag {
    display: inline-block;
    margin-bottom: 18px;
    color: var(--vk-gold-dark);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2.5px;
}

.section-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 50px;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: clamp(38px, 4vw, 58px);
    line-height: 1.05;
    letter-spacing: -2px;
}

.section-header h2 span,
.sobre-content h2 span {
    color: var(--vk-gold-dark);
}

.section-header > p {
    max-width: 420px;
    color: var(--text-light);
    font-size: 16px;
}

.section-header.centered {
    display: block;
    max-width: 720px;
    margin-right: auto;
    margin-left: auto;
    text-align: center;
}

.section-header.centered p {
    margin: 20px auto 0;
}

/* BOTÕES */

.btn {
    min-height: 54px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 30px;
    border: 1px solid transparent;
    border-radius: 5px;
    font-size: 13px;
    font-weight: 800;
    cursor: pointer;
    transition: var(--transition);
}

.btn-gold {
    background: linear-gradient(135deg, #b77b0b, #f5d46b, #c18a15);
    color: #07182d;
    box-shadow: 0 10px 25px rgba(201, 155, 48, 0.2);
}

.btn-gold:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(201, 155, 48, 0.3);
}

.btn-blue {
    background: var(--vk-blue-dark);
    color: #fff;
}

.btn-blue:hover {
    background: var(--vk-blue-light);
    transform: translateY(-3px);
}

.btn-light-outline {
    border-color: rgba(255, 255, 255, 0.25);
    color: #fff;
}

.btn-light-outline:hover {
    border-color: var(--vk-gold);
    color: var(--vk-gold-light);
}

.btn-full {
    width: 100%;
    border: 0;
}

/* HEADER */

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(6, 24, 47, 0.96);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(217, 169, 40, 0.15);
    transition: var(--transition);
}

.header.scrolled {
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.header-container {
    min-height: 84px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.logo img {
    width: 145px;
}

.nav {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-link {
    position: relative;
    color: rgba(255, 255, 255, 0.75);
    font-size: 13px;
    font-weight: 600;
    transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
    color: var(--vk-gold-light);
}

.nav-link.active::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -8px;
    height: 2px;
    background: var(--vk-gold);
}

.nav-button {
    padding: 13px 23px;
    border: 1px solid rgba(217, 169, 40, 0.6);
    border-radius: 4px;
    background: linear-gradient(135deg, #a87308, #f2ce62);
    color: #07182d;
    font-size: 13px;
    font-weight: 800;
    transition: var(--transition);
}

.nav-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(217, 169, 40, 0.2);
}

.menu-toggle {
    display: none;
    width: 35px;
    border: 0;
    background: transparent;
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    height: 2px;
    margin: 6px 0;
    background: var(--vk-gold-light);
}

/* HERO */

.hero {
    position: relative;
    min-height: 800px;
    padding-top: 84px;
    overflow: hidden;
    background:
        radial-gradient(circle at 85% 30%, rgba(18, 76, 133, 0.8), transparent 32%),
        radial-gradient(circle at 5% 100%, rgba(168, 115, 8, 0.12), transparent 30%),
        linear-gradient(135deg, #040d1a, #071a33 55%, #0a294d);
    color: #fff;
}

.hero-glow {
    position: absolute;
    top: 15%;
    right: 15%;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(217, 169, 40, 0.08);
    filter: blur(80px);
}

.hero-container {
    min-height: 716px;
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 0.9fr;
    align-items: center;
    gap: 60px;
}

.hero .section-tag {
    color: var(--vk-gold-light);
}

.hero h1 {
    max-width: 700px;
    margin-bottom: 25px;
    font-size: clamp(48px, 6vw, 78px);
    line-height: 1.02;
    letter-spacing: -3px;
}

.hero h1 span {
    display: block;
    color: var(--vk-gold-light);
}

.hero-content > p {
    max-width: 580px;
    margin-bottom: 35px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 17px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    margin-top: 15px;
    transform: translateY(-15px);
}

.hero-buttons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 170px;
    padding: 14px 28px;
    border: 2px solid #d4af37;
    border-radius: 8px;
    background: #d4af37;
    color: #0b1f3a;
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.hero-buttons a:hover {
    background: transparent;
    color: #d4af37;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(212, 175, 55, 0.25);
}

.hero-social {
    display: flex;
    align-items: center;
    margin-top: 18px;
}

.hero-social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: 42px;
    padding: 0 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 7px;
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    transition: var(--transition);
}

.hero-social-link i {
    font-size: 18px;
}

.hero-social-link.instagram:hover {
    border-color: var(--vk-gold);
    background: rgba(217, 169, 40, 0.1);
    color: var(--vk-gold-light);
    transform: translateY(-2px);
}

.hero-info {
    display: flex;
    align-items: center;
    gap: 30px;
}

.hero-info-item {
    display: flex;
    flex-direction: column;
}

.hero-info-item strong {
    color: var(--vk-gold-light);
    font-size: 13px;
    font-weight: 800;
}

.hero-info-item span {
    color: rgba(255, 255, 255, 0.5);
    font-size: 11px;
}

.hero-divider {
    width: 1px;
    height: 35px;
    background: rgba(255, 255, 255, 0.15);
}

/* HERO IMAGEM */

.hero-image {
    position: relative;
    height: 620px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.hero-circle {
    position: absolute;
    right: 10px;
    bottom: 10px;
    width: 510px;
    height: 510px;
    border: 1px solid rgba(217, 169, 40, 0.5);
    border-radius: 50%;
    background:
        radial-gradient(circle at 40% 35%, #124c85, #071a33 70%);
    box-shadow:
        0 0 80px rgba(18, 76, 133, 0.3),
        inset 0 0 60px rgba(217, 169, 40, 0.08);
}

.hero-gold-ring {
    position: absolute;
    right: 50px;
    bottom: 50px;
    width: 430px;
    height: 430px;
    border: 1px solid rgba(255, 229, 138, 0.15);
    border-radius: 50%;
}

.hero-image img {
    position: relative;
    z-index: 2;
    height: 610px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 30px 35px rgba(0, 0, 0, 0.35));
}

.hero-card {
    position: absolute;
    z-index: 4;
    left: 0;
    bottom: 75px;
    max-width: 220px;
    padding: 20px 24px;
    border: 1px solid rgba(217, 169, 40, 0.35);
    border-radius: 8px;
    background: rgba(6, 24, 47, 0.9);
    backdrop-filter: blur(10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.hero-card span {
    display: block;
    margin-bottom: 4px;
    color: rgba(255, 255, 255, 0.55);
    font-size: 10px;
}

.hero-card strong {
    color: var(--vk-gold-light);
    font-size: 14px;
    line-height: 1.3;
}

/* CONSÓRCIOS */

.consorcios {
    background: var(--background-light);
}

.consorcios-carousel {
    position: relative;
    display: flex;
    align-items: center;
    gap: 14px;
}

.consorcios-grid {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: calc((100% - 60px) / 4);
    gap: 20px;
    width: 100%;
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    padding: 8px 2px 18px;
}

.consorcios-grid::-webkit-scrollbar {
    display: none;
}

.consorcio-card {
    scroll-snap-align: start;
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: #fff;
    transition: var(--transition);
}

.consorcio-card:hover {
    transform: translateY(-8px);
    border-color: rgba(217, 169, 40, 0.45);
    box-shadow: 0 25px 50px rgba(6, 24, 47, 0.1);
}

.consorcios-arrow {
    flex: 0 0 42px;
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(217, 169, 40, 0.55);
    border-radius: 50%;
    background: var(--vk-blue-dark);
    color: var(--vk-gold-light);
    font-size: 20px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 8px 20px rgba(6, 24, 47, 0.12);
}

.consorcios-arrow:hover {
    transform: scale(1.06);
    background: var(--vk-blue);
    box-shadow: 0 12px 25px rgba(6, 24, 47, 0.18);
}

.card-image {
    position: relative;
    height: 210px;
    overflow: hidden;
}

.card-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        transparent 55%,
        rgba(6, 24, 47, 0.75)
    );
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s ease;
}

.consorcio-card:hover .card-image img {
    transform: scale(1.06);
}

.card-number {
    position: absolute;
    z-index: 2;
    top: 18px;
    right: 18px;
    color: var(--vk-gold-light);
    font-size: 13px;
    font-weight: 800;
}

.card-content {
    padding: 28px;
}

.card-label {
    color: var(--vk-gold-dark);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 2px;
}

.card-content h3 {
    margin: 8px 0 10px;
    color: var(--vk-blue-dark);
    font-size: 22px;
}

.card-content p {
    min-height: 68px;
    margin-bottom: 20px;
    color: var(--text-light);
    font-size: 13px;
}

.card-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--vk-blue);
    font-size: 12px;
    font-weight: 800;
}

.card-link span {
    color: var(--vk-gold-dark);
    font-size: 20px;
    transition: var(--transition);
}

.card-link:hover span {
    transform: translateX(5px);
}

/* DIFERENCIAIS */

.diferenciais {
    position: relative;
    overflow: hidden;
    padding: 110px 0;
    background:
        radial-gradient(circle at 100% 0%, rgba(18, 76, 133, 0.6), transparent 35%),
        linear-gradient(135deg, #040d1a, #071a33);
    color: #fff;
}

.diferenciais::before {
    content: "";
    position: absolute;
    top: -100px;
    left: -100px;
    width: 300px;
    height: 300px;
    border: 1px solid rgba(217, 169, 40, 0.15);
    border-radius: 50%;
}

.diferenciais-container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    align-items: center;
    gap: 100px;
}

.diferenciais-title .section-tag {
    color: var(--vk-gold-light);
}

.diferenciais-title h2 {
    margin-bottom: 25px;
    font-size: clamp(38px, 4vw, 58px);
    line-height: 1.05;
    letter-spacing: -2px;
}

.diferenciais-title h2 span {
    color: var(--vk-gold-light);
}

.diferenciais-title > p {
    max-width: 430px;
    color: rgba(255, 255, 255, 0.55);
    font-size: 14px;
}

.diferenciais-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 45px 30px;
}

.diferencial {
    padding: 5px;
}

.diferencial-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    border: 1px solid rgba(217, 169, 40, 0.5);
    border-radius: 50%;
    background: rgba(217, 169, 40, 0.08);
    color: var(--vk-gold-light);
    font-weight: 800;
}

.diferencial h3 {
    margin-bottom: 10px;
    font-size: 17px;
}

.diferencial p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 13px;
}

/* COMO FUNCIONA */

.como-funciona {
    background: #fff;
}

.steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.step {
    padding: 20px 30px;
    border-left: 1px solid var(--border);
}

.step:first-child {
    border-left: 0;
}

.step-number {
    margin-bottom: 30px;
    color: var(--vk-gold-dark);
    font-size: 42px;
    font-weight: 800;
}

.step h3 {
    margin-bottom: 12px;
    color: var(--vk-blue-dark);
    font-size: 18px;
}

.step p {
    color: var(--text-light);
    font-size: 13px;
}

/* SOBRE */

.sobre {
    overflow: hidden;
    background: var(--background-light);
}

.sobre-container {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    align-items: center;
    gap: 100px;
}

.sobre-image {
    position: relative;
    min-height: 560px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.sobre-circle {
    position: absolute;
    bottom: 0;
    width: 430px;
    height: 430px;
    border-radius: 50%;
    background: linear-gradient(145deg, #0d3d6d, #06182f);
    box-shadow: 0 30px 70px rgba(6, 24, 47, 0.18);
}

.sobre-gold-detail {
    position: absolute;
    right: 15px;
    bottom: 50px;
    width: 90px;
    height: 90px;
    border: 12px solid var(--vk-gold);
    border-radius: 50%;
    opacity: 0.6;
}

.sobre-image img {
    position: relative;
    z-index: 2;
    height: 550px;
    object-fit: contain;
    filter: drop-shadow(0 25px 25px rgba(0, 0, 0, 0.2));
}

.sobre-content h2 {
    margin-bottom: 25px;
    color: var(--vk-blue-dark);
    font-size: clamp(38px, 4vw, 58px);
    line-height: 1.05;
    letter-spacing: -2px;
}

.sobre-content p {
    max-width: 580px;
    margin-bottom: 18px;
    color: var(--text-light);
    font-size: 15px;
}

.sobre-points {
    display: grid;
    gap: 13px;
    margin: 30px 0;
}

.sobre-points div {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--vk-blue-dark);
    font-size: 13px;
    font-weight: 700;
}

.sobre-points span {
    width: 26px;
    height: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(217, 169, 40, 0.15);
    color: var(--vk-gold-dark);
    font-size: 11px;
}

/* DEPOIMENTOS */

.depoimentos {
    background: #fff;
}

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

.depoimento {
    padding: 35px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: #fff;
    transition: var(--transition);
}

.depoimento:hover {
    transform: translateY(-5px);
    border-color: rgba(217, 169, 40, 0.35);
    box-shadow: 0 20px 40px rgba(6, 24, 47, 0.08);
}

.stars {
    margin-bottom: 25px;
    color: var(--vk-gold);
    letter-spacing: 3px;
}

.depoimento > p {
    min-height: 120px;
    margin-bottom: 30px;
    color: #4f5967;
    font-size: 14px;
}

.cliente {
    display: flex;
    align-items: center;
    gap: 12px;
}

.cliente-avatar {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--vk-blue-dark);
    color: var(--vk-gold-light);
    font-weight: 800;
}

.cliente strong,
.cliente span {
    display: block;
}

.cliente strong {
    color: var(--vk-blue-dark);
    font-size: 12px;
}

.cliente span {
    color: var(--text-light);
    font-size: 10px;
}

/* SIMULAÇÃO */

.simulacao {
    position: relative;
    overflow: hidden;
    padding: 110px 0;
    background:
        radial-gradient(circle at 90% 20%, rgba(217, 169, 40, 0.13), transparent 30%),
        linear-gradient(135deg, #040d1a, #071a33 60%, #0b315c);
}

.simulacao-glow {
    position: absolute;
    right: -150px;
    bottom: -200px;
    width: 500px;
    height: 500px;
    border: 1px solid rgba(217, 169, 40, 0.15);
    border-radius: 50%;
}

.simulacao-container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    align-items: center;
    gap: 80px;
}

.simulacao-content {
    color: #fff;
}

.simulacao-content .section-tag {
    color: var(--vk-gold-light);
}

.simulacao-content h2 {
    margin-bottom: 25px;
    font-size: clamp(38px, 4vw, 58px);
    line-height: 1.05;
    letter-spacing: -2px;
}

.simulacao-content h2 span {
    color: var(--vk-gold-light);
}

.simulacao-content > p {
    max-width: 480px;
    color: rgba(255, 255, 255, 0.55);
    font-size: 15px;
}

.simulacao-contact {
    display: flex;
    gap: 50px;
    margin-top: 45px;
}

.simulacao-contact div {
    display: flex;
    flex-direction: column;
}

.simulacao-contact strong {
    color: var(--vk-gold-light);
    font-size: 17px;
}

.simulacao-contact span {
    color: rgba(255, 255, 255, 0.5);
    font-size: 12px;
}

.formulario {
    padding: 40px;
    border: 1px solid rgba(217, 169, 40, 0.25);
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.2);
}

.form-title {
    margin-bottom: 25px;
}

.form-title span {
    color: var(--vk-gold-dark);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 2px;
}

.form-title h3 {
    margin-top: 5px;
    color: var(--vk-blue-dark);
    font-size: 22px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 7px;
    margin-bottom: 18px;
}

.form-group label {
    color: #333d49;
    font-size: 11px;
    font-weight: 800;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 13px 14px;
    outline: none;
    border: 1px solid var(--border);
    border-radius: 6px;
    background: #fff;
    color: #1c2530;
    font-size: 13px;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--vk-gold);
    box-shadow: 0 0 0 3px rgba(217, 169, 40, 0.1);
}

.form-group textarea {
    resize: vertical;
}

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

.form-disclaimer {
    display: block;
    margin-top: 15px;
    color: #8a919c;
    font-size: 9px;
    text-align: center;
}

/* FOOTER */

.footer {
    padding: 70px 0 25px;
    background: #030914;
    color: #fff;
}

.footer-main {
    display: grid;
    grid-template-columns: 1.5fr repeat(3, 1fr);
    gap: 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(217, 169, 40, 0.12);
}

.footer-brand img {
    width: 140px;
    margin-bottom: 20px;
}

.footer-brand p {
    max-width: 250px;
    color: #737d8b;
    font-size: 12px;
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 13px;
}

.footer-column h4 {
    margin-bottom: 8px;
    color: var(--vk-gold-light);
    font-size: 13px;
}

.footer-column a {
    color: #737d8b;
    font-size: 12px;
    transition: var(--transition);
}

.footer-column a:hover {
    color: #fff;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding-top: 25px;
    color: #505967;
    font-size: 10px;
}

/* CONTATOS DO FOOTER */

.footer-contact-link,
.footer-contact-address {
    display: flex;
    align-items: flex-start;
    gap: 9px;
}

.footer-contact-link {
    text-decoration: none;
}

.footer-contact-link i,
.footer-contact-address i {
    width: 16px;
    min-width: 16px;
    text-align: center;
    font-size: 15px;
    margin-top: 2px;
}

.footer-contact-link i {
    color: var(--vk-gold);
}

.footer-contact-link:hover {
    color: var(--vk-gold);
}

.footer-contact-address {
    color: #737d8b;
    font-size: 12px;
    line-height: 1.5;
}

/* REDES SOCIAIS */

.floating-socials {
    position: fixed;
    right: 25px;
    bottom: 25px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.floating-social-button {
    width: 58px;
    height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(255, 255, 255, 0.7);
    border-radius: 50%;
    color: #fff;
    font-size: 27px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
    transition: var(--transition);
}

.floating-social-button:hover {
    transform: scale(1.08);
}

.instagram-button {
    background: #d62976;
    box-shadow: 0 10px 30px rgba(214, 41, 118, 0.28);
}

.whatsapp-button {
    background: #25d366;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.32);
}

/* TABLET */

@media (max-width: 1100px) {
    .consorcios-grid {
        grid-auto-columns: calc((100% - 40px) / 3);
    }
}

@media (max-width: 1050px) {
    .nav {
        gap: 18px;
    }

    .hero-container {
        grid-template-columns: 1fr 0.8fr;
    }

    .hero h1 {
        font-size: 55px;
    }
}

@media (max-width: 850px) {
    .consorcios-carousel {
        gap: 10px;
    }

    .consorcios-grid {
        grid-auto-columns: calc((100% - 20px) / 2);
    }

    .consorcios-arrow {
        flex-basis: 38px;
        width: 38px;
        height: 38px;
        font-size: 18px;
    }

    .menu-toggle {
        display: block;
    }

    .nav {
        position: absolute;
        top: 84px;
        left: 0;
        width: 100%;
        display: none;
        flex-direction: column;
        align-items: stretch;
        padding: 25px;
        background: var(--vk-blue-dark);
        border-top: 1px solid rgba(217, 169, 40, 0.15);
        box-shadow: 0 20px 30px rgba(0, 0, 0, 0.2);
    }

    .nav.active {
        display: flex;
    }

    .nav-link {
        padding: 12px 0;
    }

    .nav-link.active::after {
        display: none;
    }

    .nav-button {
        width: 100%;
        margin-top: 8px;
        text-align: center;
    }

    .hero {
        min-height: auto;
        padding-bottom: 80px;
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 20px;
        text-align: center;
    }

    .hero-content > p {
        margin-right: auto;
        margin-left: auto;
    }

    .hero-buttons,
    .hero-info {
        justify-content: center;
    }

    .hero-social {
        justify-content: center;
    }

    .hero-image {
        height: 500px;
    }

    .hero-image img {
        height: 500px;
    }

    .hero-circle {
        right: 50%;
        width: 400px;
        height: 400px;
        transform: translateX(50%);
    }

    .hero-gold-ring {
        right: 50%;
        width: 340px;
        height: 340px;
        transform: translateX(50%);
    }

    .diferenciais-container,
    .sobre-container,
    .simulacao-container {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .step {
        padding: 30px 10px;
        border-top: 1px solid var(--border);
        border-left: 0;
    }

    .step:first-child,
    .step:nth-child(2) {
        border-top: 0;
    }

    .sobre-image {
        min-height: 500px;
    }

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

    .sobre-content p {
        margin-right: auto;
        margin-left: auto;
    }

    .sobre-points {
        justify-content: center;
    }

    .footer-main {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* MOBILE */

@media (max-width: 600px) {
    .container {
        width: calc(100% - 30px);
    }

    .section {
        padding: 80px 0;
    }

    .header-container {
        min-height: 72px;
    }

    .nav {
        top: 72px;
    }

    .hero {
        padding-top: 72px;
    }

    .hero h1 {
        font-size: 43px;
        letter-spacing: -2px;
    }

    .hero-content > p {
        font-size: 15px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    .hero-info {
        flex-wrap: wrap;
        gap: 15px;
    }

    .hero-divider {
        display: none;
    }

    /*
        HERO MOBILE

        A imagem fica primeiro.
        O card passa para baixo da imagem
        para não cobrir o Vilson.
    */

    .hero-image {
        height: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-image img {
        height: 420px;
        width: auto;
        flex-shrink: 0;
    }

    .hero-circle {
        width: 330px;
        height: 330px;
    }

    .hero-gold-ring {
        width: 280px;
        height: 280px;
    }

    .hero-card {
        position: relative;
        top: auto;
        right: auto;
        bottom: auto;
        left: auto;
        transform: none;

        width: calc(100% - 30px);
        max-width: 340px;

        margin: 0 auto;
    }

    .section-header {
        display: block;
        text-align: center;
    }

    .section-header > p {
        margin: 20px auto 0;
    }

    /* CARROSSEL DE CONSÓRCIOS */

    .consorcios-grid {
        grid-auto-columns: 84%;
    }

    .consorcios-arrow {
        display: none;
    }

    /* DIFERENCIAIS */

    .diferenciais-grid {
        grid-template-columns: 1fr;
    }

    /* COMO FUNCIONA */

    .steps {
        grid-template-columns: 1fr;
    }

    .step:nth-child(2) {
        border-top: 1px solid var(--border);
    }

    /* SOBRE */

    .sobre-image {
        min-height: 400px;
    }

    .sobre-circle {
        width: 320px;
        height: 320px;
    }

    .sobre-image img {
        height: 400px;
    }

    .sobre-gold-detail {
        right: 0;
        width: 65px;
        height: 65px;
        border-width: 8px;
    }

    /* FORMULÁRIO */

    .formulario {
        padding: 25px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .simulacao-contact {
        gap: 30px;
    }

    /* FOOTER */

    .footer-main {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    /* REDES SOCIAIS */

    .floating-socials {
        right: 15px;
        bottom: 15px;
        gap: 10px;
    }

    .floating-social-button {
        width: 52px;
        height: 52px;
        font-size: 24px;
    }
}