:root {
    --bg-primary: #FFFFFF;
    --bg-secondary: #F5F5F5;
    --text-primary: #2C3034;
    --accent: #C1AA7F;
}

.events-theme {
    --bg-primary: #A3A3A3;
    --bg-secondary: #8A8A8A;
    --card-bg: #2F2F2F;
    --text-primary: #ffffff;
    --accent: #e0be61;
}

.cleaning-theme {
    --bg-primary: #FFFFFF;
    --bg-secondary: #F7F7F7;
    --card-bg: #FFFFFF;
    --text-primary: #2C3034;
    --accent: #C1AA7F;
}

body.cleaning-theme,
body.cleaning-theme p,
body.cleaning-theme a,
body.cleaning-theme span,
body.cleaning-theme li,
body.cleaning-theme strong,
body.cleaning-theme label,
body.cleaning-theme input,
body.cleaning-theme textarea,
body.cleaning-theme button,
body.cleaning-theme h1,
body.cleaning-theme h2,
body.cleaning-theme h3,
body.cleaning-theme h4,
body.cleaning-theme h5,
body.cleaning-theme h6 {
    font-family: Arial, sans-serif;
}

.business-theme {
    --bg-primary: #E3E3E3;
    --bg-secondary: #D8D8D8;
    --card-bg: #FFFFFF;
    --text-primary: #2C3034;
    --accent: #1A1A1A;
}

body {
    margin: 0;
    font-family: 'Inter', sans-serif;
    color: #2C3034;
    background: #FFFFFF;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

h1,
h2,
h3 {
    font-family: 'Playfair Display', serif;
}

/* HEADER */
.header {
    background: #FFFFFF;
    border-bottom: 1px solid #eee;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
}

.logo {
    font-size: 22px;
    font-weight: 600;
}

.logo a {
    text-decoration: none;
    color: black;
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo span {
    color: #C1AA7F;
}

.logo img {
    height: 40px;
    position: relative;
}

/* MENU */
.menu {
    display: flex;
    align-items: center;
}

.menu a {
    margin-left: 25px;
    text-decoration: none;
    color: #2C3034;
    font-weight: 500;
}

.btn-contato {
    background: #C1AA7F;
    padding: 10px 18px;
    border-radius: 4px;
    color: #fff;
}

.menu {
    display: flex;
    align-items: center;
}

.menu-toggle {
    display: none;
    font-size: 28px;
    cursor: pointer;
}

.menu-toggle.open {
    content: "✕";
}

@media (max-width: 779px) {
    .menu-toggle {
        display: block;
    }

    .menu {
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: white;

        flex-direction: column;
        align-items: center;

        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .menu a {
        margin: 15px 0;
    }

    .menu.active {
        max-height: 350px;
    }
}

/* HERO */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: #2C3034;
    opacity: 0.6;
}

.hero-content {
    position: relative;
    color: #FFFFFF;
    max-width: 700px;
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 10px;
}

.hero h2 {
    color: #C1AA7F;
    margin-bottom: 20px;
}

.btn-gold {
    background: #C1AA7F;
    padding: 14px 26px;
    text-decoration: none;
    color: #2C3034;
    font-weight: 600;
    border-radius: 3px;
    display: inline-block;
    margin-top: 15px;
}

/* SOBRE */
.sobre {
    padding: 100px 20px;
    text-align: center;
    background: #f9f9f9;
}

.sobre h2 {
    font-size: 36px;
    letter-spacing: 1px;
}

.linha {
    width: 60px;
    height: 3px;
    background: #C1AA7F;
    margin: 15px auto 40px;
}

.intro {
    max-width: 800px;
    margin: 0 auto 50px;
    font-size: 18px;
    line-height: 1.6;
    color: #555;
}

/* CARDS */
.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-bottom: 60px;
}

.card {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    transition: 0.3s;
}

.card:hover {
    transform: translateY(-5px);
}

.card h3 {
    margin-bottom: 15px;
    color: #C1AA7F;
}

.card p {
    color: #666;
    line-height: 1.6;
}

/* MISSÃO */
.mission {
    max-width: 700px;
    margin: 0 auto;
}

.mission h3 {
    margin-bottom: 10px;
    color: #C1AA7F;
}

.mission p {
    font-size: 17px;
    color: #555;
}

/* EMPRESAS */
.empresas {
    background: #F5F5F5;
    padding: 100px 0;
    text-align: center;
}

.empresa-img {
    margin: -40px -40px 25px -40px;
}

.empresa-img img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
}

.empresa-card h3 {
    margin-bottom: 15px;
}

.badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #C1AA7F;
    color: #2C3034;
    padding: 5px 10px;
    font-size: 12px;
    border-radius: 3px;
}

/* HERO */
.empresa-hero {
    color: var(--text-primary);
    padding: 140px 20px 100px;
    text-align: center;
}

.empresa-hero-content {
    max-width: 700px;
    margin: auto;
}

.empresa-logo {
    max-width: 450px;
    width: 100%;
    height: auto;
    margin-bottom: 25px;
    border-radius: 6px;
}

.empresa-hero h1 {
    font-size: 36px;
    color: var(--accent);
    margin-bottom: 15px;
}

.empresa-hero h1::after {
    content: "";
    display: block;
    width: 60px;
    height: 2px;
    background: var(--accent);
    margin: 18px auto;
}

.empresa-hero p {
    max-width: 520px;
    margin: auto;
    opacity: 0.85;
    font-size: 17px;
    line-height: 1.6;
}

/* SOBRE */
.empresa-sobre {
    padding: 90px 20px;
}

.empresa-sobre-content {
    max-width: 720px;
    margin: auto;
    text-align: center;
}

.empresa-sobre h2 {
    margin-bottom: 25px;
}

.empresa-sobre p {
    margin-bottom: 16px;
    line-height: 1.7;
}

.empresa-servicos,
.empresa-diferenciais {
    padding: 80px 20px;
    background: var(--bg-primary);
    text-align: center;
}

.empresa-servicos h2,
.empresa-diferenciais h2 {
    margin-bottom: 40px;
    color: var(--text-primary);
    font-family: 'Playfair Display', serif;
}

.empresas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

