@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Sora:wght@500;600;700&display=swap');

:root {
    --color-primary: #0b5cab;
    --color-primary-dark: #082f5b;
    --color-primary-deep: #061e3f;
    --color-primary-soft: #eaf3fb;
    --color-sky: #d7eafb;
    --color-text: #102c4d;
    --color-text-soft: #5d7188;
    --color-muted: #8fa2b7;
    --color-bg: #ffffff;
    --color-bg-alt: #f5f8fc;
    --color-border: #dbe6f1;
    --color-white: #ffffff;
    --radius: 18px;
    --radius-sm: 10px;
    --shadow-sm: 0 2px 8px rgba(8, 47, 91, 0.06);
    --shadow-md: 0 14px 32px rgba(8, 47, 91, 0.1);
    --shadow-lg: 0 24px 60px rgba(8, 47, 91, 0.16);
    --container: 1200px;
    --font-body: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-display: 'Sora', 'DM Sans', sans-serif;
}

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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    color: var(--color-text);
    background: var(--color-bg);
    line-height: 1.65;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    animation: page-enter 0.28s ease both;
}

@keyframes page-enter {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}

body.page-leaving {
    opacity: 0;
    transform: translateY(-6px);
    transition: opacity 0.18s ease, transform 0.18s ease;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    opacity: 0.26;
    background-image: linear-gradient(rgba(11, 92, 171, 0.025) 1px, transparent 1px), linear-gradient(90deg, rgba(11, 92, 171, 0.025) 1px, transparent 1px);
    background-size: 36px 36px;
    mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.55), transparent 58%);
    z-index: -1;
}

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

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

ul {
    list-style: none;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

.container {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 28px;
}

h1, h2, h3 {
    font-family: var(--font-display);
    line-height: 1.14;
    font-weight: 600;
    color: var(--color-primary-deep);
    letter-spacing: -0.035em;
}

h1 {
    font-size: clamp(2.45rem, 5vw, 4.65rem);
}

h2 {
    font-size: clamp(2rem, 3.4vw, 3.15rem);
}

h3 {
    font-size: 1.15rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: 48px;
    padding: 13px 24px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 0.9rem;
    transition: transform 0.25s ease, background 0.25s ease, box-shadow 0.25s ease, color 0.25s ease;
    text-align: center;
    cursor: pointer;
    white-space: nowrap;
}

.btn-sm {
    min-height: 40px;
    padding: 10px 18px;
    font-size: 0.82rem;
}

.btn-block {
    width: 100%;
}

.btn-primary {
    background: var(--color-primary);
    color: var(--color-white);
    box-shadow: 0 10px 22px rgba(11, 92, 171, 0.2);
}

.btn-primary:hover {
    background: var(--color-primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 15px 28px rgba(8, 47, 91, 0.24);
}

.btn-outline {
    background: transparent;
    color: var(--color-white);
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.btn-outline:hover {
    background: var(--color-white);
    color: var(--color-primary-dark);
    border-color: var(--color-white);
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.92);
    border-bottom: 1px solid rgba(219, 230, 241, 0.8);
    box-shadow: 0 5px 24px rgba(8, 47, 91, 0.055);
    backdrop-filter: blur(16px);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 88px;
}

.logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.logo-img {
    width: 52px;
    height: 52px;
    object-fit: contain;
    display: block;
}

.logo-c2-official {
    width: 72px;
    max-width: 72px;
    height: 72px;
    object-fit: contain;
}

.logo-footer {
    width: 138px;
    height: 138px;
    max-width: 138px;
    margin-bottom: 12px;
    object-fit: contain;
}

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

.main-nav ul {
    display: flex;
    gap: 26px;
}

.main-nav a {
    position: relative;
    color: var(--color-text-soft);
    font-weight: 600;
    font-size: 0.88rem;
    transition: color 0.2s ease;
}

.main-nav ul a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 100%;
    bottom: -9px;
    height: 2px;
    background: var(--color-primary);
    transition: right 0.25s ease;
}

.main-nav ul a:hover {
    color: var(--color-primary);
}

.main-nav ul a:hover::after {
    right: 0;
}

.nav-cta {
    color: var(--color-white) !important;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--color-primary-deep);
    transition: 0.3s;
}

