* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary: #35385b;      /* tom sofisticado de azul petróleo */
            --primary-light: #121429;
            --secondary: #c7a964;    /* dourado suave - toque premium */
            --accent: #e67e22;        /* laranja para CTAs (moderno) */
            --white: #ffffff;
            --offwhite: #262a47;
            --gray-100: #f4f7fb;
            --gray-200: #e9edf2;
            --gray-600: #5d6e7e;
            --text-dark: #1e2b36;
            --shadow-sm: 0 10px 30px -10px rgba(0,0,0,0.1);
            --shadow-md: 0 20px 40px -15px rgba(0,20,30,0.2);
            --border-radius: 12px;
            --container: 1200px;
            --font-primary: 'Inter', sans-serif;
            --font-heading: 'Montserrat', sans-serif;
        }

        body {
            font-family: var(--font-primary);
            color: var(--text-dark);
            background-color: var(--white);
            line-height: 1.5;
            overflow-x: hidden;
        }

        h1, h2, h3, h4 {
            font-family: var(--font-heading);
            font-weight: 600;
            letter-spacing: -0.02em;
        }

        .container {
            max-width: var(--container);
            margin: 0 auto;
            padding: 0 24px;
        }

        /* ===== MENU FIXO ===== */
        .header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background: rgba(255,255,255,0.95);
            backdrop-filter: blur(10px);
            box-shadow: 0 2px 20px rgba(0,0,0,0.05);
            z-index: 1000;
            padding: 16px 0;
            transition: all 0.3s ease;
        }

        .header .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-family: var(--font-heading);
            font-size: 1.6rem;
            font-weight: 700;
            color: var(--primary);
            line-height: 1;
        }
        .logo span {
            color: var(--secondary);
            font-weight: 400;
            font-size: 0.9rem;
            display: block;
            letter-spacing: 2px;
        }

        .nav-menu {
            display: flex;
            gap: 32px;
        }
        .nav-menu a {
            text-decoration: none;
            color: var(--text-dark);
            font-weight: 500;
            font-size: 0.95rem;
            transition: color 0.2s;
        }
        .nav-menu a:hover {
            color: var(--secondary);
        }

        /* Botão mobile simples */
        .menu-toggle {
            display: none;
            background: none;
            border: none;
            font-size: 1.8rem;
            color: var(--primary);
            cursor: pointer;
        }

        /* ===== SEÇÕES GLOBAIS ===== */
        section {
            padding: 80px 0;
        }

        .section-title {
            font-size: 2.4rem;
            margin-bottom: 16px;
            color: var(--primary);
            
        }
        .section-title.diferenciais{
            text-align: center;
            color: #fff;
        }
        .section-title.def{
            color: #fff;
        }
        .section-subtitle {
            font-size: 1.1rem;
            color: var(--gray-600);
            max-width: 700px;
            margin-bottom: 48px;
            font-weight: 400;
        }
        .section-subtitle.diferenciais{
            text-align: center;
            max-width: none;
        }

        /* ===== HERO ===== */
        .hero {
            padding: 160px 0 100px;
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
            color: var(--white);
            position: relative;
            overflow: hidden;
        }
        .hero::after {
            content: "";
            position: absolute;
            top: 0; right: 0; width: 60%; height: 100%;
            background: url('./img/imagem-01.png') no-repeat center center/cover;
            opacity: 0.2;
            mix-blend-mode: overlay;
        }
        .hero .container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            align-items: center;
            position: relative;
            z-index: 2;
        }
        .hero h1 {
            font-size: 3.2rem;
            line-height: 1.2;
            margin-bottom: 24px;
        }
        .hero .highlight {
            color: var(--secondary);
        }
        .hero p {
            font-size: 1.2rem;
            opacity: 0.9;
            margin-bottom: 32px;
            max-width: 500px;
        }
        .hero-form {
            background: rgba(255,255,255,0.1);
            backdrop-filter: blur(8px);
            padding: 32px;
            border-radius: var(--border-radius);
            border: 1px solid rgba(255,255,255,0.2);
        }
        .hero-form h3 {
            font-size: 1.5rem;
            margin-bottom: 24px;
            color: white;
        }
        .hero-form input, .hero-form button {
            width: 100%;
            padding: 16px 20px;
            border: none;
            border-radius: 8px;
            margin-bottom: 16px;
            font-size: 1rem;
        }
        .hero-form input {
            background: rgba(255,255,255,0.9);
        }
        .hero-form button {
            background: var(--accent);
            color: white;
            font-weight: 700;
            cursor: pointer;
            transition: background 0.3s;
            border: none;
        }
        .hero-form button:hover {
            background: #d45d1e;
        }

        /* ===== DIFERENCIAIS ===== */
        .differentials-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }
        .diff-card {
            text-align: center;
            padding: 30px 20px;
            background: var(--white);
            border-radius: var(--border-radius);
            box-shadow: var(--shadow-sm);
            transition: transform 0.3s, box-shadow 0.3s;
        }
        .diff-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-md);
        }
        .diff-card i {
            font-size: 2.8rem;
            color: var(--secondary);
            margin-bottom: 16px;
        }
        .diff-card h4 {
            font-size: 1.1rem;
        }

        /* ===== LOCALIZAÇÃO ===== */
        .map-container {
            border-radius: var(--border-radius);
            overflow: hidden;
            box-shadow: var(--shadow-sm);
            height: 400px;
        }
        /* Container da Imagem */
