/* Rebeca Medina - Estilos Globais */

:root {
    --primary: #941415;
    --primary-dark: #d62828;
    --background: #1a1a1a;
    --surface: #2a2a2a;
    --surface-light: #3a3a3a;
    --text: #ffffff;
    --text-secondary: #cccccc;
    --text-muted: #999999;
    --border: #333333;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: var(--background);
    color: var(--text);
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background: var(--surface);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--text);
}

.logo h1 {
    font-size: 24px;
    color: var(--primary);
    background: var(--primary);
    color: white;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    font-weight: bold;
}

.logo img {
    max-width: 100%;
    height: auto;
    width: 220px;
    /* tamanho padrão desktop */
}

@media (max-width: 768px) {
    .logo img {
        width: 160px;
    }
}


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

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

.nav a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s;
    font-size: 14px;
}

.nav a:hover,
.nav a.active {
    color: var(--primary);
}

.cta-btn {
    background: var(--primary);
    color: white;
    padding: 10px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 14px;
    transition: background 0.3s;
}

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

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d1415 100%);
    padding: 120px 20px;
    text-align: center;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content h1 {
    font-size: 56px;
    margin-bottom: 15px;
    font-weight: bold;
}

.hero-content>p:nth-of-type(1) {
    font-size: 28px;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.hero-content .subtitle {
    font-size: 18px;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 40px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

.btn-primary {
    background: var(--primary);
    color: white;
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-secondary:hover {
    background: var(--primary);
    color: white;
}

.btn-whatsapp {
    background: #25d366;
    color: white;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
}

.btn-whatsapp:hover {
    background: #1da853;
}

/* Services Preview */
.services-preview {
    padding: 80px 20px;
    background: var(--background);
}

.services-preview h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 50px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s;
}

.service-card:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
}

.service-card .icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.service-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
}

.service-card p {
    color: var(--text-muted);
    font-size: 14px;
}

/* Blog Preview */
.blog-preview {
    padding: 80px 20px;
    background: var(--surface);
}

.blog-preview h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 50px;
}

.posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.post-card {
    background: var(--background);
    border: 1px solid var(--border);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s;
}

.post-card:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
}

.post-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.post-content {
    padding: 20px;
}

.post-card .category {
    display: inline-block;
    background: var(--primary);
    color: white;
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 12px;
    margin-bottom: 10px;
}

.post-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.post-card p {
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 15px;
}

.read-more {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
}

.read-more:hover {
    text-decoration: underline;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary) 0%, #d62828 100%);
    padding: 80px 20px;
    text-align: center;
}

.cta-section h2 {
    font-size: 36px;
    margin-bottom: 15px;
}

.cta-section p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
}

/* Page Hero */
.page-hero {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d1415 100%);
    padding: 60px 20px;
    text-align: center;
}

.page-hero h1 {
    font-size: 42px;
    margin-bottom: 15px;
}

.page-hero p {
    font-size: 18px;
    color: var(--text-muted);
}


/* Page Content */
.page-content {
    padding: 60px 20px;
}

/* Contact Grid */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-info h2,
.contact-form h2 {
    font-size: 28px;
    margin-bottom: 30px;
}

.info-item {
    margin-bottom: 30px;
}

.info-item h4 {
    color: var(--primary);
    margin-bottom: 10px;
    font-size: 16px;
}

.info-item p {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.8;
}

/* Forms */
.form-group {
    margin-bottom: 20px;
}

label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 14px;
}

input[type="text"],
input[type="email"],
input[type="tel"],
textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border);
    border-radius: 6px;
    background: var(--surface);
    color: var(--text);
    font-size: 14px;
    font-family: inherit;
    transition: border-color 0.3s;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
textarea:focus {
    outline: none;
    border-color: var(--primary);
}

textarea {
    resize: vertical;
}

/* Alerts */
.alert {
    padding: 15px;
    border-radius: 6px;
    margin-bottom: 20px;
    font-size: 14px;
}

.alert-error {
    background: rgba(230, 57, 70, 0.1);
    border: 1px solid var(--primary);
    color: #ff6b7a;
}

.alert-success {
    background: rgba(76, 175, 80, 0.1);
    border: 1px solid #4caf50;
    color: #81c784;
}

/* Footer */
.footer {
    background: var(--surface);
    border-top: 1px solid var(--border);
    padding: 40px 20px;
    text-align: center;
    color: var(--text-muted);
    font-size: 14px;
}

.footer-logo {
    display: flex;
    align-items: center;
    /* centraliza verticalmente */
}

.footer-logo img {
    width: 140px;
    /* tamanho menor */
    height: auto;
}


.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
    text-align: left;
}

.footer-section h4 {
    color: var(--text);
    margin-bottom: 15px;
}

.footer-section ul {
    list-style: none;
}

.footer-section a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: var(--primary);
}

.footer-bottom {
    border-top: 1px solid var(--border);
    padding-top: 20px;
}

/* Responsivo */
@media (max-width: 768px) {
    .header .container {
        flex-direction: column;
        gap: 15px;
    }

    .nav {
        gap: 15px;
        font-size: 12px;
    }

    .hero-content h1 {
        font-size: 36px;
    }

    .hero-content>p:nth-of-type(1) {
        font-size: 20px;
    }

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

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

    .services-grid,
    .posts-grid {
        grid-template-columns: 1fr;
    }
}