.hero {
    position: relative;
    overflow: hidden;
    padding: 96px 0 86px;
    color: var(--color-white);
    background: var(--color-primary-deep);
}

.hero::before {
    content: "";
    position: absolute;
    width: 680px;
    height: 680px;
    top: -360px;
    right: -130px;
    border: 1px solid rgba(150, 208, 255, 0.18);
    border-radius: 50%;
    box-shadow: 0 0 0 46px rgba(150, 208, 255, 0.035), 0 0 0 92px rgba(150, 208, 255, 0.025);
}

.hero::after {
    content: "";
    position: absolute;
    left: -180px;
    bottom: -320px;
    width: 560px;
    height: 560px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(11, 92, 171, 0.6), transparent 68%);
}

.hero-slides {
    position: relative;
    min-height: 470px;
    display: flex;
    align-items: center;
}

.hero-slide {
    display: none;
    width: 100%;
    position: relative;
    z-index: 1;
}

.hero-slide.is-active {
    display: block;
    animation: fade 0.65s ease;
}

.hero-slide-visual {
    position: absolute;
    top: 50%;
    right: 0;
    width: 46%;
    max-width: 535px;
    height: 390px;
    transform: translateY(-50%);
    z-index: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-slide-visual::before {
    content: "";
    position: absolute;
    inset: -18px;
    border: 1px solid rgba(160, 211, 255, 0.24);
    border-radius: 28px;
    transform: rotate(3deg);
}

.hero-slide-visual::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 22px;
    background: linear-gradient(135deg, rgba(3, 25, 52, 0.18), rgba(3, 25, 52, 0.58));
}

.hero-slide-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 22px;
    opacity: 0.86;
    box-shadow: var(--shadow-lg);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 56%;
}

@keyframes fade {
    from { opacity: 0; transform: translateY(14px); }
    to { opacity: 1; transform: none; }
}

.hero-eyebrow,
.section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #8fd0ff;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-size: 0.7rem;
    margin-bottom: 20px;
}

.hero-eyebrow::before,
.section-eyebrow::before {
    display: none;
}

.hero h1 {
    max-width: 680px;
    color: var(--color-white);
    margin-bottom: 24px;
}

.hero-desc {
    max-width: 570px;
    color: rgba(255, 255, 255, 0.76);
    font-size: 1.05rem;
    margin-bottom: 32px;
}

.hero-actions {
    display: flex;
    gap: 13px;
    flex-wrap: wrap;
}

.hero-dots {
    display: flex;
    gap: 9px;
    margin-top: 34px;
    position: relative;
    z-index: 3;
}

.hero-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.34);
    transition: 0.3s ease;
}

.hero-dot.is-active {
    width: 30px;
    border-radius: 20px;
    background: #8fd0ff;
}

.page-hero {
    position: relative;
    overflow: hidden;
    padding: 92px 0 88px;
    background: var(--color-primary-deep);
    color: var(--color-white);
    scroll-margin-top: 104px;
}

.page-hero::before {
    content: "";
    position: absolute;
    top: -280px;
    right: -80px;
    width: 560px;
    height: 560px;
    border: 1px solid rgba(143, 207, 255, 0.22);
    border-radius: 50%;
    box-shadow: 0 0 0 38px rgba(143, 207, 255, 0.04), 0 0 0 76px rgba(143, 207, 255, 0.025);
}

.page-hero-inner {
    position: relative;
    z-index: 1;
}

.page-hero .hero-eyebrow {
    margin-bottom: 18px;
}

.page-hero h1 {
    max-width: 800px;
    color: var(--color-white);
    margin-bottom: 18px;
}

