/* ==========================================================
   HERO EVENTOS
========================================================== */

.showcase-hero{

    position:relative;

    min-height:100vh;

    display:flex;

    align-items:center;

    overflow:hidden;
}

.showcase-hero img{

    position:absolute;

    top:0;
    left:0;

    width:100%;
    height:100%;

    object-fit:cover;

    z-index:1;
}

.showcase-overlay{

    position:absolute;

    inset:0;

    background:
    linear-gradient(
    90deg,
    rgba(7,42,82,.88) 0%,
    rgba(7,42,82,.75) 40%,
    rgba(7,42,82,.55) 100%);

    z-index:2;
}

.showcase-hero .container{

    position:relative;

    z-index:5;
}

.showcase-content{

    max-width:820px;

    color:#ffffff !important;
}

.showcase-content span{

    display:inline-block;

    padding:12px 24px;

    border-radius:999px;

    background:
    rgba(255,255,255,.10);

    backdrop-filter:blur(15px);

    border:
    1px solid rgba(255,255,255,.15);

    color:#fbbf24 !important;

    font-size:.85rem;

    font-weight:700;

    letter-spacing:2px;

    margin-bottom:25px;
}

.showcase-content h1{

    color:#ffffff !important;

    font-size:clamp(
    3rem,
    3.6vw,
    3.3rem);

    line-height:1.05;

    font-weight:800;

    margin-bottom:25px;

    text-shadow:
    0 10px 30px rgba(0,0,0,.30);
}

.showcase-content p{

    color:
    rgba(255,255,255,.92) !important;

    max-width:720px;

    font-size:1.0rem;

    line-height:1.9;
}
/* ==========================================================
   GRID DOS EVENTOS
========================================================== */
/* ==========================================================
   TÍTULO DA SECÇÃO
========================================================== */

.portfolio-header{

    max-width:900px;

    margin:0 auto 70px;

    text-align:center;
}

.portfolio-header span{

    display:inline-block;

    color:#0891b2;

    font-size:.85rem;

    font-weight:700;

    letter-spacing:2px;

    text-transform:uppercase;

    margin-bottom:18px;
}

.portfolio-header h2{

    color:#0f172a;

    font-size:clamp(
    2.2rem,
    2.6vw,
    3rem);

    font-weight:800;

    line-height:1.15;

    margin:0;

    max-width:850px;

    margin-left:auto;

    margin-right:auto;
}

.portfolio-header::after{

    content:'';

    display:block;

    width:80px;

    height:4px;

    margin:25px auto 0;

    border-radius:999px;

    background:#1EC9F3;
}
.portfolio-grid{

    display:grid;

    grid-template-columns:
    repeat(auto-fit,minmax(380px,1fr));

    gap:40px;
}
/* ==========================================================
   CARD PREMIUM
========================================================== */

.portfolio-card{

    position:relative;

    display:block;

    text-decoration:none;

    overflow:hidden;

    border-radius:36px;

    background:white;

    transition:.45s ease;

    box-shadow:
    0 25px 60px rgba(15,23,42,.08);
}

.portfolio-card:hover{

    transform:
    translateY(-12px);

    box-shadow:
    0 40px 90px rgba(15,23,42,.14);
}
/* ==========================================================
   IMAGEM
========================================================== */

.portfolio-card-image{

    position:relative;

    overflow:hidden;

    height:280px;
}

.portfolio-card-image img{

    width:100%;
    height:100%;

    object-fit:cover;

    transition:1s ease;
}

.portfolio-card:hover
.portfolio-card-image img{

    transform:scale(1.08);
}
/* ==========================================================
   CONTEÚDO
========================================================== */

.portfolio-card-content{

    padding:35px;
}
/* ==========================================================
   TOPO
========================================================== */

.portfolio-top{

    display:flex;

    align-items:center;

    justify-content:space-between;

    gap:15px;

    margin-bottom:22px;
}
/* ==========================================================
   CATEGORIA
========================================================== */