/* VOU EDITAR A PARTIR DAQUI */

.hero-condominial {
    position: relative;
    background-image: url('/imgs/condominios.png');
    /* sua imagem */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 100px 20px;
    color: #fff;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.65);
    /* escurece a imagem */
}

.hero-content {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    z-index: 2;
}

.hero-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
    font-weight: 600;
}

.hero-content p {
    font-size: 18px;
    line-height: 1.6;
    opacity: 0.95;
}

/* =========================
   Loader (prédio FontAwesome)
========================= */
html.is-loading {
    overflow: hidden;
}

#site-loader {
    position: fixed;
    inset: 0;
    background: #fff;
    display: grid;
    place-items: center;
    z-index: 9999;
    opacity: 1;
    transition: opacity 300ms ease;
}

#site-loader.hide {
    opacity: 0;
    pointer-events: none;
}

.loader-track {
    width: min(520px, 80vw);
    height: 64px;
    position: relative;
    overflow: hidden;
}

.loader-icon {
    font-size: 44px;
    position: absolute;
    left: -60px;
    top: 50%;
    transform: translateY(-50%);
    animation: building-run 1200ms ease-in-out forwards;
}

@keyframes building-run {
    0% {
        left: -60px;
        opacity: 0;
    }

    15% {
        opacity: 1;
    }

    55% {
        left: calc(50% - 22px);
        opacity: 1;
    }

    /* centro */
    70% {
        left: calc(50% - 22px);
        opacity: 1;
    }

    /* pausa */
    100% {
        left: calc(100% + 60px);
        opacity: 1;
    }
}

/* =========================
   Hero (animações)
   - background entra da esquerda com fade
   - texto vem "por cima" com fade
   - foto entra da direita com fade
========================= */
.hero-condominial {
    position: relative;
    overflow: hidden;
    padding: 100px 20px;
    color: #fff;

    /* removemos o background daqui porque agora o .hero-bg anima */
    background: none;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('/imgs/condominios.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    transform: translateX(-60px);
    opacity: 0;
    animation: hero-bg-in 900ms ease forwards;
}

@keyframes hero-bg-in {
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.65);
    z-index: 1;
}

/* Grid: texto à esquerda, alinhado à direita; imagem à direita */
.hero-inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 40px;
    align-items: center;
}

.hero-content--left {
    max-width: 720px;
    text-align: right;

    opacity: 0;
    transform: translateY(-10px);
    animation: hero-text-in 800ms ease forwards;
    animation-delay: 200ms;
}

