:root {
    --purple-deep: #0a0a0a;
    --purple-medium: #121212;
    --purple-light: #e91e63;
    --pink-vibrant: #e91e63;
    --pink-soft: #ff8ab8;
    --gold: #d4af37;
    --cream: #f0f0f0;
    --shadow-glow: rgba(0,0,0,0.35);
    --text-primary: #f0f0f0;
    --card-bg: rgba(18,18,18,0.85);
}

body.light-mode {
    --purple-deep: #f8f1e9;
    --purple-medium: #f0e6d9;
    --purple-light: #91173f;
    --pink-vibrant: #e91e63;
    --pink-soft: #691432;
    --gold: #4b390b;
    --cream: #1f1f1f;
    --shadow-glow: rgba(0,0,0,0.25);
    --text-primary: #1f1f1f;
    --card-bg: rgba(240,230,217,0.95);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    background: linear-gradient(135deg, #050505 0%, #121212 50%, #1f1f1f 100%);
    color: var(--text-primary);
    overflow-x: hidden;
    position: relative;
    line-height: 1.6;
    transition: background 0.6s ease, color 0.6s ease;
}

body.light-mode {
    background: linear-gradient(135deg, #f8f1e9 0%, #f0e6d9 50%, #e8d9c7 100%);
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(2px 2px at 20% 30%, rgba(233,30,99,0.25), transparent),
        radial-gradient(2px 2px at 60% 70%, rgba(233,30,99,0.25), transparent),
        radial-gradient(1px 1px at 50% 50%, rgba(233,30,99,0.25), transparent),
        radial-gradient(1px 1px at 80% 10%, rgba(233,30,99,0.25), transparent),
        radial-gradient(2px 2px at 90% 60%, rgba(233,30,99,0.25), transparent),
        radial-gradient(1px 1px at 33% 80%, rgba(233,30,99,0.25), transparent),
        radial-gradient(1px 1px at 15% 60%, rgba(233,30,99,0.25), transparent);
    background-size: 200% 200%;
    background-position: 0% 0%;
    opacity: 0.4;
    pointer-events: none;
    z-index: -1;
    animation: twinkle 8s ease-in-out infinite;
}

@keyframes twinkle {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.55; }
}

.cosmic-pulse {
    position: absolute;
    top: 20%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 400px;
    pointer-events: none;
    z-index: 0;
    will-change: transform;
}

.cosmic-pulse::before,
.cosmic-pulse::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background: radial-gradient(circle, rgba(233,30,99,0.35), rgba(18,18,18,0.4), transparent);
    will-change: transform, opacity;
}

.cosmic-pulse::before {
    width: 100%;
    height: 100%;
    animation: pulse-expand 4s ease-in-out infinite;
}

.cosmic-pulse::after {
    width: 80%;
    height: 80%;
    animation: pulse-expand 4s ease-in-out infinite 0.5s;
}

@keyframes pulse-expand {
    0%, 100% {
        transform: translate(-50%, -50%) scale(0.8);
        opacity: 0.8;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0.4;
    }
}

nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 18px 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 18px;
    z-index: 1000;
    background: linear-gradient(180deg, rgba(10,10,10,0.98) 0%, rgba(18,18,18,0.85) 50%, rgba(10,10,10,0) 100%);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-bottom: none;
    box-shadow: none;
    transition: padding 0.3s ease, background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    overflow: visible;
}

nav::after { display: none; }

body.light-mode nav {
    background: linear-gradient(180deg, rgba(248,241,233,0.98) 0%, rgba(240,230,217,0.85) 50%, transparent);
}

nav.scrolled {
    background: linear-gradient(180deg, rgba(10,10,10,0.99) 0%, rgba(18,18,18,0.9) 70%, rgba(10,10,10,0.3) 100%);
    box-shadow: none;
}

.logo {
    font-family: 'Cinzel', serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--pink-vibrant);
    text-shadow: none;
    letter-spacing: 2px;
}

.logo img {
    height: 54px !important;
    width: auto;
    display: block;
    filter: none;
}

.logo.cache-refresh-logo {
    position: relative;
    display: inline-flex;
    align-items: center;
    width: max-content;
}

.cache-refresh-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: none;
    background: transparent;
    cursor: pointer;
    transition: transform 0.22s ease, filter 0.22s ease;
    pointer-events: none;
    cursor: default;
}

.cache-refresh-btn:hover,
.cache-refresh-btn:focus-visible {
    transform: translateY(-1px) scale(1.02);
    filter: drop-shadow(0 0 12px rgba(233,30,99,0.28));
    outline: none;
}

.cache-refresh-btn img {
    pointer-events: none;
}

.cache-refresh-badge {
    position: absolute;
    top: calc(100% + 6px);
    left: 4px;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 6px 12px;
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(233,30,99,0.92), rgba(145,23,63,0.92));
    border: 1px solid rgba(255,255,255,0.14);
    color: #fff6fb;
    font-family: 'Cinzel', serif;
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 1px;
    white-space: nowrap;
    box-shadow: 0 10px 24px rgba(0,0,0,0.28);
    animation: cacheBadgeBlink 1.15s ease-in-out infinite;
    pointer-events: none;
    z-index: 30;
}

body.light-mode .cache-refresh-badge {
    background: linear-gradient(135deg, rgba(145,23,63,0.96), rgba(233,30,99,0.9));
    color: #fff7fb;
    border-color: rgba(75,57,11,0.18);
}

@keyframes cacheBadgeBlink {
    0%, 100% {
        opacity: 0.78;
        transform: translateY(0) scale(0.98);
        box-shadow: 0 10px 24px rgba(0,0,0,0.28);
    }
    50% {
        opacity: 1;
        transform: translateY(-1px) scale(1.02);
        box-shadow: 0 14px 30px rgba(233,30,99,0.34);
    }
}

@media (max-width: 768px) {
    .cache-refresh-badge {
        top: calc(100% + 4px);
        left: 0;
        padding: 5px 9px;
        font-size: 0.56rem;
        letter-spacing: 0.8px;
    }
}

.nav-menu {
    display: flex;
    gap: 28px;
    align-items: center;
    list-style: none;
    padding: 12px 18px;
    border-radius: 999px;
    background: rgba(8,8,8,0.18);
    border: 1px solid rgba(255,255,255,0.06);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.06);
}

body.light-mode .nav-menu {
    background: rgba(255,255,255,0.22);
    border-color: rgba(145,23,63,0.12);
}

.nav-menu li {
    background: none !important;
    padding: 0 !important;
}

.nav-menu a {
    color: var(--text-primary);
    text-decoration: none;
    font-family: 'Cinzel', serif;
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 1px;
    position: relative;
    transition: all 0.3s ease;
    display: inline-block;
    text-shadow: none;
    background: transparent !important;
    padding: 0 !important;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--pink-vibrant), var(--pink-soft));
    transition: width 0.3s ease;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--pink-soft);
}

.particle-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -10;
    will-change: contents;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1001;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-primary);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

@media (max-width: 768px) {
    .cosmic-pulse {
        top: 15%;
    }
    nav {
        padding: 14px 18px;
    }
    .logo {
        font-size: 1.2rem;
    }
    .logo img {
        height: 44px !important;
    }
    .hamburger {
        display: flex;
    }
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 76px;
        flex-direction: column;
        background: rgba(18,18,18,0.96);
        width: calc(100% - 24px);
        margin: 0 12px;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0,0,0,0.8);
        padding: 22px 18px 26px;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        border-radius: 24px;
        border: 1px solid rgba(255,255,255,0.08);
        gap: 8px;
    }
    body.light-mode .nav-menu {
        background: rgba(248,241,233,0.98);
    }
    .nav-menu.active {
        left: 0;
    }
    .nav-menu a {
        font-size: 1.1rem;
        width: 100%;
        padding: 12px 14px !important;
        border-radius: 14px;
    }
    .nav-menu a:hover,
    .nav-menu a.active {
        background: rgba(233,30,99,0.08) !important;
    }
}

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 20px 72px;
    text-align: center;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
    z-index: 1;
}

.hero-image-bg {
    object-fit: cover;
}

.hero-video,
.hero-image-bg {
    opacity: 1;
    filter: none;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(10,10,10,0.55) 0%,
        rgba(10,10,10,0.25) 30%,
        rgba(10,10,10,0) 65%,
        rgba(15,15,15,0.55) 85%,
        rgba(15,15,15,0.95) 100%
    );
    z-index: 2;
}

.hero-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10,10,10,0.45);
    z-index: 1;
}

.hero-frame-overlay {
    position: absolute;
    inset: clamp(14px, 2vw, 26px);
    pointer-events: none;
    background: url('../assets/generated/hero-frame-overlay-web.png') center / 100% 100% no-repeat;
    opacity: 0.6;
    filter: drop-shadow(0 18px 32px rgba(0, 0, 0, 0.18));
    z-index: 3;
}

body.light-mode .hero-video-overlay {
    background: rgba(248,241,233,0.45);
}

.hero::before,
.hero-video-overlay {
    display: none !important;
    background: none !important;
}

.hero-images {
    position: absolute;
    height: 35%;
    max-height: 400px;
    object-fit: contain;
    opacity: 0.5;
    z-index: 2;
    pointer-events: none;
}

.hero-image-left {
    left: 5%;
    top: 75%;
    transform: translateY(-50%);
    display: none;
}

.hero-image-right {
    display: none;
}

.hero-mobile-image {
    display: none;
}

.hero-mobile-image {
    display: none !important;
}

@media (max-width: 1024px) {
    .hero-images {
        height: 70%;
    }
}

@media (max-width: 768px) {
    .hero-images {
        display: none;
    }
    .hero-mobile-image {
        display: block;
        width: 200px;
        height: auto;
        margin: 0 auto 30px;
        opacity: 0.6;
    }
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 860px;
    padding: 36px 32px;
    border-radius: 32px;
    background: linear-gradient(180deg, rgba(8,8,8,0.18), rgba(8,8,8,0.36));
    border: 1px solid rgba(255,255,255,0.08);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 22px 60px rgba(0,0,0,0.28);
}

body.light-mode .hero-content {
    background: linear-gradient(180deg, rgba(255,255,255,0.18), rgba(255,255,255,0.36));
    border-color: rgba(145,23,63,0.12);
}

.ceremony-label {
    font-family: 'Cinzel', serif;
    font-size: 0.78rem;
    letter-spacing: 6px;
    text-transform: uppercase;
    color: #d4b896;
    margin-bottom: 20px;
    font-weight: 500;
    display: block;
    opacity: 0.9;
}