.empresa-card {
    background: var(--bg-secondary);
    padding: 40px 30px;
    border-radius: 8px;
    transition: transform 0.3s ease;
    border-bottom: 3px solid transparent;
    background: var(--card-bg);
    border: 1px solid rgba(0, 0, 0, 0.03);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
    color: #FFFFFF;
    position: relative;
    overflow: hidden;
}

.empresa-card:hover {
    transform: translateY(-5px);
    border-bottom: 3px solid var(--accent);
}

.empresa-card h3 {
    color: var(--accent);
    margin-bottom: 15px;
    font-size: 20px;
}

.empresa-card p {
    font-size: 15px;
    color: #555;
    line-height: 1.6;
}

.empresa-servicos ul {
    list-style: none;
    padding: 0;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.empresa-servicos li {
    padding: 15px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    font-size: 16px;
}

.empresa-diferencial {
    padding: 100px 20px;
    background: var(--bg-secondary);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

/* CTA FINAL */
.cta-final {
    padding: 100px 20px;
    background: #1A1A1A;
    color: #FFFFFF;
    padding: 80px 0;
    text-align: center;
}

.cta-final h2 {
    font-size: 32px;
    margin-bottom: 15px;
    color: #FFFFFF;
}

.cta-final p {
    opacity: 0.8;
    margin-bottom: 30px;
    font-weight: 300;
}

.empresa-hero {
    background: var(--bg-primary);
}

.empresa-sobre {
    background: var(--bg-secondary);
}

.empresa-servicos {
    background: var(--bg-primary);
}

.empresa-diferenciais {
    background: var(--bg-secondary);
}

.section-title::after {
    content: "";
    display: block;
    width: 60px;
    height: 2px;
    background: var(--accent);
    margin-top: 10px;
}

.empresa-servicos li {
    background: var(--bg-primary);
    margin-bottom: 8px;
    border-radius: 4px;
    border: 1px solid rgba(0, 0, 0, 0.03);
    padding: 20px;
}

@media (max-width: 768px) {
    .empresa-hero {
        padding: 100px 20px 60px;
    }

    .empresa-hero h1 {
        font-size: 28px;
    }

    .cta-final h2 {
        font-size: 24px;
    }
}


/* FORMULÁRIO */
.formulario {
    padding: 100px 20px;
    background: #F5F5F5;
}

.formulario h1 {
    text-align: center;
    margin-bottom: 40px;
}

.formulario-form {
    max-width: 600px;
    margin: auto;
    display: flex;
    flex-direction: column;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group label {
    font-size: 14px;
    font-weight: 600;
    color: #444;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 14px;
    border-radius: 6px;
    border: 1px solid #d0d0d0;
    font-size: 15px;
    transition: all .2s ease;
    margin-bottom: 10px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #C1AA7F;
    box-shadow: 0 0 0 2px rgba(193, 170, 127, 0.2);
}

.form-group input[type="file"] {
    padding: 10px;
    background: #fafafa;
    border: 1px dashed #ccc;
    cursor: pointer;
}

.success {
    background: #e8f7ec;
    color: #1e7e34;
    padding: 12px;
    border-radius: 6px;
    margin-bottom: 20px;
    text-align: center;
}

.error-box {
    background: #ffeaea;
    color: #c0392b;
    padding: 15px;
    border-radius: 6px;
    margin-bottom: 20px;
    text-align: center;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-left: 20px;
}

.admin-link {
    color: #C1AA7F;
    text-decoration: none;
    font-size: 14px;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.admin-link:hover {
    opacity: 1;
}

.menu-toggle {
    cursor: pointer;
    font-size: 24px;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
    width: 90%;
}

.menu {
    margin-left: auto;
    display: flex;
    align-items: center;
}

@media (max-width: 779px) {
    .menu {
        display: none;
        position: absolute;
    }

    .menu.active {
        display: flex;
        flex-direction: column;
    }

    .menu-toggle {
        display: block;
        font-size: 24px;
        cursor: pointer;
    }
}

/* FOOTER */
.footer {
    background: #2C3034;
    color: #FFFFFF;
    padding: 20px 0 20px;
    align-items: center;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: start;
}

.footer-bottom {
    text-align: center;
    margin-top: 20px;
    font-size: 14px;
    opacity: 0.7;
    width: 90%;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.solver-link {
    color: inherit;
    text-decoration: underline;
    font-weight: 500;
}

.solver-link:hover {
    opacity: 0.85;
}


/* --- CSS PARA O HERO COM IMAGEM DE FUNDO --- */
.hero-business {
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    height: 100vh;
    /* width: 100%; */
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 0 20px;
    color: #FFFFFF;
    text-align: center;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

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

.hero-business h1 {
    font-size: 42px;
    font-family: 'Playfair Display', serif;
    color: #FFFFFF;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.hero-business h2 {
    font-size: 20px;
    color: #ffe3af;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 25px;
}

.hero-business p {
    font-size: 18px;
    line-height: 1.7;
    opacity: 0.9;
    color: #ffffff;
    margin-bottom: 40px;
}

.hero-business .btn-gold {
    padding: 18px 50px;
}

@media (max-width: 768px) {
    .hero-business {
        padding: 100px 20px 70px;
        min-height: 65vh;
    }

    .hero-business h1 {
        font-size: 30px;
    }

    .hero-business h2 {
        font-size: 15px;
        letter-spacing: 1.5px;
    }
}

@media (max-width: 480px) {
    .hero-business {
        padding: 80px 16px 60px;
        min-height: 60vh;
    }

    .hero-business h1 {
        font-size: 24px;
        line-height: 1.3;
    }

    .hero-business h2 {
        font-size: 14px;
        letter-spacing: 1px;
    }
}

.cleaning-hero {
    position: relative;
    min-height: 74vh;
    display: flex;
    align-items: center;
    color: #FFFFFF;
    overflow: hidden;
}

.cleaning-slider {
    position: absolute;
    inset: 0;
}

.cleaning-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center 38%;
    opacity: 0;
    transform: scale(1.06);
    transition: opacity 0.8s ease, transform 6s ease;
}

.cleaning-slide.is-active {
    opacity: 1;
    transform: scale(1);
}

.cleaning-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(11, 13, 16, 0.15), rgba(11, 13, 16, 0.5)),
        linear-gradient(135deg, rgba(193, 170, 127, 0.16), transparent 42%);
}

.cleaning-hero-content,
.cleaning-slider-dots {
    position: relative;
    z-index: 1;
}

.cleaning-hero-content {
    max-width: 760px;
    padding: 128px 0 110px;
}

.cleaning-eyebrow,
.cleaning-kicker,
.specialty-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--accent);
    font-weight: 600;
}

.cleaning-eyebrow::before,
.cleaning-kicker::before,
.specialty-tag::before {
    content: "";
    width: 36px;
    height: 1px;
    background: currentColor;
}

.cleaning-hero h1 {
    font-size: clamp(42px, 6vw, 72px);
    line-height: 1.05;
    margin: 20px 0 22px;
    max-width: 10ch;
}

.cleaning-hero p {
    max-width: 620px;
    font-size: 18px;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.88);
}