@keyframes hero-text-in {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-photo {
    display: flex;
    justify-content: flex-end;

    opacity: 0;
    transform: translateX(30px);
    animation: hero-photo-in 900ms ease forwards;
    animation-delay: 350ms;
}

@keyframes hero-photo-in {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-photo img {
    width: min(420px, 92%);
    height: auto;
    border-radius: 18px;
    margin-bottom: 6em;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
}

/* Responsivo */
@media (max-width: 900px) {
    .hero-inner {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .hero-content--left {
        text-align: center;
        margin: 0 auto;
    }

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

.authority-block {
    max-width: 900px;
    margin: 0 auto 70px auto;
    text-align: center;
}

.authority-block h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.authority-block p {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.7;
}

.authority-highlights {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.highlight {
    text-align: center;
}

.highlight .number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #941415;
    /* dourado */
}

.highlight .label {
    font-size: 0.9rem;
    color: #666;
}

/* ==============================
   Instagram Section
============================== */

.instagram-feed {
    padding: 120px 20px;
    background: linear-gradient(135deg, #0f0f0f 0%, #1c1c1c 100%);
    color: #fff;
    position: relative;
    overflow: hidden;
}

.instagram-feed::before {
    content: "";
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(180, 138, 76, 0.15) 0%, transparent 70%);
    top: -200px;
    right: -200px;
}

.instagram-feed .container {
    position: relative;
    z-index: 2;
}

.instagram-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 30px;
    margin-bottom: 50px;
}

.instagram-text h2 {
    font-size: 2rem;
    margin-bottom: 12px;
}

.instagram-text p {
    max-width: 600px;
    color: #d4d4d4;
    line-height: 1.7;
}

.btn-outline-light {
    padding: 10px 22px;
    border: 1px solid #b48a4c;
    color: #b48a4c;
    border-radius: 6px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-outline-light:hover {
    background: #b48a4c;
    color: #fff;
}

.instagram-embed {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 18px;
    backdrop-filter: blur(6px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
}

.snapwidget-widget {
    width: 100%;
    height: 600px;
    border-radius: 12px;
}

/* Responsivo */
@media (max-width: 900px) {
    .instagram-head {
        flex-direction: column;
        align-items: flex-start;
    }

    .snapwidget-widget {
        height: 750px;
    }
}

/* ================= HEADER ================= */

.main-header {
    position: absolute;
    top: 0;
    width: 100%;
    padding: 22px 0;
    background: transparent;
    transition: all 0.3s ease;
    z-index: 999;
}

.logo img {
    height: 50px;
    transition: 0.3s;
}


.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo span {
    font-weight: 700;
    font-size: 1.2rem;
}

.main-nav ul {
    display: flex;
    gap: 30px;
    list-style: none;
}

.main-nav a {
    text-decoration: none;
    color: #CCCCCC;
    transition: 0.3s;
}

.main-nav a:hover {
    color: #941415;
    text-decoration: underline wavy #941415;
}

/* WhatsApp Button */
.btn-whatsapp {
    background: #25D366;
    color: #fff;
    padding: 10px 18px;
    border-radius: 30px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    transition: 0.3s;
}

.btn-whatsapp i {
    transition: transform 0.3s ease;
}

.btn-whatsapp:hover {
    background: #1ebe5d;
}

.btn-whatsapp:hover i {
    animation: shake 0.4s ease;
}

@keyframes shake {
    0% {
        transform: rotate(0deg);
    }

    25% {
        transform: rotate(-15deg);
    }

    50% {
        transform: rotate(15deg);
    }

    75% {
        transform: rotate(-10deg);
    }

    100% {
        transform: rotate(0deg);
    }
}

/* Hamburger */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.4rem;
}

/* ================= MOBILE ================= */

@media (max-width: 900px) {

    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100%;

        /* Glass escuro */
        background: rgba(15, 15, 15, 0.85);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);

        padding-top: 100px;
        transition: right 0.4s cubic-bezier(0.77, 0, 0.18, 1);
        box-shadow: -10px 0 40px rgba(0, 0, 0, 0.5);
        z-index: 999;
    }

    .main-nav.active {
        right: 0;
    }

    .main-nav ul {
        flex-direction: column;
        gap: 28px;
        padding-left: 40px;
    }

    .main-nav a {
        color: #CCCCCC;
        font-size: 1.05rem;
        font-weight: 500;
        letter-spacing: 0.5px;
        transition: 0.3s ease;
    }

    .main-nav a:hover {
        color: #941415;
    }

    .btn-whatsapp {
        display: none;
    }
}

@media (max-width: 900px) {

    /* mostra o botão hambúrguer */
    .menu-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        color: #CCCCCC;
        font-size: 1.8rem;
        cursor: pointer;
        padding: 10px 8px;
        line-height: 1;
        z-index: 10001;
    }

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

    .btn-whatsapp {
        display: none;
    }
}


/* opcional: dá uma segurada no tamanho da logo no mobile */
.logo img {
    width: 150px;
    height: auto;
}




/* =========================
   Footer premium
========================= */

.main-footer {
    background: radial-gradient(900px 500px at 20% 0%, rgba(148, 20, 21, 0.55), transparent 60%),
        radial-gradient(700px 400px at 90% 35%, rgba(148, 20, 21, 0.35), transparent 55%),
        linear-gradient(135deg, #141414 0%, #1a1a1a 55%, #120606 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 70px 20px 25px 20px;
    color: #ddd;
}


.footer-container {
    display: grid;
    grid-template-columns: 1.3fr 0.9fr 1fr;
    gap: 50px;
    align-items: start;
}

/* Brand */
.footer-brand .footer-logo {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}

.footer-brand .footer-logo img {
    width: 170px;
    height: auto;
    opacity: 0.95;
}

.footer-desc {
    margin-top: 16px;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.7;
    font-size: 0.95rem;
    max-width: 520px;
}

/* Menu */
.footer-nav h4,
.footer-social h4 {
    color: #fff;
    font-size: 1rem;
    margin-bottom: 14px;
}

.footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 10px;
}

.footer-nav a {
    color: rgba(255, 255, 255, 0.70);
    text-decoration: none;
    transition: 0.25s ease;
}

.footer-nav a:hover {
    color: #941415;
    transform: translateX(2px);
}

/* Social */
.social-links {
    display: grid;
    gap: 12px;
}

.social-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border-radius: 10px;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.75);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.07);
    transition: 0.25s ease;
}

.social-link i {
    font-size: 18px;
    color: #fff;
    opacity: 0.9;
}

.social-link:hover {
    background: rgba(190, 19, 19, 0.767);
    border-color: rgba(255, 255, 255, 0.12);
    color: #fff;
    transform: translateY(-2px);
}

.social-link.is-disabled {
    opacity: 0.45;
    cursor: not-allowed;
}

/* Footer bottom */
.footer-bottom {
    margin-top: 40px;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    text-align: center;
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.9rem;
}