.ceremony-label::before { content: '· '; }
.ceremony-label::after  { content: ' ·'; }

body.light-mode .ceremony-label {
    color: #6d1b7a;
}

.hero h1 {
    font-family: 'Cinzel', serif;
    font-size: clamp(2.4rem, 5vw, 4.2rem);
    font-weight: 700;
    color: #f5e6c8;
    background: linear-gradient(160deg, #f9edd3 0%, #e8c97a 45%, #f0d99a 70%, #f5e6c8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0 auto 20px;
    line-height: 1.15;
    max-width: 16ch;
    text-wrap: balance;
    text-shadow: none;
}

body.light-mode .hero h1 {
    color: #1f1f1f;
    background: none;
    -webkit-text-fill-color: #1f1f1f;
}

.hero-subtitle {
    font-size: clamp(0.92rem, 1.6vw, 1.08rem);
    color: rgba(240, 230, 210, 0.92);
    margin: 0 auto 28px;
    max-width: 52ch;
    font-weight: 300;
    letter-spacing: 0.3px;
    text-wrap: pretty;
    text-shadow: 0 1px 4px rgba(0,0,0,0.5);
    line-height: 1.7;
    padding: 18px 22px;
    background: rgba(10, 6, 20, 0.38);
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.07);
}

.ceremony-date {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 1rem;
    margin-bottom: 28px;
    color: #f0d98a !important;
    -webkit-text-fill-color: #f0d98a !important;
    text-shadow: 0 1px 6px rgba(0,0,0,0.4) !important;
    padding: 13px 28px !important;
    font-family: 'Cinzel', serif !important;
    font-weight: 600 !important;
    letter-spacing: 1.8px !important;
    border: 1px solid rgba(212, 175, 55, 0.55);
    border-radius: 999px;
    background: rgba(10, 6, 20, 0.45);
    box-shadow: 0 0 18px rgba(212,175,55,0.12), inset 0 1px 0 rgba(255,220,100,0.08);
}

.ceremony-date::before {
    content: '🗓';
    font-size: 1rem;
    -webkit-text-fill-color: initial;
    filter: saturate(0.7) brightness(1.1);
}

body.light-mode .ceremony-date {
    color: #6d1b7a !important;
    -webkit-text-fill-color: #6d1b7a !important;
    border-color: rgba(109,27,122,0.4);
    background: rgba(255,255,255,0.25);
}

body.light-mode .ceremony-date::before {
    -webkit-text-fill-color: initial;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 230px;
    padding: 18px 38px;
    background: linear-gradient(135deg, var(--pink-vibrant), #c0134e);
    color: white;
    text-decoration: none;
    font-family: 'Cinzel', serif;
    font-size: 0.98rem;
    font-weight: 600;
    letter-spacing: 2.4px;
    border-radius: 50px;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
    position: relative;
    overflow: hidden;
    z-index: 99999;
    border: 1px solid rgba(255,255,255,0.18);
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
    z-index: 99999;
}

.cta-button:hover::before {
    width: 400px;
    height: 400px;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.5);
}

@media (max-width: 768px) {
    .hero {
        min-height: auto;
        padding: 108px 16px 56px;
    }
    .hero-content {
        width: 100%;
        padding: 28px 18px;
        border-radius: 24px;
    }
    .hero h1 {
        font-size: 2.2rem;
        max-width: 100%;
    }
    .hero-subtitle {
        font-size: 1.1rem;
    }
    .ceremony-date {
        font-size: 0.92rem;
        padding: 10px 16px !important;
    }
    .cta-button {
        width: 100%;
        min-width: 0;
        padding: 15px 24px;
        font-size: 0.92rem;
        z-index: 99999;
    }
}

.calendar-section {
    position: relative;
    width: 100%;
    max-width: none;
    padding: 118px clamp(18px, 4vw, 52px) 104px;
    margin: 0;
    z-index: 10;
    overflow: hidden;
}

.calendar-section::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 0;
    background:
        linear-gradient(180deg, rgba(5, 6, 12, 0.3), rgba(7, 9, 18, 0.4) 32%, rgba(8, 10, 22, 0.52) 68%, rgba(6, 7, 14, 0.68)),
        radial-gradient(circle at 50% 16%, rgba(244, 166, 255, 0.12), transparent 24%),
        radial-gradient(circle at 18% 35%, rgba(90, 180, 255, 0.08), transparent 22%),
        radial-gradient(circle at 82% 72%, rgba(95, 244, 232, 0.08), transparent 20%),
        linear-gradient(180deg, rgba(8, 7, 14, 0.52), rgba(11, 16, 32, 0.44) 50%, rgba(13, 11, 20, 0.6)),
        image-set(url('../calendario.webp') type('image/webp'), url('../calendario.png') type('image/png'));
    background-size: auto, auto, auto, auto, auto, cover;
    background-position: center, center, center, center, center, center;
    background-repeat: no-repeat, no-repeat, no-repeat, no-repeat, no-repeat, no-repeat;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.05);
    pointer-events: none;
}

.calendar-atmosphere {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
}

.calendar-orb,
.calendar-energy,
.calendar-stars {
    position: absolute;
    pointer-events: none;
}

.calendar-orb {
    border-radius: 999px;
    filter: blur(10px);
    opacity: 0.5;
}

.orb-a {
    width: 360px;
    height: 360px;
    top: 2%;
    left: 50%;
    transform: translateX(-50%);
    background: radial-gradient(circle, rgba(234, 147, 255, 0.34), rgba(99, 72, 255, 0.08) 55%, transparent 72%);
}

.orb-b {
    width: 280px;
    height: 280px;
    top: 24%;
    left: 8%;
    background: radial-gradient(circle, rgba(84, 209, 255, 0.22), rgba(84, 209, 255, 0.03) 58%, transparent 72%);
}

.orb-c {
    width: 340px;
    height: 340px;
    right: 4%;
    bottom: 6%;
    background: radial-gradient(circle, rgba(255, 191, 120, 0.16), rgba(154, 82, 255, 0.08) 54%, transparent 72%);
}

.calendar-energy {
    display: none;
}

.calendar-stars {
    inset: 0;
    background-image:
        radial-gradient(circle at 12% 18%, rgba(255,255,255,0.9) 0 1px, transparent 1.7px),
        radial-gradient(circle at 31% 8%, rgba(255,228,179,0.75) 0 1.1px, transparent 1.8px),
        radial-gradient(circle at 63% 14%, rgba(255,255,255,0.85) 0 1px, transparent 1.9px),
        radial-gradient(circle at 82% 22%, rgba(117,214,255,0.85) 0 1.2px, transparent 2px),
        radial-gradient(circle at 76% 68%, rgba(255,255,255,0.78) 0 1px, transparent 1.8px),
        radial-gradient(circle at 18% 78%, rgba(230,153,255,0.82) 0 1.2px, transparent 2px),
        radial-gradient(circle at 47% 58%, rgba(255,243,197,0.9) 0 1px, transparent 1.8px),
        radial-gradient(circle at 92% 84%, rgba(96,214,255,0.88) 0 1.2px, transparent 1.8px);
    opacity: 0.42;
}

.calendar-header,
.calendar-grid {
    position: relative;
    z-index: 1;
}

.calendar-header {
    max-width: 820px;
    margin: 0 auto 44px;
    text-align: center;
}

.calendar-kicker {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 18px;
    padding: 7px 16px;
    border-radius: 999px;
    border: 1px solid rgba(233,30,99,0.16);
    background: rgba(255,255,255,0.04);
    color: #f0d7a8;
    font-family: 'Cinzel', serif;
    font-size: 0.8rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.05);
}

.section-title {
    font-family: 'Cinzel', serif;
    font-size: clamp(2rem, 3.4vw, 3.5rem);
    text-align: center;
    margin-bottom: 14px;
    background: linear-gradient(180deg, #ffe4c0 10%, #f6c793 42%, #f1a5ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1;
    letter-spacing: 0.03em;
    text-wrap: balance;
    text-shadow: 0 0 28px rgba(255, 200, 146, 0.12);
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 17px;
    max-width: 1380px;
    margin: 0 auto;
}

.ceremony-card {
    position: relative;
    min-height: 248px;
    padding: 0;
    border-radius: 28px;
    overflow: hidden;
    cursor: pointer;
    background: rgba(7, 10, 18, 0.03);
    border: 2px solid rgba(212, 175, 55, 0.9);
    box-shadow:
        0 18px 34px rgba(0,0,0,0.34),
        0 0 0 1px rgba(255, 228, 170, 0.18),
        0 0 18px rgba(141, 90, 255, 0.14),
        0 0 22px rgba(81, 200, 255, 0.1);
    transition: transform 0.42s ease, box-shadow 0.42s ease, filter 0.42s ease;
    isolation: isolate;
}

.ceremony-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background:
        radial-gradient(circle at 22% 20%, rgba(255,198,143,0.12), transparent 30%),
        radial-gradient(circle at 80% 82%, rgba(71,200,255,0.1), transparent 28%);
    opacity: 0.22;
    z-index: 0;
}

.ceremony-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    border: 1px solid rgba(255, 232, 184, 0.52);
    box-shadow:
        inset 0 0 0 1px rgba(118, 82, 17, 0.2),
        0 0 10px rgba(212, 175, 55, 0.16);
    opacity: 1;
    z-index: 2;
    pointer-events: none;
}

.ceremony-card.is-next::after {
    border-color: #f1cf63;
    box-shadow:
        inset 0 0 0 1px rgba(118, 82, 17, 0.24),
        0 0 14px rgba(241, 207, 99, 0.2);
}

.ceremony-card:hover {
    transform: translateY(-8px);
    box-shadow:
        0 22px 42px rgba(0,0,0,0.42),
        0 0 0 1px rgba(255, 236, 195, 0.2),
        0 0 18px rgba(212, 175, 55, 0.16),
        0 0 24px rgba(210, 102, 255, 0.18),
        0 0 30px rgba(86, 199, 255, 0.14);
    filter: saturate(1.03);
}

.card-shell {
    position: relative;
    z-index: 1;
    min-height: 242px;
    height: 100%;
    margin: 3px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 17px 17px 19px;
    border-radius: 24px;
    background:
        linear-gradient(180deg, rgba(8, 10, 18, 0.1), rgba(8, 11, 24, 0.15));
    box-shadow:
        inset 0 0 0 1px rgba(255,255,255,0.04);
}

