/* FONTE LOCAL */
@font-face {
    font-family: 'AliceCustom';
    src: url('../fonts/Alice_in_Wonderland_3.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

* {
    font-family: 'AliceCustom', serif !important;
}

html, body {
    max-width: 100%;
    overflow-x: hidden;
}

body {
    margin: 0;
    max-width: 100%;
    background: #000000;
    color: #b38728;
    overflow-x: hidden;
    padding-top: 80px;
    box-sizing: border-box;
    font-size: clamp(20px, 2.5vw, 28px);
    line-height: 1.5;
}

/* FONTE APENAS PARA OS TÍTULOS */
h1, h2, h3, .perfil h1, .titulo-bloco, .titulo-videos, .titulo-local, .titulo-contador, .menu-header span {
    font-weight: normal;
    font-size: clamp(30px, 5vw, 46px) !important;
    margin: 20px;
    letter-spacing: 1px;
}

/* FONTE APENAS PARA OS TÍTULOS PRINCIPAIS*/
h2, .perfil h1, .titulo-bloco, .titulo-videos, .titulo-local, .titulo-contador, .menu-header span {
    font-weight: normal;
    font-size: clamp(40px, 5vw, 56px) !important;
    margin: 0px;
    letter-spacing: 1px;
}

/* TEXTOS DESCRITIVOS (Hero e Blocos) */
.hero p, .bloco p, .frase, .local-info p, .presente-card p {
    font-size: clamp(24px, 3vw, 30px) !important;
    line-height: 1.6;
}

/* TOPO */
.topo {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    
    display: flex;
    justify-content: space-between;
    align-items: center;

    padding: 0px 20px;
    background: #111;
    color: #fff;

    z-index: 1000;
    box-sizing: border-box;
}

.logo-topo {
    height: 60px;
    object-fit: contain;
}

.menu-icon {
    font-size: 26px;
    cursor: pointer;
    color: #fff;	
}

/* MENU IOS */
.menu-ios {
    position: fixed;
    top: 0;
    right: -320px;
    width: 300px;
    height: 100%;
    backdrop-filter: blur(18px);
    background: rgba(20,20,20,0.75);
    color: #b38728;
    z-index: 1100;
    display: flex;
    flex-direction: column;
    transition: 0.4s ease;
    box-shadow: -10px 0 40px rgba(0,0,0,0.25);
    font-size: 22px !important;
}

.menu-ios.ativo {
    right: 0;
}

.menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    font-size: 18px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.menu-header button {
    background: none;
    border: none;
    color: white;
    font-size: 22px;
    cursor: pointer;
}

.menu-ios nav {
    display: flex;
    flex-direction: column;
    padding: 10px;
}

.menu-ios a {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 14px 16px;
    margin: 5px 0;
    border-radius: 12px;
    text-decoration: none;
    color: #b38728;
    transition: 0.25s;
}

.menu-ios .icon {
    font-size: 20px;
}

.menu-ios a:hover {
    background: rgba(255,255,255,0.1);
    transform: translateX(5px);
}

/* OVERLAY */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
    z-index: 1050;
}

.overlay.ativo {
    opacity: 1;
    visibility: visible;
}

/* CAPA */
.capa {
    position: relative;
    height: 70vh;
    overflow: hidden;
    padding-top: 70px;
}

/* SLIDES */
.slideshow {
    position: absolute;
    top: 70px;
    left: 50%;
    transform: translateX(-50%);
    
    width: calc(100% - 40px);
    height: calc(100% - 70px);
    
    border-radius: 16px;
    overflow: hidden;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;

    opacity: 0;
    transition: opacity 1s;

    /* REMOVE daqui */
    border-radius: 0;
}

.slide.ativo {
    opacity: 1;
}

/* RESPONSIVIDADE */
@media (max-width: 600px) {
    .slideshow {
        width: calc(100% - 20px);
        border-radius: 12px;
    }
}

/* PERFIL CENTRAL */
.perfil {
    position: absolute;
    top: 70px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: white;
    z-index: 500;
}

.foto-perfil {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    
    width: 120px; 
    height: 120px;
    
    padding: 5px; 
    background: linear-gradient(45deg, #8a6d3b, #e2c98d, #bf953f, #fcf6ba, #b38728);
    border-radius: 50%; 
    
    border: none;
    object-fit: cover;
    display: block;
    box-shadow: 0 8px 25px rgba(0,0,0,0.25);
    z-index: 5;
}

.perfil h1 {
    margin-top: 80px;
    font-size: 32px;
    color: #00BEB6;

    -webkit-text-stroke: 3px #000;
    paint-order: stroke fill;
    line-height: 0.8;
    filter: drop-shadow(0px 5px 10px rgba(0, 0, 0, 0.8));
}

.img-personagem {
    margin-top: 20px;
    width: 100%;
    max-width: 380px;
    height: auto;
    display: block;

    filter: drop-shadow(0px 16px 20px rgba(0,0,0,0.8));
}

@media (max-width: 768px) {
    .img-personagem {
        margin-top: 40px;
        margin-bottom: 20px; 
    }
}

/* HERO */
.hero {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 30px;
    padding: 20px 40px;
    align-items: center;
}

.hero img {
    width: 100%;
    transition: 0.4s;
    cursor: pointer;
    object-fit: cover;
    aspect-ratio: 4 / 3;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    border-radius: 30px;
    padding: 5px;
    background: linear-gradient(45deg, #8a6d3b, #e2c98d, #bf953f, #fcf6ba, #b38728);
}

.hero img:hover {
    transform: scale(1.03);
    filter: brightness(1.2) contrast(1.1);
    box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}

/* SCROLL ROLAGEM */

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 600;
    display: none;
    pointer-events: none;
    text-align: center;
}

/* só aparece no mobile */
@media (max-width: 600px) {
    .scroll-indicator {
        display: block;
    }
}

.scroll-indicator p {
    margin-top: 8px;
    font-size: 14px;
    color: #b38728;
    letter-spacing: 1px;
    text-transform: uppercase;
    opacity: 0.8;
    animation: fadeTexto 2s infinite;
    animation-delay: 1s;
}

@keyframes fadeTexto {
    0%, 100% { opacity: 0; }
    50% { opacity: 1; }
}

.scroll-indicator span {
    margin: 0 auto;
    display: block;
    width: 24px;
    height: 24px;
    border-left: 3px solid #b38728;
    border-bottom: 3px solid #b38728;
    transform: rotate(-45deg);
    animation: setaAnimada 2s infinite;
    animation-delay: 1s;
}

@keyframes setaAnimada {
    0% {
        opacity: 0;
        transform: translateY(-10px) rotate(-45deg);
    }
    50% {
        opacity: 1;
        transform: translateY(0) rotate(-45deg);
    }
    100% {
        opacity: 0;
        transform: translateY(10px) rotate(-45deg);
    }
}

/* MOSAICO NICE */
.mosaico-nice {
    display: grid;
    grid-template-columns: 1fr 1fr; 
    gap: 20px;
    padding: 20px 40px;
    max-width: 1200px;
    margin: 0 auto;
    box-sizing: border-box; 
}

.mosaico-nice div {
    width: 100%;
    height: 100%;
}

.mosaico-nice img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    cursor: pointer;
    transition: 0.4s;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    border-radius: 30px;
    padding: 5px;
    background: linear-gradient(45deg, #8a6d3b, #e2c98d, #bf953f, #fcf6ba, #b38728);
    box-sizing: border-box;
}

/* IMAGEM GRANDE (DIREITA) */
.item-grande {
    grid-column: 2;
    grid-row: 1 / span 2;
}

/* AJUSTE DE PROPORÇÃO DAS MENORES */
.item-pequeno img, 
.item-media img {
    aspect-ratio: 4 / 3;
}

/* HOVER */
.mosaico-nice img:hover {
    transform: scale(1.02);
    filter: brightness(1.1);
}

/* RESPONSIVO */
@media (max-width: 768px) {
    .mosaico-nice {
        grid-template-columns: 1fr;
        padding: 20px 40px;
    }
    
    .item-grande {
        grid-column: auto;
        grid-row: auto;
    }

    .item-grande img,
    .item-pequeno img, 
    .item-media img {
        aspect-ratio: 4 / 3;
        height: auto;
    }
}

/* BLOCO */

.titulo-bloco {
    font-size: 28px;
    margin: 40px 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.titulo-bloco::before,
.titulo-bloco::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 80px;
    height: 2px;
    background: #ccc;
}

.titulo-bloco::before { left: -100px; }
.titulo-bloco::after { right: -100px; }


@media (max-width: 600px) {
    .titulo-bloco::before,
    .titulo-bloco::after {
        display: none;
    }
}

.bloco {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 30px;
    padding: 20px 40px;
    align-items: center;
}

.bloco img {
    width: 100%;
    cursor: pointer;
    transition: 0.4s;
    object-fit: cover;
    aspect-ratio: 4 / 3;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    border-radius: 30px;
    padding: 5px;
    background: linear-gradient(45deg, #8a6d3b, #e2c98d, #bf953f, #fcf6ba, #b38728);
}

.bloco img:hover {
    transform: scale(1.03);
    filter: brightness(1.2) contrast(1.1);
    box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}

.frasebloco-img {
    width: 100%;
    height: 220px;

    background-image: url("../imghome/siga_desktop.webp");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;

    margin: 60px auto;
}

@media (max-width: 600px) {
    .frasebloco-img {
        background-image: url("../imghome/siga_mobile.webp");
        height: 180px;
        margin: 0px auto;
    }
}

.frasebloco1-img {
    width: 100%;
    height: 220px;

    background-image: url("../imghome/quantotempo_desk.webp");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;

    margin: 60px auto;
}

@media (max-width: 600px) {
    .frasebloco1-img {
        background-image: url("../imghome/quantotempo_mob.webp");
        height: 180px;
        margin: 0px auto;
    }
}

/* GALERIA */
.galeria {
    width: 100%;
    overflow: hidden;
    padding: 40px;
    position: relative;
}

.carousel {
    overflow: hidden;
    width: 100%;
}

.carousel-track {
    display: flex;
    gap: 20px;
    width: max-content;
    animation: scrollInfinito 25s linear infinite;
}

.carousel-track img {
    height: 200px;
    border-radius: 12px;
    cursor: pointer;
    transition: 0.4s;
    transform: scale(0.9);
    opacity: 0.7;
}

.carousel-track img:hover {
    transform: scale(1.03);
    opacity: 1;
}

/* DUPLICAÇÃO SUAVE */
@keyframes scrollInfinito {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-50% - 10px));
    }
}

