/* =========================
   Variáveis Globais (cores, imagens, etc)
   ========================= */

:root {
    --text-color: #fff;
    --bg-image: url('./assets/bg-mobile.jpg');
    --switch-bg-url: url('./assets/moon-stars.svg');
    --switch-position: left;
    --surface-color: rgba(255, 255, 255, 0.1);
    --stroke-color: rgba(255, 255, 255, 0.5);
    --highlight-color: rgba(255, 105, 180, 0.3);
    --icon-hover: rgba(255, 105, 180, 0.2);
    --pink-accent: #ff69b4;
}

.light {
    --text-color: #333;
    --bg-image: url('./assets/bg-mobile-light.jpg');
    --switch-bg-url: url('./assets/sun.svg');
    --switch-position: right;
    --surface-color: rgba(255, 105, 180, 0.1);
    --stroke-color: rgba(255, 105, 180, 0.5);
    --highlight-color: rgba(255, 105, 180, 0.2);
    --icon-hover: rgba(255, 105, 180, 0.1);
    --pink-accent: #ff1493;
}


/* =========================
   Reset e base
   ========================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {
    background: var(--bg-image) no-repeat center center fixed;
    background-size: cover;
    min-height: 100vh;
}

#container {
    width: 100%;
    max-width: 588px;
    margin: 56px auto 0;
    padding: 0 24px;
    color: var(--text-color);
}


/* =========================
   Perfil
   ========================= */

#profile {
    text-align: center;
    padding: 24px;
}

#profile img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 3px solid var(--pink-accent);
    object-fit: cover;
    transition: border 0.1s ease;
    box-shadow: 0 0 20px rgba(255, 105, 180, 0.5);
}

#profile p {
    font-weight: 500;
    line-height: 24px;
    margin-top: 8px;
}

#profile .bio {
    font-size: 14px;
    opacity: 0.8;
    margin-top: 4px;
}


/* =========================
   Switch Tema
   ========================= */

#switch {
    position: relative;
    width: 64px;
    margin: 24px auto;
}

#switch button {
    width: 32px;
    height: 32px;
    background: white var(--switch-bg-url) no-repeat center;
    border: none;
    border-radius: 50%;
    position: absolute;
    z-index: 1;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    cursor: pointer;
    transition: transform 0.2s ease, background 0.2s ease;
    animation: slide-out 0.2s forwards;
}

.light #switch button {
    animation: slide-in 0.2s forwards;
}

#switch button:hover {
    outline: 8px solid var(--highlight-color);
}

#switch span {
    display: block;
    width: 64px;
    height: 24px;
    background: var(--surface-color);
    border: 1px solid var(--pink-accent);
    border-radius: 9999px;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    transition: background 0.1s ease, border 0.1s ease;
}


/* =========================
   Lista de Links
   ========================= */

ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 24px 0;
}

ul li a {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px 24px;
    background: var(--surface-color);
    border: 1px solid var(--pink-accent);
    border-radius: 8px;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    text-decoration: none;
    font-weight: 500;
    color: var(--text-color);
    transition: all 0.1s ease;
}

ul li a:hover {
    background: var(--highlight-color);
    border: 1.5px solid var(--text-color);
    transform: scale(1.02);
    box-shadow: 0 0 15px var(--pink-accent);
}


/* =========================
   Links Sociais
   ========================= */

#social-links {
    display: flex;
    justify-content: center;
    padding: 24px 0;
    font-size: 28px;
    gap: 16px;
}

#social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    color: var(--text-color);
    border-radius: 50%;
    transition: all 0.1s ease;
    background: var(--surface-color);
    border: 1px solid var(--pink-accent);
}

#social-links a:hover {
    background: var(--icon-hover);
    transform: translateY(-3px);
    box-shadow: 1px 5px 15px rgba(255, 105, 180, 0.4);
}


/* =========================
   Rodapé
   ========================= */

footer {
    padding: 24px 0;
    text-align: center;
    font-size: 14px;
    opacity: 0.8;
    line-height: 1.6;
}


/* =========================
   Animações do Switch
   ========================= */

@keyframes slide-in {
    from {
        left: 0;
    }
    to {
        left: 50%;
    }
}

@keyframes slide-out {
    from {
        left: 50%;
    }
    to {
        left: 0;
    }
}