.card-badge {
    position: absolute;
    top: 10px;
    left: 15px;
    z-index: 3;
    padding: 6px 10px;
    border-radius: 999px;
    font-family: 'Cinzel', serif;
    font-size: 0.63rem;
    line-height: 1;
    letter-spacing: 0.08em;
    color: #fff2c7;
    text-transform: uppercase;
    background: linear-gradient(135deg, rgba(255,197,115,0.22), rgba(233,94,255,0.22) 55%, rgba(93,204,255,0.22));
    border: 1px solid rgba(255, 219, 161, 0.4);
    box-shadow: 0 0 22px rgba(252, 190, 98, 0.18), 0 0 22px rgba(135, 96, 255, 0.16);
}

.ceremony-card.is-next {
    box-shadow:
        0 22px 40px rgba(0,0,0,0.42),
        0 0 24px rgba(244, 190, 114, 0.18),
        0 0 28px rgba(117, 110, 255, 0.16),
        0 0 24px rgba(78, 194, 255, 0.14);
}

.ceremony-card.is-today .card-badge {
    color: #ffffff;
    background: linear-gradient(135deg, rgba(255,158,102,0.24), rgba(96,214,255,0.22));
}

.card-date-block {
    width: 100%;
    margin-bottom: 15px;
    text-align: center;
}

.card-date {
    font-family: 'Cinzel', serif;
    font-size: clamp(2.2rem, 2.7vw, 3.05rem);
    font-weight: 700;
    line-height: 0.95;
    margin-bottom: 4px;
    color: #ffd39e;
    text-shadow: 0 0 18px rgba(255, 202, 135, 0.22);
}

.card-month {
    font-family: 'Cinzel', serif;
    font-size: 0.76rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255, 232, 192, 0.92);
}

.card-copy {
    width: 100%;
    margin-bottom: 15px;
    text-align: center;
}

.card-category {
    margin-bottom: 7px;
    font-size: 0.68rem;
    line-height: 1.4;
    color: rgba(239, 227, 255, 0.8);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.card-title {
    font-family: 'Cormorant Garamond', 'Georgia', serif;
    font-size: clamp(1.32rem, 1.53vw, 1.78rem);
    line-height: 1.1;
    margin-bottom: 12px;
    font-weight: 600;
    letter-spacing: 0.02em;
    color: #ffe8c2;
    text-wrap: balance;
    text-shadow: 0 0 18px rgba(255, 197, 110, 0.12);
}

.card-title.is-long {
    font-size: clamp(1.15rem, 1.28vw, 1.45rem);
}

.card-title.is-longer {
    font-size: clamp(1.02rem, 1.1vw, 1.23rem);
    line-height: 1.14;
}

.card-time {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 0.78rem;
    line-height: 1.4;
    color: rgba(255, 234, 201, 0.92);
}

.card-time-icon {
    width: 19px;
    height: 19px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    color: #fff0bb;
    background: rgba(255,255,255,0.08);
    box-shadow: inset 0 0 0 1px rgba(255,255,255,0.08), 0 0 16px rgba(255, 209, 120, 0.12);
}

.card-link {
    margin-top: auto;
    width: 145px;
    max-width: 82%;
    min-width: 0;
    height: 43px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    padding: 0;
    border-radius: 0;
    border: none;
    color: transparent;
    text-decoration: none;
    font-size: 0;
    letter-spacing: 0;
    background: url('../bt_participar.png') center / contain no-repeat;
    box-shadow: none;
    transition: transform 0.22s ease, filter 0.22s ease;
}

.card-link:hover {
    transform: translateY(-1px) scale(1.02);
    filter: brightness(1.06);
}

.card-link span,
.card-link-arrow {
    display: none;
}

.calendar-empty {
    grid-column: 1 / -1;
    padding: 48px 24px;
    text-align: center;
    color: rgba(255,255,255,0.58);
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 24px;
}

.reveal-card {
    opacity: 0;
    transform: translateY(26px);
    transition:
        opacity 0.7s ease var(--reveal-delay, 0s),
        transform 0.7s ease var(--reveal-delay, 0s);
}

.reveal-card.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 1280px) {
    .calendar-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 1100px) {
    .calendar-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .calendar-section {
        padding: 82px 16px 72px;
    }

    .calendar-section::before {
        border-radius: 0;
    }

    .calendar-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 14px;
    }

    .calendar-header {
        margin-bottom: 34px;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .ceremony-card {
        min-height: 0;
        border-radius: 20px;
    }

    .card-shell {
        min-height: 0;
        padding: 18px 14px 18px;
        border-radius: 18px;
    }

    .card-badge {
        left: 12px;
        top: 10px;
        font-size: 0.62rem;
        padding: 6px 9px;
    }

    .card-date-block {
        margin-bottom: 14px;
    }

    .card-date {
        font-size: 2.4rem;
    }

    .card-month {
        font-size: 0.72rem;
        letter-spacing: 0.12em;
    }

    .card-category {
        font-size: 0.68rem;
        margin-bottom: 6px;
    }

    .card-title {
        font-size: 1.28rem;
        margin-bottom: 12px;
    }

    .card-title.is-long {
        font-size: 1.08rem;
    }

    .card-title.is-longer {
        font-size: 0.95rem;
    }

    .card-time {
        font-size: 0.8rem;
        gap: 8px;
    }

    .card-time-icon {
        width: 20px;
        height: 20px;
        font-size: 0.75rem;
    }

    .card-link {
        width: 138px;
        height: 40px;
        max-width: 92%;
    }
}

.donation-section {
    padding: 92px 20px;
    max-width: 860px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
    text-align: center;
}

.donation-title {
    font-family: 'Cinzel', serif;
    font-size: 2.2rem;
    margin-bottom: 14px;
    background: linear-gradient(135deg, var(--gold), #e8c96d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.donation-card {
    background: var(--card-bg);
    border: 1px solid rgba(212,175,55,0.3);
    border-radius: 24px;
    padding: 44px 40px;
    backdrop-filter: blur(12px);
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 42px rgba(0,0,0,0.16);
}

.donation-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(212,175,55,0.06), rgba(233,30,99,0.06));
    pointer-events: none;
}

.donation-icon {
    font-size: 3.2rem;
    margin-bottom: 20px;
    display: block;
}

.donation-text {
    font-family: 'Cormorant Garamond', 'Georgia', serif;
    font-size: 1.15rem;
    line-height: 1.85;
    color: var(--text-primary);
    margin-bottom: 18px;
    text-align: left;
}

.donation-text b, .donation-text strong {
    color: var(--gold);
    font-weight: 600;
}

.donation-cnpj {
    display: inline-block;
    margin-top: 10px;
    padding: 10px 24px;
    background: rgba(212,175,55,0.12);
    border: 1px solid rgba(212,175,55,0.35);
    border-radius: 30px;
    font-family: 'Cinzel', serif;
    font-size: 0.82rem;
    color: var(--gold);
    letter-spacing: 1.5px;
}