.cleaning-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 30px;
    align-items: stretch;
}

.cleaning-hero-actions .btn-gold,
.cleaning-secondary-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    padding: 0 26px;
    box-sizing: border-box;
    margin-top: 0;
}

.cleaning-secondary-btn {
    border-radius: 3px;
    border: 1px solid rgba(255, 255, 255, 0.32);
    color: #FFFFFF;
    text-decoration: none;
    font-weight: 600;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(8px);
}

.cleaning-slider-dots {
    position: absolute;
    left: 5%;
    bottom: 44px;
    display: flex;
    gap: 10px;
}

.cleaning-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.6);
    background: transparent;
    cursor: pointer;
    padding: 0;
}

.cleaning-dot.is-active {
    background: var(--accent);
    border-color: var(--accent);
}

.cleaning-section {
    padding: 110px 0;
}

.cleaning-shortcuts-bar {
    padding: 26px 0 12px;
    background: #FFFFFF;
}

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

.cleaning-shortcut-pill {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 56px;
    padding: 0 20px;
    text-align: center;
    text-decoration: none;
    background: var(--accent);
    color: #2C3034;
    font-weight: 700;
    line-height: 1.35;
    border: 1px solid rgba(193, 170, 127, 0.75);
    box-shadow: none;
}

.cleaning-shortcut-pill:hover {
    filter: brightness(0.96);
}

.cleaning-specialties {
    background:
        radial-gradient(circle at top right, rgba(193, 170, 127, 0.14), transparent 28%),
        #F7F4EE;
}

.cleaning-signature-services,
.cleaning-reputation,
.cleaning-about-story,
.cleaning-rely {
    background: #FFFFFF;
}

.cleaning-services-overview {
    background: #FFFDF9;
}

.cleaning-why {
    background: #111417;
    color: #F5F2EC;
}

.cleaning-process {
    background: #FCFAF6;
}

.cleaning-book-flow {
    background:
        radial-gradient(circle at top, rgba(193, 170, 127, 0.18), transparent 32%),
        linear-gradient(180deg, #23282D 0%, #1A1A1A 100%);
}

.cleaning-book-flow .cleaning-section-heading h2 {
    color: #FFFFFF;
}

.cleaning-book-flow .cleaning-section-heading p {
    color: rgba(255, 255, 255, 0.82);
}

.cleaning-seo-copy {
    background: #F4EFE7;
}

.cleaning-social {
    background: linear-gradient(180deg, #F8F5F0 0%, #FFFFFF 100%);
}

.cleaning-latest-news {
    background: linear-gradient(180deg, #FFFFFF 0%, #FBF8F3 100%);
}

.cleaning-long-copy {
    background:
        radial-gradient(circle at top, rgba(193, 170, 127, 0.16), transparent 28%),
        linear-gradient(180deg, #23282D 0%, #1A1A1A 100%);
}

.cleaning-long-copy .cleaning-section-heading h2,
.cleaning-long-copy .cleaning-kicker,
.cleaning-long-copy .cleaning-kicker::before {
    color: #FFFFFF;
}

.cleaning-section-heading {
    max-width: 760px;
    margin-bottom: 56px;
}

.cleaning-section-heading.narrow {
    max-width: 680px;
}

.cleaning-section-heading.centered {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.cleaning-section-heading h2 {
    font-size: clamp(34px, 4vw, 54px);
    line-height: 1.1;
    margin: 18px 0;
}

.cleaning-section-heading p {
    font-size: 17px;
    line-height: 1.8;
    color: #555;
}

.cleaning-why .cleaning-section-heading p,
.cleaning-why .cleaning-benefit p {
    color: rgba(245, 242, 236, 0.78);
}

.specialty-row {
    display: grid;
    grid-template-columns: minmax(280px, 1fr) minmax(320px, 1fr);
    gap: 42px;
    align-items: center;
    margin-bottom: 42px;
}

.specialty-row:last-child {
    margin-bottom: 0;
}

.specialty-row-reverse .specialty-visual {
    order: 2;
}

.specialty-row-reverse .specialty-copy {
    order: 1;
}

.specialty-visual img {
    width: 100%;
    min-height: 420px;
    object-fit: cover;
    border-radius: 24px;
    box-shadow: 0 24px 60px rgba(28, 27, 25, 0.14);
}

.specialty-copy {
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(193, 170, 127, 0.18);
    border-radius: 24px;
    padding: 42px;
    box-shadow: 0 18px 40px rgba(41, 38, 30, 0.06);
}

.specialty-copy h3 {
    font-size: 32px;
    line-height: 1.15;
    margin: 18px 0 18px;
}

.specialty-copy p {
    line-height: 1.8;
    color: #4C4C4C;
}

.specialty-copy ul {
    list-style: none;
    padding: 0;
    margin: 24px 0 0;
}

.specialty-copy li {
    position: relative;
    padding-left: 26px;
    margin-bottom: 14px;
    color: #2C3034;
    line-height: 1.6;
}

.specialty-copy li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 10px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 0 5px rgba(193, 170, 127, 0.16);
}

.signature-service-grid,
.service-overview-grid,
.cleaning-process-grid,
.seo-copy-grid {
    display: grid;
    gap: 24px;
}

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

.signature-card,
.service-overview-card,
.process-card {
    background: #FFFFFF;
    border-radius: 22px;
    padding: 30px 28px;
    border: 1px solid rgba(193, 170, 127, 0.18);
    box-shadow: 0 14px 35px rgba(28, 27, 25, 0.06);
}

.signature-card {
    padding: 0;
    overflow: hidden;
}

.signature-card img,
.book-flow-card img,
.about-story-visual img,
.rely-visual img {
    width: 100%;
    display: block;
    object-fit: cover;
}

.signature-card img {
    height: 220px;
}

.signature-card-body {
    padding: 28px;
}

.signature-card-body h3 {
    margin: 0 0 12px;
    font-size: 28px;
}

.signature-card-body p {
    margin: 0 0 18px;
    line-height: 1.75;
    color: #4C4C4C;
}

.signature-card-body ul {
    list-style: none;
    padding: 0;
    margin: 0 0 22px;
}

.signature-card-body li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 12px;
    line-height: 1.6;
}

.signature-card-body li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 9px;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--accent);
}

.service-overview-card h3,
.process-card h3 {
    margin: 0 0 12px;
    font-size: 24px;
}

.service-overview-card p,
.process-card p {
    margin: 0;
    line-height: 1.75;
    color: #505050;
}

.cleaning-why-layout {
    display: grid;
    grid-template-columns: minmax(320px, 1.1fr) minmax(280px, 0.9fr);
    gap: 42px;
    align-items: center;
}

.cleaning-why-copy h3 {
    color: #FFFFFF;
    font-size: 22px;
    line-height: 1.45;
    margin: 0 0 26px;
}

.cleaning-why-list {
    display: grid;
    gap: 16px;
}

.cleaning-why-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.cleaning-why-item i {
    color: var(--accent);
    font-size: 20px;
    margin-top: 2px;
}

.cleaning-why-item span {
    line-height: 1.6;
    color: rgba(245, 242, 236, 0.96);
    font-weight: 600;
}

.cleaning-why-visual img {
    width: 100%;
    display: block;
    border-radius: 22px;
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.2);
}