.page-hero p:last-child {
    max-width: 650px;
    color: rgba(255, 255, 255, 0.74);
    font-size: 1.08rem;
}

.main-nav ul a.is-current {
    color: var(--color-primary);
}

.main-nav ul a.is-current::after {
    right: 0;
}

.section {
    padding: 118px 0;
    scroll-margin-top: 104px;
}

#infinite-scroll-container {
    position: relative;
}

.infinite-page {
    position: relative;
    scroll-margin-top: 104px;
    animation: infinite-page-enter 0.35s ease both;
}

@keyframes infinite-page-enter {
    from { opacity: 0; transform: translateY(14px); }
    to { opacity: 1; transform: translateY(0); }
}

.infinite-loader {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 0;
    height: 0;
    overflow: hidden;
    color: var(--color-primary);
    font-size: 0.82rem;
    opacity: 0;
    transition: opacity 0.25s ease, height 0.25s ease, min-height 0.25s ease;
}

.infinite-loader.is-visible {
    min-height: 64px;
    height: 64px;
    opacity: 1;
}

.infinite-loader-spinner {
    width: 16px;
    height: 16px;
    border: 2px solid var(--color-sky);
    border-top-color: var(--color-primary);
    border-radius: 50%;
    animation: infinite-loader-spin 0.8s linear infinite;
}

@media (max-width: 560px) {
    .infinite-loader.is-visible {
        min-height: 56px;
        height: 56px;
    }
}

@keyframes infinite-loader-spin {
    to { transform: rotate(360deg); }
}

.infinite-scroll-sentinel {
    width: 100%;
    height: 1px;
    pointer-events: none;
}

.section-alt {
    background: var(--color-bg-alt);
}

.section-head {
    max-width: 760px;
    margin: 0 auto 60px;
    text-align: center;
}

.section-eyebrow {
    color: var(--color-primary);
    margin-bottom: 15px;
}

.section-head h2 {
    max-width: 720px;
    margin: 0 auto;
}

.section-lead {
    color: var(--color-text-soft);
    margin-top: 18px;
    font-size: 1.02rem;
}

.home-intro-section {
    background: var(--color-bg);
}

.home-intro-grid {
    display: grid;
    grid-template-columns: 1fr 0.9fr;
    gap: 80px;
    align-items: end;
}

.home-intro-grid h2 {
    max-width: 610px;
}

.home-intro-grid .section-lead {
    margin: 0 0 24px;
}

.home-intro-actions {
    display: flex;
    align-items: center;
    gap: 22px;
    flex-wrap: wrap;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
}

.card {
    position: relative;
    min-height: 340px;
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    padding: 28px 25px;
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
    display: flex;
    flex-direction: column;
}