/* CARROSSEL 3D */
.carrossel-3d {
    width: 100%;
    height: 260px;
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: 1200px;
}

.carrossel-container {
    position: relative;
    width: 100%;
    max-width: 400px;
    height: 200px;

    transform-style: preserve-3d;
    animation: girar 25s linear infinite;

    display: flex;
    justify-content: center;
    align-items: center;
}

.carrossel-container img {
    position: absolute;
    width: 250px;
    height: 250px;
    object-fit: cover;
    border-radius: 12px;
    left: 50%;
    top: 50%;
    transform-origin: center;
    cursor: pointer;
    transition: transform 0.5s ease, filter 0.5s;
}

.carrossel-container:hover {
    animation-play-state: paused;
}

.carrossel-container img:hover {
    filter: brightness(1.2) contrast(1.1);
}

/* animação */
@keyframes girar {
    from { transform: rotateY(360deg); }
    to { transform: rotateY(0deg); }
}

/* BLOCO INVERTIDO */
.invertido {
    grid-template-columns: 1fr 1.5fr;
}

/* MINI MOSAICO */
.mini-mosaico {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    padding: 20px;
    max-width: 100%;
    margin: 0 auto;
    box-sizing: border-box;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.mini-mosaico img {

    flex: 1 1 calc(45%); 
    
    max-width: 300px;
    min-width: 0;
    
    aspect-ratio: 4 / 3;
    object-fit: cover;
    cursor: pointer;
    transition: 0.4s;
    border-radius: 30px;
    padding: 5px;
    background: linear-gradient(45deg, #8a6d3b, #e2c98d, #bf953f, #fcf6ba, #b38728);
    box-sizing: border-box;
}

@media (max-width: 400px) {
    .mini-mosaico {
        gap: 10px;
        padding: 20px;
    }
    
    .mini-mosaico img {
        flex: 1 1 100%;
        max-width: 100%;
    }
}

/* FOOTER */
.footer {
    background: #111;
    color: #00BEB6;
    text-align: center;
    padding: 40px 20px;
    margin-top: 0px;
}

/* link do domínio */
.footer-credit a {
    color: #b38728;
    text-decoration: none;
    transition: 0.3s;
}

.footer-credit {
    color: #b38728;
}

.footer-credit a:hover {
    text-decoration: underline;
    text-shadow: 0 0 6px rgba(179, 135, 40, 0.6);
    opacity: 0.9;
}
.dev-credit {
    font-size: 18px;
    opacity: 0.7;
    display: block;
    margin-top: 5px;
}

/* LIGHTBOX */
.lightbox {
    position: fixed;
    display: none;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.9);
    justify-content: center;
    align-items: center;
    z-index: 2000;
}

.lightbox img {
    max-width: 90%;
    max-height: 90%;
}

.copyright-icon::before {
    content: "\00A9";
    font-family: Arial, sans-serif;
    margin-right: 5px;
    font-size: 1rem;
    vertical-align: middle;
    color: #b38728;
}

/* ANIMAÇÃO */
.animar {
    opacity: 0;
    transform: translateY(40px);
    transition: 0.6s;
}

.animar.visivel {
    opacity: 1;
    transform: translateY(0);
}

/* RESPONSIVO */
@media (max-width: 900px) {
    .hero, .bloco, .invertido {
        grid-template-columns: 1fr;
    }

    .mosaico-nice {
        grid-template-columns: 1fr 1fr;
    }

    .mini-mosaico {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 500px) {
    .mosaico-nice,
    .mini-mosaico {
        grid-template-columns: 1fr;
    }

    .pequena img,
    .media img,
    .grande img {
        height: auto;
    }

    .galeria img {
        height: 150px;
    }
}

/* VÍDEOS */
.videos {
    padding: 20px 20px;
    text-align: center;
}

.titulo-videos {
    font-size: 28px;
    margin-bottom: 0px;
    position: relative;
}

.videos-container {
    max-width: 900px;
    margin: auto;
    background: #111;
    padding: 20px;
    border-radius: 14px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

@media (max-width: 600px) {
    .titulo-videos::before,
    .titulo-videos::after {
        display: none;
    }
}

/* VIDEO PRINCIPAL */
.video-principal iframe {
    width: 100%;
    height: 350px;
    border-radius: 10px;
    opacity: 1;
    transition: opacity 0.4s ease;
}

.video-principal.fade iframe {
    opacity: 0;
}

/* THUMBS */
.video-thumbs {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
    flex-wrap: wrap;
    max-width: 100%;
}

.video-thumbs img {
    width: 150px;
    border-radius: 10px;
    cursor: pointer;
    transition: 0.3s;
}

.video-thumbs img:hover {
    transform: scale(1.03);
}

/* thumb ativa */
.video-thumbs img.ativo {
    transform: scale(1.08);
    border: 2px solid #000;
}

/* RESPONSIVO */
@media (max-width: 600px) {
    .video-principal iframe {
        height: 220px;
    }

    .video-thumbs img {
        width: 100px;
    }

    .titulo-videos::before,
    .titulo-videos::after {
        display: none;
    }
}

/* LOCAL */
.local {
    padding: 20px 20px;
    background: #000000;
    text-align: center;
}

.titulo-local {
    font-size: 28px;
    margin-bottom: 0px;
}

.local-container {
    max-width: 1000px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 30px;
    align-items: center;
}

.local-info {
    text-align: left;
}

.data-evento {
    margin: 15px 0;
    font-size: 16px;
}

/* RESPONSIVO */
@media (max-width: 700px) {
    .local-container {
        grid-template-columns: 1fr;
    }

    .local-info {
        text-align: center;
    }
}

/* BOTÕES */

.botoes-local .btn {
    min-width: 140px;
    text-align: center;
}

.botoes-local {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
}

.btn {
    padding: 12px 18px;
    background: #444;
    color: #fff;
    border-radius: 8px;
    text-decoration: none;
    transition: 0.3s;
}

.btn:hover {
    background: #333;
}

.btn-maps {
    background: #444;
}

/* RESPONSIVO */
@media (max-width: 600px) {
    .botoes-local {
        display: flex;
        justify-content: center;
        gap: 10px;
        flex-wrap: nowrap;
    }

    .botoes-local .btn {
        flex: 1;
        max-width: 160px;
        padding: 10px;
        font-size: 14px;
    }
}

/* RSVP */
.rsvp {
    padding: 10px 20px;
    text-align: center;
    background: #000000;
}

.btn-rsvp {
    display: inline-block;
    margin-top: 20px;
    padding: 14px 22px;
    color: #000;
    border-radius: 10px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-align: center;
}

.btn-rsvp:hover {
    transform: scale(1.03);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    filter: brightness(1.1);
}

.contador-evento {
    text-align: center;
    padding: 20px 20px;
}

.titulo-contador {
    font-size: 28px;
    margin-bottom: 30px;
}

/* RELÓGIO */
.relogio {
    position: relative;
    width: 220px;
    height: 220px;
    margin: 0 auto 30px;
}

.relogio-base {
    width: 100%;
}

/* ponteiros */
.ponteiro {
    position: absolute;
    top: 50%;
    left: 50%;
    transform-origin: bottom center;
    transform: translate(-50%, -100%) rotate(0deg);
}

.ponteiro-hora {
    width: 6px;
    height: 50px;
    background: #000;
    border-radius: 3px;
}

.ponteiro-minuto {
    width: 4px;
    height: 70px;
    background: #333;
    border-radius: 3px;
}

.ponteiro-segundo {
    width: 2px;
    height: 90px;
    background: red;
}

/* CONTADOR DIGITAL */
.contador-digital {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.contador-digital div {
    background: #111;
    color: #b38728;
    padding: 15px 20px;
    border-radius: 10px;
    min-width: 70px;
}

.contador-digital span {
    font-size: 26px;
    font-weight: bold;
}

.contador-digital p {
    font-size: 16px;
    margin: 0;
    opacity: 0.7;
}

/* PRESENTES */
#lista-presentes {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    justify-content: center;
    gap: 20px;
    padding: 20px;
}

.presente-card {
    background: #fff;
    padding: 15px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.presente-card img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 10px;
    display: block;
}

.presente-card a {
    display: block;
    margin: 10px 0;
    text-decoration: none;
    color: #000;
    font-weight: bold;
}

.presente-card button {
    width: 100%;
    padding: 10px;
    border: none;
    color: #000 !important;
    border-radius: 8px;
    cursor: pointer;
    font-size: 18px !important;
    font-weight: 600;
    
    background-color: #00BEB6 !important; 
    
    background: linear-gradient(135deg, #00BEB6 0%, #39a39f 100%) !important;
    
    box-shadow: 0 4px 15px rgba(0, 190, 182, 0.3);
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: block;
}

.presente-card button:hover {
    transform: translateY(-2px);
    background: linear-gradient(135deg, #39a39f 0%, #00BEB6 100%) !important;
    box-shadow: 0 7px 20px rgba(0, 190, 182, 0.5);
    filter: brightness(1.1);
}

.banner-wrapper {
    padding: 0 20px;
    margin: 20px 0 20px;
}

.banner-wrapper p {
    margin: 0;
    text-align: center;
    color: #00BEB6;
}

.banner-presentes {
    width: 100%;
    height: auto;
    aspect-ratio: 1280 / 191;

    background-image: url("../imghome/listapresentedesktop1.webp");
    background-size: contain;
    background-position: center;

    border-radius: 12px;
}

/* mobile */
@media (max-width: 600px) {
    .banner-presentes {

        background-image: url("../imghome/lista presente mobile.webp");
        height: 140px;
        background-size: contain;
        background-position: center;
        background-repeat: no-repeat;
    }
}


/* OVERLAY INICIAL */
#introOverlay{
    position:fixed;
    inset:0;
    background:#000;
    display:flex;
    align-items:center;
    justify-content:center;
    z-index:9999;
    touch-action: none;
}

.intro-content{
    text-align:center;
    max-width:500px;
    padding:20px;
}

/* AREA DE CORTE */
.gato-crop{
    width:260px;
    height:200px;
    overflow:hidden;
    margin:auto;
    margin-bottom:25px;
    position:relative;
}

/* GIF AJUSTADO */
.gato{
    width:360px;
    position:absolute;
    left:-50px;
    top:-110px;
}

/* CONVITE */
.frase-img{
    width: 100%;
    max-width: 420px;
    height: auto;
    margin: 0 auto 25px auto;
    display: block;
    opacity: 0.95;
    filter: drop-shadow(0 0 8px rgba(255,255,255,0.2));
}

/* BOTÃO CHESHIRE ENTRAR*/
.btn-entrar {
    font-size: clamp(18px, 2vw, 24px) !important;
    padding: 12px 45px !important;
    
    background: linear-gradient(135deg, #00BEB6 0%, #39a39f 100%);
    color: #fff !important; 
    
    border: none;
    border-radius: 50px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    
    box-shadow: 0 4px 15px rgba(0, 190, 182, 0.3);
    
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

/* Efeito de Brilho ao passar o mouse */
.btn-entrar:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 190, 182, 0.5);
    background: linear-gradient(135deg, #4DDAD4 0%, #00BEB6 100%);
}

/* Feedback visual de clique */
.btn-entrar:active {
    transform: translateY(-1px);
    box-shadow: 0 4px 10px rgba(0, 190, 182, 0.3);
}

/* Efeito de luz passando */
.btn-entrar::after {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: 0.5s;
}

.btn-entrar:hover::after {
    left: 100%;
}

/* 🔒 BLOQUEIA SCROLL */
body.travado {
    overflow: hidden !important;
    height: 100vh !important;
    position: fixed;
    width: 100%;
}

html {
    scroll-behavior: smooth;
}

[id] {
    scroll-margin-top: 100px;
}

@media (max-width: 600px) {
    [id] {
        scroll-margin-top: 85px; 
    }
}

/* =========================
   BORDA DOURADA PADRÃO (REUTILIZÁVEL)
========================= */

.borda-dourada {
    padding: 5px;
    border-radius: 30px;
    background: linear-gradient(45deg, #8a6d3b, #e2c98d, #bf953f, #fcf6ba, #b38728);
    box-sizing: border-box;
}