.cleaning-badges-panel {
    border: 2px solid rgba(193, 170, 127, 0.5);
    border-radius: 34px;
    padding: 28px;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
    background: linear-gradient(180deg, #FFFDF9 0%, #F7F1E7 100%);
    box-shadow: 0 22px 48px rgba(31, 28, 24, 0.08);
}

.badge-medallion {
    min-height: 180px;
    border-radius: 24px;
    background: linear-gradient(180deg, #FFFFFF, #F8F4ED);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    text-align: center;
    border: 1px solid rgba(193, 170, 127, 0.22);
}

.badge-medallion img {
    max-width: 140px;
    max-height: 140px;
    width: auto;
    height: auto;
    object-fit: contain;
}

.badge-medallion i {
    font-size: 46px;
    color: var(--accent);
}

.badge-medallion span {
    font-weight: 700;
    color: #2C3034;
}

.book-flow-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
}

.book-flow-card {
    background: rgba(255, 255, 255, 0.94);
    border-radius: 22px;
    overflow: hidden;
    text-align: center;
    border: 1px solid rgba(193, 170, 127, 0.18);
    box-shadow: 0 18px 42px rgba(17, 20, 23, 0.16);
}

.book-flow-card img {
    height: 220px;
}

.book-flow-card h3 {
    margin: 26px 0 10px;
    font-size: 26px;
    color: #1F2327;
}

.book-flow-card p {
    margin: 0;
    padding: 0 24px 30px;
    line-height: 1.75;
    color: #555;
}

.book-flow-action {
    text-align: center;
    margin-top: 34px;
}

.cleaning-outline-btn {
    display: inline-block;
    padding: 16px 30px;
    border-radius: 999px;
    border: 1px solid rgba(193, 170, 127, 0.7);
    text-decoration: none;
    color: #FFFFFF;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    background: rgba(193, 170, 127, 0.14);
}

.cleaning-cta-band {
    padding: 0 0 110px;
    background: #111417;
}

.cleaning-cta-card {
    text-align: center;
    max-width: 860px;
    padding: 52px 56px;
    border-radius: 28px;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(248, 244, 236, 0.94)),
        #FFFFFF;
    box-shadow: 0 30px 80px rgba(10, 12, 14, 0.22);
    transform: translateY(60px);
}

.cleaning-cta-card h2 {
    font-size: clamp(30px, 4vw, 48px);
    line-height: 1.15;
    margin: 18px 0;
}

.cleaning-cta-card p {
    max-width: 680px;
    margin: 0 auto;
    line-height: 1.8;
    color: #555;
}

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

.seo-copy-grid p {
    margin: 0 0 18px;
    line-height: 1.85;
    color: #4C4C4C;
}

.latest-news-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.latest-news-card {
    background: #FFFFFF;
    border-radius: 22px;
    padding: 30px 28px;
    box-shadow: 0 18px 48px rgba(32, 39, 49, 0.08);
    border: 1px solid rgba(193, 170, 127, 0.12);
}

.latest-news-card h3 {
    margin: 0 0 14px;
    font-size: 20px;
    line-height: 1.3;
    color: #2C3034;
}

.latest-news-card p {
    margin: 0;
    line-height: 1.8;
    color: #555;
}

.cleaning-long-copy-inner {
    color: #FFFFFF;
}

.cleaning-long-copy-content {
    max-width: 980px;
    margin: 0 auto;
}

.cleaning-long-copy-content p {
    margin: 0 0 24px;
    line-height: 1.95;
    color: rgba(255, 255, 255, 0.95);
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.22);
}

.cleaning-long-copy-content p:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}

.about-story-grid,
.rely-grid {
    display: grid;
    grid-template-columns: minmax(280px, 1fr) minmax(320px, 1.05fr);
    gap: 42px;
    align-items: center;
}

.about-story-visual img,
.rely-visual img {
    min-height: 540px;
    border-radius: 26px;
    box-shadow: 0 22px 54px rgba(35, 33, 29, 0.14);
}

.about-story-copy h2 {
    font-size: clamp(32px, 4vw, 50px);
    line-height: 1.12;
    margin: 18px 0;
}

