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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
    height: 100%;
}

html, body {
    height: 100%;
    overflow-x: hidden;
    overflow-y: auto;
}

/* ===== REGRAS GERAIS PARA RESPONSIVIDADE ===== */
section {
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
    overflow-y: visible;
    position: relative;
    z-index: 1;
}

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

body {
    background-color: #FFFFFF;
    font-family: "Instrument Serif", serif;
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    color: #433727;
    position: relative;
    width: 100%;
    max-width: 100vw;
    min-height: 100%;
}

/* ===== BACKGROUND COM IMAGEM DO SALÃO ===== */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background-image: url('../assets/salao 1.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    opacity: 0.3;
    z-index: -2;
    pointer-events: none;
}

body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.85) 0%, rgba(249, 247, 244, 0.9) 100%),
                radial-gradient(circle at 20% 50%, rgba(218, 190, 153, 0.04) 0%, transparent 60%),
                radial-gradient(circle at 80% 80%, rgba(218, 190, 153, 0.02) 0%, transparent 60%);
    pointer-events: none;
    z-index: -1;
}


@keyframes backgroundPulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.05);
    }
}

@keyframes patternMove {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(60px, 60px);
    }
}

/* ===== ANIMAÇÕES PROFISSIONAIS ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-60px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(60px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

@keyframes slideInFromLeft {
    from {
        transform: translateX(-100%);
    }
    to {
        transform: translateX(0);
    }
}

@keyframes sparkle {
    0%, 100% {
        opacity: 0;
        transform: translateY(0) scale(0) rotate(0deg);
    }
    25% {
        opacity: 0.8;
        transform: translateY(-10px) scale(0.8) rotate(90deg);
    }
    50% {
        opacity: 1;
        transform: translateY(-20px) scale(1.2) rotate(180deg);
    }
    75% {
        opacity: 0.8;
        transform: translateY(-10px) scale(0.8) rotate(270deg);
    }
}

@keyframes floatGlitter {
    0% {
        transform: translateY(100vh) rotate(0deg) scale(0.5);
        opacity: 0;
    }
    10% {
        opacity: 0.9;
        transform: translateY(90vh) rotate(36deg) scale(0.8);
    }
    50% {
        opacity: 1;
        transform: translateY(50vh) rotate(180deg) scale(1);
    }
    90% {
        opacity: 0.9;
        transform: translateY(10vh) rotate(324deg) scale(0.8);
    }
    100% {
        transform: translateY(-100px) rotate(360deg) scale(0.5);
        opacity: 0;
    }
}

@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

@keyframes pulse-button {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

/* ===== HERO SECTION ELEGANTE ===== */
@media (min-width: 769px) {
    .hero {
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-direction: row;
        width: 100%;
        max-width: 100%;
        margin: 0;
        padding: 0 0 0 80px;
        min-height: 100vh;
        height: auto;
        background: transparent;
        position: relative;
        overflow: visible;
        gap: 60px;
    }

    .hero::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-image: url('../assets/salao 1.png');
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        opacity: 0.3;
        filter: none;
        pointer-events: none;
        z-index: 0;
    }

    .hero::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(180deg, rgba(255, 255, 255, 0.85) 0%, rgba(249, 247, 244, 0.9) 100%),
                    radial-gradient(circle at 20% 50%, rgba(218, 190, 153, 0.04) 0%, transparent 60%),
                    radial-gradient(circle at 80% 80%, rgba(218, 190, 153, 0.02) 0%, transparent 60%);
        pointer-events: none;
        z-index: 1;
    }


    .hero .text {
        position: relative;
        z-index: 2;
        flex: 1;
        max-width: 50%;
        text-align: left;
        margin: 0;
        padding-right: 40px;
    }

    .hero .text > * {
        opacity: 0;
        transform: translateY(30px);
        transition: opacity 0.8s ease-out, transform 0.8s ease-out;
    }

    .hero.visible .text > * {
        opacity: 1;
        transform: translateY(0);
    }

    .perola-container {
        margin: 40px 0;
    }

    .img-perola {
        width: 250px;
    }

    .hero .text > * {
        opacity: 0;
        transform: translateY(30px);
        transition: opacity 0.8s ease-out, transform 0.8s ease-out;
    }

    .hero .mae {
        position: absolute;
        z-index: 3;
        flex: 0 0 auto;
        display: flex;
        align-items: flex-start;
        justify-content: flex-end;
        max-width: 50%;
        top: 0;
        right: 0;
        height: 100vh;
        width: 50%;
        margin: 0;
        padding: 0;
    }

    .hero .imagem {
        position: relative;
        width: 100%;
        height: 100%;
        max-width: 100%;
        padding: 0;
        margin: 0;
        background: transparent;
        border: none;
        box-shadow: none;
        display: flex;
        align-items: flex-start;
        justify-content: flex-end;
    }

    .hero .imagem::before {
        display: none;
    }

    .hero .imagem::after {
        display: none;
    }

    .hero .imagem img {
        width: auto;
        height: 85vh;
        max-height: 85vh;
        max-width: 100%;
        object-fit: contain;
        object-position: right top;
        display: block;
        position: relative;
        z-index: 3;
        filter: none;
        border-radius: 0;
        margin: 0;
        padding: 0;
    }

    .titulo {
        font-size: 4.5rem;
        text-align: left;
        margin: 0 0 40px 0;
        color: #433727;
        font-weight: 500;
        line-height: 1.08;
        letter-spacing: -0.04em;
        animation: fadeInUp 1.2s ease-out;
        font-family: "Instrument Serif", serif;
        max-width: 100%;
    }

    .efeito {
        color: #957141;
        font-weight: 400;
        font-family: "Imperial Script", cursive;
        font-size: 5rem;
        animation: fadeIn 1.5s ease-in-out;
        display: inline-block;
        position: relative;
    }

    .text-hero {
        font-size: 1.3rem;
        margin: 0 0 56px 0;
        color: #5B5B5B;
        font-weight: 400;
        line-height: 1.85;
        letter-spacing: 0.015em;
        animation: fadeInUp 1.1s ease-in-out 0.4s forwards;
        max-width: 100%;
        text-align: left;
        position: relative;
    }

    /* ===== BOTÃO RETANGULAR COM BORDA MARROM ===== */
    .btn-hero {
        display: inline-flex;
        justify-content: center;
        align-items: center;
        background: transparent;
        color: #433727;
        border: 2px solid #433727;
        padding: 20px 56px;
        font-size: 1.1rem;
        font-weight: 500;
        cursor: pointer;
        transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        animation: fadeInUp 1.3s ease-in-out, pulse-button 2s ease-in-out infinite;
        font-family: "Instrument Serif", serif;
        letter-spacing: 0.025em;
        position: relative;
        overflow: hidden;
        text-decoration: none;
        margin: 0;
    }

    .btn-hero::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: #433727;
        transition: left 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: -1;
    }

    .btn-hero:hover {
        color: #FFFFFF;
        transform: translateY(-4px);
        box-shadow: 0 16px 45px rgba(67, 55, 39, 0.3),
                    0 6px 18px rgba(67, 55, 39, 0.2);
    }

    .btn-hero:hover::before {
        left: 0;
    }

    .btn-hero:active {
        transform: translateY(0);
    }

    /* ===== PÉROLA DESKTOP ===== */
    .perola-container {
        position: relative;
        width: 100%;
        text-align: center;
        margin: 60px 0;
        background: transparent;
    }

    .img-perola {
        width: 350px;
        height: auto;
        position: relative;
        margin: 0 auto;
        z-index: 100;
        animation: float 8s ease-in-out infinite;
        opacity: 0.9;
    }
}

