﻿:root {    --primary-color: #2A6E78;    --primary-hover: #1f555d;    --bg-color: #f0f2f5;    --card-bg: #ffffff;    --text-primary: #1f2937;    --text-secondary: #6b7280;    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);    --radius: 16px;}* {    margin: 0;    padding: 0;    box-sizing: border-box;}body {    font-family: 'Inter', sans-serif;    background-color: var(--bg-color);    color: var(--text-primary);    line-height: 1.5;    padding-bottom: 40px;}.container {    max-width: 1200px;    margin: 0 auto;    padding: 0 20px;}header {    text-align: center;    padding: 40px 0;}header h1 {    font-size: 2.5rem;    color: var(--primary-color);    margin-bottom: 10px;}header p {    color: var(--text-secondary);}.cards-grid {    display: grid;    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));    gap: 24px;}.card {    background-color: var(--card-bg);    border-radius: var(--radius);    box-shadow: var(--shadow);    overflow: hidden;    transition: transform 0.2s, box-shadow 0.2s;    display: flex;    flex-direction: column;}.card:hover {    transform: translateY(-4px);    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);}.card-image-container {    width: 100%;    height: 250px;    background-color: #ffffff;    position: relative;    overflow: hidden;    display: flex;    align-items: center;    justify-content: center;}.card-image {    width: 100%;    height: 100%;    object-fit: contain;    transition: transform 0.3s;}.card:hover .card-image {    transform: scale(1.05);}.card-content {    padding: 24px;    text-align: center;    flex-grow: 1;    display: flex;    flex-direction: column;    justify-content: space-between;}.card-title {    font-size: 1.1rem;    font-weight: 600;    margin-bottom: 16px;    color: var(--text-primary);    min-height: 3em;}.card-price {    font-size: 1.25rem;    font-weight: 700;    color: var(--text-primary);    margin-bottom: 8px;}.card-remaining {    font-size: 0.875rem;    color: var(--text-secondary);    margin-bottom: 20px;}.btn-apoair {    display: inline-block;    width: 100%;    padding: 12px 20px;    background-color: var(--primary-color);    color: white;    border: none;    border-radius: 50px;    font-weight: 600;    cursor: pointer;    transition: background-color 0.2s;    font-size: 1rem;}.btn-apoair:hover {    background-color: var(--primary-hover);}.hidden {    display: none !important;}.modal {    position: fixed;    top: 0;    left: 0;    width: 100%;    height: 100%;    background-color: rgba(0, 0, 0, 0.5);    z-index: 1000;    display: flex;    align-items: center;    justify-content: center;    backdrop-filter: blur(4px);}.modal-content {    background-color: white;    padding: 30px;    border-radius: var(--radius);    max-width: 400px;    width: 90%;    text-align: center;    position: relative;    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);}.close-modal {    position: absolute;    top: 15px;    right: 20px;    font-size: 28px;    font-weight: bold;    cursor: pointer;    color: #aaa;}.close-modal:hover {    color: var(--text-primary);}.qr-placeholder {    margin: 20px 0;    padding: 20px;    background-color: #f9fafb;    border-radius: 8px;    border: 1px dashed #d1d5db;}.qr-placeholder img {    max-width: 150px;    margin-bottom: 10px;}.pix-key {    font-family: monospace;    font-size: 1.1em;    margin-top: 10px;    color: var(--text-primary);}.btn-copy {    background-color: transparent;    border: 1px solid var(--primary-color);    color: var(--primary-color);    padding: 8px 16px;    border-radius: 6px;    cursor: pointer;    font-weight: 500;    margin-top: 10px;    transition: all 0.2s;}.btn-copy:hover {    background-color: var(--primary-color);    color: white;}.modal-title {    color: var(--primary-color);    margin-bottom: 20px;    font-size: 1.5rem;}.modal-values {    display: flex;    flex-direction: column;    gap: 10px;    margin-bottom: 30px;    align-items: center;}.value-badge {    background-color: #e5e7eb;    padding: 10px 20px;    border-radius: 8px;    font-weight: 600;    color: #4b5563;    width: 100%;    max-width: 280px;}.input-group {    margin-bottom: 15px;    width: 100%;}.input-group input {    width: 100%;    padding: 12px 15px;    border: 1px solid #d1d5db;    border-radius: 12px;    font-size: 1rem;    outline: none;    transition: border-color 0.2s;    background-color: #f9fafb;}.input-group input:focus {    border-color: var(--primary-color);    background-color: white;}.input-helper {    font-size: 0.8rem;    color: #9ca3af;    margin-top: 5px;    font-style: italic;}.btn-payment {    width: 100%;    padding: 15px;    background-color: #5da5b0;    color: white;    border: none;    border-radius: 12px;    font-size: 1.1rem;    font-weight: 600;    cursor: pointer;    margin-top: 10px;    transition: background-color 0.2s;}.btn-payment:hover {    background-color: var(--primary-color);}.contributions-section {    margin-top: 30px;    padding-top: 20px;    border-top: 1px solid #eee;}.contributions-section h3 {    color: #9ca3af;    font-size: 1.1rem;    margin-bottom: 10px;    font-weight: 500;}.no-contributions {    color: #d1d5db;    font-style: italic;}.modal-content {    border-radius: 20px;    padding: 40px;}.navbar {    position: fixed;    top: 0;    left: 0;    width: 100%;    padding: 10px 0;    z-index: 1000;    background-color: white;    display: flex;    align-items: center;    justify-content: center;    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);    border-bottom: 2px solid #b3d1d6;}.nav-left {    flex: 1;    display: flex;    justify-content: center;    width: 100%;    text-align: center;}.nav-right {    display: none;}.nav-text {    font-family: 'Great Vibes', cursive;    font-size: 1.8rem;    color: var(--primary-color);}.logo-container {    display: none;}.emoji {    font-style: normal;    font-size: 2rem;}.hero {    position: relative;    min-height: 100vh;    width: 100%;    display: flex;    flex-direction: column;    align-items: center;    justify-content: flex-start;    background-color: #f7f9fa;    padding: 85px 20px 40px;    text-align: center;}.hero-slideshow {    position: absolute;    top: 0;    left: 0;    width: 100%;    height: 100%;    z-index: 1;}.slide {    position: absolute;    top: 0;    left: 0;    width: 100%;    height: 100%;    background-size: cover;    background-position: center;    opacity: 0;    transition: opacity 1s ease-in-out;}.slide.active {    opacity: 1;}.hero-slideshow::after {    content: '';    position: absolute;    top: 0;    left: 0;    width: 100%;    height: 100%;    background-color: rgba(0, 0, 0, 0.4);}.hero-content {    position: relative;    z-index: 10;    padding: 20px;}.hero-content h1 {    font-size: 3.5rem;    margin-bottom: 10px;    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);}.hero-content p {    font-size: 1.25rem;    margin-bottom: 30px;    font-weight: 300;}.btn-scroll {    background-color: transparent;    border: 2px solid white;    color: white;    padding: 12px 30px;    font-size: 1rem;    border-radius: 50px;    cursor: pointer;    transition: all 0.3s;    text-transform: uppercase;    letter-spacing: 1px;}.btn-scroll:hover {    background-color: white;    color: var(--primary-color);}.section-header {    text-align: center;    padding: 40px 0;    background-color: var(--bg-color);}.section-header h2 {    font-size: 2.5rem;    color: var(--primary-color);    margin-bottom: 10px;}.hero-content-wrapper {    max-width: 1000px;    width: 100%;    display: flex;    flex-direction: column;    align-items: center;}@import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@400;700&display=swap');.main-title {    font-family: 'Great Vibes', cursive;    font-size: 4.5rem;    color: var(--primary-color);    margin-bottom: 30px;    font-weight: 400;}.hero-subtitle {    font-size: 1.25rem;    color: var(--text-secondary);    margin-top: 20px;    margin-bottom: 30px;    font-weight: 300;}.carousel-container {    display: flex;    align-items: center;    justify-content: center;    gap: 20px;    width: 100%;    max-width: 900px;    position: relative;}.carousel-frame {    width: auto;    max-width: 90vw;    height: auto;    background-color: white;    padding: 15px;    border-radius: 20px;    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);    position: relative;    display: inline-flex;    justify-content: center;    align-items: center;}.carousel-item {    display: none;    position: relative;}.carousel-item.active {    display: block;    animation: fadeIn 0.5s ease-in-out;}.carousel-img {    height: 70vh;    min-height: 400px;    width: auto;    max-width: 100%;    object-fit: contain;    border-radius: 10px;    display: block;}@keyframes fadeIn {    from {        opacity: 0;    }    to {        opacity: 1;    }}.year-badge {    position: absolute;    top: -25px;    left: 50%;    transform: translateX(-50%);    background-color: var(--primary-color);    color: white;    padding: 5px 20px;    border-radius: 8px;    font-family: 'Inter', sans-serif;    font-weight: 700;    font-size: 1rem;    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);    z-index: 10;}.carousel-btn {    background-color: #6faeb7;    color: white;    border: none;    width: 50px;    height: 50px;    border-radius: 50%;    font-size: 1.5rem;    cursor: pointer;    display: flex;    align-items: center;    justify-content: center;    transition: background-color 0.3s, transform 0.2s;    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);    margin: 0 10px;}.carousel-btn:hover {    background-color: var(--primary-color);    transform: scale(1.1);}@media screen and (max-width: 768px) {    .navbar .logo {        font-size: 2rem;        gap: 10px;    }    .emoji {        font-size: 1.5rem;    }    .hero {        padding: 100px 15px 30px;        min-height: auto;    }    .main-title {        font-size: 1.0rem;        margin-bottom: 10px;        white-space: nowrap;        padding: 0 10px;    }    .hero-subtitle {        font-size: 1rem;    }    .carousel-img {        height: 50vh !important;        min-height: 300px;    }    .carousel-frame {        max-width: 95vw;        padding: 10px;    }    .carousel-btn {        width: 40px;        height: 40px;        font-size: 1.2rem;    }    .cards-grid {        grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));        gap: 15px;    }    .card-content {        padding: 15px;    }    .card-title {        font-size: 1rem;    }    .btn-apoair {        padding: 10px 8px;        font-size: 0.75rem;        white-space: nowrap;        overflow: hidden;        text-overflow: ellipsis;    }    .card-image-container {        height: 180px;    }}.navbar .logo {    font-family: 'Great Vibes', cursive !important;    font-weight: 400 !important;    letter-spacing: 2px;    font-size: 2.8rem;    text-transform: none;}@media screen and (max-width: 768px) {    .navbar .logo {        font-size: 1.8rem !important;        gap: 5px;    }    .emoji {        font-size: 1.4rem;    }}.carousel-indicators {    display: flex;    justify-content: center;    gap: 10px;    margin-top: 15px;    padding: 10px;    z-index: 20;    position: relative;    width: 100%;    min-height: 20px;}.indicator {    width: 14px;    height: 14px;    background-color: #cbd5e1;    border-radius: 50%;    cursor: pointer;    transition: all 0.3s;    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);    border: 2px solid white;}.indicator:hover {    background-color: #94a3b8;}.indicator.active {    background-color: var(--primary-color);    transform: scale(1.2);    border-color: var(--primary-color);}.floating-warning {    position: fixed;    bottom: 20px;    right: 20px;    background-color: #3b6b7e;    color: white;    padding: 15px 25px;    border-radius: 50px;    display: flex;    align-items: center;    gap: 15px;    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);    z-index: 2000;    max-width: 90%;    width: auto;    font-weight: 500;    font-size: 0.95rem;    animation: slideIn 0.5s ease-out;}.floating-warning .icon {    font-size: 1.5rem;    color: #fde047;}@keyframes slideIn {    from {        opacity: 0;        transform: translateY(20px);    }    to {        opacity: 1;        transform: translateY(0);    }}@media screen and (max-width: 768px) {    .floating-warning {        left: 20px;        right: 20px;        border-radius: 20px;        text-align: center;        justify-content: center;    }}@media screen and (max-width: 768px) {    .carousel-container {        position: relative;    }    .carousel-btn {        width: 35px !important;        height: 35px !important;        font-size: 1rem !important;        position: absolute !important;        top: 50% !important;        transform: translateY(-50%) !important;        margin: 0 !important;        z-index: 20;    }    .carousel-btn.prev {        left: 0 !important;    }    .carousel-btn.next {        right: 0 !important;    }}.hero {    padding: 100px 20px 20px !important;    min-height: auto !important;}.main-title {    font-size: 3rem !important;    margin-bottom: 10px !important;}.carousel-img {    height: 55vh !important;    min-height: 300px !important;}.hero-subtitle {    margin-top: 10px !important;}@keyframes zoomFadeIn {    from {        opacity: 0;        transform: scale(0.95);    }    to {        opacity: 1;        transform: scale(1);    }}.carousel-item.active {    animation: zoomFadeIn 0.8s ease-out !important;}.carousel-frame {    background-color: white;    padding: 15px;    border: 4px solid white;    box-shadow:        0 8px 20px rgba(0, 0, 0, 0.15),        0 0 0 1px rgba(0, 0, 0, 0.05);    border-radius: 20px;    transition: transform 0.3s ease;}.carousel-frame:hover {    transform: translateY(-2px);    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.2);}.carousel-img {    height: 75vh !important;    min-height: 500px !important;    max-height: 85vh !important;}.carousel-frame {    max-width: 98vw !important;    padding: 15px !important;}@media screen and (max-width: 768px) {    .carousel-img {        height: 65vh !important;        min-height: 400px !important;    }    .carousel-frame {        max-width: 100vw !important;        padding: 5px !important;    }}.custom-gift-header {    background-color: transparent;    padding: 60px 20px 30px;    display: flex;    justify-content: center;}.gift-header-box {    background-color: white;    padding: 20px 50px;    border-radius: 60px;    box-shadow: 0 10px 40px rgba(179, 209, 214, 0.4);    display: inline-flex;    align-items: center;    gap: 40px;    margin-bottom: 25px;    position: relative;}.gift-title-group {    display: flex;    flex-direction: column;    align-items: center;    line-height: 1;}.gift-line-1 {    font-family: 'Great Vibes', cursive;    font-size: 3rem;    color: var(--primary-color);}.gift-line-2 {    font-family: 'Great Vibes', cursive;    font-size: 4rem;    color: #8fbcc4;    color: var(--primary-color);    opacity: 0.8;}.gift-icons {    display: flex;    flex-direction: column;    gap: 15px;    font-size: 2rem;}.gift-subtitle-static {    font-family: 'Inter', sans-serif;    color: #546e7a;    font-size: 1rem;    font-style: italic;    margin-top: 10px;    font-weight: 500;}@keyframes softBounce {    0%,    100% {        transform: translateY(0);    }    50% {        transform: translateY(-5px);    }}.g-icon.bounce {    animation: softBounce 2.5s infinite ease-in-out;}.g-icon.bounce-delay {    animation: softBounce 2.5s infinite ease-in-out 0.5s;}@media screen and (max-width: 768px) {    .gift-header-box {        padding: 20px 25px;        gap: 15px;        border-radius: 40px;        width: 100%;        justify-content: center;    }    .gift-line-1 {        font-size: 2.2rem;    }    .gift-line-2 {        font-size: 3rem;    }    .gift-icons {        font-size: 1.5rem;        gap: 10px;    }}@keyframes twinkleEffect {    0%,    100% {        transform: scale(1) rotate(0deg);        opacity: 1;    }    50% {        transform: scale(1.2) rotate(15deg);        opacity: 0.8;    }}.g-icon.twinkle {    animation: twinkleEffect 3s infinite ease-in-out;}@keyframes pulseEffect {    0%,    100% {        transform: scale(1);    }    50% {        transform: scale(1.15);    }}.g-icon.pulse {    animation: pulseEffect 2s infinite ease-in-out 1s;}.hearts-container {    position: fixed;    top: 0;    left: 0;    width: 100%;    height: 100%;    z-index: -1;    overflow: hidden;    pointer-events: none;}.floating-heart {    position: absolute;    bottom: -10vh;    font-size: 2rem;    opacity: 0.3;    animation: floatUp linear infinite;    color: #e57373;}@keyframes floatUp {    0% {        transform: translateY(0) rotate(0deg) scale(0.8);        opacity: 0;    }    10% {        opacity: 0.4;    }    90% {        opacity: 0.2;    }    100% {        transform: translateY(-110vh) rotate(360deg) scale(1.2);        opacity: 0;    }}.gifts-floating-container {    position: absolute;    top: 0;    left: 0;    width: 100%;    height: 100%;    overflow: hidden;    pointer-events: none;    z-index: -1;}.floating-gift {    position: absolute;    bottom: -50px;    font-size: 1.5rem;    opacity: 0.6;    animation: floatGiftUp linear infinite;}@keyframes floatGiftUp {    0% {        transform: translateY(0) rotate(0deg);        opacity: 0;    }    20% {        opacity: 0.8;    }    80% {        opacity: 0.5;    }    100% {        transform: translateY(-800px) rotate(15deg);        opacity: 0;    }}.section-header {    position: relative;    overflow: hidden;}.hearts-container {    z-index: 1 !important;    pointer-events: none;}.hero-content-wrapper {    position: relative;    z-index: 5;}.custom-nav {    display: flex;    justify-content: space-between;    align-items: center;    padding: 10px 40px !important;    height: 100px;    background-color: white;    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);}.nav-left {    flex: 1;    display: flex;    justify-content: flex-start;}.nav-text {    font-family: 'Great Vibes', cursive;    font-size: 2rem;    color: var(--primary-color);    white-space: nowrap;}.nav-center {    flex: 1;    display: flex;    justify-content: center;    position: relative;}.nav-silhouette {    height: 120px;    width: auto;    margin-top: 10px;    opacity: 0.9;}.nav-right {    flex: 1;}@media screen and (max-width: 768px) {    .custom-nav {        flex-direction: column;        height: auto;        padding: 15px 20px !important;        gap: 10px;    }    .nav-left {        order: 2;    }    .nav-center {        order: 1;    }    .nav-silhouette {        height: 80px;    }    .nav-right {        display: none;    }}.nav-silhouette {    height: 90px !important;    margin-top: 0 !important;}.custom-nav {    height: 90px !important;}@media screen and (max-width: 768px) {    .nav-silhouette {        height: 70px !important;    }}.custom-nav {    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.03) !important;    border-bottom: 1px solid rgba(0, 0, 0, 0.05);}@media screen and (max-width: 768px) {    .custom-nav {        flex-direction: row !important;        justify-content: space-between !important;        align-items: center !important;        height: 80px !important;        padding: 0 20px !important;        gap: 0 !important;    }    .nav-left {        order: 1 !important;        flex: 1 !important;        justify-content: flex-start !important;    }    .nav-text {        font-size: 1.5rem !important;        white-space: nowrap !important;    }    .nav-center {        order: 2 !important;        flex: 0 0 auto !important;        width: auto !important;    }    .nav-silhouette {        height: 60px !important;        margin: 0 !important;    }    .nav-right {        display: none !important;    }}.nav-silhouette {    height: 70px !important;}.custom-nav {    height: 80px !important;    padding: 5px 40px !important;}@media screen and (max-width: 768px) {    .nav-silhouette {        height: 50px !important;    }    .custom-nav {        height: 70px !important;    }}.hearts-container {    z-index: 1 !important;}.navbar,.card,.section-header,.hero-content-wrapper,.floating-warning,.carousel-frame {    position: relative !important;    z-index: 10 !important;}.modal {    position: fixed;    top: 0;    left: 0;    width: 100%;    height: 100%;    display: flex;    justify-content: center;    align-items: center;    z-index: 10000 !important;    background-color: rgba(0, 0, 0, 0.5);    backdrop-filter: blur(2px);    overflow-y: hidden;}.modal-content {    max-height: 90vh;    overflow-y: auto;    margin: 0 20px;}.floating-warning {    max-width: 400px !important;    width: fit-content !important;    right: 20px !important;    left: auto !important;}@media screen and (max-width: 768px) {    .floating-warning {        left: 50% !important;        transform: translateX(-50%);        width: 90% !important;        bottom: 10px !important;        right: auto !important;        max-width: 90% !important;    }}.floating-warning {    position: fixed !important;    bottom: 20px !important;    right: 20px !important;    z-index: 2000 !important;}@media screen and (max-width: 768px) {    .floating-warning {        display: none !important;    }}.story-section {    padding: 60px 20px;    background-color: #f9f9f9;    background-color: transparent;    display: flex;    justify-content: center;}.story-card {    background-color: #e3eff6;    padding: 50px 60px;    border-radius: 20px;    max-width: 800px;    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);    font-family: 'Inter', sans-serif;    color: #4a5568;    line-height: 1.8;    position: relative;    z-index: 10;    margin-bottom: 40px;}.story-paragraph {    margin-bottom: 25px;    display: flex;    gap: 15px;    align-items: flex-start;    text-align: justify;}.story-icon {    font-size: 1.2rem;    min-width: 25px;    margin-top: 2px;}@media (max-width: 768px) {    .story-card {        padding: 30px 25px;        border-radius: 15px;    }    .story-paragraph {        font-size: 0.95rem;        gap: 10px;    }}.julius-effect {    position: fixed;    bottom: -20px;    left: -350px;    width: 350px;    height: auto;    z-index: 9000;    pointer-events: none;    animation: juliusPeek 8s infinite ease-in-out;    filter: drop-shadow(5px 5px 15px rgba(0, 0, 0, 0.3));}.julius-effect {    position: fixed;    bottom: -20px;    left: -350px;    width: 350px;    height: auto;    z-index: 9000;    pointer-events: none;    animation: juliusPeek 8s infinite ease-in-out;    animation-delay: 3s;    filter: drop-shadow(5px 5px 15px rgba(0, 0, 0, 0.3));}.julius-effect img {    width: 100%;    display: block;}.julius-bubble {    position: absolute;    top: -30px;    right: 20px;    background: #fff;    color: #333;    padding: 10px 15px;    border-radius: 20px;    font-size: 0.9rem;    font-weight: bold;    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);    white-space: nowrap;    z-index: 9001;}.julius-bubble::after {    content: '';    position: absolute;    bottom: -10px;    right: 30px;    border-width: 10px 10px 0;    border-style: solid;    border-color: #fff transparent;    display: block;    width: 0;}@keyframes juliusPeek {    0% {        left: -350px;        transform: rotate(-15deg);    }    15% {        left: 0px;        transform: rotate(5deg);    }    60% {        left: 0px;        transform: rotate(0deg);    }    75% {        left: -350px;        transform: rotate(-15deg);    }    100% {        left: -350px;    }}@media (max-width: 768px) {    .julius-effect {        width: 230px;        bottom: 0px;        left: -300px;    }    .julius-bubble {        font-size: 0.75rem;        padding: 8px 12px;        top: -25px;    }    @keyframes juliusPeek {        0% {            left: -300px;            transform: rotate(-15deg);        }        15% {            left: 20px;            transform: rotate(5deg);        }        60% {            left: 20px;            transform: rotate(0deg);        }        75% {            left: -300px;            transform: rotate(-15deg);        }        100% {            left: -300px;        }    }}.btn-primary {    background-color: var(--primary-color);    color: white;    border: none;    padding: 12px 20px;    border-radius: 50px;    font-size: 0.75rem;    white-space: nowrap;    font-weight: 700;    cursor: pointer;    transition: background-color 0.3s, transform 0.2s, box-shadow 0.3s;    width: 100%;    display: block;    text-transform: uppercase;    letter-spacing: 0.5px;    margin-top: 10px;    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);}.btn-primary:hover {    background-color: #154c56;    transform: translateY(-2px);    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);}.btn-primary:active {    transform: translateY(0);    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);}@media screen and (max-width: 768px) {    .btn-primary {        font-size: 0.7rem !important;        padding: 10px 8px !important;        letter-spacing: 0px !important;        width: 100%;        white-space: normal !important;        line-height: 1.2 !important;        height: auto !important;        min-height: 44px;        display: flex !important;        align-items: center;        justify-content: center;        text-align: center;    }}.btn-payment {    background-color: #2ecc71;    color: white;    border: none;    padding: 15px 30px;    border-radius: 50px;    font-size: 1.1rem;    font-weight: bold;    cursor: pointer;    width: 100%;    margin-top: 20px;    transition: transform 0.2s, background-color 0.3s;    box-shadow: 0 4px 15px rgba(46, 204, 113, 0.3);}.btn-payment:hover {    background-color: #27ae60;    transform: scale(1.02);}.pix-header {    display: flex;    align-items: center;    justify-content: center;    gap: 10px;    margin-bottom: 15px;}.pix-header h3 {    color: var(--primary-color);    margin: 0;    font-size: 1.3rem;}.pix-icon {    font-size: 1.8rem;}.pix-instruction {    color: var(--text-secondary);    margin-bottom: 20px;    font-size: 0.95rem;}.qr-container {    background: linear-gradient(145deg, #f8f9fa, #e9ecef);    padding: 20px;    border-radius: 16px;    display: inline-block;    margin-bottom: 20px;    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);    border: 2px solid #e0e0e0;}.qr-container img {    display: block;    width: 200px;    height: 200px;    border-radius: 8px;}.pix-code-section {    margin: 20px 0;    text-align: left;}.pix-code-section label {    display: block;    font-weight: 600;    color: var(--text-primary);    margin-bottom: 10px;    font-size: 0.9rem;}.pix-code-wrapper {    display: flex;    gap: 10px;    align-items: stretch;}.pix-code-wrapper input {    flex: 1;    padding: 12px 15px;    border: 2px solid #e0e0e0;    border-radius: 10px;    font-family: monospace;    font-size: 0.75rem;    background-color: #f8f9fa;    color: var(--text-primary);    overflow: hidden;    text-overflow: ellipsis;}.pix-code-wrapper input:focus {    outline: none;    border-color: var(--primary-color);}#btn-copy-pix {    padding: 12px 20px;    background-color: var(--primary-color);    color: white;    border: none;    border-radius: 10px;    font-weight: 600;    cursor: pointer;    transition: all 0.3s;    white-space: nowrap;    font-size: 0.95rem;}#btn-copy-pix:hover {    background-color: var(--primary-hover);    transform: translateY(-2px);    box-shadow: 0 4px 12px rgba(42, 110, 120, 0.3);}.copy-feedback {    display: block;    margin-top: 10px;    color: #22c55e;    font-weight: 600;    font-size: 0.9rem;    animation: fadeInOut 2.5s ease;}@keyframes fadeInOut {    0% {        opacity: 0;        transform: translateY(-5px);    }    10% {        opacity: 1;        transform: translateY(0);    }    80% {        opacity: 1;    }    100% {        opacity: 0;    }}.btn-confirm-payment {    width: 100%;    padding: 15px 30px;    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);    color: white;    border: none;    border-radius: 12px;    font-size: 1.1rem;    font-weight: 700;    cursor: pointer;    margin-top: 20px;    transition: all 0.3s;    box-shadow: 0 4px 15px rgba(34, 197, 94, 0.3);}.btn-confirm-payment:hover {    transform: translateY(-2px);    box-shadow: 0 6px 20px rgba(34, 197, 94, 0.4);}.progress-bar {    width: 100%;    height: 8px;    background-color: #e5e7eb;    border-radius: 10px;    overflow: hidden;    margin: 10px 0 5px;}.progress-fill {    height: 100%;    background: linear-gradient(90deg, var(--primary-color) 0%, #5da5b0 100%);    border-radius: 10px;    transition: width 0.5s ease;}.progress-text {    font-size: 0.75rem;    color: var(--primary-color);    font-weight: 600;    margin: 0;}.remaining-complete {    color: #22c55e !important;    font-weight: 600;}.card-badge-complete {    position: absolute;    top: 10px;    right: 10px;    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);    color: white;    padding: 8px 15px;    border-radius: 20px;    font-size: 0.8rem;    font-weight: 700;    box-shadow: 0 4px 10px rgba(34, 197, 94, 0.3);    z-index: 5;}.card-contributors {    margin: 12px 0;    padding: 10px;    background-color: #f0f9ff;    border-radius: 10px;    border: 1px solid #bae6fd;    text-align: left;    font-size: 0.8rem;}.contributors-label {    display: block;    font-weight: 600;    color: var(--primary-color);    margin-bottom: 5px;}.contributor-name {    color: var(--text-secondary);    display: inline;}.more-contributors {    background-color: var(--primary-color);    color: white;    padding: 2px 8px;    border-radius: 10px;    font-size: 0.7rem;    margin-left: 5px;}#contributions-list {    list-style: none;    padding: 0;    margin: 10px 0 0;    text-align: left;}#contributions-list li {    padding: 10px 12px;    background-color: #f8f9fa;    border-radius: 8px;    margin-bottom: 8px;    font-size: 0.9rem;    border-left: 3px solid var(--primary-color);}#contributions-list li strong {    color: var(--primary-color);}#contributions-list li small {    color: var(--text-secondary);    margin-left: 5px;}@media screen and (max-width: 768px) {    .pix-code-wrapper {        flex-direction: column;    }    .pix-code-wrapper input {        font-size: 0.65rem;    }    #btn-copy-pix {        width: 100%;    }    .qr-container img {        width: 180px;        height: 180px;    }    .card-contributors {        font-size: 0.75rem;    }}
/* Save the Date Banner */
.save-the-date-banner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    background: linear-gradient(135deg, #2A6E78 0%, #5da5b0 50%, #2A6E78 100%);
    background-size: 200% 200%;
    animation: gradientShift 4s ease infinite;
    padding: 20px 40px;
    border-radius: 60px;
    margin-bottom: 30px;
    box-shadow: 0 8px 30px rgba(42, 110, 120, 0.35);
    border: 2px solid rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
}
.save-the-date-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 60%);
    animation: shimmer 3s ease-in-out infinite;
}
@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}
@keyframes shimmer {
    0%, 100% { transform: translateX(-50%) rotate(0deg); }
    50% { transform: translateX(50%) rotate(180deg); }
}
.save-date-icon {
    font-size: 2rem;
    animation: pulseRing 2s ease-in-out infinite;
}
@keyframes pulseRing {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}
.save-date-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}
.save-date-label {
    font-family: 'Great Vibes', cursive;
    font-size: 2rem;
    color: white;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}