/* Responsivo */
@media (max-width: 900px) {
    .footer-container {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .footer-brand .footer-logo img {
        width: 150px;
    }
}

/* =========================
   Tremida discreta (de tempos em tempos)
   - bem sutil, 1x a cada ~9s
========================= */
.social-link.attention {
    animation: soft-attention 9s ease-in-out infinite;
}

@keyframes soft-attention {

    0%,
    88% {
        transform: translateY(0);
    }

    90% {
        transform: translateY(-1px) rotate(-1deg);
    }

    92% {
        transform: translateY(0) rotate(1deg);
    }

    94% {
        transform: translateY(-1px) rotate(-1deg);
    }

    96% {
        transform: translateY(0) rotate(0deg);
    }

    100% {
        transform: translateY(0);
    }
}

/* Header fixa ao rolar (mobile e desktop) */
.main-header {
    position: sticky;
    top: 0;
    z-index: 9999;
}

/* Estado inicial (no topo / sobre o hero) */
.main-header {
    background: transparent;
}

/* Quando rolar: fica com degradê vertical + blur */
.main-header.is-scrolled {
    /* Degradê: começa mais opaco no topo (0.95) e vai ficando mais transparente na base (0.40) */
    background: linear-gradient(to bottom, rgba(15, 15, 15, 0.95) 0%, rgba(15, 15, 15, 0.40) 100%);

    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);

    /* Deixei a linha de baixo um pouco mais suave também */
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

/* Ajuste fino: evita “pular” layout */
.main-header .header-container {
    min-height: 64px;
}

/* ==============================
   Instagram - Fix responsivo (SnapWidget)
   cole no FINAL do style.css
============================== */

.instagram-embed {
    overflow: hidden;
    /* impede “vazar” no mobile */
}

.instagram-embed iframe.snapwidget-widget {
    display: block;
    border: 0;
    width: 1px !important;
    /* truque p/ iframe obedecer container */
    min-width: 100% !important;
    max-width: 100% !important;
    height: 600px;
    border-radius: 12px;
}

/* Responsivo */
@media (max-width: 900px) {
    .instagram-feed {
        padding: 90px 16px;
        /* menos padding lateral no mobile */
    }

    .instagram-embed {
        max-width: 100%;
        padding: 16px;
        /* reduz padding interno no mobile */
        border-radius: 16px;
    }

    .instagram-embed iframe.snapwidget-widget {
        height: 720px;
        /* ajuste padrão no mobile */
    }
}

/* Telas bem pequenas */
@media (max-width: 420px) {
    .instagram-embed iframe.snapwidget-widget {
        height: 820px;
        /* dá mais “respiro” em celulares menores */
    }
}

/* Coluna da marca (logo + texto) centralizada verticalmente */
.footer-brand {
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* <- centraliza verticalmente dentro da coluna */
    height: 100%;
}

@media (max-width: 900px) {
    .footer-brand {
        align-items: center;
        text-align: center;
        padding-top: 5px;
    }
}

/* Sobre - animação da foto (entra da esquerda com fade) */
.reveal-left {
    opacity: 0;
    transform: translateX(-60px);
    transition: opacity 700ms ease, transform 700ms ease;
    will-change: opacity, transform;
}

.reveal-left.is-visible {
    opacity: 1;
    transform: translateX(0);
}

/* =========================
   Serviços (layout premium)
========================= */

.services-hero .services-hero-actions {
    margin-top: 20px;
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.services-page .services-layout {
    display: grid;
    grid-template-columns: 1.35fr 0.65fr;
    gap: 40px;
    align-items: start;
}

.services-intro h2 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.services-intro p {
    color: var(--text-secondary);
    line-height: 1.8;
    max-width: 780px;
    margin-bottom: 22px;
}

.services-grid-pro {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
}

.service-box {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    overflow: hidden;
    transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.35);
}

.service-box:hover {
    transform: translateY(-3px);
    border-color: rgba(148, 20, 21, 0.55);
    box-shadow: 0 22px 60px rgba(0, 0, 0, 0.45);
}

.service-box__head {
    display: flex;
    gap: 14px;
    align-items: center;
    padding: 18px 18px 14px 18px;
    background: linear-gradient(135deg, rgba(148, 20, 21, 0.75) 0%, rgba(214, 40, 40, 0.45) 100%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.10);
}

.service-box__icon {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    background: rgba(0, 0, 0, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.12);
    font-size: 20px;
}

.service-box__head h3 {
    margin: 0;
    font-size: 1.1rem;
    color: #fff;
}

.service-box__subtitle {
    margin: 4px 0 0 0;
    color: rgba(255, 255, 255, 0.80);
    font-size: 0.92rem;
}

.service-box__body {
    padding: 18px;
}

.service-box__body p {
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.8;
    margin-bottom: 12px;
}

.service-bullets {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 8px;
}

.service-bullets li {
    position: relative;
    padding-left: 22px;
    color: rgba(255, 255, 255, 0.68);
    font-size: 0.95rem;
    line-height: 1.6;
}

.service-bullets li::before {
    content: "→";
    position: absolute;
    left: 0;
    top: 0;
    color: rgba(180, 138, 76, 0.95);
    font-weight: 700;
}

/* CTA premium */
.services-cta-pro {
    margin-top: 26px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: 18px;
    padding: 22px;
    display: flex;
    gap: 18px;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.services-cta-pro h2 {
    font-size: 1.35rem;
    margin: 0 0 6px 0;
}

.services-cta-pro p {
    margin: 0;
    color: rgba(255, 255, 255, 0.70);
}

.services-cta-pro__actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

/* Sidebar */
.services-side {
    position: sticky;
    top: 92px;
    /* fica ótimo com header sticky */
    display: grid;
    gap: 16px;
}

.side-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 18px;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.35);
}

.side-card h3 {
    margin: 0 0 10px 0;
}

.side-card p {
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.75;
}