.pix-button {
    display: inline-block;
    margin-top: 15px;
    padding: 12px 30px;
    background: linear-gradient(135deg, var(--gold), #e8c96d);
    color: var(--purple-deep);
    font-family: 'Cinzel', serif;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 1px;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.pix-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

.donation-gratitude {
    margin-top: 28px;
    font-family: 'Cinzel', serif;
    font-size: 1rem;
    color: rgba(212,175,55,0.7);
    letter-spacing: 2px;
}

body.light-mode .donation-gratitude {
    color: #8b6914;
}

@media (max-width: 600px) {
    .donation-card { padding: 30px 20px; }
    .donation-title { font-size: 1.6rem; }
    .donation-text { font-size: 1.05rem; }
}

.novos-ciclos-section {
    padding: 92px 20px;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

.novos-ciclos-title {
    font-family: 'Cinzel', serif;
    font-size: 2.1rem;
    text-align: center;
    margin-bottom: 16px;
    background: linear-gradient(135deg, #44addd, var(--pink-vibrant));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.novos-ciclos-card {
    background: var(--card-bg);
    border: 1px solid rgba(159,211,235,0.25);
    border-radius: 24px;
    padding: 44px 40px;
    backdrop-filter: blur(12px);
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 42px rgba(0,0,0,0.16);
}

.novos-ciclos-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(159,211,235,0.05), rgba(233,30,99,0.05));
    pointer-events: none;
}

.novos-ciclos-text {
    font-family: 'Cormorant Garamond', 'Georgia', serif;
    font-size: 1.12rem;
    line-height: 1.85;
    color: var(--text-primary);
    margin-bottom: 16px;
    text-align: left;
}

.novos-ciclos-text b, .novos-ciclos-text strong { color: #438aac; font-weight: 600; }

.news-section {
    padding: 76px 20px 92px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

.news-title {
    font-family: 'Cinzel', serif;
    font-size: 2rem;
    text-align: center;
    margin-bottom: 12px;
    background: linear-gradient(135deg, var(--pink-vibrant), var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.news-subtitle-hint {
    font-family: 'Cinzel', serif;
    font-size: 0.8rem;
    text-align: center;
    letter-spacing: 2.5px;
    color: rgba(240,240,240,0.35);
    margin-bottom: 36px;
    text-transform: uppercase;
}

body.light-mode .news-subtitle-hint {
    color: #333333;
}

.news-carousel-wrap {
    position: relative;
}

.news-carousel {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: rgba(233,30,99,0.5) rgba(255,255,255,0.06);
    padding: 8px 4px 14px;
}

.news-carousel::-webkit-scrollbar { height: 4px; }
.news-carousel::-webkit-scrollbar-track { background: rgba(255,255,255,0.06); border-radius: 4px; }
.news-carousel::-webkit-scrollbar-thumb { background: rgba(233,30,99,0.5); border-radius: 4px; }

.news-card {
    flex: 0 0 320px;
    scroll-snap-align: start;
    background: var(--card-bg);
    border: 1px solid rgba(233,30,99,0.25);
    border-radius: 24px;
    padding: 30px 26px;
    cursor: pointer;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 18px 36px rgba(0,0,0,0.16);
}

.news-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(233,30,99,0.08), transparent);
    opacity: 0;
    transition: opacity 0.3s;
}

.news-card:hover { transform: translateY(-6px); border-color: var(--pink-vibrant); box-shadow: 0 12px 40px rgba(0,0,0,0.3); }
.news-card:hover::before { opacity: 1; }

.news-card-title {
    font-family: 'Cinzel', serif;
    font-size: 1.15rem;
    color: var(--text-primary);
    margin-bottom: 14px;
    line-height: 1.45;
    font-weight: 700;
    letter-spacing: 0.5px;
    border-bottom: 2px solid rgba(233,30,99,0.4);
    padding-bottom: 14px;
}

.news-card-preview {
    font-family: 'Cormorant Garamond', serif;
    font-size: 0.97rem;
    color: var(--text-primary);
    line-height: 1.65;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-card-cta {
    margin-top: 20px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: 'Cinzel', serif;
    font-size: 0.8rem;
    color: var(--pink-vibrant);
    letter-spacing: 1px;
    font-weight: 600;
    padding: 7px 16px;
    border: 1px solid rgba(233,30,99,0.4);
    border-radius: 20px;
    background: rgba(233,30,99,0.08);
    transition: background 0.2s, border-color 0.2s;
}

.news-card:hover .news-card-cta {
    background: rgba(233,30,99,0.18);
    border-color: var(--pink-vibrant);
}

.news-card-num {
    position: absolute;
    top: 16px;
    right: 20px;
    font-family: 'Cinzel', serif;
    font-size: 2rem;
    font-weight: 700;
    color: rgba(233,30,99,0.12);
    line-height: 1;
    pointer-events: none;
    user-select: none;
}

.news-carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(233,30,99,0.85);
    border: none;
    color: white;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    font-size: 1.6rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
    transition: background 0.2s, transform 0.2s;
    box-shadow: 0 4px 16px rgba(0,0,0,0.3);
}

.news-carousel-btn:hover { background: var(--pink-vibrant); transform: translateY(-50%) scale(1.1); }
.news-carousel-btn.prev { left: -24px; }
.news-carousel-btn.next { right: -24px; }

.news-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 24px;
}

.news-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(233,30,99,0.25);
    border: 1px solid rgba(233,30,99,0.5);
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
}

.news-dot.active {
    background: var(--pink-vibrant);
    transform: scale(1.35);
    
}

.news-swipe-hint {
    display: none;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 14px;
    font-family: 'Cinzel', serif;
    font-size: 0.72rem;
    letter-spacing: 1.5px;
    color: rgba(240,240,240,0.4);
    text-transform: uppercase;
}

body.light-mode .news-swipe-hint {
    color: #333333;
}

.news-swipe-hint svg {
    opacity: 0.5;
    animation: swipe-hint-anim 1.8s ease-in-out infinite;
}

@keyframes swipe-hint-anim {
    0%, 100% { transform: translateX(0); opacity: 0.5; }
    50% { transform: translateX(6px); opacity: 0.9; }
}

@media (max-width: 768px) {
    .news-carousel-btn { display: none; }
    .news-section,
    .donation-section,
    .novos-ciclos-section {
        padding-left: 16px;
        padding-right: 16px;
    }
    .news-card { flex: 0 0 85vw; padding: 24px 20px; }
    .novos-ciclos-card,
    .donation-card { padding: 28px 18px; }
    .news-swipe-hint { display: flex; }
    .news-card-title { font-size: 1.05rem; }
}

.news-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.88);
    z-index: 8000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.news-modal-overlay.active { display: flex; }

.news-modal {
    background: linear-gradient(160deg, #121212, #0a0a0a);
    border: 1px solid rgba(233,30,99,0.3);
    border-radius: 24px;
    max-width: 720px;
    width: 100%;
    max-height: 88vh;
    overflow-y: auto;
    padding: 44px 40px;
    position: relative;
    scrollbar-width: thin;
    scrollbar-color: rgba(233,30,99,0.4) transparent;
}

body.light-mode .news-modal {
    background: linear-gradient(160deg, #f8f1e9, #f0e6d9);
}

.news-modal::-webkit-scrollbar { width: 5px; }
.news-modal::-webkit-scrollbar-thumb { background: rgba(233,30,99,0.4); border-radius: 4px; }

.news-modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: rgba(233,30,99,0.8);
    border: none;
    color: white;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, transform 0.3s;
}

.news-modal-close:hover { background: var(--pink-vibrant); transform: rotate(90deg); }

.news-modal-title {
    font-family: 'Cinzel', serif;
    font-size: 1.4rem;
    color: var(--pink-vibrant);
    margin-bottom: 24px;
    padding-right: 40px;
    line-height: 1.4;
}

.news-modal-body {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--text-primary);
}

.news-modal-body p { margin-bottom: 18px; }
.news-modal-body b, .news-modal-body strong { color: var(--gold); font-weight: 600; }

.news-modal-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 10px;
    padding: 10px 22px;
    background: rgba(233,30,99,0.2);
    border: 1px solid rgba(233,30,99,0.4);
    border-radius: 30px;
    color: var(--pink-vibrant);
    text-decoration: none;
    font-family: 'Cinzel', serif;
    font-size: 0.82rem;
    letter-spacing: 1px;
    transition: background 0.2s, border-color 0.2s;
}

.news-modal-link:hover { background: rgba(233,30,99,0.35); border-color: var(--pink-vibrant); }

@media (max-width: 600px) {
    .news-modal { padding: 32px 20px; }
    .news-modal-title { font-size: 1.15rem; }
}

footer {
    background: rgba(10,10,10,0.9);
    padding: 44px 20px 54px;
    text-align: center;
    border-top: 2px solid rgba(233, 30, 99, 0.3);
    position: relative;
    z-index: 10;
}

body.light-mode footer {
    background: rgba(248,241,233,0.9);
}

footer p {
    color: var(--text-primary);
    margin-bottom: 10px;
    opacity: 0.92;
}

footer a {
    color: var(--pink-vibrant);
    text-decoration: none;
    transition: color 0.3s ease;
}

footer a:hover {
    color: var(--pink-soft);
}

.participation-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    z-index: 2000;
    overflow-y: auto;
    padding: 20px;
}

.participation-modal.active {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 40px;
}

