/* General settings */
body {
    margin: 0;
    padding: 0;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    background-color: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100vh;
}

/* Container settings */
.container {
    width: 100%;
    max-width: 500px;
    padding: 20px;
    box-sizing: border-box;
}

/* Logo */
.logo {
    width: 250px;
    margin: 30px auto;
    display: block;
}

/* Main navigation buttons */
.button-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    margin-top: 30px;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 90%;
    background-color: #f9f9f9;
    color: #333;
    text-align: center;
    padding: 18px 20px;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    border-radius: 8px;
    border: 1px solid #ddd;
    transition: all 0.3s ease;
    box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.08);
}

.button span {
    flex-grow: 1;
    text-align: center;
}

.button img.icon-left,
.button img.icon-right {
    width: 25px;
    height: 25px;
    object-fit: contain;
}

.button:hover {
    background-color: #ececec;
    transform: translateY(-2px);
}

/* Responsive adjustments */
@media (max-width: 600px) {
    .button {
        font-size: 16px;
        padding: 16px 18px;
    }
}

/* Header settings */
header {
    position: relative;
}

/* Share/Subscribe button (unificado) */
.share-button {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: #ffffff;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.3s;
}

.share-button:hover {
    background-color: #f0f0f0;
}

.share-button img {
    width: 24px;
    height: 24px;
}

/* Share popup (modal oculto inicialmente) */
.share-popup {
    display: none;
    position: fixed;
    top: 70px;
    right: 20px;
    background: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    z-index: 1000;
}

#subscribeButton {
    left: 10px;
    right: auto;
}

.footer {
  text-align: center;
  margin: 50px auto 0;
  font-size: 0.9em;
  color: #777;
  width: 100%;
}