.about-story-copy p,
.rely-cta-copy p {
    color: #4C4C4C;
    line-height: 1.85;
}

.rely-list {
    display: grid;
    gap: 16px;
}

.rely-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 14px 16px;
    border-radius: 16px;
    background: #FBF8F3;
    border: 1px solid rgba(193, 170, 127, 0.2);
}

.rely-item i {
    color: var(--accent);
    font-size: 20px;
    margin-top: 2px;
}

.rely-item span {
    line-height: 1.65;
    font-weight: 500;
}

.rely-cta-copy {
    max-width: 760px;
    margin: 38px auto 0;
    text-align: center;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.review-card {
    background: #FFFFFF;
    border-radius: 22px;
    padding: 34px 30px;
    box-shadow: 0 18px 45px rgba(26, 26, 26, 0.08);
    border: 1px solid rgba(193, 170, 127, 0.14);
}

.review-stars {
    color: #D2B676;
    letter-spacing: 4px;
    margin-bottom: 22px;
}

.review-card p {
    margin: 0 0 20px;
    color: #4A4A4A;
    line-height: 1.8;
}

.review-card strong {
    font-size: 14px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #2C3034;
}

@media (max-width: 1024px) {
    .cleaning-shortcuts-grid,
    .signature-service-grid,
    .cleaning-badges-panel,
    .book-flow-grid,
    .service-overview-grid,
    .latest-news-grid,
    .reviews-grid,
    .seo-copy-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .cleaning-why-layout,
    .about-story-grid,
    .rely-grid,
    .specialty-row,
    .specialty-row-reverse {
        grid-template-columns: 1fr;
    }

    .specialty-row-reverse .specialty-visual,
    .specialty-row-reverse .specialty-copy {
        order: initial;
    }
}

@media (max-width: 768px) {
    .cleaning-hero-content {
        padding: 118px 0 92px;
    }

    .cleaning-hero h1 {
        max-width: none;
    }

    .cleaning-section {
        padding: 88px 0;
    }

    .specialty-copy,
    .cleaning-cta-card {
        padding: 34px 24px;
    }

    .specialty-visual img {
        min-height: 280px;
    }

    .cleaning-shortcuts-grid,
    .signature-service-grid,
    .cleaning-badges-panel,
    .book-flow-grid,
    .service-overview-grid,
    .cleaning-process-grid,
    .seo-copy-grid,
    .latest-news-grid,
    .reviews-grid {
        grid-template-columns: 1fr;
    }

    .cleaning-shortcut-pill {
        min-height: 52px;
    }

    .about-story-visual img,
    .rely-visual img {
        min-height: 320px;
    }

    .cleaning-slider-dots {
        left: 50%;
        transform: translateX(-50%);
        bottom: 28px;
    }
}

.events-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    color: #FFFFFF;
}

.events-hero-video,
.events-hero-overlay {
    position: absolute;
    inset: 0;
}

.events-hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.events-hero-overlay {
    background:
        linear-gradient(180deg, rgba(13, 15, 18, 0.42), rgba(13, 15, 18, 0.82)),
        radial-gradient(circle at top right, rgba(193, 170, 127, 0.2), transparent 30%);
}

.events-hero-content {
    position: relative;
    z-index: 1;
    max-width: 1080px;
    padding: 150px 0 96px;
}

.events-eyebrow,
.events-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--accent);
    font-weight: 600;
}

.events-eyebrow::before,
.events-kicker::before {
    content: "";
    width: 36px;
    height: 1px;
    background: currentColor;
}

.events-we-are {
    margin: 22px 0 8px;
    font-size: 15px;
    line-height: 1;
    letter-spacing: 0.38em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.72);
    font-weight: 600;
}

.events-word-stream {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 18px;
    margin: 0 0 24px;
    max-width: 980px;
    font-size: clamp(44px, 8vw, 112px);
    line-height: 0.88;
    letter-spacing: -0.05em;
    text-transform: uppercase;
    color: #FFFFFF;
}

.events-word-stream span {
    display: inline-block;
    color: rgba(255, 255, 255, 0.22);
    animation: eventsWordPulse 12s ease-in-out infinite;
}

.events-word-stream span:nth-child(1) {
    color: #FFFFFF;
    animation-delay: 0s;
}

.events-word-stream span:nth-child(2) {
    animation-delay: 1.2s;
}

.events-word-stream span:nth-child(3) {
    animation-delay: 2.4s;
}

.events-word-stream span:nth-child(4) {
    animation-delay: 3.6s;
}

.events-word-stream span:nth-child(5) {
    color: var(--accent);
    animation-delay: 4.8s;
}

.events-hero h2 {
    margin: 0 0 18px;
    max-width: 12ch;
    font-size: clamp(32px, 4vw, 60px);
    line-height: 1;
    color: #FFFFFF;
}

.events-hero p {
    max-width: 650px;
    font-size: 19px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.88);
}

.events-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 30px;
    align-items: stretch;
}

.events-hero-actions .btn-gold,
.events-secondary-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    padding: 0 26px;
    box-sizing: border-box;
    margin-top: 0;
}

.events-secondary-btn {
    border-radius: 3px;
    border: 1px solid rgba(255, 255, 255, 0.32);
    color: #FFFFFF;
    text-decoration: none;
    font-weight: 600;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(8px);
}

.events-section {
    padding: 110px 0;
}