/* =========================
   Responsividade
   ========================= */

@media (min-width: 700px) {
     :root {
        --bg-image: url('./assets/bg-desktop.jpg');
    }
    .light {
        --bg-image: url('./assets/bg-desktop-light.jpg');
    }
}

@media (max-width: 400px) {
    #container {
        margin: 32px auto 0;
    }
    #profile img {
        width: 100px;
        height: 100px;
    }
    ul li a {
        padding: 14px 20px;
        font-size: 14px;
    }
    #social-links {
        font-size: 24px;
    }
    #social-links a {
        padding: 14px;
    }
}


/* =========================
   Botão Curtir (Like)
   ========================= */

.like-counter {
    margin: 16px auto;
    text-align: center;
}

#likeButton {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 8px 16px;
    background: var(--surface-color);
    border: 1px solid var(--pink-accent);
    border-radius: 9999px;
    color: var(--text-color);
    font-weight: 500;
    cursor: pointer;
    transition: all 0.1s ease;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

#likeButton:hover {
    background: var(--highlight-color);
    transform: scale(1.05);
}

#likeButton ion-icon {
    color: var(--pink-accent);
    font-size: 18px;
    transition: all 0.1s ease;
}

#likeButton.liked ion-icon {
    color: #ff0000;
    fill: #ff0000;
    animation: pulse 0.5s ease;
}

#likeCount {
    font-size: 14px;
}

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


/* =========================
   Modal Base
   ========================= */

.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.modal-content {
    background: var(--surface-color);
    border: 1px solid var(--pink-accent);
    border-radius: 15px;
    margin: 10% auto;
    padding: 25px;
    width: 90%;
    max-width: 400px;
    color: var(--text-color);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 0 25px rgba(255, 105, 180, 0.3);
    animation: modalFadeIn 0.1s ease;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.close-modal {
    color: var(--text-color);
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.1s;
}

.close-modal:hover {
    color: var(--pink-accent);
}

.modal h3 {
    text-align: center;
    margin-bottom: 20px;
    color: var(--pink-accent);
    font-size: 1.5rem;
}

.modal p {
    text-align: center;
    margin-bottom: 10px;
}

.modal input[type="number"] {
    width: 100%;
    padding: 12px 15px;
    margin: 10px 0;
    border: 1px solid var(--pink-accent);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-color);
    font-size: 1rem;
    text-align: center;
    outline: none;
    transition: all 0.1s;
}

.modal input[type="number"]:focus {
    border-color: var(--text-color);
    background: rgba(255, 255, 255, 0.2);
}

.modal button {
    width: 100%;
    padding: 12px;
    margin: 15px 0;
    background: var(--pink-accent);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.1s;
}

.modal button:hover {
    background: #ff4785;
    transform: translateY(-2px);
}


/* =========================
   QR Code
   ========================= */

#qrcode {
    margin: 15px auto;
    padding: 10px;
    background: white;
    border-radius: 10px;
    width: 180px;
    height: 180px;
    display: flex;
    justify-content: center;
    align-items: center;
}

#qrcode img {
    max-width: 100%;
    max-height: 100%;
}

#status {
    text-align: center;
    margin-top: 10px;
    font-size: 0.9rem;
    color: var(--pink-accent);
}


/* =========================
   Pix Key Box
   ========================= */

.pix-key {
    margin-top: 20px;
    text-align: center;
}

.key-box {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid var(--pink-accent);
    border-radius: 8px;
    padding: 10px;
    margin-top: 10px;
    font-family: monospace;
    word-break: break-all;
    cursor: pointer;
    transition: all 0.1s;
}

.key-box:hover {
    background: rgba(255, 105, 180, 0.2);
}


/* =========================
   Controle de Valor (input + botões)
   ========================= */

.value-control {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 15px 0;
    gap: 5px;
}

.value-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--pink-accent);
    color: white;
    border: none;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.1s ease;
    user-select: none;
}

.value-btn:hover {
    transform: scale(1.1);
    background: #ff4785;
    box-shadow: 0 0 10px rgba(255, 105, 180, 0.5);
}

.value-btn:active {
    transform: scale(0.95);
}

.value-btn.minus {
    padding-bottom: 5px;
}