/* ===== HERO MOBILE ===== */
@media (max-width: 768px) {
    .hero {
        display: flex;
        flex-direction: column;
        text-align: center;
        padding: 80px 20px 0 20px;
        min-height: auto;
        height: auto;
        background: transparent;
        position: relative;
        overflow: visible;
        justify-content: flex-start;
    }

    .hero::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-image: url('../assets/salao 1.png');
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        opacity: 0.3;
        filter: none;
        pointer-events: none;
        z-index: 0;
    }

    .hero::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(180deg, rgba(255, 255, 255, 0.85) 0%, rgba(249, 247, 244, 0.9) 100%);
        pointer-events: none;
        z-index: 1;
    }

    .hero .text {
        padding-right: 0;
        margin-bottom: 40px;
        position: relative;
        z-index: 2;
    }

    .hero .mae {
        position: relative;
        z-index: 2;
    }

    .titulo {
        font-size: 2.5rem;
        text-align: center;
        margin: 0 0 24px 0;
        color: #433727;
        font-weight: 500;
        animation: fadeInUp 1s ease-out;
    }

    .efeito {
        color: #957141;
        font-weight: 400;
        font-family: "Imperial Script", cursive;
        font-size: 3rem;
        animation: fadeIn 1.5s ease-in-out;
        display: inline-block;
    }

    .text-hero {
        font-size: 1rem;
        margin: 0 0 32px 0;
        color: #5B5B5B;
        font-weight: 400;
        line-height: 1.7;
        animation: fadeInUp 1s ease-in-out 0.3s forwards;
        text-align: center;
        position: relative;
        padding: 0 20px;
    }

    .text-hero::before {
        display: none;
    }

    .btn-hero {
        display: inline-flex;
        justify-content: center;
        align-items: center;
        background: transparent;
        color: #433727;
        border: 2px solid #433727;
        padding: 16px 36px;
        font-size: 1rem;
        font-weight: 500;
        cursor: pointer;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        animation: fadeInUp 1.2s ease-in-out, pulse-button 2s ease-in-out infinite;
        font-family: "Instrument Serif", serif;
        letter-spacing: 0.02em;
        position: relative;
        overflow: hidden;
        width: auto;
        margin: 0 auto;
    }

    .btn-hero::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: #433727;
        transition: left 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: -1;
    }

    .btn-hero:hover {
        color: #FFFFFF;
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(67, 55, 39, 0.2);
    }

    .btn-hero:hover::before {
        left: 0;
    }

    .mae {
        display: flex;
        justify-content: center;
        margin-top: 40px;
        margin-left: -20px;
        margin-right: -20px;
        width: calc(100% + 40px);
        animation: fadeInUp 1.3s ease-in-out;
        position: relative;
    }

    .hero .imagem {
        position: relative;
        width: 100%;
        max-width: 100%;
        margin: 0;
        padding: 0;
        background-image: url('../assets/salao 1.png');
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        border: none;
        box-shadow: none;
        min-height: 300px;
    }

    .imagem img {
        display: none;
    }

    /* ===== PÉROLA MOBILE ===== */
    .perola-container {
        position: relative;
        width: 100%;
        text-align: center;
        margin: 40px 0;
        background: transparent;
    }

    .img-perola {
        width: 280px;
        height: auto;
        position: relative;
        margin: 0 auto;
        z-index: 100;
        animation: float 8s ease-in-out infinite;
        opacity: 0.9;
    }
}