.side-highlights {
    margin-top: 12px;
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.side-pill {
    padding: 7px 10px;
    border-radius: 999px;
    background: rgba(148, 20, 21, 0.22);
    border: 1px solid rgba(148, 20, 21, 0.35);
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.85rem;
}

.side-btn {
    width: 100%;
    text-align: center;
    margin-top: 14px;
}

.side-card--soft {
    background: rgba(255, 255, 255, 0.02);
}

.side-list {
    list-style: none;
    padding: 0;
    margin: 10px 0 8px 0;
    display: grid;
    gap: 8px;
}

.side-list li {
    padding-left: 18px;
    position: relative;
    color: rgba(255, 255, 255, 0.70);
}

.side-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: rgba(180, 138, 76, 0.95);
}

.side-note {
    margin-top: 10px;
    color: rgba(255, 255, 255, 0.60);
    font-size: 0.92rem;
}

/* =========================
   Accordion (efeito cortina)
========================= */

.process-accordion {
    margin-top: 34px;
    padding: 26px 0 0 0;
}

.process-accordion h2 {
    font-size: 1.8rem;
    margin-bottom: 8px;
    text-align: left;
}

.process-accordion__lead {
    color: rgba(255, 255, 255, 0.70);
    line-height: 1.75;
    margin-bottom: 14px;
}

.accordion {
    display: grid;
    gap: 10px;
}

.acc-item {
    border: 1px solid rgba(255, 255, 255, 0.10);
    background: rgba(255, 255, 255, 0.03);
    border-radius: 14px;
    overflow: hidden;
}

.acc-btn {
    width: 100%;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 12px;
    padding: 14px 14px;
    background: transparent;
    border: 0;
    color: #fff;
    cursor: pointer;
    text-align: left;
}

.acc-badge {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    display: grid;
    place-items: center;
    background: rgba(148, 20, 21, 0.28);
    border: 1px solid rgba(148, 20, 21, 0.38);
    font-weight: 700;
}

.acc-title {
    font-weight: 700;
}

.acc-icon {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    display: grid;
    place-items: center;
    background: rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.10);
    font-size: 18px;
    line-height: 1;
}

.acc-panel {
    overflow: hidden;
}

.acc-panel__inner {
    padding: 0 14px 14px 60px;
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.75;
}

/* estado aberto */
.acc-item.is-open {
    border-color: rgba(180, 138, 76, 0.40);
    background: rgba(255, 255, 255, 0.04);
}

.acc-item.is-open .acc-icon {
    background: rgba(180, 138, 76, 0.18);
    border-color: rgba(180, 138, 76, 0.30);
}

/* Responsivo */
@media (max-width: 900px) {
    .services-page .services-layout {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .services-side {
        position: relative;
        top: auto;
    }

    .services-cta-pro {
        padding: 18px;
    }
}

/* Accordion - efeito cortina */
.accordion {
    margin-top: 22px;
    display: grid;
    gap: 14px;
}

.acc-item {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    overflow: hidden;
}

.acc-header {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;

    background: transparent;
    border: 0;
    color: #fff;

    padding: 18px 18px;
    cursor: pointer;
    text-align: left;
}

.acc-title {
    font-weight: 700;
    letter-spacing: .2px;
}

.acc-icon {
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;

    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.06);
    font-size: 20px;
    line-height: 1;
    transition: transform 250ms ease;
}

.acc-panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height 320ms ease;
}

.acc-content {
    padding: 0 18px 18px 18px;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.7;
}

/* estado aberto */
.acc-item.is-open .acc-icon {
    transform: rotate(45deg);
    /* + vira x */
}

/* =========================
   Serviços (layout premium)
========================= */

.services-hero {
    padding: 85px 20px;
    background:
        radial-gradient(900px 420px at 15% 0%, rgba(148, 20, 21, 0.42), transparent 60%),
        radial-gradient(700px 380px at 85% 35%, rgba(148, 20, 21, 0.28), transparent 55%),
        linear-gradient(135deg, #141414 0%, #1a1a1a 55%, #120606 100%);
}

.services-hero-actions {
    margin-top: 22px;
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.services-page {
    padding-top: 70px;
}

.services-scope-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 22px;
}

.scope-card {
    grid-column: span 6;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    padding: 22px;
    box-shadow: 0 18px 55px rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.scope-card:hover {
    transform: translateY(-4px);
    border-color: rgba(148, 20, 21, 0.55);
    background: rgba(255, 255, 255, 0.04);
}

.scope-head {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 14px;
}

.scope-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    background: rgba(148, 20, 21, 0.22);
    border: 1px solid rgba(148, 20, 21, 0.35);
    font-size: 20px;
}

.scope-head h2 {
    font-size: 20px;
    margin: 0;
}

.scope-head p {
    margin-top: 6px;
    color: rgba(255, 255, 255, 0.70);
    font-size: 0.95rem;
}

.scope-list {
    list-style: none;
    display: grid;
    gap: 10px;
    margin-top: 14px;
    padding-left: 0;
}

.scope-list li {
    position: relative;
    padding-left: 22px;
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.55;
    font-size: 0.95rem;
}

.scope-list li::before {
    content: "•";
    position: absolute;
    left: 6px;
    top: -2px;
    color: rgba(148, 20, 21, 0.95);
    font-size: 22px;
    line-height: 1;
}

.scope-cta {
    margin-top: 18px;
    display: flex;
    justify-content: flex-start;
}

.scope-cta .btn {
    padding: 10px 18px;
    font-size: 0.95rem;
}

/* =========================
   Accordion (cortina)
========================= */

.services-process {
    margin-top: 60px;
    padding: 35px 0 10px;
}

.services-process-head {
    text-align: center;
    margin-bottom: 18px;
}

.services-process-head h2 {
    font-size: 32px;
    margin-bottom: 8px;
}

.services-process-head p {
    color: rgba(255, 255, 255, 0.70);
}

.accordion {
    max-width: 900px;
    margin: 22px auto 0;
    display: grid;
    gap: 12px;
}

.acc-item {
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.03);
}