.value-btn.plus {
    padding-bottom: 2px;
}

.value-control input[type="number"] {
    width: 80px;
    font-weight: bold;
    font-size: 1.2rem;
    padding: 8px;
    border-radius: 8px;
    margin: 0;
}


/* Remove setinhas input number */

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input[type=number] {
    -moz-appearance: textfield;
}


/* =========================
   Textos e placeholders modal
   ========================= */

.modal-content,
.modal-content p,
.modal-content .pix-key p,
.modal-content #status {
    color: white !important;
}

.modal-content input[type="number"] {
    color: white !important;
}

.modal-content input::placeholder {
    color: rgba(255, 255, 255, 0.6) !important;
}


/* =========================
   Grid de Vídeos Modal - Estilos Principais
   ========================= */

.video-grid {
    display: grid;
    gap: 20px;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 10px;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.video-container {
    width: 100%;
    aspect-ratio: 9/16;
    max-height: 80vh;
    border-radius: 12px;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid var(--pink-accent);
    position: relative;
    margin: 0 auto;
    transition: transform 0.1s ease;
}

.video-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(255, 105, 180, 0.4);
}

.video-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.video-play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 10;
    transition: opacity 0.1s;
}

.video-play-overlay ion-icon {
    font-size: 3rem;
    margin-bottom: 10px;
    color: var(--pink-accent);
}

.video-play-overlay p {
    text-align: center;
    max-width: 80%;
}


/* =========================
   Responsividade - Vídeos
   ========================= */


/* Tablets e telas médias */

@media (min-width: 769px) and (max-width: 1199px) {
    .video-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 800px;
    }
    .video-container {
        max-width: 380px;
    }
}


/* Desktop grandes */

@media (min-width: 1200px) {
    .video-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
        max-width: 1200px;
    }
    .video-container {
        max-width: 350px;
    }
}


/* Dispositivos móveis pequenos */

@media (max-width: 480px) {
    .video-grid {
        grid-template-columns: 1fr;
        padding: 5px;
    }
    .video-container {
        max-height: 75vh;
        max-width: 100%;
    }
    .modal-content {
        margin: 15% auto;
        padding: 15px;
        width: 95%;
    }
    #qrcode {
        width: 150px;
        height: 150px;
    }
    .video-play-overlay {
        font-size: 1rem;
    }
    .video-play-overlay ion-icon {
        font-size: 2.5rem;
    }
}


/* Dispositivos móveis médios */

@media (min-width: 481px) and (max-width: 768px) {
    .video-grid {
        grid-template-columns: 1fr;
    }
    .video-container {
        max-height: 70vh;
        max-width: 450px;
    }
}


/*Estilo do overlay de play:*/

.video-play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 10;
    transition: opacity 0.1s;
}

.video-play-overlay ion-icon {
    font-size: 3rem;
    margin-bottom: 10px;
    color: var(--pink-accent);
}

.video-play-overlay p {
    text-align: center;
    max-width: 80%;
}


/* =========================
   Ajuste ESPECÍFICO para a largura dos vídeos
   ========================= */


/* Container principal do modal de vídeos */

#videosModal .modal-content {
    width: 90vw;
    /* Ocupa 90% da largura da tela */
    max-width: 1200px;
    /* Máximo de 1200px */
    padding: 20px;
}


/* Grid que contém os vídeos */

.video-grid {
    width: 100%;
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}


/* Container de cada vídeo individual */

.video-container {
    width: 100% !important;
    /* Força largura total */
    min-width: 300px;
    /* Largura mínima */
    aspect-ratio: 9/16;
    /* Mantém proporção vertical */
    max-height: 80vh;
}


/* Responsividade para telas menores */

@media (max-width: 768px) {
    #videosModal .modal-content {
        width: 95vw;
        /* Aumenta para 95% em mobile */
        padding: 10px;
    }
    .video-grid {
        grid-template-columns: 1fr;
        /* Uma coluna em mobile */
    }
    .video-container {
        min-width: unset;
        /* Remove largura mínima */
        width: 100% !important;
    }
}


/* Ajuste para quando tiver apenas 1 vídeo */

.video-grid:has(.video-container:only-child) {
    display: flex;
    justify-content: center;
    max-width: 600px;
    margin: 0 auto;
}