/* ===== TABLET RESPONSIVIDADE ===== */
@media (min-width: 769px) and (max-width: 1024px) {
    .hero {
        padding: 120px 50px 0 50px;
        height: 100vh;
        gap: 40px;
    }

    .hero .mae {
        right: 0;
        width: 50%;
    }

    .hero .text {
        max-width: 50%;
        padding-right: 20px;
    }

    .titulo {
        font-size: 3.5rem;
        text-align: left;
    }

    .efeito {
        font-size: 4rem;
    }

    .text-hero {
        font-size: 1.2rem;
        max-width: 100%;
        text-align: left;
    }

    .btn-hero {
        padding: 18px 48px;
        margin: 0;
    }
}

/* ===== MOBILE PEQUENO ===== */
@media (max-width: 480px) {
    .hero {
        padding: 60px 15px;
    }

    .titulo {
        font-size: 2rem;
    }

    .efeito {
        font-size: 2.5rem;
    }

    .text-hero {
        font-size: 0.95rem;
        padding: 0 10px;
    }

    .btn-hero {
        padding: 14px 28px;
        font-size: 0.95rem;
        width: 100%;
        max-width: 300px;
    }

    .hero .imagem {
        max-width: 100%;
        padding: 15px;
    }

    /* Reduzir animações de fundo em mobile */
    .scissors,
    .brush {
        width: 20px;
        height: 20px;
        opacity: 0.05;
    }

    .scissors::before,
    .brush::before {
        font-size: 20px;
    }

    .star {
        width: 15px;
        height: 15px;
        opacity: 0.08;
    }

    .star::before {
        font-size: 15px;
    }

    .beauty-circle {
        width: 60px;
        height: 60px;
    }

    .beauty-circle::before {
        width: 40px;
        height: 40px;
    }
}

