
    /* VARIÁVEIS */
    :root{
        --azul-escuro:#37476B;
        --azul-claro:#A8B2CB;
        --dourado:#C49D4E;
        --cinza:#B9ABA0;
    }

    @font-face {
        font-family: 'Material Symbols Outlined';
        src: url('/assets/fonts/MaterialSymbolsOutlined.woff2') format('woff2');
        font-weight: normal;
        font-style: normal;
    }

    .material-symbols-outlined {
        font-family: 'Material Symbols Outlined';
        font-weight: normal;
        font-style: normal;
        font-size: 24px;
        display: inline-block;
        line-height: 1;
        letter-spacing: normal;
        text-transform: none;
        white-space: nowrap;
        direction: ltr;
        -webkit-font-smoothing: antialiased;
    }
    
    /* RESET */
    *{
        margin:0;
        padding:0;
        box-sizing:border-box;
        font-family:'Arial', sans-serif;
    }
    
    html{
        scroll-behavior:smooth;
    }
    
    body{
        color:var(--azul-escuro);
        background:linear-gradient(135deg, #eaeaea, #d6d6d6);
        overflow-x:hidden;
    }

    body.noScroll{
        overflow-y:hidden;
    }

    /* ================= MENU ================= */
    header{
        position:fixed;
        top:0;
        width:100%;
        background:white;
        box-shadow:0 2px 10px rgba(0,0,0,.1);
        z-index:1000;
    
        transform:translateY(0);
        opacity:1;
        pointer-events:auto;
        transition:transform .5s ease, opacity .5s ease;
    }
    
    header.hide-menu{
        transform:translateY(-100%);
        opacity:0;
        pointer-events:none;
    }
    
    nav{
        display:flex;
        justify-content:space-between;
        align-items:center;
        padding:15px 30px;
    }
    
    nav ul{
        display:flex;
        list-style:none;
        gap:25px;
    }
    
    nav a{
        text-decoration:none;
        color:var(--azul-escuro);
        font-weight:bold;
    }
    
    .menu-mobile{
        display:none;
        font-size:26px;
        cursor:pointer;
    }
    
    /* ================= MENU LATERAL ================= */
    .menu-lateral{
        position:fixed;
        top:0;
        right:-100%;
        width:250px;
        height:100%;
        background:white;
        box-shadow:-2px 0 10px rgba(0,0,0,.2);
        padding:30px;
        z-index:2000;
        transition:.3s;
    }
    
    .menu-lateral ul{
        list-style:none;
    }
    
    .menu-lateral li{
        margin:20px 0;
    }
    
    .menu-lateral a{
        text-decoration:none;
        color:var(--azul-escuro);
        font-size:18px;
    }
    
    /* ================= SEÇÕES ================= */
    .section{
        padding: 50px 20px;
        text-align:center;
    }
    
    .titulo{
        font-family: 'Lobster', cursive;
        font-size:48px;
        font-weight: 400;
        margin-bottom:20px;
        color:var(--azul-escuro);
        letter-spacing: 1px;
    }
    
    /* HOME */
    #home{
        background:url("fotos/bg_noivos.png") center/cover no-repeat;
        min-height:100vh;
        display:flex;
        align-items:center;
        justify-content:center;
        color:white;
        position:relative;
    }
    
    #home::before{
        content:"";
        position:absolute;
        inset:0;
        background:rgba(55,71,107,.6);
    }
    
    .home-content{
        position:relative;
        z-index:2;
    }
    
    .home-content h1{
        font-size:40px;
        margin-bottom:20px;
    }
    
    .home-content p{
        font-size:22px;
    }
    
    /* SAVE THE DATE */
    #save-date{
        background:
            radial-gradient(circle at top, rgba(255, 255, 255, 0.6), transparent 55%),
            linear-gradient(180deg, #f4edf7 0%, #ecf1fa 100%);
    }

    .save-date-card p {
        font-size:1.6rem !important;
    }

    .save-date-card {
        margin: 20px auto 0;
        width: min(560px, 92%);
        background: linear-gradient(160deg, rgba(255, 255, 255, 0.96), rgba(246, 239, 226, 0.88));
        border: 1px solid rgba(196, 157, 78, 0.5);
        border-radius: 24px;
        padding: clamp(24px, 4vw, 34px) clamp(20px, 4vw, 30px);
        box-shadow: 0 16px 34px rgba(55, 71, 107, 0.14);
    }

    .save-date-icon {
        width: clamp(62px, 8vw, 78px);
        height: clamp(62px, 8vw, 78px);
        margin: 0 auto 12px;
        border-radius: 50%;
        display: grid;
        place-items: center;
        background: linear-gradient(135deg, rgba(196, 157, 78, 0.2), rgba(55, 71, 107, 0.15));
        color: var(--azul-escuro);
        font-size: clamp(34px, 3.9vw, 40px);
    }

    .save-date-icon-clickable {
        text-decoration: none;
        cursor: pointer;
        animation: pulseCalendarIcon 1.9s ease-in-out infinite;
    }

    .save-date-icon-clickable:hover {
        animation-play-state: paused;
        transform: scale(1.06);
    }

    .save-date-date-layout {
        display: grid;
        grid-template-columns: minmax(92px, 1fr) auto auto auto minmax(92px, 1fr);
        align-items: center;
        justify-content: center;
        gap: clamp(8px, 2vw, 14px);
        margin-top: 10px;
        width: min(100%, 520px);
        margin-left: auto;
        margin-right: auto;
    }

    .save-date-block {
        font-family: 'Montserrat', sans-serif;
        margin: 0;
        color: var(--azul-escuro);
        line-height: 1.2;
        white-space: nowrap;
    }

    .save-date-weekday {
        font-size: clamp(1.05rem, 2.6vw, 1.35rem);
        letter-spacing: 1px;
        color: #5f6883;
        font-weight: 600;
        text-align: center;
        font-family: 'Lobster', cursive;
    }

    .save-date-main-date {
        font-size: clamp(1.4rem, 4vw, 2.05rem);
        font-weight: 700;
        text-transform: capitalize;
        color: #2f3c60;
        line-height: 1.1;
        text-shadow: 0 1px 0 rgba(255, 255, 255, 0.55);
    }

    .save-date-separator {
        width: 1px;
        height: clamp(46px, 8vw, 62px);
        background: linear-gradient(
            180deg,
            rgba(196, 157, 78, 0.2),
            rgba(196, 157, 78, 0.95),
            rgba(196, 157, 78, 0.2)
        );
        display: inline-block;
    }

    .save-date-time {
        font-family: 'Lobster', cursive;
        font-size: clamp(1.35rem, 3vw, 1.9rem);
        color: #a37f3f;
        letter-spacing: 0.4px;
        text-transform: lowercase;
        text-align: center;
    }

    @keyframes pulseCalendarIcon {
        0% {
            transform: scale(1);
            box-shadow: 0 0 0 0 rgba(55, 71, 107, 0.3);
        }
        70% {
            transform: scale(1.04);
            box-shadow: 0 0 0 14px rgba(55, 71, 107, 0);
        }
        100% {
            transform: scale(1);
            box-shadow: 0 0 0 0 rgba(55, 71, 107, 0);
        }
    }
    
    #cronometro{
        display:flex;
        justify-content:center;
        gap:20px;
        flex-wrap:wrap;
        margin-top:30px;
    }
    
    .tempo{
        background:white;
        padding:20px;
        border-radius:10px;
        min-width:90px;
        box-shadow:0 4px 10px rgba(0,0,0,.1);
    }
    
    .tempo span{
        font-size:28px;
        font-weight:bold;
    }
    
    /* NOIVOS */
    #noivos .fotos{
        display:flex;
        justify-content:center;
        gap:40px;
        margin-top:30px;
    }
    
    #noivos img{
        width:150px;
        height:150px;
        border-radius:50%;
        object-fit:cover;
        border:5px solid var(--dourado);
    }
    
    /* LOCAL */
    #local iframe{
        width:100%;
        max-width:600px;
        height:300px;
        border:0;
        border-radius:10px;
    }
    
    /* CONFIRMAÇÃO */
    #confirmar button{
        background:var(--azul-escuro);
        color:white;
        border:none;
        padding:15px 30px;
        font-size:18px;
        border-radius:8px;
        cursor:pointer;
    }
    
    #confirmar button:disabled{
        background:gray;
        cursor:not-allowed;
    }
    
    /* PRESENTES */
    #presentes{
        background:var(--azul-claro);
    }

    #icon-pix {
        width: 20px;
        height: 20px;
        fill: var(--azul-escuro);
    }
    
    .pix {
        background: white;
        display: inline-flex;
        flex-direction: column;
        align-items: center;
        padding: 24px 32px;
        border-radius: 12px;
        margin-top: 20px;
        box-shadow: 0 4px 10px rgba(0,0,0,.1);
        color: var(--azul-escuro);
    }

    .pix-wrapper {
        margin-top: 20px;
        display: flex;
        justify-content: center;
        gap: 16px;
        flex-wrap: wrap;
    }
    
    .pix-top {
        display: flex;
        align-items: center;
        gap: 8px;
        margin-bottom: 10px;
    }
    
    .pix-label {
        font-size: 14px;
        opacity: .8;
    }
    
    .pix-key {
        font-size: 18px;
        font-weight: 600;
        margin-bottom: 4px;
    }
    
    .pix-nome {
        font-size: 14px;
        opacity: .6;
    }
    
    .icon-copy {
        font-size: 20px;
        cursor: pointer;
        transition: transform .2s ease, opacity .2s ease;
    }
    
    .icon-copy:hover {
        transform: scale(1.1);
        opacity: .8;
    }

    .sugestoes-toolbar {
        width: min(980px, 100%);
        margin: 10px auto 14px;
        display: flex;
        justify-content: flex-end;
    }

    .sugestoes-sort {
        position: relative;
    }

    .sugestoes-sort-btn {
        border: 1px solid rgba(55, 71, 107, 0.35);
        background: rgba(255, 255, 255, 0.9);
        color: var(--azul-escuro);
        border-radius: 10px;
        padding: 8px 12px;
        font-weight: 600;
        cursor: pointer;
        min-height: 40px;
        display: inline-flex;
        align-items: center;
        gap: 6px;
    }

    .sugestoes-sort-chevron {
        font-size: 0.95rem;
        opacity: 0.85;
    }

    .sugestoes-sort-menu {
        position: absolute;
        right: 0;
        top: calc(100% + 8px);
        min-width: 170px;
        background: #fff;
        border: 1px solid rgba(55, 71, 107, 0.2);
        border-radius: 12px;
        box-shadow: 0 10px 22px rgba(0, 0, 0, 0.12);
        padding: 6px;
        display: none;
        z-index: 20;
    }

    .sugestoes-sort.aberto .sugestoes-sort-menu {
        display: grid;
        gap: 4px;
    }

    .sugestoes-sort-option {
        border: none;
        background: transparent;
        text-align: left;
        padding: 9px 10px;
        border-radius: 8px;
        color: var(--azul-escuro);
        cursor: pointer;
        font-size: 0.95rem;
    }

    .sugestoes-sort-option:hover {
        background: rgba(168, 178, 203, 0.24);
    }
    
    /* ================= CONVITE / CARTA ================= */
    .tela{
        width:100vw;
        height:100vh;
        display:flex;
        align-items:center;
        justify-content:center;
    }
    
    .envelope{
        width:100%;
        height:100%;
        max-width:100vw;
        max-height:100vh;
        position:relative;
        cursor:pointer;
    }
    
    .base{
        position:fixed;
        inset:0;
        background:#1d2d52;
        z-index:1;
        height:120%;
    }
    
    .aba{
        position:absolute;
        top:0;
        left:0;
        width:100%;
        height:50%;
        background:#152448;
        clip-path:polygon(0 0, 100% 0, 50% 100%);
        transform-origin:top;
        transition:transform 1s ease;
        z-index:3;
    }
    
    .carta{
        position:absolute;
        bottom:-100%;
        left:2%;
        width:96%;
        height:85%;
        text-align:center;
        z-index:2;
        box-shadow:0 10px 30px rgba(0,0,0,.2);
    
        opacity:0;
        pointer-events:none;
    
        transition:
            bottom 1s ease .3s,
            opacity .6s ease .4s;
    }
    
    .carta h1{
        font-size:clamp(1.6rem, 4vw, 2.2rem);
        margin-bottom:16px;
    }
    
    .carta p{
        font-size:1rem;
        line-height:1.6;
    }

    .conteudo-carta{
        width: 100%;
        padding: 24px;
        border-radius: 8px;
        background-color: white;
    }
    
    .envelope.aberto .aba{
        transform:rotateX(180deg);
    }
    
    .envelope.aberto .carta{
        bottom:5%;
        opacity:1;
        pointer-events:auto;
    }

    .save-date-main-date{
        font-size:1.2rem;
        font-family: 'Lobster', cursive;
    }

    #selo{
        z-index:10;
        position:absolute;
        top:50%;
        left:50%;
        transform:translate(-50%, -50%);
        border-radius:50%;
        padding:5px;
        background:white;
        width:120px;
        height:120px;
        align-items:center;
        justify-content:center;
        display:flex;
        border: 5px solid var(--azul-escuro);
        box-shadow: 0 0 10px rgba(0,0,0,0.3);
    }

    #selo img{
        width:100%;
        object-fit:contain;
    }

    #abrirConvite {
        position: absolute;
        bottom: 40px;
        left: 50%;
        transform: translateX(-50%);
        color: #ffffff;
        font-size: 1.1rem;
        letter-spacing: 1px;
        text-align: center;
        opacity: 0.9;
        animation: pulseConvite 2s ease-in-out infinite;
        text-shadow: 0 2px 4px rgba(0,0,0,0.35);
        pointer-events: none;
        transition: opacity 0.5s ease, transform 0.5s ease;
        z-index:10;
    }

    /* Menu */

    .icon-menu{
        font-size: 24px;
        margin-right: 5px;
    }

    .a-menu{
        display: flex;
        align-items: center;
    }

    .a-menu p{
        margin-top: 6px;
    }

    #menuLateral ul{
        margin-top: 60px;
    }

    #menuLateral ul li a{
        display: flex;
    }

    /* #menuLateral ul li a p {
        margin-top: 4px;
    } */

    /* Sugestões de Presentes */
    .grid-sugestoes {
        display: grid;
        gap: 24px;
        margin-top: 40px;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    
    .card-sugestao {
        background: white;
        border-radius: 16px;
        padding: 20px;
        box-shadow: 0 6px 18px rgba(0,0,0,.08);
        transition: transform .2s ease, box-shadow .2s ease;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .card-sugestao:hover {
        transform: translateY(-6px);
        box-shadow: 0 12px 24px rgba(0,0,0,.12);
    }
    
    .card-sugestao img {
        width: 100%;
        max-width: 180px;
        height: auto;
        object-fit: contain;
        margin-bottom: 16px;
        max-height: 180px;
        min-height: 180px;
    }
    
    .card-sugestao h3 {
        font-size: 18px;
        margin-bottom: 8px;
        color: var(--azul-escuro);
    }
    
    .card-sugestao .preco {
        font-size: 15px;
        opacity: .7;
    }
    
    .card-sugestao {
        position: relative;
        overflow: hidden;
    }
    
    .overlay-reservado {
        position: absolute;
        inset: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        padding: 20px;
        font-weight: 600;
        font-size: 16px;
        backdrop-filter: blur(2px);
    }
    
    .overlay-meu {
        background: rgba(212, 175, 55, 0.75); /* dourado translúcido */
        color: white;
    }
    
    .overlay-outro {
        background: rgba(0, 0, 0, 0.55);
        color: white;
    }
    
    /* ================= MODAL PRESENTE ================= */

    /* Overlay escuro */
    .presente-overlay {
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.65);
        backdrop-filter: blur(4px);
        display: none; /* começa fechado */
        align-items: center;
        justify-content: center;
        z-index: 99999;
    }

    /* Classe que ativa o modal */
    .presente-overlay-aberto {
        display: flex;
    }

    /* Caixa central */
    .presente-modal {
        background: white;
        width: 90%;
        max-width: 440px;
        border-radius: 20px;
        padding: 32px;
        position: relative;
        text-align: center;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
        animation: presenteModalFade .25s ease;
    }

    .home-content {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        
        text-align: center;
        color: #fff;
    
        max-width: 800px;
        width: 90%;
    
        padding: 20px;
    }
    
    /* Nome do convidado */
    .home-content {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        
        text-align: center;
        color: #fff;
    
        max-width: 750px;
        width: 90%;
    
        padding: 20px;
    }
    
    /* Nome do convidado (cursivo elegante) */
    #nomeConvidado {
        font-family: 'Great Vibes', cursive;
        font-size: 100px;
        font-weight: normal;
        line-height: 1.1;
        margin-bottom: 15px;
        letter-spacing: 1px;
        text-shadow: 0 2px 12px rgba(0,0,0,0.6);
    }
    
    /* Frase leve */
    #info {
        font-family: 'Montserrat', sans-serif;
        font-size: 18px;
        font-weight: 300;
        margin-bottom: 8px;
        line-height: 1.7;
        opacity: 0.9;
        text-shadow: 0 1px 6px rgba(0,0,0,0.3);
    }
    
    /* Frase principal */
    #info2 {
        font-family: 'Montserrat', sans-serif;
        font-size: 20px;
        font-weight: 500;
        margin-top: 5px;
        line-height: 1.6;
        text-shadow: 0 1px 6px rgba(0,0,0,0.5);
    }
    @media (max-width: 768px) {
        #info {
            font-size: 16px;
        }
    
        #info2 {
            font-size: 17px;
        }
    
        .home-content {
            padding: 15px;
            margin-top:180px;
        }

        #nomeConvidado {
            font-size: 50px;
        }
    }
    
    @media (max-width: 480px) {
    
        #nomeConvidado {
            font-size: 60px;
        }
    
        #info {
            font-size: 14px;
        }
    
        #info2 {
            font-size: 15px;
        }
    }

    /* Animação suave */
    @keyframes presenteModalFade {
        from {
            transform: translateY(20px);
            opacity: 0;
        }
        to {
            transform: translateY(0);
            opacity: 1;
        }
    }

    /* Botão X */
    .presente-fechar {
        position: absolute;
        top: 16px;
        right: 16px;
        cursor: pointer;
        font-size: 26px;
        color: #777;
        transition: transform .2s ease, color .2s ease;
    }

    .presente-fechar:hover {
        transform: rotate(90deg);
        color: var(--azul-escuro);
    }

    /* Imagem */
    .presente-modal img {
        width: 100%;
        max-width: 220px;
        height: auto;
        object-fit: contain;
        margin-bottom: 20px;
    }

    /* Nome */
    .presente-modal h3 {
        font-size: 20px;
        margin-bottom: 10px;
        color: var(--azul-escuro);
    }

    /* Preço */
    .presente-preco {
        font-size: 16px;
        margin-bottom: 12px;
        opacity: 0.8;
    }

    /* Link loja */
    .presente-link {
        display: inline-block;
        margin-bottom: 20px;
        color: var(--azul-escuro);
        font-weight: 500;
        text-decoration: underline;
        transition: opacity .2s ease;
    }

    .presente-link:hover {
        opacity: .7;
    }

    /* Botão principal */
    .presente-botao {
        width: 100%;
        padding: 14px;
        border-radius: 40px;
        border: none;
        cursor: pointer;
        font-size: 15px;
        font-weight: 500;
        margin-bottom: 18px;
        transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
    }

    /* Botão reservar */
    .presente-botao-reservar {
        background: var(--azul-escuro);
        color: white;
    }

    .presente-botao-reservar:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
    }

    /* Botão cancelar */
    .presente-botao-cancelar {
        background: #9e9e9e;
        color: white;
    }

    .presente-botao-cancelar:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
    }

    /* Texto explicativo */
    .presente-explicacao {
        font-size: 13px;
        line-height: 1.6;
        opacity: 0.7;
    }

    /* ================= MODAL CONFIRMACAO ================= */
    .confirmacao-modal {
        max-width: 560px;
    }

    .confirmacao-convidado-item {
        display: block;
        gap: 8px;
        margin-bottom: 16px;
        text-align: left;
    }

    .confirmacao-input-nome {
        width: 100%;
        border: 1px solid #ccd3e3;
        border-radius: 12px;
        padding: 12px 14px;
        font-size: 14px;
        color: var(--azul-escuro);
        background: #ffffff;
        outline: none;
        transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
        margin-bottom: 8px;
    }

    .confirmacao-input-nome:focus {
        border-color: var(--azul-escuro);
        box-shadow: 0 0 0 3px rgba(55, 71, 107, 0.16);
        transform: translateY(-1px);
    }

    .confirmacao-switch-row {
        display: flex;
        align-items: center;
        gap: 20px;
        width: 100%;
        font-size: 13px;
        color: #555;
        user-select: none;
    }

    .confirmacao-switch {
        position: relative;
        display: inline-block;
        width: 48px;
        height: 28px;
        flex-shrink: 0;
    }

    .confirmacao-input-menor {
        opacity: 0;
        width: 0;
        height: 0;
        position: absolute;
    }

    .confirmacao-switch-slider {
        position: absolute;
        inset: 0;
        cursor: pointer;
        background-color: #d2d8e5;
        border-radius: 999px;
        transition: background-color .25s ease;
    }

    .confirmacao-switch-slider::before {
        content: "";
        position: absolute;
        width: 22px;
        height: 22px;
        left: 3px;
        top: 3px;
        background: #fff;
        border-radius: 50%;
        box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25);
        transition: transform .25s ease;
    }

    .confirmacao-input-menor:checked + .confirmacao-switch-slider {
        background-color: var(--azul-escuro);
    }

    .confirmacao-input-menor:checked + .confirmacao-switch-slider::before {
        transform: translateX(20px);
    }

    .confirmacao-input-menor:focus + .confirmacao-switch-slider {
        box-shadow: 0 0 0 3px rgba(55, 71, 107, 0.2);
    }

    .confirmacao-lista {
        list-style: none;
        padding: 0;
        margin: 0 0 14px 0;
        display: flex;
        flex-direction: column;
        gap: 8px;
    }

    .confirmacao-lista-item {
        background: #f7f7f7;
        border-radius: 10px;
        padding: 10px 12px;
        text-align: left;
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 10px;
    }

    .confirmacao-lista-item small {
        color: #666;
        font-size: 12px;
        white-space: nowrap;
    }

    .confirmacao-mensagem {
        min-height: 18px;
        margin-bottom: 10px;
        color: #d32f2f;
        font-weight: 500;
        font-size: 13px;
        text-align: left;
    }

    /* Responsividade extra */
    @media (max-width: 480px) {

        .presente-modal {
            padding: 24px;
            border-radius: 16px;
        }

        .presente-modal img {
            max-width: 180px;
        }

    }


    /* ================= ANIMAÇÕES ================= */
    @keyframes pulseConvite {
        0% {
            transform: translateX(-50%) scale(1);
            opacity: 0.7;
        }
        50% {
            transform: translateX(-50%) scale(1.08);
            opacity: 1;
        }
        100% {
            transform: translateX(-50%) scale(1);
            opacity: 0.7;
        }
    }

    /* ================= RESPONSIVO ================= */
    @media (orientation: landscape){
        .carta{
            height:80%;
        }
    }

    /* Tablet */
    @media(max-width:1024px){
        .a-menu p {
            font-size:11px;
        }

        .icon-menu{
            font-size:18px;
        }

        #logoSelo{
            width:60px;
        }
    }

    /* Celular */
    @media(max-width:768px){
        #abrirConvite{
            bottom: 100px;
        }

        #cronometro{
            gap:10px;
        }

        #contador{
            padding: 100px 0;
        }

        nav ul{
            display:none;
        }
    
        .menu-mobile{
            display:block;
        }

        #save-date h2{
            font-size:38px;
        }

        .pix-wrapper {
            gap: 10px;
        }

        .pix {
            width: 100%;
            max-width: 360px;
            padding: 20px 18px;
        }

        .sugestoes-toolbar {
            margin-top: 8px;
            margin-bottom: 12px;
        }

        .sugestoes-sort-btn {
            padding: 8px 11px;
            min-height: 38px;
            font-size: 0.95rem;
        }

        .save-date-card {
            width: min(620px, 100%);
            padding: 22px 16px;
        }

        .save-date-card p {
            font-size:1.2rem !important;
        }

        .save-date-date-layout {
            gap: 8px;
            grid-template-columns: minmax(82px, 1fr) auto auto auto minmax(82px, 1fr);
        }

        .save-date-weekday {
            font-size: 0.95rem;
        }

        .save-date-main-date {
            font-size: 1.2rem;
        }

        .save-date-time {
            font-size: 1.35rem;
        }

        .save-date-separator {
            height: 48px;
        }

        .tempo{
            padding:5px 10px;
            min-width: 65px;
        }

        .tempo span{
            font-size:16px;
        }

        #selo {
            top: 30%;
        }

        .aba {
            height: 30%;
        }
    }