.video-grid:has(.video-container:only-child) .video-container {
    width: 80% !important;
    max-width: 500px;
}

#videosModal .close-modal {
    display: none;
}

.video-grid {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    width: 100%;
    padding: 15px;
}

.video-wrapper {
    position: relative;
    padding-bottom: 177.78%;
    /* Proporção 16:9 */
    overflow: hidden;
    border-radius: 12px;
    background: #000;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}


/*teste*/


/* Substitua isso: */

#switch button {
    width: 32px;
    height: 32px;
    background: white var(--switch-bg-url) no-repeat center;
    /* ... */
}


/* Por isso: */

.switch-button {
    position: absolute;
    width: 32px;
    height: 32px;
    background: white var(--switch-bg-url) no-repeat center;
    border: none;
    border-radius: 50%;
    z-index: 1;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    transition: transform 0.2s ease, background 0.2s ease;
    animation: slide-out 0.2s forwards;
    pointer-events: none;
    /* Isso prevente que o span receba foco */
}

.light .switch-button {
    animation: slide-in 0.2s forwards;
}

#switch:hover .switch-button {
    outline: 8px solid var(--highlight-color);
}

.video-container {
    position: relative;
    width: 100%;
    aspect-ratio: 9/16;
    background: #000;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 20px;
}

.tiktok-embed-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    background: #f8f8f8;
    color: #333;
    font-size: 16px;
    text-align: center;
    padding: 20px;
}

.video-container iframe {
    border: none;
    width: 100%;
    height: 100%;
}

.tiktok-video-container {
    position: relative;
    width: 100%;
    aspect-ratio: 9/16;
    margin: 15px 0;
    background: #f1f1f1;
    border-radius: 8px;
    overflow: hidden;
}

.video-error {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding: 20px;
    text-align: center;
}

.video-error a {
    margin-top: 10px;
    color: #ff69b4;
    text-decoration: none;
    font-weight: bold;
}


/*teste test*/


/* Container principal - Grid no desktop */

.video-container-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}


/* Versão mobile - transforma em carrossel vertical */

@media (max-width: 768px) {
    .video-container-wrapper {
        display: flex;
        flex-direction: column;
        overflow-y: auto;
        scroll-snap-type: y mandatory;
        height: 70vh;
        gap: 0;
    }
    .video-item {
        position: relative;
        width: 100%;
        aspect-ratio: 9/16;
        background: #000;
        border-radius: 12px;
        overflow: hidden;
        border: 2px solid var(--pink-accent);
    }
    /* Esconde a barra de rolagem */
    .video-container-wrapper::-webkit-scrollbar {
        display: none;
    }
    /* Indicadores (pontinhos) */
    .carousel-dots {
        display: flex;
        justify-content: center;
        padding: 15px 0;
        gap: 10px;
    }
    .carousel-dots .dot {
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.3);
        cursor: pointer;
    }
    .carousel-dots .dot.active {
        background: var(--pink-accent);
    }
}


/* No desktop, esconde os indicadores */

@media (min-width: 769px) {
    .carousel-dots {
        display: none;
    }
}

video-item {
    position: relative;
    width: 100%;
    background: #000;
    border-radius: 12px;
    overflow: hidden;
    border: 2px solid var(--pink-accent);
}


/* Ajuste específico para mobile */

@media (max-width: 768px) {
    .video-item {
        height: 80vh !important;
        /* Altura ocupando 80% da tela */
        min-height: 80vh !important;
        /* Remove o min-height anterior */
        margin-bottom: 15px;
        flex: 0 0 auto;
        /* Impede que os vídeos se estiquem */
    }
    .video-item iframe {
        height: 100% !important;
        width: 100% !important;
    }
}


/* Mantenha o grid para desktop */

@media (min-width: 769px) {
    .video-container-wrapper {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 20px;
    }
    .video-item {
        aspect-ratio: 9/16;
        /* Mantém proporção vertical */
        height: auto;
    }
}

.video-loader {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    z-index: 10;
}

.spinner {
    width: 40px;
    height: 40px;
    border: 4px solid var(--pink-accent);
    border-radius: 50%;
    border-top-color: transparent;
    animation: spin 1s linear infinite;
    margin-bottom: 10px;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.video-play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(0, 0, 0, 0.5);
    z-index: 5;
    cursor: pointer;
}