.portfolio-category{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:9px 18px;

    border-radius:999px;

    background:
    linear-gradient(
    135deg,
    #1EC9F3,
    #56C271);

    color:white;

    font-size:.78rem;

    font-weight:700;

    letter-spacing:.5px;
}
/* ==========================================================
   DATA
========================================================== */

.portfolio-date{

    color:#64748b;

    font-size:.9rem;

    font-weight:600;
}
/* ==========================================================
   TITULO
========================================================== */

.portfolio-card-content h3{

    color:#072A52;

    font-size:1.8rem;

    line-height:1.25;

    margin-bottom:25px;

    font-weight:700;

    transition:.35s ease;
}

.portfolio-card:hover h3{

    color:#0891b2;
}
/* ==========================================================
   META
========================================================== */

.portfolio-meta{

    display:grid;

    grid-template-columns:
    repeat(2,1fr);

    gap:15px;

    margin-bottom:25px;
}

.portfolio-meta div{

    padding:18px;

    border-radius:18px;

    background:
    linear-gradient(
    180deg,
    #f8fafc,
    #f1f5f9);

    border:
    1px solid rgba(15,23,42,.05);
}

.portfolio-meta strong{

    display:block;

    color:#1EC9F3;

    font-size:.72rem;

    font-weight:700;

    letter-spacing:1px;

    margin-bottom:8px;
}

.portfolio-meta p{

    margin:0;

    color:#072A52;

    font-weight:600;

    line-height:1.5;
}
/* ==========================================================
   DESCRIÇÃO
========================================================== */

.portfolio-description{

    padding-top:18px;

    border-top:
    1px solid rgba(15,23,42,.06);

    color:#64748b;

    line-height:1.9;

    font-size:.95rem;
}
/* ==========================================================
   LINK
========================================================== */

.portfolio-link{

    margin-top:25px;

    display:flex;

    align-items:center;

    gap:10px;

    color:#0891b2;

    font-weight:700;

    transition:.3s ease;
}

.portfolio-card:hover
.portfolio-link{

    gap:18px;
}
/* ==========================================================
   EMPTY STATE
========================================================== */

.portfolio-empty{

    grid-column:1/-1;

    background:white;

    padding:100px 50px;

    border-radius:40px;

    text-align:center;

    box-shadow:
    0 25px 60px rgba(15,23,42,.08);
}

.portfolio-empty i{

    font-size:4rem;

    color:#1EC9F3;

    margin-bottom:25px;
}

.portfolio-empty h3{

    color:#072A52;

    font-size:2rem;

    margin-bottom:15px;
}

.portfolio-empty p{

    color:#64748b;

    max-width:500px;

    margin:auto;

    line-height:1.8;
}
/* ==========================================================
   PAGINAÇÃO
========================================================== */

.portfolio-pagination{

    margin-top:90px;

    display:flex;

    justify-content:center;
}

.portfolio-pagination nav{

    background:white;

    padding:12px;

    border-radius:20px;

    box-shadow:
    0 15px 40px rgba(15,23,42,.08);
}

.portfolio-pagination svg{

    width:18px;
    height:18px;
}
/* ==========================================================
   CTA PREMIUM
========================================================== */

.portfolio-cta{

    position:relative;

    min-height:90vh;

    display:flex;

    align-items:center;

    overflow:hidden;
}

.portfolio-cta img{

    position:absolute;

    inset:0;

    width:100%;
    height:100%;

    object-fit:cover;

    object-position:center;
}

.portfolio-cta-overlay{

    position:absolute;

    inset:0;

    background:
    linear-gradient(
    135deg,
    rgba(7,42,82,.92),
    rgba(7,42,82,.75));
}

/* GLOW */

.portfolio-cta::before{

    content:'';

    position:absolute;

    width:750px;
    height:750px;

    border-radius:50%;

    background:
    rgba(30,201,243,.15);

    top:-280px;
    right:-250px;

    filter:blur(120px);

    z-index:1;
}

.portfolio-cta .container{

    position:relative;

    z-index:5;
}
/* ==========================================================
   CONTEÚDO CTA
========================================================== */

.portfolio-cta-content{

    max-width:900px;

    margin:auto;

    text-align:center;

    color:white;
}

.portfolio-cta-content span{

    display:inline-flex;

    align-items:center;

    padding:12px 24px;

    border-radius:999px;

    background:
    rgba(255,255,255,.08);

    border:
    1px solid rgba(255,255,255,.10);

    backdrop-filter:blur(15px);

    color:#fbbf24;

    font-size:.82rem;

    font-weight:700;

    letter-spacing:2px;
}

.portfolio-cta-content h2{

    margin:30px 0 22px;

    font-size:clamp(
    2.8rem,
    5vw,
    4.5rem);

    line-height:1.1;

    font-weight:800;
}

.portfolio-cta-content p{

    max-width:700px;

    margin:0 auto 40px;

    color:
    rgba(255,255,255,.85);

    line-height:2;

    font-size:1.05rem;
}
/* ==========================================================
   BOTÕES CTA
========================================================== */

.portfolio-cta-actions{

    display:flex;

    justify-content:center;

    gap:18px;

    flex-wrap:wrap;
}

.portfolio-btn-primary{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:18px 40px;

    border-radius:999px;

    text-decoration:none;

    color:white;

    font-weight:600;

    background:
    linear-gradient(
    135deg,
    #1EC9F3,
    #56C271);

    transition:.35s ease;
}

.portfolio-btn-primary:hover{

    transform:
    translateY(-5px);

    box-shadow:
    0 20px 45px rgba(30,201,243,.25);
}

.portfolio-btn-secondary{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:18px 40px;

    border-radius:999px;

    text-decoration:none;

    color:white;

    font-weight:600;

    border:
    1px solid rgba(255,255,255,.15);

    background:
    rgba(255,255,255,.06);

    backdrop-filter:blur(15px);

    transition:.35s ease;
}

.portfolio-btn-secondary:hover{

    transform:
    translateY(-5px);

    background:
    rgba(255,255,255,.12);
}
/* ==========================================================
   RESPONSIVO
========================================================== */


/* ==========================================================
   HERO DO PROJECTO
========================================================== */

.project-hero{

    position:relative;

    min-height:100vh;

    display:flex;

    align-items:flex-end;

    overflow:hidden;

    padding-bottom:120px;
}

.project-hero img{

    position:absolute;

    inset:0;

    width:100%;
    height:100%;

    object-fit:cover;

    object-position:center;
}

.project-overlay{

    position:absolute;

    inset:0;

    background:
    linear-gradient(
    to top,
    rgba(7,42,82,.95),
    rgba(7,42,82,.75),
    rgba(7,42,82,.35));
}

/* GLOW */

.project-hero::before{

    content:'';

    position:absolute;

    width:850px;
    height:850px;

    border-radius:50%;

    background:
    rgba(30,201,243,.12);

    top:-350px;
    right:-300px;

    filter:blur(140px);

    z-index:1;
}

.project-hero::after{

    content:'';

    position:absolute;

    width:650px;
    height:650px;

    border-radius:50%;

    background:
    rgba(86,194,113,.10);

    bottom:-250px;
    left:-250px;

    filter:blur(120px);

    z-index:1;
}

.project-hero .container{

    position:relative;

    z-index:5;
}
/* ==========================================================
   CONTEÚDO HERO
========================================================== */

.project-content{

    max-width:950px;

    color:white;
}

.project-content span{

    display:inline-flex;

    align-items:center;

    padding:12px 24px;

    border-radius:999px;

    background:
    rgba(255,255,255,.08);

    border:
    1px solid rgba(255,255,255,.10);

    backdrop-filter:blur(15px);

    color:#fbbf24;

    font-size:.82rem;

    font-weight:700;

    letter-spacing:2px;
}

.project-content h1{

    margin:28px 0 35px;

    font-size:clamp(
    3rem,
    6vw,
    6rem);

    line-height:1.05;

    font-weight:800;

    color:white;
}
/* ==========================================================
   RESUMO HERO
========================================================== */

.project-summary{

    display:grid;

    grid-template-columns:
    repeat(3,1fr);

    gap:20px;

    max-width:900px;
}

.project-summary div{

    padding:25px;

    border-radius:25px;

    background:
    rgba(255,255,255,.08);

    backdrop-filter:blur(20px);

    border:
    1px solid rgba(255,255,255,.10);
}

.project-summary strong{

    display:block;

    color:#fbbf24;

    font-size:.75rem;

    font-weight:700;

    letter-spacing:2px;

    margin-bottom:10px;
}

.project-summary p{

    margin:0;

    color:white;

    font-weight:600;

    line-height:1.5;
}
/* ==========================================================
   SOBRE O EVENTO
========================================================== */

.project-about{

    position:relative;

    padding:150px 0;

    overflow:hidden;

    background:
    linear-gradient(
    180deg,
    #f8fafc,
    #ffffff);
}

.project-about::before{

    content:'';

    position:absolute;

    width:700px;
    height:700px;

    border-radius:50%;

    background:
    rgba(30,201,243,.05);

    top:-250px;
    right:-250px;

    filter:blur(120px);
}

.project-about .container{

    position:relative;

    z-index:2;
}
/* ==========================================================
   CABEÇALHO SOBRE
========================================================== */

.project-about-header{

    max-width:900px;

    margin-bottom:45px;
}

.project-about-header span{

    color:#0891b2;

    font-size:.85rem;

    font-weight:700;

    letter-spacing:3px;
}

.project-about-header h2{

    margin-top:18px;

    font-size:clamp(
    2.2rem,
    4vw,
    3.8rem);

    line-height:1.15;

    background:
    linear-gradient(
    90deg,
    #072A52,
    #1EC9F3,
    #56C271);

    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}

.project-about-content{

    max-width:950px;

    color:#64748b;

    font-size:1.05rem;

    line-height:2;
}
/* ==========================================================
   GALERIA
========================================================== */

.project-gallery{

    position:relative;

    padding:160px 0;

    overflow:hidden;

    background:white;
}

.project-gallery::before{

    content:'';

    position:absolute;

    width:700px;
    height:700px;

    border-radius:50%;

    background:
    rgba(30,201,243,.05);

    top:-250px;
    right:-250px;

    filter:blur(120px);
}

.project-gallery::after{

    content:'';

    position:absolute;

    width:600px;
    height:600px;

    border-radius:50%;

    background:
    rgba(86,194,113,.05);

    bottom:-250px;
    left:-250px;

    filter:blur(120px);
}

.project-gallery .container{

    position:relative;

    z-index:2;
}
/* ==========================================================
   CABEÇALHO GALERIA
========================================================== */

.project-gallery-header{

    max-width:850px;

    margin:0 auto 70px;

    text-align:center;
}

.project-gallery-header span{

    color:#0891b2;

    font-size:.85rem;

    font-weight:700;

    letter-spacing:3px;
}

.project-gallery-header h2{

    margin:18px 0;

    font-size:clamp(
    2.3rem,
    4vw,
    4rem);

    line-height:1.15;

    background:
    linear-gradient(
    90deg,
    #072A52,
    #1EC9F3,
    #56C271);

    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}

.project-gallery-header p{

    color:#64748b;

    line-height:1.9;

    max-width:700px;

    margin:auto;
}
/* ==========================================================
   WRAPPER SLIDER
========================================================== */

.project-slider-wrapper{

    position:relative;

    max-width:1200px;

    margin:auto;
}

.project-slider{

    position:relative;
}

.project-main-image{

    overflow:hidden;

    border-radius:38px;

    box-shadow:
    0 30px 80px rgba(15,23,42,.10);
}

.project-main-image img{

    width:100%;

    height:680px;

    object-fit:cover;

    display:block;

    transition:.6s ease;
}
/* ==========================================================
   SETAS
========================================================== */

.project-arrow{

    position:absolute;

    top:50%;

    transform:
    translateY(-50%);

    width:65px;
    height:65px;

    border:none;

    cursor:pointer;

    z-index:20;

    border-radius:50%;

    background:white;

    color:#072A52;

    font-size:1.1rem;

    box-shadow:
    0 20px 50px rgba(15,23,42,.12);

    transition:.35s ease;
}

.project-arrow:hover{

    transform:
    translateY(-50%) scale(1.08);

    color:#0891b2;
}

.project-prev{

    left:-32px;
}

.project-next{

    right:-32px;
}
/* ==========================================================
   MINIATURAS
========================================================== */

.project-thumbnails{

    display:flex;

    justify-content:center;

    gap:15px;

    flex-wrap:wrap;

    margin-top:30px;
}

.project-thumb{

    width:120px;

    height:85px;

    overflow:hidden;

    border-radius:18px;

    cursor:pointer;

    opacity:.65;

    border:3px solid transparent;

    transition:.35s ease;
}

.project-thumb img{

    width:100%;
    height:100%;

    object-fit:cover;

    display:block;
}

.project-thumb:hover{

    opacity:1;

    transform:
    translateY(-5px);
}

.project-thumb.active{

    opacity:1;

    border-color:#1EC9F3;

    box-shadow:
    0 12px 30px rgba(30,201,243,.20);
}
/* ==========================================================
   ANIMAÇÕES
========================================================== */

.project-main-image{

    position:relative;
}

.project-main-image img{

    animation:
    projectFade .6s ease;
}

@keyframes projectFade{

    from{

        opacity:.5;

        transform:scale(1.03);
    }

    to{

        opacity:1;

        transform:scale(1);
    }
}
/* ==========================================================
   HOVERS
========================================================== */

.project-main-image{

    transition:.4s ease;
}

.project-main-image:hover{

    transform:
    translateY(-6px);

    box-shadow:
    0 40px 90px rgba(15,23,42,.12);
}

.project-main-image:hover img{

    transform:
    scale(1.03);
}

.project-summary div{

    transition:.35s ease;
}

.project-summary div:hover{

    transform:
    translateY(-8px);

    background:
    rgba(255,255,255,.12);
}
/* ==========================================================
   TABLET
========================================================== */
/* ==========================================================
   SHOWCASE HERO - MOBILE
========================================================== */

@media only screen and (max-width:768px){

.showcase-hero{

    min-height:70vh;

    padding:105px 0 55px;

    align-items:center;

}

.showcase-hero img{

    object-position:center;

}

.showcase-overlay{

    background:linear-gradient(
        180deg,
        rgba(7,42,82,.92),
        rgba(7,42,82,.82)
    );

}

.showcase-hero .container{

    width:92%;

}

.showcase-content{

    max-width:100%;

    text-align:left;

}

.showcase-content span{

    display:inline-flex;

    align-items:center;

    padding:8px 16px;

    font-size:.65rem;

    letter-spacing:1px;

    margin-bottom:56px;

}

.showcase-content h1{

    font-size:1.5rem;

    line-height:1.15;

    margin-bottom:10px;

}

.showcase-content p{

    max-width:100%;

    font-size:.85rem;

    line-height:1.7;

    margin:0;

}

}
/* ==========================================================
   PORTFÓLIO MOBILE
========================================================== */

@media only screen and (max-width:768px){

/* ===========================
   HEADER
=========================== */

.portfolio-header{

    max-width:100%;

    margin:0 auto 40px;

    padding:0 10px;

    text-align:center;

}

.portfolio-header span{

    font-size:.65rem;

    letter-spacing:1px;

    margin-bottom:10px;

}

.portfolio-header h2{

    font-size:1.30rem;

    line-height:1.3;

    max-width:100%;

}

.portfolio-header::after{

    width:55px;

    height:3px;

    margin:16px auto 0;

}

/* ===========================
   GRID
=========================== */

.portfolio-grid{

    grid-template-columns:1fr;

    gap:22px;

}

/* ===========================
   CARD
=========================== */

.portfolio-card{

    border-radius:22px;

    box-shadow:0 12px 35px rgba(15,23,42,.08);

}

.portfolio-card:hover{

    transform:none;

}

/* ===========================
   IMAGEM
=========================== */

.portfolio-card-image{

    height:190px;

}

.portfolio-card:hover .portfolio-card-image img{

    transform:none;

}

/* ===========================
   CONTEÚDO
=========================== */

.portfolio-card-content{

    padding:20px;

}

/* ===========================
   TOPO
=========================== */

.portfolio-top{

    flex-direction:column;

    align-items:flex-start;

    gap:8px;

    margin-bottom:16px;

}

/* ===========================
   CATEGORIA
=========================== */

.portfolio-category{

    padding:6px 14px;

    font-size:.65rem;

}

/* ===========================
   DATA
=========================== */

.portfolio-date{

    font-size:.78rem;

}

/* ===========================
   TITULO
=========================== */

.portfolio-card-content h3{

    font-size:1.2rem;

    line-height:1.35;

    margin-bottom:18px;

}

/* ===========================
   META
=========================== */

.portfolio-meta{

    grid-template-columns:1fr;

    gap:10px;

    margin-bottom:18px;

}

.portfolio-meta div{

    padding:14px;

    border-radius:14px;

}

.portfolio-meta strong{

    font-size:.63rem;

    margin-bottom:5px;

}

.portfolio-meta p{

    font-size:.82rem;

}

/* ===========================
   DESCRIÇÃO
=========================== */

.portfolio-description{

    padding-top:14px;

    font-size:.84rem;

    line-height:1.7;

}

/* ===========================
   LINK
=========================== */

.portfolio-link{

    margin-top:16px;

    font-size:.85rem;

}

.portfolio-card:hover .portfolio-link{

    gap:10px;

}

/* ===========================
   EMPTY
=========================== */

.portfolio-empty{

    padding:45px 20px;

    border-radius:20px;

}

.portfolio-empty i{

    font-size:2.5rem;

    margin-bottom:16px;

}

.portfolio-empty h3{

    font-size:1.3rem;

}

.portfolio-empty p{

    font-size:.85rem;

    line-height:1.7;

}

/* ===========================
   PAGINAÇÃO
=========================== */

.portfolio-pagination{

    margin-top:40px;

}

.portfolio-pagination nav{

    padding:8px 10px;

    border-radius:14px;

}

.portfolio-pagination svg{

    width:14px;

    height:14px;

}

/* ===========================
   CTA
=========================== */

.portfolio-cta{

    min-height:auto;

    padding:80px 0;

}

.portfolio-cta::before{

    width:280px;

    height:280px;

    top:-120px;

    right:-120px;

    filter:blur(70px);

}

.portfolio-cta-content{

    max-width:100%;

}

.portfolio-cta-content span{

    padding:8px 16px;

    font-size:.65rem;

    letter-spacing:1px;

}

.portfolio-cta-content h2{

    margin:18px 0 14px;

    font-size:1.7rem;

    line-height:1.2;

}

.portfolio-cta-content p{

    font-size:.9rem;

    line-height:1.7;

    margin-bottom:24px;

}

/* ===========================
   BOTÕES
=========================== */

.portfolio-cta-actions{

    flex-direction:column;

    gap:12px;

}

.portfolio-btn-primary,
.portfolio-btn-secondary{

    width:100%;

    padding:14px 18px;

    font-size:.88rem;

    border-radius:999px;

}

.portfolio-btn-primary:hover,
.portfolio-btn-secondary:hover{

    transform:none;

}

}

/* ==========================================================
   PROJECT PAGE MOBILE
========================================================== */

@media only screen and (max-width:768px){

/* ==========================================================
   HERO
========================================================== */

.project-hero{

    min-height:72vh;

    padding:110px 0 50px;

    display:flex;

    align-items:center;

}

.project-overlay{

    background:linear-gradient(
        180deg,
        rgba(7,42,82,.94),
        rgba(7,42,82,.82)
    );

}

.project-hero::before{

    width:250px;
    height:250px;

    top:-100px;
    right:-100px;

    filter:blur(70px);

}

.project-hero::after{

    width:180px;
    height:180px;

    left:-60px;
    bottom:-60px;

    filter:blur(60px);

}

.project-content{

    max-width:100%;

    text-align:left;

}

.project-content span{

    padding:8px 14px;

    font-size:.62rem;

    letter-spacing:1px;

}

.project-content h1{

    margin:18px 0;

    font-size:1.9rem;

    line-height:1.2;

}

/* ==========================================================
   RESUMO
========================================================== */

.project-summary{

    grid-template-columns:1fr;

    gap:12px;

    max-width:100%;

}

.project-summary div{

    padding:16px;

    border-radius:18px;

}

.project-summary strong{

    font-size:.65rem;

    letter-spacing:1px;

    margin-bottom:6px;

}

.project-summary p{

    font-size:.88rem;

    line-height:1.5;

}

/* ==========================================================
   SOBRE
========================================================== */

.project-about{

    padding:80px 0;

}

.project-about::before{

    width:300px;

    height:300px;

    top:-120px;

    right:-120px;

    filter:blur(70px);

}

.project-about-header{

    max-width:100%;

    margin-bottom:25px;

}

.project-about-header span{

    font-size:.65rem;

    letter-spacing:2px;

}

.project-about-header h2{

    margin-top:12px;

    font-size:1.3rem;

    line-height:1.2;

}

.project-about-content{

    max-width:100%;

    font-size:.90rem;

    line-height:1.8;

}

/* ==========================================================
   REMOVE HOVERS
========================================================== */

.project-summary div:hover{

    transform:none;

}

}
/* ==========================================================
   PROJECT GALLERY MOBILE
========================================================== */

@media only screen and (max-width:768px){

/* GALERIA */

.project-gallery{

    padding:80px 0;

}

.project-gallery::before{

    width:280px;

    height:280px;

    top:-120px;

    right:-120px;

    filter:blur(70px);

}

.project-gallery::after{

    width:220px;

    height:220px;

    left:-100px;

    bottom:-100px;

    filter:blur(60px);

}

/* HEADER */

.project-gallery-header{

    max-width:100%;

    margin:0 auto 30px;

    text-align:center;

}

.project-gallery-header span{

    font-size:.65rem;

    letter-spacing:2px;

}

.project-gallery-header h2{

    margin:10px 0;

    font-size:1.6rem;

    line-height:1.2;

}

.project-gallery-header p{

    font-size:.88rem;

    line-height:1.7;

    max-width:100%;

}

/* SLIDER */

.project-slider-wrapper{

    width:100%;

}

.project-main-image{

    border-radius:20px;

    box-shadow:0 12px 35px rgba(15,23,42,.10);

}

.project-main-image img{

    width:100%;

    height:240px;

    object-fit:cover;

}

/* SETAS */

.project-arrow{

    width:40px;

    height:40px;

    font-size:.8rem;

    top:50%;

}

.project-prev{

    left:8px;

}

.project-next{

    right:8px;

}

/* MINIATURAS */

.project-thumbnails{

    gap:8px;

    margin-top:15px;

    justify-content:center;

}

.project-thumb{

    width:65px;

    height:50px;

    border-radius:10px;

    border:2px solid transparent;

}

.project-thumb.active{

    border-width:2px;

}

/* REMOVE HOVERS */

.project-main-image:hover{

    transform:none;

    box-shadow:0 12px 35px rgba(15,23,42,.10);

}

.project-main-image:hover img{

    transform:none;

}

.project-thumb:hover{

    transform:none;

    opacity:.65;

}

.project-summary div:hover{

    transform:none;

    background:rgba(255,255,255,.08);

}

}