/* ===== ANIMAÇÕES DE FUNDO - TABLET ===== */
@media (min-width: 769px) and (max-width: 1024px) {
    .scissors,
    .brush {
        width: 25px;
        height: 25px;
    }

    .scissors::before,
    .brush::before {
        font-size: 25px;
    }

    .star {
        width: 18px;
        height: 18px;
    }

    .star::before {
        font-size: 18px;
    }

    .beauty-circle {
        width: 80px;
        height: 80px;
    }

    .beauty-circle::before {
        width: 50px;
        height: 50px;
    }
}

/* ===== ANIMAÇÕES DE FUNDO - ELEMENTOS DE SALÃO DE BELEZA ===== */
.background-animations {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

/* Tesoura estilizada */
.scissors {
    position: absolute;
    width: 40px;
    height: 40px;
    opacity: 0.08;
    animation: floatScissors 25s linear infinite;
}

.scissors::before {
    content: '✂';
    font-size: 40px;
    color: #433727;
    display: block;
    transform: rotate(0deg);
    animation: rotateScissors 4s ease-in-out infinite;
}

.scissors-1 {
    left: 10%;
    top: 20%;
    animation-delay: 0s;
    animation-duration: 30s;
}

.scissors-2 {
    left: 80%;
    top: 60%;
    animation-delay: 10s;
    animation-duration: 35s;
}

.scissors-3 {
    left: 50%;
    top: 80%;
    animation-delay: 20s;
    animation-duration: 28s;
}

/* Pincel de maquiagem */
.brush {
    position: absolute;
    width: 30px;
    height: 30px;
    opacity: 0.08;
    animation: floatBrush 20s linear infinite;
}

.brush::before {
    content: '🖌';
    font-size: 30px;
    display: block;
    transform: rotate(0deg);
    animation: rotateBrush 5s ease-in-out infinite;
}

.brush-1 {
    left: 25%;
    top: 40%;
    animation-delay: 5s;
    animation-duration: 25s;
}

.brush-2 {
    left: 70%;
    top: 30%;
    animation-delay: 15s;
    animation-duration: 22s;
}

.brush-3 {
    left: 15%;
    top: 70%;
    animation-delay: 8s;
    animation-duration: 27s;
}

/* Estrela de brilho elegante */
.star {
    position: absolute;
    width: 20px;
    height: 20px;
    opacity: 0.12;
    animation: twinkleStar 4s ease-in-out infinite;
}

.star::before {
    content: '✨';
    font-size: 20px;
    display: block;
}

.star-1 {
    left: 20%;
    top: 15%;
    animation-delay: 0s;
}

.star-2 {
    left: 60%;
    top: 25%;
    animation-delay: 1s;
}

.star-3 {
    left: 85%;
    top: 50%;
    animation-delay: 2s;
}

.star-4 {
    left: 30%;
    top: 75%;
    animation-delay: 1.5s;
}

.star-5 {
    left: 75%;
    top: 85%;
    animation-delay: 0.5s;
}

.star-6 {
    left: 5%;
    top: 55%;
    animation-delay: 2.5s;
}

/* Círculo decorativo */
.beauty-circle {
    position: absolute;
    width: 100px;
    height: 100px;
    border: 2px solid rgba(67, 55, 39, 0.05);
    border-radius: 50%;
    animation: pulseCircle 8s ease-in-out infinite;
}

.beauty-circle::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 60px;
    height: 60px;
    border: 1px solid rgba(67, 55, 39, 0.03);
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.circle-1 {
    left: 5%;
    top: 10%;
    animation-delay: 0s;
}

.circle-2 {
    right: 10%;
    top: 70%;
    animation-delay: 4s;
}

.circle-3 {
    left: 50%;
    top: 5%;
    animation-delay: 2s;
    transform: translateX(-50%);
}

@keyframes floatScissors {
    0% {
        transform: translateY(0) translateX(0);
    }
    25% {
        transform: translateY(-30px) translateX(20px);
    }
    50% {
        transform: translateY(-60px) translateX(10px);
    }
    75% {
        transform: translateY(-30px) translateX(-10px);
    }
    100% {
        transform: translateY(0) translateX(0);
    }
}

@keyframes rotateScissors {
    0%, 100% {
        transform: rotate(0deg);
    }
    50% {
        transform: rotate(15deg);
    }
}

@keyframes floatBrush {
    0% {
        transform: translateY(0) translateX(0);
    }
    33% {
        transform: translateY(-40px) translateX(15px);
    }
    66% {
        transform: translateY(-20px) translateX(-15px);
    }
    100% {
        transform: translateY(0) translateX(0);
    }
}

@keyframes rotateBrush {
    0%, 100% {
        transform: rotate(0deg);
    }
    50% {
        transform: rotate(-20deg);
    }
}

@keyframes twinkleStar {
    0%, 100% {
        opacity: 0.08;
        transform: scale(1);
    }
    50% {
        opacity: 0.2;
        transform: scale(1.2);
    }
}

@keyframes pulseCircle {
    0%, 100% {
        opacity: 0.05;
        transform: scale(1);
    }
    50% {
        opacity: 0.1;
        transform: scale(1.1);
    }
}

/* ===== CLASSES DE ANIMAÇÃO NO SCROLL ===== */
.fade-in-up {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.fade-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.fade-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.fade-in-scale {
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in-scale.visible {
    opacity: 1;
    transform: scale(1);
}

.fade-in-rotate {
    opacity: 0;
    transform: translateY(30px) rotate(-5deg);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in-rotate.visible {
    opacity: 1;
    transform: translateY(0) rotate(0deg);
}

/* Garantir que o conteúdo fique acima das animações */
.hero,
.especialidades,
.resultados,
.depoimentos,
.equipe,
.formulario-section,
.footer {
    position: relative;
    z-index: 1;
}

/* ===== MODAL DE IMAGEM ===== */
.image-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(5px);
    animation: fadeIn 0.3s ease;
    cursor: pointer;
}

.image-modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    max-width: 95%;
    max-height: 95vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.5);
    animation: zoomIn 0.3s ease;
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #FFFFFF;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10001;
    transition: all 0.3s ease;
    line-height: 1;
}

.modal-close:hover {
    color: #DABE99;
    transform: scale(1.2);
}

@keyframes zoomIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* Desktop - não mostra cursor pointer na imagem */
@media (min-width: 769px) {
    .hero .imagem {
        cursor: default;
    }
    
    .hero .imagem img {
        cursor: default;
    }
}

/* Mobile - mostra cursor pointer */
@media (max-width: 768px) {
    .hero .imagem {
        cursor: pointer;
    }
    
    .hero .imagem img {
        cursor: pointer;
    }
}