.acc-btn {
    width: 100%;
    padding: 16px 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 14px;
    background: transparent;
    border: 0;
    color: #fff;
    cursor: pointer;
    text-align: left;
}

.acc-title {
    font-size: 1.05rem;
    font-weight: 650;
}

.acc-icon {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    display: grid;
    place-items: center;
    background: rgba(148, 20, 21, 0.22);
    border: 1px solid rgba(148, 20, 21, 0.35);
    font-size: 18px;
    line-height: 1;
    transition: transform 0.2s ease;
}

.acc-panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height 280ms ease;
}

.acc-content {
    padding: 0 16px 16px 16px;
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.65;
    font-size: 0.98rem;
}

.acc-item.is-open .acc-icon {
    transform: rotate(45deg);
}

.services-process-cta {
    margin-top: 18px;
    text-align: center;
}

/* Responsivo */
@media (max-width: 980px) {
    .scope-card {
        grid-column: span 12;
    }
}

@media (max-width: 520px) {
    .services-process-head h2 {
        font-size: 26px;
    }

    .acc-title {
        font-size: 1rem;
    }
}

/* =========================
   Contato - ajustes
========================= */

.contact-page .contact-grid {
    gap: 50px;
}

.rm-contact-form .hp-field {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    opacity: 0;
}

.rm-contact-form .btn-submit[disabled] {
    opacity: 0.7;
    cursor: not-allowed;
}

.form-footnote {
    margin-top: 14px;
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Link de telefone (tel:) - mantém visual do layout */
.contact-link,
.contact-link:visited,
.contact-link:hover,
.contact-link:active {
    color: #fff;
    text-decoration: none;
}

.contact-link:hover {
    opacity: 0.9;
}

.video-container {

    /* Exemplo de largura máxima */
    max-height: 7150%;
    aspect-ratio: 16 / 9;
    /* Mantém a proporção do vídeo */

    overflow: hidden;
    /* ESSENCIAL para os cantos arredondados funcionarem */
    border-radius: 20px;
    /* Aqui você define o arredondamento */

    position: relative;
    background-color: #f0f0f0;
    /* Fundo opcional para ver se a transparência está ok */
    display: flex;
    justify-content: center;
    align-items: center;
}

.video-container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Faz o vídeo preencher o container sem sobrar espaços */
    display: block;
}

/* HERO vídeo: desktop x mobile */
.hero-video--mobile {
    display: none;
}

.hero-video--desktop {
    display: block;
}

/* Ajuste visual do “cartão” do vídeo do hero */
.hero-video {
    width: min(360px, 92%);
    max-width: 420px;
    aspect-ratio: 16 / 9;
    border-radius: 18px;
    overflow: hidden;

    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.10);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
}

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

/* MOBILE: vídeo acima do título, e some o vídeo da direita */
@media (max-width: 900px) {
    .hero-video--mobile {
        display: block;
        margin: 0 auto 16px auto;
        /* centraliza e dá respiro antes do título */
    }

    .hero-video--desktop {
        display: none;
    }

    /* opcional: garante que o título não fique colado no vídeo */
    .hero-content--left h2 {
        margin-top: 0;
    }
}

/* =========================================
   HERO - tamanhos diferentes (PC vs Mobile)
   ========================================= */

/* controla quais vídeos aparecem */
.hero-video--mobile {
    display: none;
}

.hero-video--desktop {
    display: block;
}

/* “cartão” do vídeo (bordas + fundo sutil) */
.hero-video {
    border-radius: 18px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.10);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
}

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

/* ---------- PC / Desktop ---------- */
/* vídeo maior, mas ainda “elegante” ao lado do texto */
.hero-video--desktop {
    width: 420px;
    /* tamanho do vídeo no PC */
    height: 420px;
    /* deixa em formato “quadrado/hero” */
    margin: 0;
    /* alinhado no grid */
}

/* garante alinhamento vertical do bloco da direita com o texto */


/* HERO: alterna vídeo desktop x mobile */
.hero-video--mobile {
    display: none;
}

.hero-video--desktop {
    display: block;
}

/* “cartão” do vídeo */
.hero-video {
    border-radius: 18px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.10);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
}

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

/* PC */
.hero-photo {
    align-items: center;
}

.hero-video--desktop {
    width: 420px;
    height: 420px;
}

/* MOBILE */
@media (max-width: 900px) {
    .hero-video--desktop {
        display: none;
    }

    .hero-video--mobile {
        display: block;
        width: min(320px, 100%);
        height: 320px;
        margin: 0 auto 16px auto;
        /* acima do título */
    }
}