.modal-content {
    background: linear-gradient(135deg, #121212, #0a0a0a);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(233, 30, 99, 0.4);
    border-radius: 30px;
    max-width: 900px;
    width: 100%;
    padding: 50px;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    margin-bottom: 40px;
}

body.light-mode .modal-content {
    background: linear-gradient(135deg, #f8f1e9, #f0e6d9);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: rgba(233, 30, 99, 0.3);
    border: 2px solid var(--pink-vibrant);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.5rem;
    color: var(--pink-vibrant);
    transition: all 0.3s ease;
}

.modal-close:hover {
    background: var(--pink-vibrant);
    color: white;
    transform: rotate(90deg);
}

.modal-header {
    text-align: center;
    margin-bottom: 40px;
}

.modal-title {
    font-family: 'Cinzel', serif;
    font-size: 2.5rem;
    background: linear-gradient(135deg, var(--pink-vibrant), var(--purple-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
}

.modal-subtitle {
    font-family: 'Cinzel', serif;
    font-size: 1.3rem;
    color: var(--pink-soft);
    letter-spacing: 2px;
}

.modal-body {
    color: var(--text-primary);
}

.modal-intro {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 30px;
    text-align: center;
    font-style: italic;
}

.modal-section {
    margin-bottom: 35px;
}

.modal-section h3 {
    font-family: 'Cinzel', serif;
    font-size: 1.4rem;
    color: var(--pink-vibrant);
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.modal-list {
    list-style: none;
    padding-left: 0;
}

.modal-list li {
    margin-bottom: 12px;
    line-height: 1.6;
    padding-left: 25px;
    position: relative;
}

.modal-list li::before {
    content: '✦';
    position: absolute;
    left: 0;
    color: var(--pink-vibrant);
}

.modal-info-box {
    background: rgba(233, 30, 99, 0.1);
    border-left: 4px solid var(--pink-vibrant);
    padding: 20px;
    border-radius: 10px;
    margin: 25px 0;
}

.values-tabs {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
    justify-content: center;
    flex-wrap: wrap;
}

.tab-button {
    font-family: 'Cinzel', serif;
    padding: 12px 30px;
    background: rgba(233, 30, 99, 0.2);
    border: 2px solid rgba(233, 30, 99, 0.4);
    border-radius: 25px;
    color: var(--text-primary);
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
    letter-spacing: 1px;
}

.tab-button:hover {
    background: rgba(233, 30, 99, 0.3);
    transform: translateY(-2px);
}

.tab-button.active {
    background: linear-gradient(135deg, var(--pink-vibrant), #c0134e);
    border-color: var(--pink-vibrant);
    box-shadow: 0 5px 20px rgba(0,0,0,0.4);
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
    animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.modal-values {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.value-item {
    background: rgba(139, 63, 168, 0.2);
    border: 1px solid rgba(233, 30, 99, 0.3);
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.value-item:hover {
    background: rgba(139, 63, 168, 0.3);
    border-color: var(--pink-vibrant);
    transform: translateY(-5px);
}

.value-item strong {
    display: block;
    font-family: 'Cinzel', serif;
    font-size: 1.1rem;
    color: var(--pink-vibrant);
    margin-bottom: 10px;
}

.value-item p {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 10px 0;
}

.value-item small {
    font-size: 0.85rem;
    color: var(--pink-soft);
    display: block;
    margin-top: 8px;
}

.modal-footer {
    margin-top: 40px;
    text-align: center;
}

.modal-cta {
    display: inline-block;
    padding: 18px 50px;
    background: linear-gradient(135deg, var(--pink-vibrant), #c0134e);
    color: white;
    text-decoration: none;
    font-family: 'Cinzel', serif;
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 2px;
    border-radius: 50px;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
    margin-bottom: 30px;
}

.modal-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.5);
}

.modal-contact {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 2px solid rgba(233, 30, 99, 0.3);
}

.modal-contact a {
    color: var(--pink-vibrant);
    text-decoration: none;
    font-weight: 500;
}

.modal-contact a:hover {
    color: var(--pink-soft);
}

@media (max-width: 768px) {
    .modal-content {
        padding: 30px 20px;
        border-radius: 20px;
    }
    .modal-title {
        font-size: 1.8rem;
    }
    .modal-subtitle {
        font-size: 1.1rem;
    }
    .modal-values {
        grid-template-columns: 1fr;
    }
    .values-tabs {
        flex-direction: column;
    }
    .tab-button {
        width: 100%;
    }
}

.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 64px;
    height: 64px;
    background: #25D366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.4);
    z-index: 9999;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 3px solid rgba(255,255,255,0.2);
}

.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 8px 25px rgba(0,0,0,0.5); }

@media (max-width: 768px) {
    .whatsapp-float {
        right: 18px;
        bottom: 18px;
        width: 58px;
        height: 58px;
        font-size: 28px;
    }
}

.theme-toggle {
    position: fixed;
    bottom: 25px;
    right: 100px;
    width: 52px;
    height: 52px;
    background: var(--pink-vibrant);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.4);
    z-index: 9999;
    cursor: pointer;
    transition: all 0.3s ease;
}

.theme-toggle:hover { transform: scale(1.1); }

/* ============================================================
   Cosmic Gold Refresh
   ============================================================ */

body {
    background:
        radial-gradient(circle at 18% 18%, rgba(92, 178, 255, 0.08), transparent 22%),
        radial-gradient(circle at 76% 14%, rgba(209, 130, 255, 0.12), transparent 24%),
        radial-gradient(circle at 50% 100%, rgba(255, 206, 142, 0.06), transparent 30%),
        linear-gradient(180deg, #05060c 0%, #080b15 34%, #07070b 100%);
}

body::before {
    background-image:
        radial-gradient(circle at 14% 22%, rgba(255,255,255,0.75) 0 1px, transparent 1.8px),
        radial-gradient(circle at 34% 10%, rgba(255,225,179,0.65) 0 1.1px, transparent 1.9px),
        radial-gradient(circle at 52% 16%, rgba(233,188,255,0.65) 0 1.2px, transparent 2px),
        radial-gradient(circle at 76% 24%, rgba(88,212,255,0.65) 0 1px, transparent 1.8px),
        radial-gradient(circle at 82% 66%, rgba(255,255,255,0.58) 0 1px, transparent 1.8px),
        radial-gradient(circle at 18% 74%, rgba(212,175,55,0.45) 0 1px, transparent 1.8px);
    opacity: 0.44;
    animation: none;
}

nav {
    background: linear-gradient(180deg, rgba(6, 7, 14, 0.94) 0%, rgba(8, 11, 20, 0.86) 62%, rgba(6, 7, 14, 0.14) 100%);
    border-bottom: none;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}

nav.scrolled {
    background: linear-gradient(180deg, rgba(6, 7, 14, 0.98) 0%, rgba(8, 11, 20, 0.92) 74%, rgba(6, 7, 14, 0.46) 100%);
    box-shadow: none;
}

.logo {
    color: #e9c988;
}

.logo img {
    filter: none;
}

.nav-menu {
    padding: 0;
    background: transparent;
    border: none;
    box-shadow: none;
}

body.light-mode .nav-menu {
    background: transparent;
    border: none;
}

.nav-menu a::after {
    height: 1px;
    background: linear-gradient(90deg, rgba(212, 175, 55, 0.95), rgba(244, 215, 154, 0.32));
}

.nav-menu a:hover,
.nav-menu a.active {
    color: #f4d79a;
}

.hero {
    padding: 126px 20px 72px;
}

.hero::before {
    background:
        radial-gradient(circle at 50% 22%, rgba(231, 156, 255, 0.1), transparent 24%),
        linear-gradient(180deg, rgba(6, 7, 14, 0.5) 0%, rgba(7, 8, 16, 0.18) 28%, rgba(7, 9, 18, 0.12) 70%, rgba(5, 6, 12, 0.3) 100%);
}

.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(ellipse at center, rgba(255, 255, 255, 0.02) 0%, transparent 36%),
        radial-gradient(ellipse at center, rgba(0, 0, 0, 0.04) 0%, rgba(0, 0, 0, 0.2) 44%, rgba(0, 0, 0, 0.52) 100%);
    z-index: 2;
}

.hero-video-overlay {
    background: linear-gradient(180deg, rgba(8, 9, 16, 0.18) 0%, rgba(8, 9, 16, 0.08) 50%, rgba(8, 9, 16, 0.18) 100%);
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    gap: 18px;
    position: relative;
    max-width: 1280px;
    width: min(100%, 1280px);
    min-height: 720px;
    padding: 128px 40px 50px;
    border: none;
    border-radius: 0;
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    box-shadow: none;
    z-index: 4;
}

.hero-content::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    width: min(100%, 760px);
    height: 240px;
    transform: translate(-50%, -52%);
    border-radius: 34px;
    background:
        linear-gradient(180deg, rgba(10, 10, 16, 0.08), rgba(10, 10, 16, 0.2)),
        radial-gradient(circle at center, rgba(255, 255, 255, 0.03), transparent 72%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow:
        0 20px 80px rgba(0, 0, 0, 0.24),
        inset 0 0 0 1px rgba(255, 255, 255, 0.025);
    z-index: -1;
}

.hero-content::before {
    display: none !important;
}

.cta-button {
    display: none !important;
}

.hero h1 {
    width: min(100%, 980px);
    max-width: 12ch;
    margin-bottom: 34px;
    background: linear-gradient(180deg, #ffe4c0 8%, #f3c98b 44%, #f1d39d 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: 'Cormorant Garamond', 'Cinzel', serif;
    font-size: clamp(2.3rem, 4.2vw, 4.2rem);
    line-height: 1.02;
    letter-spacing: -0.01em;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.68);
    text-wrap: balance;
    -webkit-text-stroke: 1px rgba(76, 45, 14, 0.36);
}

.hero-subtitle {
    max-width: 48ch;
    color: rgba(246, 237, 220, 0.88);
    font-size: clamp(1rem, 1.35vw, 1.16rem);
    line-height: 1.72;
    margin-bottom: 34px;
    text-shadow: 0 5px 22px rgba(0, 0, 0, 0.66);
}

.ceremony-label {
    display: inline-block !important;
    position: relative;
    margin-bottom: 22px;
    padding: 0 28px;
    font-size: 0.82rem;
    letter-spacing: 0.18em;
    color: #f1d39d !important;
    -webkit-text-fill-color: #f1d39d !important;
    text-shadow: 0 4px 18px rgba(0, 0, 0, 0.56);
    text-transform: uppercase;
}

.ceremony-label::before,
.ceremony-label::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 56px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(244, 215, 154, 0.85), transparent);
}

.ceremony-label::before {
    right: 100%;
    margin-right: 14px;
}

.ceremony-label::after {
    left: 100%;
    margin-left: 14px;
}

.ceremony-date {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    min-width: min(100%, 660px);
    max-width: 100%;
    margin-bottom: 28px;
    padding: 17px 30px !important;
    border-radius: 18px;
    border: 1px solid rgba(241, 211, 157, 0.34);
    color: #f1d39d !important;
    -webkit-text-fill-color: #f1d39d !important;
    font-size: 0.95rem;
    letter-spacing: 0.06em !important;
    text-shadow: 0 3px 18px rgba(0, 0, 0, 0.58) !important;
    background:
        linear-gradient(180deg, rgba(33, 18, 24, 0.5), rgba(18, 11, 20, 0.42)),
        radial-gradient(circle at center, rgba(244, 188, 94, 0.08), transparent 72%);
    box-shadow:
        inset 0 0 0 1px rgba(255, 255, 255, 0.04),
        0 0 24px rgba(243, 166, 84, 0.12);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.ceremony-date::before {
    content: '🗓';
    display: inline-block;
    margin-right: 12px;
    font-size: 0.95em;
    color: #f0c96d;
}

.ceremony-label,
.hero-subtitle {
    display: none !important;
}

.hero-image-button {
    position: relative;
    left: auto;
    bottom: auto;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: clamp(200px, 22vw, 280px);
    gap: 8px;
    padding: 14px 30px 16px;
    border-radius: 28px;
    border: 1px solid rgba(244, 215, 154, 0.45);
    background:
        linear-gradient(180deg, rgba(162, 104, 36, 0.88), rgba(118, 70, 24, 0.92)),
        radial-gradient(circle at top, rgba(255, 228, 168, 0.22), transparent 60%);
    box-shadow:
        0 18px 34px rgba(0, 0, 0, 0.24),
        inset 0 1px 0 rgba(255, 242, 206, 0.32);
    color: #fff1cf;
    font-family: 'Cinzel', serif;
    margin-top: auto;
    text-decoration: none;
    transform: none;
    transition: transform 0.22s ease, filter 0.22s ease, opacity 0.22s ease, box-shadow 0.22s ease;
    z-index: 4;
}

.hero-image-button span {
    display: inline-block;
}

.hero-image-button-label {
    line-height: 1;
    font-family: 'Cinzel', serif;
    font-size: clamp(0.95rem, 1.15vw, 1.08rem);
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.hero-image-button-meta {
    max-width: min(38ch, 100%);
    line-height: 1.35;
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1rem, 1.15vw, 1.14rem);
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: none;
    color: rgba(255, 242, 210, 0.92);
}

.hero-image-button:hover,
.hero-image-button:focus-visible {
    transform: translateY(-2px);
    filter: brightness(1.06);
    box-shadow:
        0 20px 38px rgba(0, 0, 0, 0.28),
        inset 0 1px 0 rgba(255, 244, 214, 0.4);
    opacity: 0.98;
}

.hero-image-button:focus-visible {
    outline: 2px solid rgba(244, 215, 154, 0.72);
    outline-offset: 6px;
    border-radius: 999px;
}

.calendar-section {
    padding-top: 34px;
    padding-bottom: 140px;
}

.entry-rail {
    position: relative;
    z-index: 11;
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 0;
}

.entry-rail-shell {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    padding: 34px clamp(22px, 4vw, 44px) 30px;
    border-radius: 0;
    background:
        linear-gradient(160deg, rgba(10, 13, 26, 0.74), rgba(8, 11, 20, 0.9)),
        radial-gradient(circle at top right, rgba(111, 201, 255, 0.08), transparent 30%);
    border-top: 1px solid rgba(212, 175, 55, 0.18);
    border-bottom: 1px solid rgba(212, 175, 55, 0.18);
    border-left: none;
    border-right: none;
    box-shadow:
        0 20px 54px rgba(0, 0, 0, 0.22),
        inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.entry-rail-kicker {
    display: inline-block;
    width: 100%;
    margin-bottom: 12px;
    font-family: 'Cinzel', serif;
    font-size: 0.8rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(244, 215, 154, 0.74);
    text-align: center;
}

.entry-rail-title {
    font-family: 'Cinzel', serif;
    font-size: clamp(1.9rem, 3.2vw, 3rem);
    line-height: 1.15;
    color: #f1d39d;
    margin-bottom: 14px;
    max-width: 18ch;
    text-align: center;
}

.entry-rail-text {
    max-width: 62ch;
    color: rgba(246, 237, 220, 0.8);
    font-size: 1.08rem;
    line-height: 1.8;
    text-align: center;
}

.entry-rail-steps {
    display: grid;
    grid-template-columns: repeat(3, minmax(180px, 320px));
    justify-content: center;
    gap: 16px;
    margin-top: 28px;
    width: 100%;
    max-width: 1020px;
}

.entry-step {
    padding: 16px 16px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(212, 175, 55, 0.12);
    min-height: 136px;
}

.entry-step-number {
    display: inline-flex;
    width: 34px;
    height: 34px;
    margin-bottom: 12px;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    font-family: 'Cinzel', serif;
    color: #120d09;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.96), rgba(244, 215, 154, 0.92));
}

.entry-step h3 {
    font-family: 'Cinzel', serif;
    font-size: 0.95rem;
    color: #f1d39d;
    margin-bottom: 8px;
}

.entry-step p {
    color: rgba(246, 237, 220, 0.74);
    line-height: 1.6;
    font-size: 0.98rem;
}

.entry-rail-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 26px;
    justify-content: center;
}

.entry-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 210px;
    padding: 15px 28px;
    border-radius: 999px;
    text-decoration: none;
    font-family: 'Cinzel', serif;
    font-size: 0.88rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #120d09;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.96), rgba(244, 215, 154, 0.92));
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.entry-action.secondary,
.entry-action.subtle {
    color: #f1d39d;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(212, 175, 55, 0.22);
}

.entry-action:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 34px rgba(0, 0, 0, 0.22);
}

.calendar-section::before {
    box-shadow: none;
}

.calendar-kicker {
    display: none;
}

.calendar-header {
    margin-bottom: 38px;
}

.section-title {
    background: linear-gradient(180deg, #ffe8c7 10%, #f1c98f 52%, #f4d79a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 28px rgba(255, 200, 146, 0.1);
}

.donation-section,
.novos-ciclos-section,
.news-section {
    max-width: 1240px;
    padding: 88px 20px;
}

.donation-title,
.novos-ciclos-title,
.news-title {
    background: linear-gradient(180deg, #ffe8c7 8%, #f1c98f 54%, #f4d79a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 0.03em;
}

.news-subtitle-hint {
    color: rgba(244, 215, 154, 0.42);
}

.donation-card,
.novos-ciclos-card,
.news-card,
.news-modal,
.modal-content {
    background:
        linear-gradient(160deg, rgba(10, 13, 26, 0.74), rgba(8, 11, 20, 0.9)),
        radial-gradient(circle at top right, rgba(111, 201, 255, 0.08), transparent 30%);
    border: 1px solid rgba(212, 175, 55, 0.18);
    box-shadow:
        0 20px 54px rgba(0, 0, 0, 0.22),
        inset 0 1px 0 rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.donation-card::before,
.novos-ciclos-card::before,
.news-card::before {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.06), rgba(109, 173, 255, 0.05));
}

.donation-text,
.novos-ciclos-text,
.news-card-preview,
.news-modal-body {
    color: rgba(246, 237, 220, 0.82);
}

.donation-text strong,
.novos-ciclos-text strong,
.news-modal-body strong {
    color: #f4d79a;
}

.donation-cnpj,
.news-card-cta,
.news-modal-link {
    background: rgba(212, 175, 55, 0.08);
    border-color: rgba(212, 175, 55, 0.34);
    color: #f1d39d;
}

.news-card {
    border-radius: 28px;
}

.news-card:hover {
    transform: translateY(-6px);
    border-color: rgba(244, 215, 154, 0.3);
    box-shadow: 0 24px 58px rgba(0, 0, 0, 0.24);
}

.news-card-title,
.news-modal-title {
    color: #f1d39d;
    border-bottom-color: rgba(212, 175, 55, 0.26);
}

.news-card-num {
    color: rgba(233, 201, 136, 0.12);
}

.news-carousel-btn {
    background: rgba(212, 175, 55, 0.14);
    border: 1px solid rgba(212, 175, 55, 0.28);
    color: #f1d39d;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.24);
}

.news-carousel-btn:hover {
    background: rgba(212, 175, 55, 0.22);
    transform: translateY(-50%) scale(1.06);
}

.news-dot {
    background: rgba(212, 175, 55, 0.22);
    border-color: rgba(212, 175, 55, 0.42);
}

.news-dot.active {
    background: #f1d39d;
}

.pix-button,
.modal-cta {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.96), rgba(244, 215, 154, 0.92));
    color: #120d09;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.24);
}

.pix-button:hover,
.modal-cta:hover {
    box-shadow: 0 16px 34px rgba(0, 0, 0, 0.28);
}

.modal-close,
.news-modal-close {
    background: rgba(212, 175, 55, 0.12);
    border-color: rgba(212, 175, 55, 0.32);
    color: #f1d39d;
}

.modal-close:hover,
.news-modal-close:hover {
    background: rgba(212, 175, 55, 0.22);
}

.modal-contact {
    border-top-color: rgba(212, 175, 55, 0.22);
}

.modal-contact a {
    color: #f1d39d;
}

.donation-section,
.novos-ciclos-section,
.news-section {
    width: 100%;
    max-width: none;
    padding: 0;
}

.section-shell {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 58px clamp(20px, 4vw, 44px);
    border-radius: 0;
    overflow: hidden;
    border-top: 1px solid rgba(212, 175, 55, 0.14);
    border-bottom: 1px solid rgba(212, 175, 55, 0.14);
    border-left: none;
    border-right: none;
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.22);
}

.section-shell::before,
.section-shell::after {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.section-shell::before {
    background:
        linear-gradient(90deg, rgba(7, 9, 18, 0.9) 0%, rgba(7, 9, 18, 0.78) 30%, rgba(7, 9, 18, 0.72) 100%),
        radial-gradient(circle at top right, rgba(244, 215, 154, 0.12), transparent 28%),
        radial-gradient(circle at bottom left, rgba(114, 177, 255, 0.12), transparent 32%);
    z-index: 0;
}

.section-shell::after {
    inset: 18px clamp(18px, 4vw, 44px);
    border-radius: 28px;
    border: 1px solid rgba(255, 255, 255, 0.025);
    z-index: 0;
}

.section-shell-donation {
    background: url('../familia.png') center 28% / cover no-repeat;
}

.section-shell-cycles {
    background: url('../calendario.webp') center center / cover no-repeat;
}

.section-shell-news {
    background: url('../header.webp') center center / cover no-repeat;
}

.section-shell-donation::before,
.section-shell-cycles::before,
.section-shell-news::before {
    display: block !important;
    background:
        linear-gradient(180deg, rgba(7, 9, 18, 0.48) 0%, rgba(7, 9, 18, 0.34) 24%, rgba(7, 9, 18, 0.56) 100%),
        radial-gradient(circle at center, rgba(6, 8, 16, 0.06), rgba(6, 8, 16, 0.42));
}

.section-shell-donation::after,
.section-shell-cycles::after {
    content: '';
    position: absolute;
    top: 34px;
    bottom: 34px;
    left: 50%;
    width: min(100% - 48px, 940px);
    transform: translateX(-50%);
    border-radius: 34px;
    background:
        linear-gradient(180deg, rgba(7, 9, 18, 0.18), rgba(7, 9, 18, 0.28)),
        radial-gradient(circle at center, rgba(255, 255, 255, 0.05), transparent 72%);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.03);
    z-index: 0;
}

.section-shell-news::after {
    display: none !important;
}

.donation-title,
.novos-ciclos-title,
.news-title,
.news-subtitle-hint,
.news-carousel-wrap,
.news-dots,
.news-swipe-hint,
.donation-card,
.novos-ciclos-card {
    position: relative;
    z-index: 1;
}

.donation-title,
.novos-ciclos-title,
.news-title {
    display: block;
    margin-bottom: 18px;
    font-size: clamp(2rem, 2.8vw, 3rem);
    max-width: none;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    text-align: center;
    line-height: 1.14;
    background: linear-gradient(180deg, #ffe8c7 8%, #f5c792 52%, #e8b6ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent !important;
    background-clip: text;
    color: transparent !important;
}

.donation-title span,
.novos-ciclos-title span,
.news-title span {
    display: block;
    white-space: nowrap;
}

.news-subtitle-hint {
    margin-bottom: 26px;
    width: 100%;
    text-align: center;
}

.donation-card,
.novos-ciclos-card {
    width: min(100%, 860px);
    margin: 0 auto;
    padding: 0;
    background-image: none !important;
    background-color: transparent !important;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    border-radius: 0 !important;
    overflow: visible !important;
    text-align: center;
}

.donation-card::before,
.donation-card::after,
.novos-ciclos-card::before,
.novos-ciclos-card::after {
    display: none !important;
}

.donation-icon {
    margin-bottom: 16px;
    font-size: 2.8rem;
}

.donation-text,
.novos-ciclos-text {
    font-size: clamp(1.08rem, 1.4vw, 1.22rem);
    line-height: 1.92;
    text-wrap: pretty;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.72);
}

.donation-title,
.novos-ciclos-title,
.news-title {
    text-shadow: 0 6px 24px rgba(0, 0, 0, 0.38);
}

.news-card-title,
.news-card-preview,
.news-subtitle-hint {
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.5);
}