.events-story-flow {
    background:
        radial-gradient(circle at top right, rgba(193, 170, 127, 0.1), transparent 24%),
        linear-gradient(180deg, #020202 0%, #050505 52%, #020202 100%);
}

.events-intro {
    background: transparent;
    color: #FFFFFF;
    padding-top: 118px;
    padding-bottom: 48px;
}

.events-intro-grid {
    display: grid;
    grid-template-columns: minmax(360px, 0.98fr) minmax(360px, 0.92fr);
    align-items: center;
    gap: clamp(48px, 7vw, 92px);
}

.events-intro-copy {
    text-align: left;
}

.events-intro-copy h2 {
    margin: 0 0 26px;
    max-width: 10ch;
    font-size: clamp(50px, 5.7vw, 88px);
    line-height: 0.92;
    letter-spacing: -0.04em;
    color: #F7F3EA;
}

.events-intro-copy p {
    max-width: 700px;
    margin: 0 0 24px;
    line-height: 1.62;
    font-size: 19px;
    color: rgba(255, 255, 255, 0.9);
}

.events-inline-link {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    margin-top: 12px;
    color: #F5F2EB;
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.events-inline-link::before {
    content: "";
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid rgba(245, 242, 235, 0.82);
    background:
        radial-gradient(circle at center, var(--accent) 0 26%, transparent 27%);
}

.events-intro-visual video,
.events-intro-visual img {
    width: 100%;
    aspect-ratio: 0.84 / 1;
    object-fit: cover;
    display: block;
    border-radius: 0;
    box-shadow: none;
    background: #0b0b0b;
}

.events-about,
.events-portfolio,
.events-instagram {
    background: transparent;
    color: #FFFFFF;
}

.events-booking {
    background: linear-gradient(180deg, #FFFFFF 0%, #F7F4EE 100%);
}

.events-about-grid,
.events-booking-grid {
    display: grid;
    grid-template-columns: minmax(320px, 1fr) minmax(320px, 1fr);
    gap: 36px;
    align-items: start;
}

.events-about {
    padding-top: 26px;
    padding-bottom: 48px;
}

.events-about-grid {
    grid-template-columns: minmax(360px, 1.06fr) minmax(320px, 0.94fr);
    align-items: center;
    gap: clamp(40px, 6vw, 88px);
}

.events-about-copy h2,
.events-booking-copy h2,
.events-section-heading h2 {
    font-size: clamp(34px, 4vw, 58px);
    line-height: 0.98;
    margin: 18px 0;
}

.events-section-heading.centered {
    max-width: 760px;
    margin: 0 auto 56px;
    text-align: center;
}

.events-section-heading.narrow {
    max-width: 620px;
}

.events-section-heading p {
    margin: 0;
}

.events-about-copy p,
.events-booking-copy p {
    line-height: 1.9;
    color: #4C4C4C;
}

.events-about-copy {
    text-align: right;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.events-about-copy h2 {
    margin: 0 0 18px auto;
    max-width: 9ch;
    font-size: clamp(42px, 5.1vw, 78px);
    line-height: 0.96;
    letter-spacing: -0.04em;
    color: #F7F3EA;
}

.events-about-aside {
    position: relative;
}

.events-experience-image {
    width: 100%;
    aspect-ratio: 1.16 / 1;
    object-fit: cover;
    border-radius: 0;
    display: block;
    box-shadow: none;
}

.events-about-card,
.events-form-card {
    background: #FFFFFF;
    border: 1px solid rgba(193, 170, 127, 0.18);
    border-radius: 24px;
    padding: 28px;
    box-shadow: 0 18px 40px rgba(31, 28, 24, 0.06);
}

.events-about-card strong {
    display: block;
    margin-bottom: 10px;
    color: #1F2327;
    font-size: 18px;
}

.events-about-card p {
    margin: 0;
    line-height: 1.8;
    color: #555;
}

.events-about-note {
    max-width: 1120px;
    margin: 64px auto 0;
    text-align: center;
}

.events-about-note p {
    margin: 0;
    font-size: clamp(20px, 2vw, 28px);
    line-height: 1.52;
    color: rgba(255, 255, 255, 0.9);
}

.events-portfolio {
    padding-top: 92px;
    padding-bottom: 110px;
}

.events-work-top {
    display: grid;
    grid-template-columns: minmax(280px, 0.86fr) minmax(420px, 1.14fr);
    gap: clamp(32px, 5vw, 54px);
    align-items: end;
    margin-bottom: 72px;
}

.events-work-heading h2 {
    margin: 0;
    max-width: 7ch;
    font-size: clamp(48px, 5.2vw, 86px);
    line-height: 0.96;
    letter-spacing: -0.045em;
    color: #F7F3EA;
}

.events-work-preview {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 14px;
    min-height: 420px;
}

.events-work-preview img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: block;
}

.events-carousel {
    position: relative;
}

.events-carousel-track {
    position: relative;
    min-height: 760px;
}

.events-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.45s ease;
}

.events-slide.is-active {
    opacity: 1;
    pointer-events: auto;
}

.events-slide {
    display: grid;
    grid-template-columns: minmax(360px, 1.05fr) minmax(280px, 0.95fr);
    gap: clamp(32px, 5vw, 56px);
    align-items: end;
}

.events-slide-media img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    display: block;
}

.events-slide-copy {
    position: static;
    padding: 0 0 16px;
    background: transparent;
}

.events-slide-copy h3 {
    margin: 0 0 18px;
    color: #F7F3EA;
    font-size: clamp(38px, 4.4vw, 72px);
    line-height: 0.98;
    letter-spacing: -0.045em;
}

.events-slide-copy p {
    margin: 0;
    max-width: 32ch;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.75;
    font-size: 17px;
}

.events-booking-points {
    margin: 28px 0 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 14px;
}

.events-booking-points li {
    position: relative;
    padding-left: 28px;
    line-height: 1.75;
    color: #3F3E3C;
}

.events-booking-points li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 11px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 0 5px rgba(193, 170, 127, 0.18);
}

.events-carousel-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    width: 56px;
    height: 56px;
    border: 1px solid rgba(193, 170, 127, 0.5);
    border-radius: 50%;
    background: rgba(17, 20, 23, 0.72);
    color: #FFFFFF;
    font-size: 34px;
    cursor: pointer;
}

.events-carousel-control.prev {
    left: 24px;
}

.events-carousel-control.next {
    right: 24px;
}

.events-carousel-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 24px;
}

.events-carousel-dots button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.5);
    background: transparent;
    cursor: pointer;
    padding: 0;
}

.events-carousel-dots button.is-active {
    background: var(--accent);
    border-color: var(--accent);
}

.events-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

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

.events-form-full {
    grid-column: 1 / -1;
}

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

.events-instagram-handle {
    color: var(--accent);
    text-decoration: none;
    font-weight: 600;
}