.map-wrapper {
    position: relative;
    width: 100%;
    height: 400px; /* Ajuste a altura conforme desejar */
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    margin-bottom: 25px;
}

/* A Imagem em si */
.map-image {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Faz a imagem preencher o espaço sem distorcer */
    transition: transform 0.5s ease;
}

/* Efeito de zoom ao passar o mouse */
.map-wrapper:hover .map-image {
    transform: scale(1.05);
}

/* Camada por cima da imagem (opcional) */
.map-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
}

.map-wrapper:hover .map-overlay {
    opacity: 1;
}

/* Botão que aparece no hover */
.btn-map {
    padding: 12px 25px;
    background-color: var(--secondary);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

/* Estilização dos ícones abaixo */
.location-badges {
    margin-top: 20px;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.location-badges span {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    color: #555;
}

.location-badges i {
    color: var(--secondary);
}

        /* ===== GALERIA / LAZY LOADING ===== */
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
            gap: 20px;
        }
        .gallery-item {
            position: relative;
            overflow: hidden;
            border-radius: var(--border-radius);
            cursor: pointer;
            aspect-ratio: 4/3;
            background: var(--gray-200);
        }
        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
            opacity: 0;
            transition: opacity 0.3s, transform 0.5s;
        }
        .gallery-item img.lazyloaded {
            opacity: 1;
        }
        .gallery-item:hover img {
            transform: scale(1.05);
        }

        /* ===== PLANTAS (COM ZOOM) ===== */
        .plants-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 30px;
        }
        .plant-card {
            background: var(--white);
            border-radius: var(--border-radius);
            box-shadow: var(--shadow-sm);
            overflow: hidden;
            transition: transform 0.3s;
            cursor: zoom-in;
        }
        .plant-card:hover {
            transform: scale(1.02);
            box-shadow: var(--shadow-md);
        }
        .plant-card img {
            width: 100%;
            height: auto;
            display: block;
        }
        .plant-info {
            padding: 20px;
            text-align: center;
        }

        /* ===== INVESTIDORES ===== */
        .investor-highlight {
            background: var(--offwhite);
            border-radius: var(--border-radius);
            padding: 48px;
            text-align: center;
            border: 1px solid var(--gray-200);
        }

        /* ===== CTA FINAL ===== */
        .cta-final {
            background: var(--primary);
            color: white;
            text-align: center;
        }
        .cta-final h2 {
            color: white;
        }
        .btn-cta {
            display: inline-block;
            background: var(--accent);
            color: white;
            padding: 18px 50px;
            border-radius: 50px;
            font-weight: 700;
            text-decoration: none;
            margin-top: 32px;
            font-size: 1.2rem;
            transition: background 0.3s;
        }
        .btn-cta:hover {
            background: #c75f1c;
        }

        /* ===== RODAPÉ ===== */
        .footer {
            background: var(--primary);
            color: rgba(255,255,255,0.7);
            padding: 40px 0;
            border-top: 1px solid rgba(255,255,255,0.1);
        }

        /* ===== WHATSAPP FLOAT ===== */
        .whatsapp-float {
            position: fixed;
            bottom: 30px;
            right: 30px;
            background: #25d366;
            color: white;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            box-shadow: 0 10px 20px rgba(0,0,0,0.2);
            z-index: 999;
            transition: transform 0.3s;
            text-decoration: none;
        }
        .whatsapp-float:hover {
            transform: scale(1.1);
        }

        /* ===== LIGHTBOX (simples) ===== */
        .lightbox {
            display: none;
            position: fixed;
            top: 0; left: 0; width: 100%; height: 100%;
            background: rgba(0,0,0,0.9);
            z-index: 2000;
            justify-content: center;
            align-items: center;
        }
        .lightbox.active {
            display: flex;
        }
        .lightbox img {
            max-width: 90%;
            max-height: 90%;
            border-radius: 4px;
        }
        .lightbox-close {
            position: absolute;
            top: 30px; right: 40px;
            color: white;
            font-size: 40px;
            cursor: pointer;
        }

        /* ===== RESPONSIVIDADE ===== */
        @media (max-width: 992px) {
            .hero .container {
                grid-template-columns: 1fr;
            }
            .plants-grid {
                grid-template-columns: 1fr;
            }
            .nav-menu {
                display: none;
            }
            .menu-toggle {
                display: block;
            }
            .section-title {
                font-size: 2rem;
            }
        }

        /* Animações suaves */
        [data-aos] {
            opacity: 0;
            transition: opacity 0.6s, transform 0.6s;
        }
        [data-aos].aos-animate {
            opacity: 1;
            transform: translateY(0) !important;
        }
        /*Icons*/
        .hero-stats {
    display: flex;
    gap: 25px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.hero-stats .stat {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    color: #fff;
}

.hero-stats .stat img {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.sobre-grid{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    margin-top: 40px;
}

.sobre-img img{
    width: 100%;
    border-radius: 12px;
    object-fit: cover;
}

.sobre-textos{
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.sobre-card{
    background: #ffffff;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    line-height: 1.6;
    font-size: 16px;
}
@media (max-width: 768px){

    .sobre-grid{
        grid-template-columns: 1fr;
    }

    .sobre-img{
        order: -1;
    }

}

/* Diferenciais icons */
.differentials-pyramid{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    margin-top: 60px;
}

.differentials-pyramid .row{
    display: flex;
    justify-content: center;
    gap: 30px;
}

.diff-card{
    width: 240px;
    height: 170px;
    background: #e9e9e9;
    border-radius: 14px;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    text-align: center;
}

/* hover */
.diff-card:hover{
    transform: translateY(-5px);
}

.diff-card img{
    width: 42px;
    margin-bottom: 10px;
}

.diff-card h4{
    font-size: 16px;
    font-weight: 600;
}


/* MOBILE */
@media (max-width: 600px){

    .differentials-pyramid{
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }

    .differentials-pyramid .row{
        display: contents; /* remove a row no layout */
    }

    .diff-card{
        width: 100%;
        height: 120px;
    }

}
/* badges de localização */
.location-badges{
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-top: 40px;
    flex-wrap: wrap;
}

/* cada badge */
.badge-item{
    display: flex;
    align-items: center;
    gap: 10px;

    background: #f3f3f3;
    padding: 10px 16px;
    border-radius: 30px;

    font-size: 14px;
    font-weight: 500;
}

/* ícone */
.badge-icon{
    width: 22px;
    height: 22px;
    object-fit: contain;
}

/* tablet */
@media (max-width: 768px){

    .badge-item{
        font-size: 13px;
        padding: 8px 14px;
    }

    .badge-icon{
        width: 20px;
        height: 20px;
    }

}

/* mobile */
@media (max-width: 480px){

    .location-badges{
        gap: 12px;
    }

    .badge-item{
        font-size: 12px;
        padding: 7px 12px;
    }

    .badge-icon{
        width: 18px;
        height: 18px;
    }

}
.gallery-section{
    background: var(--offwhite);
    padding: 80px 0;
}

.gallery-wrapper{
    position: relative;
}

.gallery-track{
    display: flex;
    gap: 25px;
    overflow: hidden;
    scroll-behavior: smooth;
}

.gallery-card{
    min-width: 420px;
    height: 300px;
    border-radius: 18px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    flex-shrink: 0;
}

.gallery-card img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s;
}

.gallery-card:hover img{
    transform: scale(1.06);
}

.gallery-tag{
    position: absolute;
    top: 18px;
    left: 18px;
    background: rgba(0,0,0,.6);
    color: white;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 14px;
}

.gallery-btn{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: none;
    background: white;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0,0,0,.15);
    font-size: 20px;
    z-index: 10; /* resolve o problema */
}
.gallery-track{
    display: flex;
    gap: 30px;
    overflow: hidden;
}

.gallery-card{
    flex: 0 0 calc(50% - 15px);
    height: 380px;
    border-radius: 18px;
    overflow: hidden;
    position: relative;
}
.gallery-btn.prev{
    left: -25px;
}

.gallery-btn.next{
    right: -25px;
}
@media(max-width:768px){

.gallery-card{
    flex: 0 0 100%;
    height: 260px;
}

.gallery-btn{
    display:none;
}

}

.gallery-btn.prev{
    left: -20px;
}

.gallery-btn.next{
    right: -20px;
}
@media(max-width:768px){

.gallery-card{
    min-width: 80%;
    height: 240px;
}

.gallery-btn{
    display:none;
}

}
.plantas{
background:#f3f3f3;
padding:80px 0;
}

.titulo{
font-size:28px;
margin-bottom:20px;
}

.plantas-tabs{
display:flex;
gap:10px;
margin-bottom:20px;
}

.tab{
padding:10px 18px;
border:none;
border-radius:20px;
background:#d9d9d9;
cursor:pointer;
font-weight:600;
}

.tab.active{
background:#262a47;
color:#fff;
}

.plantas-wrapper{
display:flex;
gap:30px;
align-items:flex-start;
}

.legenda{
width:280px;
background:#fff;
padding:25px;
border-radius:10px;
}

.legenda h3{
margin-bottom:15px;
border-bottom:1px solid #ccc;
padding-bottom:10px;
}

.legenda ul{
list-style:none;
padding:0;
margin:0;
}

.legenda li{
margin-bottom:8px;
font-size:14px;
}

.plantas-imagens{
flex:1;
background:#fff;
padding:30px;
border-radius:10px;
text-align:center;
}

.plantas-imagens img{
max-width:100%;
}

.planta{
display:none;
}

.planta.active{
display:block;
}

.plantas-info{
display:flex;
justify-content:center;
gap:60px;
margin-top:30px;
background:#fff;
padding:20px;
border-radius:10px;
}

.info{
display:flex;
align-items:center;
gap:10px;
font-weight:500;
}

.info img{
width:35px;
}
.visita-empreendimento{
    padding: 80px 0;
}

.visita-container{
    max-width: 1200px;
    margin: auto;
    border-radius: 20px;
    overflow: hidden;

    /* IMAGEM DE FUNDO */
    background-image: url("./img/imagem-14.jpeg");
    background-size: cover;
    background-position: right center;

    display: flex;
    align-items: center;
    min-height: 420px;

    padding: 60px;
}

.visita-texto{
    max-width: 380px;
}

.visita-texto h2{
    font-size: 40px;
    line-height: 1.2;
    color: #2b5fa7;
    margin-bottom: 30px;
}

.btn-corretor{
    display: inline-block;
    background: #2b5fa7;
    color: white;
    padding: 14px 28px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 500;
    transition: .3s;
}

.btn-corretor:hover{
    background: #1f4a84;
}
@media(max-width:768px){

.visita-container{
    padding:40px 25px;
    min-height:350px;
}

.visita-texto h2{
    font-size:28px;
}

}
.planta {
    display: none;
}

.planta.active {
    display: block;
}

.plantas-info {
    display: none;
}

.plantas-info.active {
    display: flex;
}
@media (max-width: 768px){

    .plantas-info.active{
        flex-wrap: wrap;
        gap: 20px;
        display: none;
    }

}
@media (max-width: 768px){

    .plantas-info.o3{
        flex-wrap: wrap;
        gap: 20px;
        display: none;
    }

}
/* BOTÃO WHATSAPP */

.whatsapp-float{
    position: fixed;
    right: 25px;
    bottom: 25px;

    width: 60px;
    height: 60px;

    background: #25D366;
    color: #fff;

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 30px;

    box-shadow: 0 8px 20px rgba(0,0,0,0.25);

    z-index: 999;

    transition: transform .3s ease, box-shadow .3s ease;
}

/* hover desktop */
.whatsapp-float:hover{
    transform: scale(1.1);
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}

/* TABLET */
@media (max-width: 992px){

    .whatsapp-float{
        width: 55px;
        height: 55px;
        font-size: 26px;
        right: 20px;
        bottom: 20px;
    }

}

/* MOBILE */
@media (max-width: 576px){

    .whatsapp-float{
        width: 50px;
        height: 50px;
        font-size: 24px;
        right: 15px;
        bottom: 15px;
    }

}
@media (max-width: 992px){

    .nav-menu{
        gap: 20px;
    }

}

/* ======================
MOBILE
====================== */

@media (max-width: 768px){

    .menu-toggle{
        display: block;
    }

    .nav-menu{

        position: fixed;
        top: 0;
        right: -100%;

        width: 260px;
        height: 100vh;

        background: #fff;

        flex-direction: column;
        align-items: flex-start;

        padding: 100px 30px;

        gap: 25px;

        box-shadow: -5px 0 20px rgba(0,0,0,0.1);

        transition: right .4s ease;
    }

    /* menu aberto */

    body.menu-open .nav-menu{
        right: 0;
    }

}
/* =========================
TABLET
========================= */

@media (max-width: 992px){

  .plantas-wrapper{
    flex-direction: column;
    gap: 40px;
  }

  .legenda{
    max-width: 100%;
  }

  .plantas-imagens img{
    width: 100%;
    height: auto;
  }

  .plantas-tabs{
    flex-wrap: wrap;
    gap: 10px;
  }

}


/* =========================
MOBILE
========================= */

@media (max-width: 768px){

  .plantas-tabs{
    display: flex;
    overflow-x: auto;
    gap: 10px;
    padding-bottom: 10px;
  }

  .plantas-tabs::-webkit-scrollbar{
    display: none;
  }

  .tab{
    white-space: nowrap;
    font-size: 14px;
    padding: 10px 14px;
  }

  .plantas-wrapper{
    flex-direction: column;
    gap: 30px;
  }

  .legenda{
    font-size: 14px;
  }

  .legenda ul{
    columns: 1;
  }

}


/* =========================
MOBILE PEQUENO
========================= */

@media (max-width: 480px){

  .plantas-info{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .info{
    flex-direction: column;
    text-align: center;
    gap: 5px;
  }

  .info img{
    width: 26px;
  }

}
/* SEÇÃO CONTATO */

.contato{
  padding: 100px 20px;
}

.contato-box{
  max-width: 650px;
  margin: 0 auto;
  text-align: center;
  background: var(--offwhite);
  padding: 50px 40px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.contato-subtitle{
  margin-bottom: 30px;
  color: #666;
}

/* FORM */

.form-contato{
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.section-title.form{
    color: #fff;
}
.contato-subtitle.form{
    color: #fff;
}

.form-group input{
  width: 100%;
  padding: 16px;
  border: 1px solid var(--gray-200);
  border-radius: 8px;
  font-size: 16px;
  outline: none;
  transition: all .3s ease;
}

/* foco */

.form-group input:focus{
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(185,153,96,0.15);
}

/* BOTÃO */

.btn-enviar{
  margin-top: 10px;
  background: var(--accent);
  color: #fff;
  border: none;
  padding: 16px;
  font-size: 16px;
  font-weight: 700;
  border-radius: 8px;
  cursor: pointer;
  transition: all .3s ease;
}

.btn-enviar:hover{
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}
@media (max-width:768px){

  .contato{
    padding: 70px 20px;
  }

  .contato-box{
    padding: 35px 25px;
  }

}
.footer{
  background: #111;
  padding: 25px 20px;
  text-align: center;
}

.footer-copy{
  color: #aaa;
  font-size: 14px;
}
.aviso-prod{
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.75);

    display: flex;
    align-items: center;
    justify-content: center;

    z-index: 9999;
}

.aviso-card{
    background: white;
    max-width: 700px;
    width: 90%;

    padding: 50px 40px;
    border-radius: 12px;

    text-align: center;

    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.aviso-card h2{
    margin-bottom: 20px;
}

.aviso-card p{
    margin-bottom: 15px;
    line-height: 1.6;
}

.aviso-card button{
    margin-top: 20px;
    padding: 14px 35px;

    border: none;
    background: #b99960;
    color: white;

    border-radius: 6px;
    font-weight: bold;

    cursor: pointer;
}

.aviso-card button:hover{
    opacity: 0.9;
}