.save-date-date {
    font-family: 'Inter', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: white;
    letter-spacing: 2px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}
@media screen and (max-width: 768px) {
    .save-the-date-banner {
        padding: 15px 25px;
        gap: 12px;
        border-radius: 40px;
        margin-bottom: 20px;
    }
    .save-date-icon {
        font-size: 1.5rem;
    }
    .save-date-label {
        font-size: 1.5rem;
    }
    .save-date-date {
        font-size: 1.1rem;
        letter-spacing: 1px;
    }
}

.save-date-note {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: #fef08a;
    margin-top: 5px;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
    animation: pulseNote 2s ease-in-out infinite;
}
@keyframes pulseNote {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}
@media screen and (max-width: 768px) {
    .save-date-note {
        font-size: 0.8rem;
    }
}

/* Ajuste para subir o banner Save the Date */
.hero {
    padding-top: 90px !important;
}
.save-the-date-banner {
    margin-top: 0 !important;
    margin-bottom: 20px !important;
}
@media screen and (max-width: 768px) {
    .hero {
        padding-top: 80px !important;
    }
}

/* Reduzir ainda mais o espaço */
.hero {
    padding-top: 75px !important;
    padding-bottom: 10px !important;
}
.hero-content-wrapper {
    margin-top: 5px !important;
    padding-top: 0 !important;
}
.save-the-date-banner {
    margin-top: -5px !important;
}
@media screen and (max-width: 768px) {
    .hero {
        padding-top: 70px !important;
    }
}

/* Aproximar ainda mais do header */
.hero {
    padding-top: 60px !important;
}
.hero-content-wrapper {
    margin-top: 0 !important;
}
.save-the-date-banner {
    margin-top: -10px !important;
}
@media screen and (max-width: 768px) {
    .hero {
        padding-top: 55px !important;
    }
}