.events-instagram-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.events-instagram-grid img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    border-radius: 24px;
    display: block;
    box-shadow: 0 24px 50px rgba(0, 0, 0, 0.22);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.events-instagram-grid img:hover {
    transform: translateY(-6px);
    box-shadow: 0 28px 60px rgba(0, 0, 0, 0.28);
}

@keyframes eventsWordPulse {
    0%,
    16%,
    100% {
        color: rgba(255, 255, 255, 0.22);
        transform: translateY(0);
    }

    8% {
        color: #FFFFFF;
        transform: translateY(-2px);
    }
}

@media (max-width: 1024px) {
    .events-about-grid,
    .events-booking-grid,
    .events-form-grid {
        grid-template-columns: 1fr;
    }

    .events-intro-grid,
    .events-about-grid,
    .events-work-top,
    .events-carousel-track,
    .events-slide {
        grid-template-columns: 1fr;
    }

    .events-work-preview {
        grid-template-columns: 1fr 1fr;
    }

    .events-carousel-track {
        min-height: 860px;
    }

    .events-slide-media img {
        height: 460px;
    }

    .events-intro-visual video,
    .events-intro-visual img {
        aspect-ratio: 1.5 / 1;
    }

    .events-instagram-grid {
        grid-template-columns: 1fr;
    }

    .events-instagram-grid img {
        height: 360px;
    }
}

@media (max-width: 768px) {
    .events-hero-content {
        padding: 120px 0 80px;
    }

    .events-word-stream,
    .events-hero h2 {
        max-width: none;
    }

    .events-section {
        padding: 88px 0;
    }

    .events-carousel-control {
        width: 46px;
        height: 46px;
        font-size: 28px;
    }

    .events-word-stream {
        gap: 8px 12px;
    }

    .events-experience-image {
        aspect-ratio: 1.2 / 1;
    }

    .events-intro-visual video,
    .events-intro-visual img {
        aspect-ratio: 1.15 / 1;
    }

    .events-work-preview {
        grid-template-columns: 1fr;
    }

    .events-work-preview img,
    .events-slide-media img {
        height: 320px;
    }

    .events-carousel-track {
        min-height: 680px;
    }

    .events-slide-copy {
        padding-bottom: 0;
    }

    .events-about-copy {
        text-align: left;
        align-items: flex-start;
    }

    .events-intro,
    .events-about,
    .events-portfolio {
        padding-top: 72px;
        padding-bottom: 72px;
    }
}

.business-group-page {
    background: #F6F2EA;
}

.bg-section {
    padding: 108px 0;
}

.bg-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--accent);
    font-weight: 600;
}

.bg-kicker::before {
    content: "";
    width: 38px;
    height: 1px;
    background: currentColor;
}

.bg-hero {
    position: relative;
    min-height: 92vh;
    color: #FFFFFF;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.bg-hero-slider,
.bg-hero-slide {
    position: absolute;
    inset: 0;
}

.bg-hero-slide {
    opacity: 0;
    transition: opacity 0.55s ease;
    background-size: cover;
    background-position: center;
}

.bg-hero-slide.is-active {
    opacity: 1;
}

.bg-hero-content {
    position: relative;
    z-index: 1;
    max-width: 760px;
    padding: 148px 0 92px;
}

.bg-hero h1 {
    margin: 18px 0 20px;
    font-size: clamp(42px, 5.2vw, 82px);
    line-height: 0.98;
    letter-spacing: -0.04em;
    max-width: 11ch;
    color: #FFFFFF;
}

.bg-hero p {
    margin: 0;
    max-width: 620px;
    font-size: 18px;
    line-height: 1.78;
    color: rgba(255, 255, 255, 0.88);
}

.bg-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 30px;
}

.bg-secondary-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    padding: 0 26px;
    border-radius: 3px;
    border: 1px solid rgba(255, 255, 255, 0.34);
    color: #FFFFFF;
    text-decoration: none;
    font-weight: 600;
    background: rgba(255, 255, 255, 0.07);
    backdrop-filter: blur(8px);
}

.bg-hero-dots {
    display: flex;
    gap: 10px;
    margin-top: 32px;
}

.bg-hero-dots button {
    width: 12px;
    height: 12px;
    padding: 0;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.55);
    background: transparent;
    cursor: pointer;
}

.bg-hero-dots button.is-active {
    background: var(--accent);
    border-color: var(--accent);
}

.bg-authority {
    background: linear-gradient(180deg, #FBF8F2 0%, #F1EBE0 100%);
}

.bg-authority-grid {
    display: grid;
    grid-template-columns: minmax(320px, 1.05fr) minmax(300px, 0.95fr);
    gap: 34px;
    align-items: start;
}

.bg-authority-copy h2,
.bg-section-heading h2,
.bg-differentials-copy h2,
.bg-cta-copy h2 {
    margin: 18px 0 20px;
    font-size: clamp(34px, 4vw, 60px);
    line-height: 0.98;
}

.bg-authority-copy p,
.bg-differentials-copy p,
.bg-cta-copy p {
    margin: 0 0 18px;
    color: #4F4A43;
    line-height: 1.82;
    font-size: 17px;
}

.bg-authority-panel {
    display: grid;
    gap: 18px;
}

.bg-metric,
.bg-solution-card,
.bg-cta-card {
    background: #FFFFFF;
    border: 1px solid rgba(193, 170, 127, 0.18);
    box-shadow: 0 18px 42px rgba(31, 28, 24, 0.07);
}

.bg-metric {
    border-radius: 22px;
    padding: 24px;
}

.bg-metric strong {
    display: block;
    margin-bottom: 10px;
    color: #1F2327;
    font-size: 18px;
}

.bg-metric p {
    margin: 0;
    color: #57514A;
    line-height: 1.7;
}

.bg-solutions {
    background: #111417;
    color: #FFFFFF;
}

.bg-section-heading {
    max-width: 780px;
    margin-bottom: 48px;
}

.bg-solutions-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

.bg-solution-card {
    border-radius: 24px;
    padding: 30px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.06));
    border-color: rgba(193, 170, 127, 0.24);
    color: #FFFFFF;
}

.bg-solution-index {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(193, 170, 127, 0.38);
    color: var(--accent);
    margin-bottom: 18px;
    font-weight: 600;
}