.video-play-overlay ion-icon {
    font-size: 3rem;
    color: var(--pink-accent);
}


/* Estilos para o carrossel mobile */

.video-container-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

@media (max-width: 768px) {
    .video-container-wrapper {
        display: flex;
        flex-direction: column;
        overflow-y: auto;
        scroll-snap-type: y mandatory;
        height: 70vh;
        -webkit-overflow-scrolling: touch;
    }
    .video-item {
        scroll-snap-align: start;
        min-height: 80vh;
        margin-bottom: 15px;
    }
}


/* Esconde a barra de rolagem no mobile */

.video-container-wrapper::-webkit-scrollbar {
    display: none;
}


/* Estilo para os vídeos */

.video-item {
    position: relative;
    width: 100%;
    aspect-ratio: 9/16;
    background: #000;
    border-radius: 12px;
    overflow: hidden;
    border: 2px solid var(--pink-accent);
}

.video-item iframe {
    width: 100%;
    height: 100%;
    border: none;
}


/* Overlay de play */

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(0, 0, 0, 0.5);
    z-index: 10;
    cursor: pointer;
}

.video-overlay ion-icon {
    font-size: 3rem;
    color: var(--pink-accent);
    transition: transform 0.1s;
}

.video-overlay:hover ion-icon {
    transform: scale(1.1);
}


/* Indicadores do carrossel */

.carousel-dots {
    display: flex;
    justify-content: center;
    padding: 15px 0;
    gap: 10px;
}

.carousel-dots .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.1s;
}

.carousel-dots .dot.active {
    background: var(--pink-accent);
    transform: scale(1.2);
}


/* Esconde dots no desktop */

@media (min-width: 769px) {
    .carousel-dots {
        display: none;
    }
}


/* =========================
   Modal PIX
   ========================= */

#pixModal {
    position: fixed;
    z-index: 1000;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    display: none;
    justify-content: center;
    align-items: center;
    overflow: auto;
    animation: modalFadeIn 0.1s ease;
}

#pixModal .modal-content {
    background: var(--surface-color);
    border: 1px solid var(--pink-accent);
    border-radius: 15px;
    margin: 5% auto;
    padding: 25px;
    width: 90%;
    max-width: 500px;
    max-height: 90vh;
    color: var(--text-color);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 0 25px rgba(255, 105, 180, 0.3);
    overflow-y: auto;
}


/* Ajustes para o tema light */

.light #pixModal .modal-content {
    background: rgba(255, 105, 180, 0.1);
    border-color: rgba(255, 105, 180, 0.5);
}


/* Responsividade */

@media (max-width: 480px) {
    #pixModal .modal-content {
        padding: 15px;
        margin: 10% auto;
    }
}


/* Estilo para o conteúdo da jornada */

.journey-content {
    padding: 20px;
    line-height: 1.6;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.journey-content p {
    margin-bottom: 15px;
    color: var(--text-color);
}


/* Ajuste para o modal da jornada */

#journeyModal .modal-content {
    max-width: 700px;
}


/* Estilo dos Botões de Idioma */

.language-switcher {
    display: flex;
    gap: 8px;
    margin: 15px auto;
    background: var(--surface-color);
    border: 1px solid var(--pink-accent);
    border-radius: 30px;
    padding: 4px;
    backdrop-filter: blur(4px);
    max-width: 260px;
}

.lang-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 15px;
    border: none;
    border-radius: 20px;
    background: transparent;
    color: var(--text-color);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.1s ease;
    flex: 1;
    justify-content: center;
}

.lang-btn:hover {
    background: var(--highlight-color);
}

.lang-btn.active {
    background: var(--pink-accent);
    color: white;
    box-shadow: 0 2px 8px rgba(255, 105, 180, 0.3);
}

.lang-btn img {
    border-radius: 2px;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.portuguese-visible {
    display: block;
}

.english-visible {
    display: none;
}


/* Quando o idioma for inglês */

body.english .portuguese-visible {
    display: none;
}

body.english .english-visible {
    display: block;
}

#supportButtonPT {
    text-align: center;
}

#supportButtonEN {
    text-align: center;
}