/* Variáveis Globais */
:root {
    --color-primary: #121212;
    --color-accent: #FF7B00;
    /* Laranja da Marca */
    --color-wpp: #25D366;
    /* Verde Oficial do WhatsApp */
    --color-wpp-hover: #1EBE5D;
    --color-text-light: #F5F5F5;
    --font-main: 'Helvetica Neue', Arial, sans-serif;
}

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

body {
    font-family: var(--font-main);
    background-color: var(--color-primary);
    color: var(--color-text-light);
}

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

/* === ESTILOS GERAIS PARA SEÇÕES (Atualizado) === */
.section-title {
    font-size: 1.8rem;
    text-align: left;
    /* Alinhamento como na imagem */
    margin-bottom: 40px;
    font-weight: 800;
    text-transform: uppercase;
    border-left: 5px solid var(--color-accent);
    /* Barra vertical laranja */
    padding-left: 15px;
    /* Espaço entre a barra e o texto */
    line-height: 1.1;
    letter-spacing: 0.5px;
}

/* Aplica o laranja na palavra de destaque do título */
.section-title span {
    color: var(--color-accent);
}

/* === HERO SECTION GERAL === */
.hero-section {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

/* =========================================
   FUNDOS DA HERO (Mobile vs Desktop)
========================================= */

/* Padrão Mobile: Fundo Único visível */
.hero-bg-mobile {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
}

/* Padrão Mobile: Mosaico escondido para não pesar a tela */
.hero-bg-desktop {
    display: none;
}

/* Colunas do mosaico */
.bg-img {
    flex: 1;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Regras para telas grandes (Desktop) */
@media (min-width: 768px) {
    .hero-bg-mobile {
        display: none;
        /* Esconde a foto única */
    }

    .hero-bg-desktop {
        display: flex;
        /* Exibe o mosaico de 3 colunas */
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 0;
    }
}

/* === CORREÇÃO DA TRANSIÇÃO (HERO -> PAS -> ARTISTAS) === */

.hero-overlay {
    /* Garante que a base da Hero termine em 100% de opacidade sólida (#121212) */
    background: linear-gradient(180deg, rgba(18, 18, 18, 0.4) 0%, rgba(18, 18, 18, 1) 100%) !important;
}

.hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

/* Nova Pré-Headline Laranja */
.hero-pre-headline {
    color: var(--color-accent);
    font-size: 0.9rem;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: -10px;
}

.hero-content h1 {
    font-size: 2.5rem;
    font-weight: 900;
    line-height: 1.1;
    text-transform: uppercase;
    letter-spacing: -1px;
}

.hero-content p {
    font-size: 1.1rem;
    max-width: 600px;
    line-height: 1.5;
    color: #E0E0E0;
}

/* Botão de Alta Conversão */
.btn-whatsapp {
    display: inline-block;
    background-color: #0F9D58;
    color: #ffffff !important;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    padding: 16px 32px;
    border-radius: 8px;
    transition: background-color 0.3s ease, transform 0.2s ease;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    margin-top: 10px;
}

.btn-whatsapp:hover {
    background-color: #0b8043;
    transform: translateY(-2px);
}

/* === BOTÃO DE WHATSAPP DEFINITIVO (Fundo Escuro + Glow Interno/Externo) === */
.btn-whatsapp-pulse-text {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    background-color: #161616 !important;
    /* FORÇA O FUNDO ESCURO NA PÍLULA EXTERNA */
    border: 1px solid rgba(255, 123, 0, 0.8);
    color: #ffffff;
    text-decoration: none;
    padding: 6px 24px 6px 6px;
    border-radius: 60px;
    cursor: pointer;
    box-shadow: 0 0 25px rgba(255, 123, 0, 0.25), inset 200px 200px 200px rgba(255, 123, 0, 0.25);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.btn-whatsapp-pulse-text:hover {
    transform: scale(1.03);
    box-shadow: 0 0 35px rgba(255, 123, 0, 0.45), inset 100px 100px 100px rgba(255, 123, 0, 0.45);
    border-color: rgba(255, 123, 0, 1);
}

.pulse-icon-box {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(90deg, #FF7B00 0%, #E66000 50%, #B34700 100%);
    color: #FFF;
    padding: 14px 26px;
    border-radius: 50px;
    margin-right: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.pulse-text-label {
    font-family: inherit;
    font-weight: 800;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #ffffff;
}

.whatsapp-outline-icon {
    flex-shrink: 0;
    margin-right: 0px;
    fill: #FFFFFF;
    transition: fill 0.3s ease;
}

.btn-whatsapp-pulse-text:hover .whatsapp-outline-icon {
    fill: #ffffff;
}

/* Ajustes para Desktop */
@media (min-width: 768px) {
    .hero-content h1 {
        font-size: 3.5rem;
    }

    .hero-content p {
        font-size: 1.25rem;
    }
}

/* === PROVA SOCIAL (Google Reviews) === */
.testimonials-section {
    padding: 80px 0;
    background-color: var(--color-primary);
    display: flex;
    flex-direction: column;
    align-items: center;
    /* Centraliza o conteúdo principal */
}

.testimonials-subtitle {
    font-size: 1.1rem;
    color: #B3B3B3;
    margin-top: -30px;
    margin-bottom: 40px;
    text-align: left;
}

/* Card Principal das Avaliações */
.google-rating-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #1A1A1A;
    /* Fundo levemente destacado */
    padding: 40px 30px;
    border-radius: 12px;
    max-width: 400px;
    margin: 0 auto;
    border: 1px solid #333;
    /* Borda sutil */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.rating-score {
    display: flex;
    align-items: baseline;
    gap: 5px;
    color: var(--color-accent);
    /* Laranja da marca */
    margin-bottom: 10px;
}

.score-big {
    font-size: 4.5rem;
    font-weight: 900;
    line-height: 1;
    letter-spacing: -2px;
}

.score-small {
    font-size: 1.8rem;
    font-weight: 700;
    color: #888;
}

.rating-stars {
    display: flex;
    gap: 6px;
    margin-bottom: 15px;
}

.rating-text {
    font-size: 1.1rem;
    color: #E0E0E0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 35px;
}

.google-logo-inline {
    height: 24px;
    /* Ajusta o tamanho do logo do Google no meio da frase */
    object-fit: contain;
}

/* Botão Estilo Outline Laranja */
.btn-google-reviews {
    background-color: transparent;
    color: var(--color-accent);
    border: 2px solid var(--color-accent);
    padding: 16px 24px;
    border-radius: 8px;
    font-weight: 800;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    width: 100%;
    text-align: center;
    letter-spacing: 0.5px;
}

.btn-google-reviews:hover {
    background-color: var(--color-accent);
    color: #121212;
    /* Texto fica escuro ao passar o mouse */
    transform: translateY(-2px);
}


.faq-item {
    background-color: var(--color-primary);
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
}

.faq-item summary {
    padding: 20px;
    font-weight: 700;
    cursor: pointer;
    list-style: none;
    position: relative;
    outline: none;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: '+';
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    color: var(--color-accent);
}

.faq-item[open] summary::after {
    content: '-';
}

.faq-content {
    padding: 0 20px 20px;
    color: #B3B3B3;
    line-height: 1.6;
}

/* === CTA FINAL (Laranja) === */
.cta-final-section {
    background-color: var(--color-accent);
    padding: 60px 0;
    color: #121212;
    /* Texto escuro */
}

.cta-final-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
}

.cta-pre {
    font-size: 0.9rem;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 10px;
    display: block;
}

.cta-text h2 {
    font-size: 2.8rem;
    font-weight: 900;
    line-height: 1.1;
    margin: 0;
    color: #121212;
}

/* Botão Preto Pílula */
.btn-whatsapp-black {
    background-color: #0F0F0F;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 18px 40px;
    border-radius: 50px;
    /* Arredondamento extremo */
    font-weight: 800;
    font-size: 1rem;
    text-decoration: none;
    transition: transform 0.3s ease, background-color 0.3s ease;
    border: 2px solid #0F0F0F;
}

.btn-whatsapp-black:hover {
    background-color: transparent;
    color: #0F0F0F;
    /* Inverte as cores no hover */
}

.btn-whatsapp-black:hover svg {
    stroke: #0F0F0F;
    /* Inverte a cor do ícone SVG */
}

/* === MAPA === */
.map-section {
    width: 100%;
    height: 350px;
    background-color: #1A1A1A;
    /* Cor de fundo de espera */
    border-bottom: 1px solid #333;
}

.map-section iframe {
    width: 100%;
    height: 100%;
    display: block;
    filter: invert(90%) hue-rotate(180deg) contrast(80%);
    /* Deixa o mapa no modo Dark para combinar com o site */
}

/* === RODAPÉ DE CONVERSÃO === */
.footer-section {
    background-color: var(--color-primary);
    padding: 60px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand p {
    color: #B3B3B3;
    line-height: 1.6;
    margin-top: 15px;
    max-width: 300px;
}

.footer-logo-text {
    font-size: 1.5rem;
    font-weight: 900;
    color: #fff;
    letter-spacing: 1px;
}

.footer-logo-text span {
    color: var(--color-accent);
}

.footer-info h4 {
    font-size: 1.1rem;
    color: #fff;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-info p {
    color: #888;
    margin-bottom: 5px;
    line-height: 1.5;
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid #333;
    padding-top: 20px;
    font-size: 0.85rem;
    color: #555;
}

/* === RESPONSIVO === */
@media (min-width: 768px) {
    .cta-final-container {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    .footer-grid {
        grid-template-columns: 2fr 1fr;
        /* Marca na esquerda, Infos na direita */
    }
}

/* === BOTÃO WHATSAPP FLUTUANTE === */
.whatsapp-sticky {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: var(--color-accent);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: transform 0.3s ease;
}

.whatsapp-sticky:hover {
    transform: scale(1.1);
}

.pas-section {
    position: relative;
    width: 100%;
    padding: 80px 0 60px 0 !important;
    background-color: #121212 !important;

    /* Fade Duplo: Esfumaça o topo (0% a 15%) e a base (85% a 100%) da imagem */
    background-image:
        linear-gradient(to bottom,
            rgba(18, 18, 18, 1) 0%,
            /* Topo invisível colado na Hero */
            rgba(18, 18, 18, 0) 15%,
            /* Revela a textura suavemente */
            rgba(18, 18, 18, 0) 85%,
            /* Mantém a textura nítida no centro */
            rgba(18, 18, 18, 1) 100%
            /* Base invisível colada nos Artistas */
        ),
        url('../assets/img/bg-geometrico-3.webp') !important;

    background-position: center center !important;
    background-size: cover !important;
    background-repeat: no-repeat !important;
}

/* === CORREÇÃO DE APROXIMAÇÃO (Artistas) === */
#nossos-artistas.portal-section-fullwidth {
    background-color: transparent !important;

    /* Puxa a seção da pílula orgânica levemente para cima para encaixar na névoa do fade-out */
    margin-top: -40px !important;
    padding-top: 40px !important;
}

.portal-section-fullwidth {
    position: relative;
    width: 100%;
    background-color: transparent;
    padding: 30px 0 !important;
}

.portal-section-wrapper {
    position: relative;
    width: 100%;
    margin: 0 auto;
}

.portal-logo-top {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    background-color: transparent;
    display: flex;
    justify-content: center;
    align-items: center;
}

.portal-logo-top img {
    width: 75px;
    height: 75px;
    object-fit: contain;
    background-color: #1A1A1A;
    border-radius: 50%;
    padding: 5px;
    box-shadow: 0 4px 15px rgba(255, 123, 0, 0.3);
    border: 2px solid rgba(255, 123, 0, 0.5);
}

.portal-footer-text {
    position: absolute;
    bottom: 0px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #FF7B00;
    font-size: 1.2rem;
    letter-spacing: 5px;
    font-weight: 700;
    text-transform: uppercase;
}

.portal-inner-content {
    padding: 120px 40px 100px 40px;
    -webkit-clip-path: url(#portalClipPath);
    clip-path: url(#portalClipPath);
    border: 0px solid rgba(255, 123, 0, 0.8);
    box-shadow: 0 0 50px rgb(255, 255, 255),
        0 0 100px rgba(255, 123, 0, 0.15);
    background:
        linear-gradient(to right, rgba(15, 7, 0, 0.1) 0%, rgba(137, 64, 0, 0.95) 50%, rgba(15, 7, 0, 0.1) 100%),
        #1e0f00;
}

.portal-header {
    text-align: center;
    color: #ffffff;
    margin-bottom: 60px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.portal-header h2 {
    font-size: 2.2rem;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 15px;
    line-height: 1.2;
    letter-spacing: 1px;
}

.portal-header p {
    font-size: 1rem;
    font-weight: 300;
    color: #bbbbbb;
    line-height: 1.6;
}

.artists-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1050px;
    margin: 0 auto;
}

.card-flip-container {
    background-color: transparent;
    height: 440px;
    perspective: 1000px;
    cursor: pointer;
}

.card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.6s cubic-bezier(0.4, 0.2, 0.2, 1);
    transform-style: preserve-3d;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

@media (hover: hover) {
    .card-flip-container:hover .card-inner {
        transform: rotateY(180deg);
    }
}

.card-flip-container.flipped .card-inner {
    transform: rotateY(180deg);
}

.card-front,
.card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    border-radius: 16px;
    overflow: hidden;
}

.card-front {
    background-color: #000;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.artist-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.85;
}

.artist-info {
    position: relative;
    z-index: 2;
    text-align: left;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.6) 60%, transparent 100%);
    padding: 40px 25px 25px 25px;
    width: 100%;
}

.artist-info h3 {
    color: #ffffff;
    font-size: 1.4rem;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 4px;
    letter-spacing: 0.5px;
}

.artist-info span {
    color: #FF7B00;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.card-back {
    transform: rotateY(180deg);
    background: linear-gradient(135deg, #1f1105 0%, #0d0601 100%);
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 35px 25px;
    border: 1px solid rgba(255, 123, 0, 0.4);
    text-align: center;
}

.card-back h4 {
    color: #FF7B00;
    font-size: 1.2rem;
    text-transform: uppercase;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.card-back p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #dddddd;
    margin-bottom: 20px;
}

.card-back .btn-perfil {
    display: inline-block;
    background: linear-gradient(90deg, #FF7B00 0%, #E66000 100%);
    color: #fff;
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    text-decoration: none;
    transition: transform 0.2s ease;
}

.card-back .btn-perfil:hover {
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .portal-inner-content {
        -webkit-clip-path: url(#portalClipPathMobile) !important;
        clip-path: url(#portalClipPathMobile) !important;
        padding: 130px 20px 80px 20px !important;
    }

    .artists-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }

    .portal-header h2 {
        font-size: 1.8rem;
    }

    .portal-logo-top {
        top: -10px;
    }

    .portal-footer-text {
        bottom: -5px;
        font-size: 1rem;
        letter-spacing: 3px;
    }
}

/* === SEÇÃO PORTFÓLIO (Fundo Geométrico com Fade Duplo) === */
.portfolio-section {
    position: relative;
    width: 100%;
    background-color: #121212 !important;

    /* Fade Duplo: Esfumaça o topo (0-20%) e a base (80-100%) da textura geométrica */
    background-image:
        linear-gradient(to bottom,
            rgba(18, 18, 18, 1) 0%,
            /* Topo invisível mesclando com a seção de cima */
            rgba(18, 18, 18, 0.15) 20%,
            /* Revela a textura sutilmente */
            rgba(18, 18, 18, 0.15) 80%,
            /* Mantém a textura no centro */
            rgba(18, 18, 18, 1) 100%
            /* Base invisível mesclando com o rodapé */
        ),
        url('../assets/img/bg-geometrico-3.webp') !important;

    background-position: center center !important;
    background-size: cover !important;
    background-repeat: no-repeat !important;
    z-index: 1;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    /* 2 colunas no mobile para não ficarem minúsculas */
    gap: 10px;
    /* Espaçamento estilo feed */
}

.portfolio-item {
    width: 100%;
    aspect-ratio: 1 / 1;
    /* Força imagens a ficarem em quadrados perfeitos */
    overflow: hidden;
    border-radius: 6px;
    background-color: #000;
}

.portfolio-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Preenche o quadrado sem distorcer a arte */
    transition: transform 0.4s ease;
}

.portfolio-item:hover .portfolio-img {
    transform: scale(1.08);
    /* Efeito visual imersivo ao tocar/passar o mouse */
}

.portfolio-cta {
    margin-top: 40px;
    text-align: center;
}

/* === RESPONSIVO PORTFÓLIO === */
@media (min-width: 768px) {
    .portfolio-grid {
        grid-template-columns: repeat(3, 1fr);
        /* 3 colunas em telas maiores */
        gap: 15px;
    }
}

/* =========================================
   CONTROLE DE EXIBIÇÃO (MOBILE VS DESKTOP)
========================================= */
.reviews-desktop {
    display: none;
}

/* Oculta desktop no celular */
.reviews-mobile {
    display: block;
}

/* Mostra card centralizado no celular */

/* Quando a tela for maior que 992px (Desktop/Tablets Grandes) inverte a lógica */
@media (min-width: 992px) {
    .reviews-mobile {
        display: none;
    }

    .reviews-desktop {
        display: block;
    }
}

/* =========================================
   BOTÃO SÓLIDO (Mobile)
========================================= */
.btn-google-reviews {
    background-color: var(--color-accent);
    /* Fundo Laranja Sólido */
    color: #121212;
    /* Texto Escuro para Contraste */
    border: none;
    padding: 16px 24px;
    border-radius: 8px;
    font-weight: 800;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 0.95rem;
    transition: transform 0.3s ease, background-color 0.3s ease;
    width: 100%;
    text-align: center;
    letter-spacing: 0.5px;
    display: inline-block;
}

.btn-google-reviews:hover {
    background-color: #E66A00;
    /* Laranja ligeiramente mais escuro no hover */
    transform: translateY(-2px);
}

/* =========================================
   ESTILOS DOS CARDS DESKTOP
========================================= */
.desktop-reviews-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 40px;
    color: #fff;
}

.header-left h2 {
    font-size: 2rem;
    font-weight: 900;
    margin-bottom: 5px;
}

.header-left p {
    color: #B3B3B3;
}

.header-right {
    text-align: right;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.excelente-text {
    font-size: 1.2rem;
    font-weight: 900;
    letter-spacing: 1px;
}

.stars-small {
    margin: 5px 0;
}

.google-text {
    font-weight: 700;
    font-size: 1.1rem;
}

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

.review-card {
    background-color: #1A1A1A;
    border-radius: 12px;
    padding: 30px;
    display: flex;
    flex-direction: column;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.author-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #fff;
    font-size: 1.2rem;
}

.author-info {
    flex-grow: 1;
}

.author-info h4 {
    color: #fff;
    font-size: 1rem;
    margin-bottom: 2px;
}

.author-info span {
    color: #888;
    font-size: 0.8rem;
}

.google-g {
    font-weight: 900;
    color: #fff;
    font-size: 1.2rem;
}

.review-stars {
    margin-bottom: 15px;
}

.review-body {
    color: #E0E0E0;
    line-height: 1.6;
    font-size: 0.95rem;
    margin-bottom: 25px;
    flex-grow: 1;
}

.review-link {
    color: #888;
    font-size: 0.85rem;
    font-weight: 700;
    text-decoration: none;
    transition: color 0.3s;
}

.review-link:hover {
    color: var(--color-accent);
}

/* =========================================
   RODAPÉ ATUALIZADO (Logo)
========================================= */
.footer-logo-container {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.footer-logo-img {
    max-width: 65px;
    /* Tamanho reduzido para bater com a imagem */
    height: auto;
    display: block;
    margin-bottom: 0;
    /* Remove a margem inferior para o alinhamento central */
}

.footer-logo-text {
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 900;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-brand-desc {
    color: #A0AAB2;
    /* Cor de texto em tom cinza-azulado suave conforme referência */
    font-size: 1.05rem;
    line-height: 1.7;
    margin: 0;
}

/* === LINKS DO RODAPÉ === */
.footer-phone {
    color: var(--color-accent);
    /* Laranja da marca */
    text-decoration: none;
    font-weight: 800;
    font-size: 1.1rem;
    display: inline-block;
    margin-top: 8px;
    transition: color 0.3s ease, transform 0.3s ease;
}

.footer-phone:hover {
    color: #ffffff;
    /* Fica branco ao passar o mouse */
    transform: translateX(5px);
    /* Efeito sutil de mover para a direita */
}

/* === LIGHTBOX GERAL === */
.portfolio-img {
    cursor: zoom-in;
    /* Altera o ponteiro do mouse para indicar ampliação */
}

.lightbox-modal {
    display: none;
    /* Oculto por padrão */
    position: fixed;
    z-index: 99999;
    /* Fica por cima de absolutamente tudo, incluindo o botão flutuante */
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    /* Fundo quase 100% preto */
    align-items: center;
    justify-content: center;
}

/* Classe ativada pelo JavaScript */
.lightbox-modal.active {
    display: flex;
}

.lightbox-content {
    max-width: 90%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 0 30px rgba(0, 0, 0, 1);
    animation: zoomIn 0.3s ease;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: #fff;
    font-size: 50px;
    font-weight: 300;
    cursor: pointer;
    transition: color 0.3s ease;
    line-height: 1;
}

.lightbox-close:hover {
    color: var(--color-accent);
}

/* Animação suave de entrada */
@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}


.pas-grid {
    display: grid;
    grid-template-columns: 1fr;
    /* Mobile-first: empilhado */
    gap: 50px;
    align-items: center;
}

.pas-lead {
    font-size: 1.15rem;
    color: #E0E0E0;
    line-height: 1.6;
    margin-bottom: 30px;
}

.pas-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.pas-list-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.pas-icon {
    flex-shrink: 0;
    margin-top: 2px;
}

.pas-list-item strong {
    display: block;
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.pas-list-item p {
    color: #B3B3B3;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Tratamento da Imagem (Emoldurada) */
.pas-image-wrapper {
    position: relative;
    width: 100%;
    padding: 12px;
    /* Espaço de respiro entre a foto e a moldura */
    border: 3px solid var(--color-accent);
    /* A moldura laranja envolvendo tudo */
    border-radius: 12px;
    /* Arredondamento externo */
    background-color: rgba(255, 123, 0, 0.05);
    /* Um fundo laranjado quase invisível para preencher o respiro */
}

.pas-image {
    width: 100%;
    height: auto;
    display: block;
    /* Remove o espaço fantasma abaixo da imagem nativa do HTML */
    border-radius: 6px;
    /* Arredondamento interno acompanhando a moldura */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
}

/* === RESPONSIVO (Desktop) === */
@media (min-width: 992px) {
    .pas-grid {
        grid-template-columns: 1.2fr 1fr;
        /* Coluna de texto ligeiramente maior */
        gap: 60px;
    }
}

/* === MAPA === */
.map-section {
    width: 100%;
    height: 350px;
    background-color: #1A1A1A;
    /* Cor de fundo de espera antes de o mapa carregar */
    border-bottom: 1px solid #333;
}

.map-section iframe {
    width: 100%;
    height: 100%;
    display: block;
    /* Filtro de inversão removido para manter as cores e o pino vermelho originais do Google Maps */
}

/* Correção de Contraste nos textos secundários e rodapé que estavam acinzentados demais (#888 ou #B3B3B3) */
.footer-info p,
.footer-brand p,
.testimonials-subtitle,
.faq-content {
    color: #CCCCCC;
    /* Cinza mais claro garantindo alto contraste no fundo escuro */
}

.footer-bottom {
    color: #999999;
}

/* === CTA FINAL (Laranja Sólido com Botão Pílula Preto) === */
.cta-final-section {
    background-color: var(--color-accent);
    padding: 70px 0;
    color: #121212;
}

.cta-final-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
}

.cta-pre {
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 8px;
    display: block;
    color: #121212;
}

.cta-text h2 {
    font-size: 2.6rem;
    font-weight: 900;
    line-height: 1.1;
    margin: 0;
    color: #121212;
    text-transform: none;
    /* Mantém a capitalização natural da referência */
}

.btn-whatsapp-black {
    background-color: #0B0B0B !important;
    color: #ffffff !important;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 36px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid #0B0B0B !important;
}

.btn-whatsapp-black:hover {
    background-color: #1a1a1a !important;
    color: #ffffff !important;
    transform: scale(1.05);
    /* Leve zoom ao passar o mouse */
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    /* Sombra mais destacada */
}

.btn-whatsapp-black:hover svg {
    stroke: #ffffff;
    /* Mantém o ícone branco */
}

/* === RODAPÉ LIMPO (2 Colunas) === */
.footer-section {
    background-color: var(--color-primary);
    padding: 60px 0 20px;
    border-top: 1px solid #222;
}

.footer-grid-clean {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 50px;
}

.footer-logo-wrapper {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.footer-logo-img {
    height: 45px;
    width: auto;
    object-fit: contain;
}

.footer-logo-text {
    font-size: 1.3rem;
    font-weight: 900;
    color: #fff;
    letter-spacing: 0.5px;
}

.footer-logo-text span {
    color: var(--color-accent);
}

.footer-desc {
    color: #B3B3B3;
    line-height: 1.6;
    font-size: 0.9rem;
    max-width: 380px;
}

.footer-info-col h4 {
    font-size: 1rem;
    color: #fff;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-info-col p {
    color: #B3B3B3;
    margin-bottom: 8px;
    line-height: 1.5;
    font-size: 0.95rem;
}

.footer-phone {
    color: var(--color-accent);
    text-decoration: none;
    font-weight: 800;
    font-size: 1.1rem;
    display: inline-block;
    margin-top: 5px;
    transition: color 0.3s ease;
}

.footer-phone:hover {
    color: #ffffff;
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid #222;
    padding-top: 25px;
    font-size: 0.85rem;
    color: #777;
}

/* === RESPONSIVO === */
@media (min-width: 768px) {
    .cta-final-container {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    .footer-grid-clean {
        grid-template-columns: 1.2fr 1fr;
        gap: 60px;
    }
}

/* === CONTROLE CONDICIONAL MOBILE vs DESKTOP === */
.pas-mobile-layout {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.pas-desktop-layout {
    display: none;
    /* Oculto no mobile por padrão */
}

.mobile-only-carousel {
    margin: 10px 0;
}

/* Animação do swipe */
@keyframes pulseSwipe {
    0% {
        opacity: 0.6;
        transform: translateX(0);
    }

    50% {
        opacity: 1;
        transform: translateX(5px);
    }

    100% {
        opacity: 0.6;
        transform: translateX(0);
    }
}

.swipe-animation {
    color: var(--color-accent) !important;
    font-weight: 700;
    animation: pulseSwipe 1.8s infinite ease-in-out;
}

/* Remove o espaçamento interno para colar a imagem na moldura laranja */
.pas-image-wrapper {
    position: relative;
    width: 100%;
    padding: 0 !important;
    /* Zero padding para a imagem ocupar todo o espaço interno */
    border: 3px solid var(--color-accent);
    border-radius: 12px;
    background-color: transparent;
    overflow: hidden;
    /* Garante que a imagem respeite o arredondamento da borda */
}

/* === AJUSTE DO CARROSSEL PARA FORMATO 1:1 (QUADRADO) === */
.carousel-container {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    /* Força o container a ser um quadrado perfeito */
    overflow: hidden;
    border-radius: 9px;
}

.carousel-track {
    display: flex;
    height: 100%;
    transition: transform 0.4s ease-in-out;
}

.carousel-slide {
    min-width: 100%;
    height: 100%;
    position: relative;
    box-sizing: border-box;
}

.carousel-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Recobre perfeitamente o espaço quadrado sem distorcer */
    display: block;
    border-radius: 0;
    filter: brightness(0.8);
}

/* Animação e Estilo do Indicador de Arraste (Mãozinha) */
@keyframes handSwipeMotion {
    0% {
        transform: translateX(0);
        opacity: 0.7;
    }

    50% {
        transform: translateX(8px);
        opacity: 1;
    }

    100% {
        transform: translateX(0);
        opacity: 0.7;
    }
}

.swipe-instruction {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--color-accent) !important;
    font-weight: 700;
    font-size: 0.9rem;
    margin-top: 4px;
}

.swipe-hand-icon {
    animation: handSwipeMotion 1.5s infinite ease-in-out;
    color: var(--color-accent);
    flex-shrink: 0;
}

.slide-content-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.6) 70%, transparent 100%);
    z-index: 2;
    border-bottom-left-radius: 6px;
    border-bottom-right-radius: 6px;
}

.slide-badge {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 900;
    padding: 3px 8px;
    border-radius: 4px;
    text-transform: uppercase;
    margin-bottom: 6px;
    letter-spacing: 1px;
}

.slide-badge.alert-badge {
    background-color: #E53935;
    color: #fff;
}

.slide-badge.success-badge {
    background-color: #0F9D58;
    color: #fff;
}

.slide-content-overlay h3 {
    color: #fff;
    font-size: 1.15rem;
    font-weight: 800;
    margin-bottom: 4px;
}

.slide-content-overlay p {
    color: #E0E0E0;
    font-size: 0.85rem;
    line-height: 1.35;
    margin: 0;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.6);
    color: #fff;
    border: none;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
}

.prev-btn {
    left: 8px;
}

.next-btn {
    right: 8px;
}

.carousel-dots {
    position: absolute;
    top: 12px;
    right: 12px;
    display: flex;
    gap: 5px;
    z-index: 5;
}

.dot {
    width: 7px;
    height: 7px;
    background-color: rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    cursor: pointer;
}

.dot.active {
    background-color: var(--color-accent);
    transform: scale(1.3);
}

/* === MEDIA QUERY DESKTOP (Inverte a exibição) === */
@media (min-width: 992px) {
    .pas-mobile-layout {
        display: none;
        /* Oculta a versão mobile no computador */
    }

    .pas-desktop-layout {
        display: grid;
        /* Exibe o layout lado a lado tradicional no desktop */
        grid-template-columns: 1.2fr 1fr;
        gap: 60px;
        align-items: center;
    }
}

/* === ESTILOS DA SEÇÃO DE AVALIAÇÕES COM ABA ORGÂNICA === */

.avaliacoes-portal-section {
    position: relative;
    width: 100%;
    background-color: transparent;
    padding: 60px 0;
}

/* Fundo diferenciado para a pílula de avaliações */
.avaliacoes-inner-content {
    -webkit-clip-path: url(#portalClipPath);
    clip-path: url(#portalClipPath);
    background: linear-gradient(to bottom, rgba(20, 10, 0, 0.98), rgba(35, 18, 2, 0.95)), url('https://www.transparenttextures.com/patterns/stardust.png');
    background-color: #170b02;
    padding: 120px 40px 100px 40px;
    border: 1px solid rgba(255, 123, 0, 0.2);
}

/* Responsividade do ClipPath para Mobile */
@media (max-width: 768px) {
    .avaliacoes-inner-content {
        -webkit-clip-path: url(#portalClipPathMobile);
        clip-path: url(#portalClipPathMobile);
        padding: 100px 20px 80px 20px;
    }
}

/* === CORREÇÃO DA TRANSIÇÃO (AVALIAÇÕES -> FAQ) === */
#avaliacoes {
    padding-bottom: 0 !important;
}

#avaliacoes .portal-inner-content {
    background:
        linear-gradient(to right, rgba(15, 7, 0, 0.1) 0%, rgba(137, 64, 0, 0.95) 50%, rgba(15, 7, 0, 0.1) 100%),
        #1e0f00;
}

/* === SEÇÃO FAQ (Fundo Geométrico com Fade Duplo e Aproximação) === */
.faq-section {
    position: relative;
    width: 100%;
    padding: 60px 20px 80px 20px !important;
    margin-top: -30px !important;
    /* Puxa a seção para cima, colando na aba orgânica */
    background-color: #121212 !important;

    /* Fade Duplo: Esfumaça o topo (0-20%) e a base (80-100%) da textura geométrica */
    background-image:
        linear-gradient(to bottom,
            rgba(18, 18, 18, 1) 0%,
            /* Topo invisível mesclando com a seção de cima */
            rgba(18, 18, 18, 0.15) 20%,
            /* Revela a textura sutilmente */
            rgba(18, 18, 18, 0.15) 80%,
            /* Mantém a textura no centro */
            rgba(18, 18, 18, 1) 100%
            /* Base invisível mesclando com a seção de baixo */
        ),
        url('../assets/img/bg-geometrico-3.webp') !important;

    background-position: center center !important;
    background-size: cover !important;
    background-repeat: no-repeat !important;
    z-index: 1;
}

/* === LARGURA DOS CARDS (Mais estreito e elegante) === */
.faq-container {
    max-width: 750px !important;
    /* Limita a largura dos acordeões */
    margin: 0 auto !important;
    position: relative;
    z-index: 2;
    /* Mantém o conteúdo acima do fundo geométrico */
}

/* === TÍTULO DO FAQ (Centralizado e sem borda) === */
.faq-section .section-title {
    text-align: center !important;
    border-left: none !important;
    /* Remove a barra laranja padrão */
    padding-left: 0 !important;
    margin-bottom: 50px !important;
}

.faq-section .section-title span {
    color: var(--color-accent, #FF7B00);
    /* Garante que a palavra FREQUENTES fique laranja */
}

/* === CARDS DO FAQ (Glow Permanente) === */
.faq-item {
    background-color: #161618;
    border: 1px solid rgba(255, 123, 0, 0.6) !important;
    box-shadow: 0 0 15px rgba(255, 123, 0, 0.25), inset 0 0 10px rgba(255, 123, 0, 0.05) !important;
    border-radius: 12px;
    margin-bottom: 18px;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    overflow: hidden;
}

/* === EFEITO NO HOVER === */
.faq-item:hover {
    background: linear-gradient(135deg, #1c1c20 0%, #241408 100%);
    border-color: #FF7B00 !important;
    box-shadow: 0 0 25px rgba(255, 123, 0, 0.5), inset 0 0 15px rgba(255, 123, 0, 0.15) !important;
    transform: translateY(-4px) scale(1.01);
}

.faq-item summary {
    padding: 22px 30px;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: '+';
    color: #FF7B00;
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1;
    transition: transform 0.3s ease;
}

.faq-item[open] summary::after {
    content: '−';
    transform: rotate(180deg);
}

.faq-content {
    padding: 0 30px 22px 30px;
    color: #cccccc;
    line-height: 1.6;
    font-size: 0.95rem;
    border-top: 1px solid rgba(255, 123, 0, 0.15);
    padding-top: 15px;
    margin-top: 5px;
}

@media (max-width: 768px) {
    .faq-title {
        font-size: 1.8rem;
        margin-top: 10px;
    }

    .faq-item summary {
        padding: 18px 20px;
        font-size: 1rem;
    }

    .faq-content {
        padding: 15px 20px 18px 20px;
    }
}

/* === TÍTULO DO PORTFÓLIO (Centralizado) === */
.portfolio-section .section-title {
    text-align: center !important;
    border-left: none !important;
    padding-left: 0 !important;
    margin-bottom: 50px !important;
}

.portfolio-section .section-title span {
    color: var(--color-accent, #FF7B00);
}

/* === EFEITO PARALLAX UNIFICADO (Mantendo o Fade Duplo) === */
.pas-section,
.portfolio-section,
.faq-section {
    /* 'scroll' para o gradient (camada 1) rolar com a página, 'fixed' para a imagem geométrica (camada 2) ficar travada no fundo */
    background-attachment: scroll, fixed !important;
}

/* === MICRO-INTERAÇÕES NO PORTFÓLIO === */
.portfolio-item {
    overflow: hidden !important;
    /* Evita que a imagem vaze ao crescer */
    border-radius: 12px;
    transition: box-shadow 0.4s ease;
    cursor: pointer;
}

.portfolio-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
    will-change: transform;
    /* Otimiza processamento via GPU */
}

/* Efeito Hover: Sombra glow laranja e zoom interno na tatuagem */
.portfolio-item:hover {
    box-shadow: 0 10px 30px rgba(255, 123, 0, 0.25);
}

.portfolio-item:hover .portfolio-img {
    transform: scale(1.08);
}

/* === CLASSES BASE PARA O FADE-UP (Scroll Reveal) === */
.fade-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
    will-change: opacity, transform;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* === CORREÇÃO DE ESPAÇAMENTO (Portfólio -> Avaliações) === */
.portfolio-section {
    padding-bottom: 70px !important; /* Espaçamento reduzido para aproximar o botão da seção seguinte */
}

#avaliacoes.portal-section-fullwidth {
    /* Garante que a pílula de avaliações não suba de forma agressiva */
    margin-top: 0 !important;
    padding-top: 20px !important;
}

/* === DARK MODE NO GOOGLE MAPS === */
/* Aplica um filtro de inversão de cores no iframe do mapa para deixá-lo com fundo escuro e ruas em alto contraste */
iframe[src*="google.com/maps"],
.map-container iframe {
    filter: invert(90%) hue-rotate(180deg) brightness(85%) contrast(120%) !important;
    transition: filter 0.4s ease;
}

/* Opcional: Retorna o mapa à cor original suavemente quando o usuário passa o mouse por cima (Hover) */
iframe[src*="google.com/maps"]:hover,
.map-container iframe:hover {
    filter: invert(0%) hue-rotate(0deg) brightness(100%) contrast(100%) !important;
}

/* === CORREÇÃO DE LINKS DO RODAPÉ === */
/* Remove o azul padrão de hiperlinks e aplica a identidade visual da marca */
footer a,
.footer-section a {
    color: #e0e0e0 !important; /* Cinza bem claro para manter a elegância */
    text-decoration: none !important;
    transition: color 0.3s ease !important;
}

/* Brilho laranja ao passar o mouse */
footer a:hover,
.footer-section a:hover {
    color: var(--color-accent, #FF7B00) !important;
}

/* === SETAS DO LIGHTBOX === */
.lightbox-prev, .lightbox-next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: auto;
    padding: 16px;
    color: white;
    font-weight: bold;
    font-size: 30px;
    transition: 0.3s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
    background-color: rgba(0, 0, 0, 0.5);
    border: none;
    z-index: 1000;
}

.lightbox-next {
    right: 0;
    border-radius: 3px 0 0 3px;
}

.lightbox-prev {
    left: 0;
}

.lightbox-prev:hover, .lightbox-next:hover {
    background-color: var(--color-accent, #FF7B00);
}

/* === RESTAURAÇÃO DO BOTÃO E ESPAÇAMENTO DA LINHA NEON === */

/* 1. Restaura o formato e os paddings originais da pílula do botão */
.btn-whatsapp-pulse-text {
    padding: 6px 24px 6px 6px !important;
    display: inline-flex !important;
    align-items: center !important;
}

.btn-whatsapp-pulse-text .pulse-icon-box {
    padding: 14px 26px !important;
    margin-right: 10px !important;
}

/* 2. Espaçamento amplo e equilibrado da linha neon (Top e Bottom) */
.divider-neon {
    width: 80%;
    max-width: 600px;
    height: 2px;
    margin: 60px auto !important; /* Aumentado para 60px para dar um respiro elegante acima e abaixo */
    border: none;
    background: linear-gradient(90deg, rgba(255, 123, 0, 0) 0%, rgba(255, 123, 0, 0.85) 50%, rgba(255, 123, 0, 0) 100%);
    box-shadow: 0 0 12px rgba(255, 123, 0, 0.5);
    border-radius: 2px;
    opacity: 0.9;
}

/* 3. Margem superior confortável para o título da seção seguinte */
.divider-neon + h2,
.feminine-section-title {
    margin-top: 15px !important;
}

/* Ajuste mobile */
@media (max-width: 768px) {
    .divider-neon {
        width: 90%;
        margin: 40px auto !important;
    }
}