/* ===== FIX: vídeo do HERO no mobile não estoura horizontal ===== */
@media (max-width: 900px) {
    .hero-video--mobile {
        /* diminui um pouco e impede passar da tela */
        width: min(260px, calc(100vw - 40px));
        max-width: calc(100vw - 40px);

        /* mantém proporção e evita height fixo “empurrando” */
        height: auto;
        aspect-ratio: 16 / 9;

        margin: 0 auto 16px auto;
    }

    /* segurança extra contra overflow */
    .hero-condominial,
    .hero-inner,
    .hero-content--left {
        overflow-x: hidden;
    }

    .hero-video--mobile video {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }
}

/* ===== Ajuste de crop no vídeo MOBILE (output2.webm) ===== */
@media (max-width: 900px) {

    /* “Janela” do vídeo no mobile */
    .hero-video--mobile {
        width: min(260px, calc(100vw - 40px));
        max-width: calc(100vw - 40px);

        /* aumenta a altura (até ~50px) sem estourar */
        height: 200px;
        /* <- ajuste aqui (ex: 180 a 220) */
        max-height: 250px;
        /* segurança */
        overflow: hidden;
        border-radius: 16px;

        margin: 0 auto 16px auto;
    }

    /* Vídeo preenchendo a “janela” e cortando as bordas laterais */
    .hero-video--mobile video {
        width: 100%;
        height: 100%;
        object-fit: cover;

        /* zoom leve pra cortar laterais e esconder marca */
        transform: scale(1.18);
        /* <- aumenta/diminui (1.12 a 1.30) */

        /* muda o enquadramento (se a marca estiver no canto) */
        object-position: 50% 50%;
        /* <- ajuste: 50% 45% / 55% 50% etc */

        display: block;
    }
}

/* =========================
   Missão, Visão e Valores
========================= */
.mvv-section {
    margin-top: 34px;
    padding: 28px 0 6px;
}

.mvv-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
    align-items: start;

    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    padding: 22px;
    box-shadow: 0 18px 55px rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.mvv-left {
    display: grid;
    gap: 16px;
}

.mvv-block h2,
.mvv-right h2 {
    font-size: 20px;
    margin: 0 0 10px 0;
}

.mvv-block p {
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.75;
    margin: 0;
}

.mvv-values {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 10px;
}

.mvv-values li {
    position: relative;
    padding-left: 18px;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.65;
    font-size: 0.98rem;
}

.mvv-values li::before {
    content: "•";
    position: absolute;
    left: 6px;
    top: -2px;
    color: rgba(148, 20, 21, 0.95);
    font-size: 22px;
    line-height: 1;
}

.mvv-values strong {
    color: rgba(255, 255, 255, 0.92);
}

/* Responsivo */
@media (max-width: 980px) {
    .mvv-wrap {
        grid-template-columns: 1fr;
    }
}

/* ================= MÍDIA ================= */
.media-showcase {
    padding: 80px 0;
    background: #141414;
    position: relative;
    overflow: hidden;
}

.media-showcase::before {
    content: "";
    position: absolute;
    width: 520px;
    height: 520px;
    background: radial-gradient(circle, rgba(148, 20, 21, 0.16) 0%, transparent 70%);
    top: -180px;
    left: -180px;
    pointer-events: none;
}

.media-showcase .container {
    position: relative;
    z-index: 2;
}

.media-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 24px;
    margin-bottom: 32px;
}

.media-text h2 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.media-text p {
    color: #d0d0d0;
    max-width: 650px;
    line-height: 1.7;
}

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

.media-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
    display: flex;
    flex-direction: column;
}

.media-thumb {
    background: #0f0f0f;
    aspect-ratio: 16 / 10;
    overflow: hidden;
}

.media-thumb img,
.media-thumb video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.media-thumb iframe {
    width: 100%;
    height: 100%;
    display: block;
    border: 0;
}

.media-content {
    padding: 16px;
}

.media-content h3 {
    font-size: 1rem;
    line-height: 1.4;
    margin-bottom: 8px;
    color: #fff;
}

.media-content p {
    color: #cfcfcf;
    font-size: 0.92rem;
    line-height: 1.6;
    margin-bottom: 10px;
}

.media-link {
    color: #b48a4c;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
}

.media-link:hover {
    text-decoration: underline;
}

.media-empty {
    color: #999;
    text-align: center;
    padding: 20px 0;
}

/* Responsivo */
@media (max-width: 900px) {
    .media-head {
        flex-direction: column;
        align-items: flex-start;
    }

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

/* Cookie Consent */
.cookie-consent {
    position: fixed;
    left: 16px;
    right: 16px;
    bottom: 16px;
    z-index: 9999;
    display: none;
}

.cookie-consent.show {
    display: block;
}

.cookie-box {
    max-width: 1100px;
    margin: 0 auto;
    background: rgba(20, 20, 20, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: 14px;
    padding: 16px 18px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, .45);
    display: flex;
    gap: 16px;
    align-items: center;
    justify-content: space-between;
    backdrop-filter: blur(10px);
}

.cookie-text strong {
    display: block;
    margin-bottom: 6px;
    font-size: 14px;
    color: #fff;
}

.cookie-text p {
    margin: 0;
    font-size: 13px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.85);
}

.cookie-text a {
    color: #e63946;
    text-decoration: none;
}