.donation-text-highlight {
    margin-top: 24px;
}

.donation-actions {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-top: 10px;
    margin-bottom: 10px;
}

.donation-cnpj {
    margin-top: 0;
}

.news-carousel-wrap {
    width: min(100%, 1240px);
    margin: 0 auto;
    padding: 6px 8px 16px;
    border-radius: 28px;
    background: linear-gradient(180deg, rgba(9, 12, 24, 0.28), rgba(9, 12, 24, 0.42));
    border: 1px solid rgba(212, 175, 55, 0.12);
}

.news-carousel {
    padding: 8px 8px 14px;
}

.news-card {
    background:
        linear-gradient(180deg, rgba(10, 13, 26, 0.76), rgba(8, 11, 20, 0.9)),
        radial-gradient(circle at top right, rgba(111, 201, 255, 0.08), transparent 30%);
}

.project-float {
    position: fixed;
    left: 18px;
    bottom: 110px;
    z-index: 9100;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 12px 18px 12px 14px;
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(10, 13, 26, 0.94), rgba(19, 12, 8, 0.92));
    border: 1px solid rgba(244, 215, 154, 0.24);
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.28), 0 0 20px rgba(244, 215, 154, 0.12);
    cursor: pointer;
    user-select: none;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.project-float:hover {
    transform: translateY(-3px);
    border-color: rgba(244, 215, 154, 0.34);
    box-shadow: 0 22px 48px rgba(0, 0, 0, 0.34), 0 0 28px rgba(244, 215, 154, 0.16);
}

.project-float-pulse {
    position: absolute;
    inset: -6px;
    border-radius: 999px;
    border: 1px solid rgba(244, 215, 154, 0.12);
    animation: project-float-pulse 2.8s ease-out infinite;
    pointer-events: none;
}

