body {
    font-family: 'Montserrat', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f9f9f9;
    color: #333;
    text-align: center;
}

.hero {
    background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), url('assets/bear.png');
    background-size: cover;
    background-position: center;
    height: 60vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero h1 { font-size: 3rem; margin-bottom: 10px; }
.hero p { font-size: 1.5rem; }

.welcome-section {
    padding: 50px 20px;
    max-width: 800px;
    margin: 0 auto;
}

.countdown {
    padding: 40px 20px;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.time-box {
    background: #fff9c4; /* Amarelo claro */
    padding: 15px;
    border-radius: 10px;
    min-width: 80px;
}

.time-box span {
    display: block;
    font-size: 2rem;
    font-weight: bold;
    color: #fbc02d; /* Amarelo ouro */
}

.info-section {
    padding: 40px 20px;
}

.info-container {
    max-width: 600px;
    margin: 0 auto 30px;
    padding: 0 20px;
    text-align: left;
}

.info-row {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.info-icon-img {
    width: 35px;
    height: 35px;
    object-fit: contain;
}

.address-text p {
    margin: 2px 0;
}

.info-row p {
    font-size: 1.1rem;
    margin: 0;
    color: #444;
}

.map-container {
    max-width: 800px;
    margin: 0 auto 40px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.btn-confirmar {
    background-color: #a5d6a7; /* Verde claro */
    color: white;
    padding: 18px 40px;
    font-size: 1.1rem;
    text-transform: uppercase;
    text-decoration: none;
    display: inline-block;
    border-radius: 25px;
    font-weight: bold;
    letter-spacing: 1px;
    box-shadow: 0 4px 10px rgba(165, 214, 167, 0.4);
    transition: 0.3s;
}

.btn-confirmar:hover {
    background-color: #81c784; /* Verde médio */
}

.carousel-container {
    position: relative;
    max-width: 500px;
    height: 400px;
    margin: 40px auto;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    background: #fff;
}

.carousel-slide, .item {
    height: 100%;
}

.item {
    display: none;
}

.item.active {
    display: block !important;
}

.carousel-slide img, 
.carousel-slide video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.prev, .next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.7);
    border: none;
    padding: 15px;
    cursor: pointer;
    font-size: 20px;
    border-radius: 50%;
    transition: 0.3s;
    z-index: 100;
}

.prev { left: 10px; }
.next { right: 10px; }
.prev:hover, .next:hover { background: #fff; }

.gift-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
    padding: 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.gift-card {
    background: white;
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    transition: transform 0.3s;
}

.gift-card:hover {
    transform: translateY(-5px);
}

.gift-card img {
    width: 100%;
    height: 150px;
    object-fit: contain;
    margin-bottom: 15px;
}

.btn-presentear {
    background-color: #fff9c4; /* Amarelo claro */
    color: #fbc02d; /* Amarelo ouro */
    border: none;
    padding: 10px 20px;
    border-radius: 20px;
    font-weight: bold;
    cursor: pointer;
    width: 100%;
    margin-top: 10px;
}

.popup-overlay {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    justify-content: center;
    align-items: center;
}

.popup-content {
    max-width: 90%;
    max-height: 90%;
    position: relative;
}

.popup-content img, .popup-content video {
    width: auto;
    max-width: 100%;
    max-height: 80vh;
    border-radius: 8px;
    box-shadow: 0 0 20px rgba(255,255,255,0.2);
}

.fechar-popup {
    position: absolute;
    top: 20px;
    right: 30px;
    color: white;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
}

.pix-content {
    background: white;
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    max-width: 400px;
    width: 90%;
}

#qrcode-img {
    width: 200px;
    height: 200px;
    margin: 20px 0;
}

.pix-copia-cola-container {
    margin-top: 15px;
    background: #f8f9fa;
    padding: 10px;
    border-radius: 10px;
    border: 1px solid #eee;
}

#input-copia-cola {
    width: 100%;
    height: 60px;
    border: none;
    background: transparent;
    font-family: monospace;
    font-size: 11px;
    color: #666;
    resize: none;
    margin-bottom: 10px;
    word-break: break-all;
    outline: none;
}

#btn-copiar-pix {
    width: 100%;
    background-color: #a5d6a7; /* Verde claro */
    color: white;
    border: none;
    padding: 10px;
    border-radius: 20px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

.custom-footer {
    background-color: #1a1a1a;
    padding: 60px 20px;
    color: #ffffff;
    text-align: center;
    border-top: 4px solid #ff4d4d; /* Amarelo ouro */
}

.dedication {
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 30px;
    color: #cccccc;
    letter-spacing: 1px;
}

.developer-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.brand-link {
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    transition: 0.3s;
}

.brand-link:hover {
    transform: scale(1.05);
}

.red-dices-logo {
    width: 150px;
    height: auto;
    object-fit: contain;
    margin-bottom: -15px;
}

.red-dices-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.6rem;
    letter-spacing: -1px;
    font-weight: 400;
    color: #ffffff;
}