.card::after {
    content: "";
    position: absolute;
    left: 25px;
    right: 25px;
    bottom: 0;
    height: 3px;
    border-radius: 4px 4px 0 0;
    background: var(--color-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.28s ease;
}

.card:hover {
    transform: translateY(-7px);
    border-color: #a9c9e8;
    box-shadow: var(--shadow-md);
}

.card:hover::after {
    transform: scaleX(1);
}

.card-featured {
    border: 1px solid #8dbbe2;
    background: linear-gradient(155deg, #eaf4fc 0%, #ffffff 58%);
    box-shadow: 0 18px 38px rgba(11, 92, 171, 0.1);
}

.card-featured:hover {
    border-color: var(--color-primary);
}

.card-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: var(--color-primary-soft);
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.card h3 {
    margin-bottom: 12px;
    font-size: 1.06rem;
}

.card p {
    color: var(--color-text-soft);
    font-size: 0.9rem;
    line-height: 1.65;
    margin-bottom: 22px;
    flex: 1;
}

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

.rental-benefits-section {
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, #f5f8fc 0%, #edf5fc 100%);
}

.rental-benefits-section::before {
    content: "";
    position: absolute;
    top: -180px;
    right: -120px;
    width: 420px;
    height: 420px;
    border: 1px solid rgba(11, 92, 171, 0.12);
    border-radius: 50%;
    box-shadow: 0 0 0 34px rgba(11, 92, 171, 0.025), 0 0 0 68px rgba(11, 92, 171, 0.018);
    pointer-events: none;
}

.rental-benefits-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.rental-benefit {
    min-height: 255px;
    padding: 27px 24px 25px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    box-shadow: 0 5px 18px rgba(8, 47, 91, 0.035);
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.rental-benefit:hover {
    transform: translateY(-5px);
    border-color: #9fc4e6;
    box-shadow: var(--shadow-md);
}

.rental-benefit-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    margin-bottom: 22px;
    border-radius: 11px;
    background: var(--color-primary);
    color: var(--color-white);
    font-family: var(--font-display);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.04em;
}

.rental-benefit h3 {
    margin-bottom: 11px;
    font-size: 1.02rem;
}

.rental-benefit p {
    color: var(--color-text-soft);
    font-size: 0.88rem;
    line-height: 1.65;
}

.rental-benefits-cta {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin-top: 25px;
    padding: 25px 28px;
    border-radius: var(--radius);
    background: var(--color-primary-deep);
    color: var(--color-white);
    box-shadow: var(--shadow-md);
}

.rental-benefits-cta div {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.rental-benefits-cta strong {
    font-family: var(--font-display);
    font-size: 1.05rem;
    letter-spacing: -0.02em;
}

.rental-benefits-cta span {
    color: rgba(255, 255, 255, 0.68);
    font-size: 0.88rem;
}

.rental-benefits-cta .btn {
    flex-shrink: 0;
    background: #8fcfff;
    color: var(--color-primary-deep);
    box-shadow: none;
}

.rental-benefits-cta .btn:hover {
    background: var(--color-white);
    color: var(--color-primary-deep);
}

.sobre-grid {
    display: grid;
    grid-template-columns: 1.04fr 0.96fr;
    gap: 80px;
    align-items: center;
}

.sobre-text > p:not(.section-eyebrow) {
    color: var(--color-text-soft);
    margin-bottom: 20px;
}

.diferenciais {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin: 30px 0 34px;
}

.diferenciais li {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.dif-check {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--color-primary);
    color: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.8rem;
}

.diferenciais strong {
    display: block;
    margin-bottom: 4px;
    color: var(--color-primary-deep);
}

.diferenciais p {
    font-size: 0.9rem;
    color: var(--color-text-soft);
    margin: 0;
}

.sobre-actions {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.link-arrow {
    color: var(--color-primary);
    font-weight: 700;
    transition: color 0.2s ease;
}

.link-arrow:hover {
    color: var(--color-primary-dark);
}

.sobre-figure {
    position: relative;
    display: flex;
}

.sobre-figure::before {
    content: "";
    position: absolute;
    inset: -18px 18px 18px -18px;
    border: 1px solid #9fc4e6;
    border-radius: var(--radius);
    z-index: 0;
}

.sobre-figure img {
    position: relative;
    z-index: 1;
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
}

.leadership-section {
    background: var(--color-primary-deep);
    color: var(--color-white);
}

.leadership-grid {
    display: grid;
    grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
    gap: clamp(40px, 7vw, 96px);
    align-items: center;
}

.leadership-photo {
    max-width: 390px;
    width: 100%;
    justify-self: center;
    border-radius: 22px;
    padding: 9px;
    background: rgba(255, 255, 255, 0.12);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.24);
}

.leadership-photo img {
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    object-position: center top;
    border-radius: 15px;
}

.leadership-content .section-eyebrow {
    color: #8fd0ff;
}

.leadership-content h2 {
    color: var(--color-white);
    margin-bottom: 8px;
}

.leadership-role {
    color: rgba(255, 255, 255, 0.62);
    font-weight: 600;
    margin-bottom: 24px;
}

.leadership-content blockquote {
    max-width: 650px;
    border-left: 3px solid #8fd0ff;
    padding: 7px 0 7px 22px;
    color: rgba(255, 255, 255, 0.76);
    font-size: clamp(1.05rem, 2vw, 1.3rem);
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 30px;
}

.segments-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
}

.segment-card {
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    padding: 25px 22px;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.segment-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: #9fc4e6;
}

.seg-icon {
    width: 48px;
    height: 48px;
    color: var(--color-primary);
    background: var(--color-primary-soft);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.seg-icon svg {
    width: 25px;
    height: 25px;
}

.segment-card h3 {
    font-size: 1.02rem;
    margin-bottom: 8px;
}

.segment-card p {
    font-size: 0.88rem;
    color: var(--color-text-soft);
    margin-bottom: 14px;
}

.brands-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 18px;
}

.brand-logo {
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    height: 98px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-muted);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.brand-logo:hover {
    border-color: #9fc4e6;
    box-shadow: var(--shadow-sm);
}

.brand-logo img {
    max-width: 82%;
    max-height: 65px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(1);
    opacity: 0.72;
    transition: filter 0.25s ease, transform 0.25s ease, opacity 0.25s ease;
}

.brand-logo:hover img {
    filter: grayscale(0);
    opacity: 1;
    transform: scale(1.04);
}

.brand-logo img[src$="marca-brother.svg"] {
    max-width: 88%;
}

.contato-grid {
    display: grid;
    grid-template-columns: 0.86fr 1.14fr;
    gap: 70px;
    align-items: start;
}

.contato-form-wrap {
    scroll-margin-top: 104px;
}

.contato-info > p:not(.section-eyebrow) {
    color: var(--color-text-soft);
    margin: 16px 0 30px;
}

.contato-list {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.contato-list li {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.contato-ico {
    flex-shrink: 0;
    width: 43px;
    height: 43px;
    border-radius: 12px;
    background: var(--color-primary-soft);
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
}

.contato-list strong {
    display: block;
    font-size: 0.92rem;
}

.contato-list p {
    color: var(--color-text-soft);
    font-size: 0.9rem;
    margin: 2px 0 0;
}

.contato-form {
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: 22px;
    padding: 38px;
    box-shadow: var(--shadow-md);
}

.form-honeypot {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
}

.field {
    margin-bottom: 22px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.field label {
    display: block;
    font-weight: 700;
    font-size: 0.82rem;
    margin-bottom: 7px;
    color: var(--color-text);
}

.field input,
.field textarea,
.field select {
    width: 100%;
    padding: 13px 14px;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    font-family: inherit;
    font-size: 0.9rem;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    background: var(--color-bg-alt);
    color: var(--color-text);
}

.field select {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%235d7188' stroke-width='2'%3e%3cpath d='M6 9l6 6 6-6'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 40px;
    cursor: pointer;
}

.field input:focus,
.field textarea:focus,
.field select:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(11, 92, 171, 0.13);
    background: var(--color-white);
}

.field textarea {
    resize: vertical;
}

.checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.82rem;
    color: var(--color-text-soft);
    margin-bottom: 22px;
    cursor: pointer;
}

.checkbox input {
    margin-top: 3px;
    accent-color: var(--color-primary);
}

.checkbox a {
    color: var(--color-primary);
    text-decoration: underline;
}

.form-feedback {
    font-size: 0.88rem;
    margin-top: 12px;
    min-height: 1em;
}

.form-feedback.ok {
    color: #176b4b;
}

.form-feedback.erro {
    color: #a13030;
}

.legal-section {
    background: var(--color-bg-alt);
}

.legal-content {
    max-width: 820px;
}

.legal-content h2 {
    margin-bottom: 22px;
}

.legal-content h3 {
    margin: 34px 0 10px;
    font-size: 1.18rem;
}

.legal-content p {
    color: var(--color-text-soft);
    margin-bottom: 16px;
}

.site-footer {
    background: var(--color-primary-deep);
    color: var(--color-white);
    padding-top: 64px;
}

.footer-inner {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 44px;
    padding-bottom: 46px;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.62);
    font-size: 0.88rem;
    max-width: 320px;
}

.footer-nav,
.footer-legal {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-nav a,
.footer-legal a {
    color: rgba(255, 255, 255, 0.68);
    font-size: 0.88rem;
    transition: color 0.2s ease;
}

.footer-nav a:hover,
.footer-legal a:hover {
    color: #8fd0ff;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    padding: 18px 0;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.82rem;
    text-align: center;
}

.whatsapp-float {
    position: fixed;
    right: 24px;
    bottom: 24px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #18b96d;
    color: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 9px 24px rgba(24, 185, 109, 0.32);
    z-index: 90;
    transition: transform 0.2s ease;
    animation: pulse 2.5s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.08);
}

@keyframes pulse {
    0% { box-shadow: 0 9px 24px rgba(24, 185, 109, 0.32), 0 0 0 0 rgba(24, 185, 109, 0.4); }
    70% { box-shadow: 0 9px 24px rgba(24, 185, 109, 0.32), 0 0 0 15px rgba(24, 185, 109, 0); }
    100% { box-shadow: 0 9px 24px rgba(24, 185, 109, 0.32), 0 0 0 0 rgba(24, 185, 109, 0); }
}

.cookie-banner {
    position: fixed;
    bottom: 16px;
    left: 16px;
    right: 16px;
    max-width: 560px;
    margin: 0 auto;
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    padding: 20px 24px;
    z-index: 200;
    transform: translateY(120%);
    transition: transform 0.4s ease;
}

.cookie-banner.is-visible {
    transform: translateY(0);
}

.cookie-content {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.cookie-content p {
    font-size: 0.85rem;
    color: var(--color-text-soft);
}

.cookie-content a {
    color: var(--color-primary);
    text-decoration: underline;
}

.cookie-actions {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
}

.cookie-banner .btn-outline {
    color: var(--color-text-soft);
    border-color: var(--color-border);
}

.cookie-banner .btn-outline:hover {
    background: var(--color-bg-alt);
    color: var(--color-text);
}

@media (max-width: 1080px) {
    .cards-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 900px) {
    .sobre-grid,
    .contato-grid {
        grid-template-columns: 1fr;
        gap: 52px;
    }

    .footer-inner {
        grid-template-columns: 1fr 1fr;
    }

    .segments-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .rental-benefits-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .leadership-grid {
        grid-template-columns: 0.85fr 1.15fr;
        gap: 36px;
    }

    .hero-content {
        max-width: 65%;
    }

    .home-intro-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .hero-slide-visual {
        right: -5%;
        width: 390px;
        height: 340px;
        opacity: 0.58;
    }

    .contato-form,
    .rental-benefits-cta,
    .card,
    .segment-card,
    .rental-benefit,
    .brand-logo {
        min-width: 0;
    }
}

@media (max-width: 768px) {
    .hero-eyebrow::before,
    .section-eyebrow::before {
        content: none !important;
        display: none !important;
    }

    .container {
        padding: 0 20px;
    }

    .header-inner {
        min-height: 78px;
    }

    .logo-c2-official {
        width: 62px;
        max-width: 62px;
        height: 62px;
    }

    .nav-toggle {
        display: flex;
    }

    .main-nav {
        position: fixed;
        top: 78px;
        left: 0;
        right: 0;
        background: var(--color-white);
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 0;
        max-height: 0;
        overflow: hidden;
        box-shadow: var(--shadow-md);
        transition: max-height 0.3s ease;
        border-top: 1px solid var(--color-border);
    }

    .main-nav a {
        color: var(--color-text);
    }

    .main-nav.is-open {
        max-height: 420px;
    }

    .main-nav ul {
        flex-direction: column;
        gap: 0;
    }

    .main-nav ul li {
        border-bottom: 1px solid var(--color-border);
    }

    .main-nav ul a {
        display: block;
        padding: 15px 20px;
    }

    .main-nav ul a::after {
        display: none;
    }

    .nav-cta {
        margin: 16px 20px;
        text-align: center;
    }

    .hero {
        padding: 58px 0 52px;
    }

    .hero-slides {
        min-height: 510px;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero h1 {
        font-size: clamp(2rem, 9vw, 3.3rem);
        line-height: 1.08;
        margin-bottom: 18px;
        overflow-wrap: anywhere;
    }

    .hero-desc {
        max-width: 34rem;
        font-size: 0.98rem;
        line-height: 1.55;
        margin-bottom: 24px;
    }

    .hero-actions {
        gap: 10px;
    }

    .hero-actions .btn-primary {
        min-height: 52px;
        padding-left: 28px;
        padding-right: 28px;
        box-shadow: 0 12px 25px rgba(11, 92, 171, 0.27);
    }

    .hero-slide-visual {
        right: -100px;
        bottom: -110px;
        top: auto;
        transform: none;
        width: 340px;
        height: 290px;
        opacity: 0.22;
    }

    .page-hero h1 {
        font-size: clamp(1.9rem, 8vw, 2.8rem);
        line-height: 1.1;
        overflow-wrap: anywhere;
    }

    .section {
        padding: 64px 0;
    }

    .section-head {
        margin-bottom: 32px;
    }

    .page-hero {
        padding: 58px 0 52px;
    }

    .section-head h2 {
        line-height: 1.12;
    }

    .section-lead {
        margin-top: 14px;
        font-size: 0.96rem;
        line-height: 1.55;
    }

    .home-intro-actions {
        align-items: flex-start;
        flex-direction: column;
        gap: 16px;
    }

    .rental-benefits-cta {
        align-items: flex-start;
        flex-direction: column;
    }

    .leadership-grid {
        grid-template-columns: 1fr;
        gap: 34px;
        text-align: center;
    }

    .leadership-photo {
        max-width: 300px;
    }

    .leadership-content blockquote {
        text-align: left;
        margin-left: auto;
        margin-right: auto;
    }

    .brands-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .contato-grid {
        gap: 36px;
    }

    .contato-form {
        padding: 26px 22px;
    }

    .field input,
    .field textarea,
    .field select {
        min-width: 0;
        max-width: 100%;
    }

    .rental-benefit p,
    .card p,
    .segment-card p,
    .section-lead,
    .page-hero p:last-child {
        overflow-wrap: anywhere;
    }
}

@media (max-width: 560px) {
    .cards-grid,
    .segments-grid,
    .rental-benefits-grid {
        grid-template-columns: 1fr;
    }

    .footer-inner {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .container {
        padding: 0 16px;
    }

    .contato-form {
        padding: 22px 18px;
    }

    .cookie-banner {
        left: 12px;
        right: 12px;
        padding: 18px;
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

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

    .hero-actions .btn-primary {
        min-height: 50px;
    }

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

    .sobre-actions {
        flex-direction: column;
        align-items: stretch;
        gap: 14px;
    }

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

    .brands-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
    }

    .brand-logo {
        height: 82px;
    }

    .brand-logo img {
        max-width: 86%;
        max-height: 52px;
    }

    .rental-benefits-cta {
        padding: 22px 20px;
    }

    .rental-benefits-cta .btn {
        width: 100%;
    }

    .cookie-content p {
        overflow-wrap: anywhere;
    }
}

:focus-visible {
    outline: 3px solid #8fd0ff;
    outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation: none !important;
        transition: none !important;
    }

    html {
        scroll-behavior: auto;
    }

    .infinite-page {
        animation: none;
    }
}