.project-float-icon {
    position: relative;
    z-index: 1;
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.24), rgba(244, 215, 154, 0.14));
    font-size: 1.15rem;
}

.project-float-copy {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
    color: rgba(246, 237, 220, 0.88);
}

.project-float-copy strong {
    font-family: 'Cinzel', serif;
    font-size: 0.8rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #f4d79a;
}

.project-float-copy span {
    font-size: 0.92rem;
}

@keyframes project-float-pulse {
    0% { transform: scale(0.98); opacity: 0.5; }
    70% { transform: scale(1.06); opacity: 0; }
    100% { transform: scale(1.06); opacity: 0; }
}

.project-modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 9050;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 22px;
    background: rgba(4, 6, 13, 0.84);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.project-modal-overlay.active {
    display: flex;
}

.project-modal {
    position: relative;
    width: min(100%, 860px);
    max-height: min(88vh, 920px);
    overflow-y: auto;
    padding: 42px 34px 34px;
    border-radius: 30px;
    background:
        linear-gradient(160deg, rgba(10, 13, 26, 0.92), rgba(8, 11, 20, 0.98)),
        radial-gradient(circle at top right, rgba(111, 201, 255, 0.08), transparent 30%);
    border: 1px solid rgba(212, 175, 55, 0.24);
    box-shadow: 0 32px 70px rgba(0, 0, 0, 0.34), inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.project-modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 40px;
    height: 40px;
    border-radius: 999px;
    border: 1px solid rgba(244, 215, 154, 0.22);
    background: rgba(244, 215, 154, 0.08);
    color: #f4d79a;
    font-size: 1.4rem;
    cursor: pointer;
}