.cookie-text a:hover {
    text-decoration: underline;
}

.cookie-actions {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

.cookie-btn {
    border: 0;
    border-radius: 10px;
    padding: 10px 14px;
    cursor: pointer;
    font-weight: 700;
    font-size: 13px;
}

.cookie-btn-primary {
    background: #e63946;
    color: #fff;
}

.cookie-btn-primary:hover {
    background: #d62828;
}

.cookie-btn-secondary {
    background: #2b2b2b;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.cookie-btn-secondary:hover {
    background: #3a3a3a;
}

@media (max-width: 768px) {
    .cookie-box {
        flex-direction: column;
        align-items: stretch;
    }

    .cookie-actions {
        justify-content: flex-end;
    }
}

/* HERO - imagens responsivas (substitui vídeos) */
.hero-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Desktop: imagem ao lado do texto */
.hero-image--desktop {
    display: block;
}

/* Mobile: imagem acima do título */
.hero-image--mobile {
    display: none;
    margin-bottom: 18px;
}

/* Ajuste visual opcional: bordas arredondadas e leve “card” */
.hero-image--desktop img,
.hero-image--mobile img {
    border-radius: 16px;
}

/* Responsivo */
@media (max-width: 900px) {
    .hero-image--desktop {
        display: none;
    }

    .hero-image--mobile {
        display: block;
    }
}

/* =========================================================
   HERO - imagens (becaright desktop / becadown mobile)
   ========================================================= */
.hero-condominial .hero-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Desktop/tablet: NÃO mostra a imagem mobile */
.hero-condominial .hero-image--mobile {
    display: none;
}

/* Desktop/tablet: mostra a imagem da direita */
.hero-condominial .hero-image--desktop {
    display: block;
}

/* Mobile: mostra apenas a becadown e remove o bloco da direita */
@media (max-width: 900px) {
    .hero-condominial .hero-image--mobile {
        display: block;
        margin: 0 auto 16px auto;
    }

    .hero-condominial .hero-image--desktop {
        display: none;
    }

    .hero-condominial .hero-photo {
        display: none;
    }

    .hero-condominial .hero-content--left {
        text-align: center;
    }
}

/* HERO - reduzir tamanho das imagens */
.hero-condominial .hero-image--desktop img {
    max-width: 420px;
    /* ajuste aqui: 360 / 400 / 420 */
    width: 100%;
    height: auto;
    margin: 0 auto;
    /* mantém central se o container for maior */
}

.hero-condominial .hero-image--mobile img {
    max-width: 280px;
    /* ajuste aqui: 240 / 260 / 280 / 300 */
    width: 100%;
    height: auto;
    margin: 0 auto;
}

/* Se quiser ainda menor no mobile bem pequeno */
@media (max-width: 420px) {
    .hero-condominial .hero-image--mobile img {
        max-width: 240px;
    }
}

/* HERO - reduzir imagens em ~30% */
.hero-condominial .hero-image--desktop img {
    max-width: 294px;
    /* 30% menor que 420px */
    width: 100%;
    height: auto;
    margin: 0 auto;
}

.hero-condominial .hero-image--mobile img {
    max-width: 196px;
    /* 30% menor que 280px */
    width: 100%;
    height: auto;
    margin: 0 auto;
}

@media (max-width: 420px) {
    .hero-condominial .hero-image--mobile img {
        max-width: 168px;
        /* 30% menor que 240px */
    }
}

/* =======================
   LGPD PAGE
======================= */
.lgpd-page {
    padding: 80px 0;
    background: #141414;
}

.lgpd-container {
    max-width: 980px;
}

.lgpd-header h1 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.lgpd-header p {
    color: #d0d0d0;
    line-height: 1.7;
}

.lgpd-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 22px 0 26px;
}

.lgpd-nav a {
    text-decoration: none;
    color: #fff;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.10);
    padding: 10px 12px;
    border-radius: 999px;
    font-size: 0.92rem;
}

.lgpd-nav a:hover {
    background: rgba(255, 255, 255, 0.10);
}

.lgpd-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 18px;
    margin-bottom: 16px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
}

.lgpd-card h2 {
    margin-bottom: 10px;
}

.lgpd-card p {
    color: #d0d0d0;
    line-height: 1.7;
}

.lgpd-list {
    margin: 10px 0 10px 18px;
    color: #d0d0d0;
    line-height: 1.7;
}

.lgpd-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 12px;
}

.lgpd-subcard {
    margin-top: 14px;
    padding: 14px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(0, 0, 0, 0.18);
}

.lgpd-subcard h3 {
    margin-bottom: 6px;
}

.lgpd-note {
    color: #a8a8a8;
    font-size: 0.95rem;
    margin-top: 10px;
}

.lgpd-contact {
    margin-top: 10px;
    padding: 14px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(0, 0, 0, 0.18);
}

.lgpd-contact a {
    color: #e63946;
    text-decoration: none;
}

.lgpd-contact a:hover {
    text-decoration: underline;
}

.lgpd-steps {
    margin: 10px 0 0 18px;
    color: #d0d0d0;
    line-height: 1.7;
}

.lgpd-src {
    font-size: 0.9rem;
    color: #a8a8a8;
    margin-top: 10px;
}

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