.bg-solution-card h3 {
    margin: 0 0 12px;
    color: #FFFFFF;
    font-size: 24px;
}

.bg-solution-card p {
    margin: 0;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.72;
}

.bg-differentials {
    background: linear-gradient(180deg, #F6F2EA 0%, #FBF8F2 100%);
}

.bg-differentials-grid {
    display: grid;
    grid-template-columns: minmax(320px, 1fr) minmax(320px, 1fr);
    gap: 40px;
    align-items: center;
}

.bg-differentials-visual img {
    width: 100%;
    min-height: 520px;
    object-fit: cover;
    border-radius: 28px;
    box-shadow: 0 22px 50px rgba(31, 28, 24, 0.11);
    display: block;
}

.bg-differentials-list {
    margin: 26px 0 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 14px;
}

.bg-differentials-list li {
    position: relative;
    padding-left: 28px;
    color: #4F4A43;
    line-height: 1.75;
}

.bg-differentials-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 11px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 0 5px rgba(193, 170, 127, 0.16);
}

.bg-cta {
    background: linear-gradient(180deg, #ECE6DB 0%, #F6F2EA 100%);
}

.bg-cta-card {
    border-radius: 30px;
    padding: 38px;
    display: grid;
    grid-template-columns: minmax(320px, 1fr) auto;
    gap: 26px;
    align-items: center;
    background: linear-gradient(135deg, #F8F5EE 0%, #EEE7DC 100%);
    border: 1px solid rgba(26, 26, 26, 0.12);
    box-shadow: 0 20px 48px rgba(25, 28, 31, 0.08);
}

.bg-cta-copy h2,
.bg-cta-copy p {
    color: #1F2327;
}

.bg-cta-copy p {
    color: #4F4A43;
    margin-bottom: 0;
}

.bg-cta-action {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.bg-cta-action .btn-gold {
    background: #1A1A1A;
    color: #FFFFFF;
    border: 1px solid #1A1A1A;
    margin-top: 0;
}

.bg-cta-action .btn-gold:hover {
    background: transparent;
    color: #1A1A1A;
}

@media (max-width: 1024px) {
    .bg-authority-grid,
    .bg-differentials-grid,
    .bg-cta-card {
        grid-template-columns: 1fr;
    }

    .bg-solutions-grid {
        grid-template-columns: 1fr;
    }

    .bg-differentials-visual img {
        min-height: 400px;
    }

    .bg-cta-action {
        justify-content: flex-start;
    }
}

@media (max-width: 768px) {
    .bg-section {
        padding: 84px 0;
    }

    .bg-hero {
        min-height: 84vh;
    }

    .bg-hero-content {
        padding: 124px 0 78px;
    }

    .bg-hero h1 {
        max-width: none;
    }

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

    .bg-differentials-visual img {
        min-height: 300px;
    }

    .bg-cta-card {
        padding: 28px;
    }
}
/* SEÇÃO CEO */
.ceo {
    padding: 120px 20px;
    background: #111;
    color: #fff;
}

/* CONTAINER FLEX */
.ceo-container {
    display: flex;
    align-items: center;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

/* IMAGEM */
.ceo-image img {
    width: 380px;
    max-width: 100%;
    border-radius: 16px;
    object-fit: cover;
    box-shadow: 0 20px 50px rgba(0,0,0,0.4);
}

/* TEXTO */
.ceo-content {
    max-width: 600px;
}

/* TAG */
.ceo-tag {
    font-size: 12px;
    letter-spacing: 2px;
    color: #C1AA7F;
    display: inline-block;
    margin-bottom: 10px;
}

/* TITULOS */
.ceo-content h2 {
    font-size: 36px;
    margin-bottom: 10px;
}

.ceo-content h3 {
    font-size: 22px;
    color: #C1AA7F;
    margin-bottom: 20px;
}

/* TEXTO */
.ceo-text {
    color: #ccc;
    line-height: 1.7;
    margin-bottom: 20px;
}

/* FRASE */
.ceo-highlight {
    font-style: italic;
    color: #eee;
    border-left: 3px solid #C1AA7F;
    padding-left: 15px;
}

/* RESPONSIVO */
@media (max-width: 900px) {
    .ceo-container {
        flex-direction: column;
        text-align: center;
    }

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

    .ceo-image img {
        width: 280px;
    }

    .ceo-highlight {
        border-left: none;
        border-top: 2px solid #C1AA7F;
        padding-left: 0;
        padding-top: 15px;
    }
}

.empresa-social {
    margin-top: 15px;
    display: flex;
    justify-content: center;
    gap: 12px;
}

.empresa-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    font-size: 15px;
    transition: all 0.3s ease;
}

.empresa-social a.instagram {
    background: rgba(228, 64, 95, 0.12);
    color: #E4405F;
}

.empresa-social a.facebook {
    background: rgba(24, 119, 242, 0.12);
    color: #1877F2;
}

.empresa-social a.linkedin {
    background: rgba(10, 102, 194, 0.12);
    color: #0A66C2;
}

.empresa-social a:hover {
    transform: translateY(-3px);
    background: #b6a07b;
}

.header-social-wrapper {
    position: relative;
}

.social-toggle {
    cursor: pointer;
    font-size: 18px;
    color: #333;
    margin-right: 5px;
}

/* DROPDOWN */
.social-dropdown {
    position: absolute;
    top: 35px;
    right: 0;
    background: #fff;
    border-radius: 10px;
    padding: 10px;
    display: flex;
    gap: 10px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);

    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

/* ATIVO */
.social-dropdown.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* ÍCONES */
.social-dropdown a {
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #f5f5f5;
    color: #555;
    transition: 0.3s;
}

.social-dropdown a:hover {
    background: #c5a46d;
    color: #fff;
}

.btn-booking {
    padding: 8px 16px;
    border-radius: 25px;
    border: 1px solid #c5a46d;
    color: #c5a46d;
    transition: 0.3s;
}

.btn-booking:hover {
    background: #c5a46d;
    color: #fff;
}

.btn-contato {
    padding: 8px 16px;
    border-radius: 25px;
    background: #c5a46d;
    color: #fff;
}