.project-modal-kicker {
    display: inline-block;
    margin-bottom: 12px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(244, 215, 154, 0.08);
    border: 1px solid rgba(244, 215, 154, 0.16);
    color: #f4d79a;
    font-family: 'Cinzel', serif;
    font-size: 0.74rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.project-modal-title {
    font-family: 'Cinzel', serif;
    font-size: clamp(2rem, 3vw, 2.9rem);
    line-height: 1.15;
    margin-bottom: 12px;
    color: #fff0cf;
}

.project-modal-lead {
    font-size: 1.08rem;
    line-height: 1.86;
    color: rgba(246, 237, 220, 0.82);
}

.project-modal-amount,
.project-modal-pix,
.project-modal-note {
    margin-top: 24px;
    padding: 22px 22px 20px;
    border-radius: 22px;
    background: linear-gradient(180deg, rgba(12, 15, 27, 0.82), rgba(9, 11, 22, 0.94));
    border: 1px solid rgba(212, 175, 55, 0.14);
}

.project-modal-amount {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 16px;
}

.project-modal-amount-label,
.project-modal-pix-label {
    display: block;
    margin-bottom: 8px;
    color: rgba(244, 215, 154, 0.76);
    font-family: 'Cinzel', serif;
    font-size: 0.74rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.project-modal-amount strong,
.project-modal-pix strong {
    color: #fff0cf;
    font-family: 'Cinzel', serif;
    font-size: clamp(1.5rem, 2vw, 2rem);
}

.project-modal-body {
    margin-top: 24px;
    display: grid;
    gap: 16px;
}

.project-modal-body p,
.project-modal-note p {
    color: rgba(246, 237, 220, 0.84);
    font-size: 1.02rem;
    line-height: 1.84;
}

.project-modal-pix {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
}

.project-modal-items {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.project-modal-items span {
    padding: 8px 12px;
    border-radius: 999px;
    border: 1px solid rgba(244, 215, 154, 0.2);
    background: rgba(244, 215, 154, 0.08);
    color: rgba(246, 237, 220, 0.88);
    font-size: 0.92rem;
}

.project-modal-actions {
    margin-top: 24px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.project-pix-button {
    margin-top: 0;
}

.project-secondary-button {
    appearance: none;
    border: 1px solid rgba(244, 215, 154, 0.24);
    background: rgba(244, 215, 154, 0.08);
    color: #f6eddc;
    border-radius: 999px;
    padding: 14px 18px;
    font-size: 0.92rem;
    cursor: pointer;
    transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.project-secondary-button:hover {
    transform: translateY(-1px);
    background: rgba(244, 215, 154, 0.14);
    border-color: rgba(244, 215, 154, 0.34);
}

.participation-modal {
    background:
        radial-gradient(circle at top, rgba(126, 92, 255, 0.12), transparent 24%),
        radial-gradient(circle at bottom, rgba(96, 192, 255, 0.1), transparent 28%),
        rgba(4, 6, 13, 0.82);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.participation-modal.active {
    align-items: flex-start;
    padding: 32px 18px;
}

.participation-modal .modal-content {
    position: relative;
    overflow-x: hidden;
    overflow-y: auto;
    width: min(980px, 100%);
    max-height: calc(100vh - 40px);
    max-width: 980px;
    padding: 52px 48px 42px;
    border: 1px solid rgba(212, 175, 55, 0.28);
    border-radius: 34px;
    background:
        linear-gradient(180deg, rgba(8, 10, 20, 0.94) 0%, rgba(7, 9, 18, 0.97) 100%),
        radial-gradient(circle at top right, rgba(126, 92, 255, 0.08), transparent 32%);
    box-shadow:
        0 28px 80px rgba(0, 0, 0, 0.34),
        inset 0 1px 0 rgba(255, 255, 255, 0.04);
    scrollbar-width: thin;
    -webkit-overflow-scrolling: touch;
}

.participation-modal .modal-content::before,
.participation-modal .modal-content::after {
    content: '';
    position: absolute;
    pointer-events: none;
}

.participation-modal .modal-content::before {
    inset: 0;
    background:
        radial-gradient(circle at 18% 18%, rgba(244, 215, 154, 0.08), transparent 20%),
        radial-gradient(circle at 82% 14%, rgba(122, 190, 255, 0.08), transparent 18%),
        radial-gradient(circle at 50% 0%, rgba(209, 142, 255, 0.08), transparent 26%);
    opacity: 0.95;
}

.participation-modal .modal-content::after {
    top: 22px;
    left: 50%;
    width: min(76%, 720px);
    height: 1px;
    transform: translateX(-50%);
    background: linear-gradient(90deg, transparent, rgba(244, 215, 154, 0.75), transparent);
    box-shadow: 0 0 18px rgba(244, 215, 154, 0.18);
}

.participation-modal .modal-close {
    top: 18px;
    right: 18px;
    width: 44px;
    height: 44px;
    border-radius: 999px;
    background: rgba(244, 215, 154, 0.08);
    border: 1px solid rgba(244, 215, 154, 0.24);
    box-shadow: none;
}

.participation-modal .modal-close:hover {
    transform: rotate(90deg);
    background: rgba(244, 215, 154, 0.16);
}

.participation-modal .modal-header {
    position: relative;
    z-index: 1;
    margin-bottom: 28px;
}

.participation-modal .modal-title {
    margin-bottom: 14px;
    font-size: clamp(2.4rem, 4.8vw, 4rem);
    letter-spacing: 0.04em;
    text-transform: uppercase;
    background: linear-gradient(180deg, #fff2d8 0%, #f4d79a 45%, #ddb56b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.participation-modal .modal-subtitle {
    display: inline-block;
    padding: 12px 20px;
    border-radius: 999px;
    border: 1px solid rgba(244, 215, 154, 0.18);
    background: rgba(10, 12, 22, 0.56);
    color: rgba(246, 237, 220, 0.82);
    font-size: 0.95rem;
    letter-spacing: 0.18em;
    line-height: 1.7;
    text-transform: uppercase;
}

.participation-modal .modal-body {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 24px;
    color: rgba(246, 237, 220, 0.88);
}

.participation-modal .modal-intro {
    max-width: 760px;
    margin: 0 auto;
    font-size: 1.04rem;
    line-height: 1.9;
    color: rgba(246, 237, 220, 0.84);
}

.participation-modal .modal-body > p:nth-of-type(2) {
    max-width: 700px;
    margin: -8px auto 6px;
    padding: 0 12px;
    color: rgba(246, 237, 220, 0.7);
    line-height: 1.8;
}

.participation-modal .modal-section,
.participation-modal .modal-info-box {
    position: relative;
    padding: 24px 26px;
    border-radius: 26px;
    border: 1px solid rgba(212, 175, 55, 0.16);
    background:
        linear-gradient(180deg, rgba(12, 15, 27, 0.78), rgba(9, 11, 22, 0.88)),
        radial-gradient(circle at top right, rgba(109, 173, 255, 0.05), transparent 30%);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.participation-modal .modal-section h3 {
    margin-bottom: 18px;
    color: #f4d79a;
    font-size: 1.18rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.participation-modal .modal-list {
    margin: 0;
}

.participation-modal .modal-list li {
    padding-left: 20px;
    color: rgba(246, 237, 220, 0.86);
}

.participation-modal .modal-list li::before {
    content: '';
    top: 12px;
    width: 7px;
    height: 7px;
    border-radius: 999px;
    background: #f4d79a;
    box-shadow: 0 0 12px rgba(244, 215, 154, 0.28);
}

.participation-modal .modal-body > .modal-section:first-of-type .modal-list {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.participation-modal .modal-body > .modal-section:first-of-type .modal-list li {
    margin: 0;
    padding: 12px 16px 12px 30px;
    border: 1px solid rgba(244, 215, 154, 0.14);
    border-radius: 999px;
    background: rgba(244, 215, 154, 0.06);
    font-family: 'Cinzel', serif;
    letter-spacing: 0.04em;
}

.participation-modal .modal-body > .modal-section:nth-of-type(2) {
    background:
        linear-gradient(180deg, rgba(14, 17, 32, 0.88), rgba(9, 12, 24, 0.94)),
        radial-gradient(circle at top left, rgba(126, 92, 255, 0.12), transparent 30%);
    border-color: rgba(244, 215, 154, 0.22);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.05),
        0 18px 44px rgba(0, 0, 0, 0.18);
}

.participation-modal .modal-body > .modal-section:nth-of-type(2) .modal-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.participation-modal .modal-body > .modal-section:nth-of-type(2) .modal-list li {
    margin: 0;
    min-height: 88px;
    padding: 18px 18px 18px 34px;
    border: 1px solid rgba(244, 215, 154, 0.12);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.02);
}

.participation-modal .modal-body > .modal-section:nth-of-type(2) .modal-list li:first-child {
    grid-column: 1 / -1;
    min-height: auto;
    padding: 24px 26px 24px 40px;
}

.participation-modal .modal-body > .modal-section:nth-of-type(2) .modal-list li strong {
    display: block;
    margin-bottom: 8px;
    color: rgba(244, 215, 154, 0.78);
    font-size: 0.82rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.participation-modal #modalTonica {
    display: block;
    margin-top: 8px;
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 4.2vw, 3.1rem);
    font-weight: 600;
    line-height: 1.02;
    color: #fff1d2;
    text-wrap: balance;
    margin-left: auto;
    margin-right: auto;
}

.participation-modal #modalData {
    display: inline-block;
    font-family: 'Cinzel', serif;
    font-size: 1.2rem;
    color: #fff1d2;
}

.participation-modal .modal-info-box {
    text-align: center;
    border-left: none;
    background:
        linear-gradient(180deg, rgba(212, 175, 55, 0.08), rgba(12, 15, 27, 0.88)),
        radial-gradient(circle at top, rgba(244, 215, 154, 0.08), transparent 40%);
}

.participation-modal .modal-info-box strong {
    color: #fff1d2;
    letter-spacing: 0.08em;
}

.participation-modal .values-tabs {
    gap: 10px;
    margin-bottom: 16px;
}

.participation-modal .tab-button {
    padding: 10px 18px;
    border-radius: 999px;
    border: 1px solid rgba(244, 215, 154, 0.18);
    background: rgba(244, 215, 154, 0.07);
    color: rgba(246, 237, 220, 0.82);
    font-size: 0.88rem;
    letter-spacing: 0.06em;
    box-shadow: none;
}

.participation-modal .tab-button:hover {
    background: rgba(244, 215, 154, 0.12);
    transform: translateY(-1px);
}

.participation-modal .tab-button.active {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.94), rgba(244, 215, 154, 0.92));
    color: #130d09;
    border-color: rgba(244, 215, 154, 0.32);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
}

.participation-modal .modal-values {
    gap: 12px;
}

.participation-modal .value-item {
    padding: 18px 18px 16px;
    border-radius: 22px;
    border: 1px solid rgba(244, 215, 154, 0.12);
    background:
        linear-gradient(180deg, rgba(18, 22, 37, 0.84), rgba(10, 13, 24, 0.94)),
        radial-gradient(circle at bottom right, rgba(126, 92, 255, 0.08), transparent 30%);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.participation-modal .value-item:hover {
    border-color: rgba(244, 215, 154, 0.22);
    background:
        linear-gradient(180deg, rgba(20, 24, 40, 0.9), rgba(11, 14, 25, 0.98)),
        radial-gradient(circle at bottom right, rgba(126, 92, 255, 0.1), transparent 34%);
    transform: translateY(-4px);
}

.participation-modal .value-item strong {
    color: #f4d79a;
    font-size: 0.88rem;
    letter-spacing: 0.04em;
}

.participation-modal .value-item p {
    color: #fff1d2;
    margin-top: 10px;
    font-size: 1.7rem;
}

.participation-modal .value-item small {
    color: rgba(246, 237, 220, 0.62);
    display: block;
    margin-top: 8px;
}

.participation-modal .modal-footer {
    position: relative;
    z-index: 1;
    margin-top: 30px;
    padding-top: 28px;
    border-top: 1px solid rgba(244, 215, 154, 0.16);
}

.participation-modal .modal-footer > p:first-child {
    margin-bottom: 20px;
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.35rem, 2.4vw, 2rem);
    font-style: italic;
    color: #f7e2be;
}

.participation-modal .modal-cta {
    min-width: 280px;
    padding: 18px 42px;
    border-radius: 999px;
    font-size: 1rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.participation-modal .modal-contact {
    margin-top: 22px;
    padding-top: 22px;
    color: rgba(246, 237, 220, 0.78);
}

.participation-modal .modal-contact p {
    margin-bottom: 8px;
}

.participation-modal .modal-contact strong {
    color: #f4d79a;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 0.82rem;
}

.participation-modal .modal-contact a:hover {
    color: #fff1d2;
}

footer {
    background: linear-gradient(180deg, rgba(7, 9, 18, 0.34) 0%, rgba(7, 9, 18, 0.92) 24%, rgba(5, 6, 12, 0.98) 100%);
    border-top: 1px solid rgba(212, 175, 55, 0.14);
}

footer a:hover {
    color: #f4d79a;
}

@media (max-width: 768px) {
    .hero {
        padding: 106px 16px 18px;
    }

    .hero-frame-overlay {
        inset: 10px;
        opacity: 0.42;
    }

    .hero-content {
        width: 100%;
        min-height: 420px;
        padding: 0;
    }

    .hero h1 {
        max-width: 11ch;
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 0.92rem;
        line-height: 1.7;
        max-width: 32ch;
    }

    .hero-content {
        min-height: 590px;
        justify-content: flex-end;
        gap: 14px;
        padding: 34px 14px 34px;
    }

    .hero-content::before {
        width: calc(100% - 8px);
        height: calc(100% - 72px);
        transform: translate(-50%, -46%);
        border-radius: 30px;
    }

    .ceremony-label {
        font-size: 0.76rem;
        letter-spacing: 0.18em;
        padding: 0 14px;
        margin-bottom: 18px;
    }

    .ceremony-label::before,
    .ceremony-label::after {
        width: 38px;
    }

    .ceremony-date {
        min-width: 0;
        width: min(100%, 340px);
        padding: 12px 16px !important;
        font-size: 0.82rem;
        letter-spacing: 0.05em !important;
    }

    .hero-image-button {
        margin-top: auto;
        min-width: min(220px, 72vw);
        gap: 6px;
        padding: 13px 20px 14px;
    }

    .hero-image-button-label {
        font-size: 0.88rem;
        letter-spacing: 0.14em;
    }

    .hero-image-button-meta {
        font-size: 0.92rem;
    }

    .participation-modal.active {
        align-items: flex-start;
        padding: 18px 12px;
    }

    .participation-modal .modal-content {
        padding: 42px 22px 28px;
        border-radius: 26px;
        max-height: calc(100vh - 24px);
    }

    .participation-modal .modal-subtitle {
        padding: 10px 14px;
        font-size: 0.78rem;
        letter-spacing: 0.12em;
    }

    .participation-modal .modal-body > .modal-section:first-of-type .modal-list {
        flex-direction: column;
    }

    .participation-modal .modal-body > .modal-section:nth-of-type(2) .modal-list {
        grid-template-columns: 1fr;
    }

    .participation-modal .modal-body > .modal-section,
    .participation-modal .modal-info-box {
        padding: 20px 18px;
        border-radius: 22px;
    }

    .participation-modal .modal-body > .modal-section:nth-of-type(3) {
        padding: 18px 16px;
    }

    .participation-modal .modal-body > .modal-section:nth-of-type(3) h3 {
        margin-bottom: 12px;
        font-size: 1.02rem;
    }

    .participation-modal .modal-body > .modal-section:nth-of-type(3) > p {
        margin-bottom: 14px !important;
        font-size: 0.88rem !important;
        line-height: 1.6;
    }

    .participation-modal .values-tabs {
        gap: 8px;
        margin-bottom: 12px;
    }

    .participation-modal .tab-button {
        flex: 1 1 0;
        justify-content: center;
        padding: 9px 12px;
        font-size: 0.76rem;
        letter-spacing: 0.04em;
    }

    .participation-modal .modal-values {
        gap: 10px;
    }

    .participation-modal .value-item {
        padding: 14px 14px 12px;
        border-radius: 18px;
    }

    .participation-modal .value-item strong {
        font-size: 0.8rem;
    }

    .participation-modal .value-item p {
        margin-top: 8px;
        font-size: 1.05rem;
        line-height: 1.35;
    }

    .participation-modal .value-item small {
        margin-top: 6px;
        font-size: 0.72rem;
        line-height: 1.4;
    }

    .participation-modal #modalTonica {
        font-size: 2rem;
    }

    .participation-modal .modal-cta {
        min-width: 100%;
    }

    .donation-section,
    .novos-ciclos-section,
    .news-section {
        padding-top: 0;
        padding-bottom: 0;
    }

    .section-shell {
        width: 100%;
        padding: 34px 18px 28px;
        border-radius: 0;
    }

    .section-shell::after {
        inset: 10px 18px;
        border-radius: 18px;
    }

    .section-shell-donation::after,
    .section-shell-cycles::after {
        top: 18px;
        bottom: 18px;
        width: calc(100% - 24px);
        border-radius: 24px;
    }

    .donation-title,
    .novos-ciclos-title,
    .news-title,
    .news-subtitle-hint {
        text-align: center;
    }

    .donation-title,
    .novos-ciclos-title,
    .news-title {
        font-size: clamp(1.35rem, 5.6vw, 1.9rem);
        line-height: 1.16;
        letter-spacing: 0.01em;
    }

    .donation-card,
    .novos-ciclos-card {
        width: 100%;
    }

    .donation-actions {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 100%;
    }

    .news-carousel-wrap {
        padding: 0;
        background: transparent;
        border: none;
    }

    .project-float {
        left: auto;
        right: 22px;
        bottom: 170px;
        width: 58px;
        height: 58px;
        justify-content: center;
        padding: 0;
        gap: 0;
        border-radius: 50%;
    }

    .project-float-pulse {
        inset: -4px;
        border-radius: 50%;
    }

    .project-float-icon {
        width: 42px;
        height: 42px;
        font-size: 1.05rem;
    }

    .project-float-copy {
        display: none;
    }

    .project-modal-overlay {
        padding: 14px;
    }

    .project-modal {
        padding: 34px 18px 22px;
        border-radius: 22px;
    }

    .project-modal-amount {
        flex-direction: column;
        align-items: flex-start;
    }

    .project-modal-amount,
    .project-modal-pix,
    .project-modal-note {
        padding: 18px 16px;
        border-radius: 18px;
    }

    .project-modal-actions {
        flex-direction: column;
    }

    .project-modal-actions .pix-button,
    .project-secondary-button {
        width: 100%;
        justify-content: center;
        text-align: center;
    }

    .entry-rail {
        padding: 0;
    }

    .entry-rail-shell {
        padding: 24px 20px;
        border-radius: 0;
    }

    .entry-rail-title {
        max-width: 100%;
        font-size: 1.8rem;
    }

    .entry-rail-steps {
        grid-template-columns: 1fr;
    }

    .entry-rail-actions {
        flex-direction: column;
    }

    .entry-action {
        width: 100%;
        min-width: 0;
    }
}
