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

html,
body {
    overflow-x: hidden;
    width: 100%;
}

section {
    overflow: hidden;
}

:root {
    --bg: #f4efe8;
    --purple: #7a24d8;
    --dark: #2a2230;
    --light: #ffffff;
    --gray: #7d7485;
}

body {
    font-family: 'Montserrat', sans-serif;
    background: var(--bg);
    color: var(--dark);
    overflow-x: hidden;
}

body::-webkit-scrollbar {
    width: 10px;
}

body::-webkit-scrollbar-thumb {
    background: var(--purple);
    border-radius: 20px;
}

header {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(14px);
    background: rgba(244, 239, 232, 0.7);
    border-bottom: 1px solid rgba(122, 36, 216, 0.1);
}

nav {
    max-width: 1200px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    position: relative;
}

.logo img {
    width: 180px;
}

.menu {
    display: flex;
    gap: 25px;
}

.menu a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 500;
    transition: 0.3s;
    position: relative;
}

.menu a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: var(--purple);
    left: 0;
    bottom: -6px;
    transition: 0.3s;
}

.menu a:hover::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 6px;
}

.menu-toggle span {
    width: 28px;
    height: 3px;
    background: var(--purple);
    border-radius: 20px;
    transition: 0.4s;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translateY(12px);
}

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

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translateY(-12px);
}

section {
    min-height: 100vh;
    padding: 120px 8% 80px;
    position: relative;
}

.hero {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    flex-direction: column;
}

.hero h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 6rem;
    line-height: 0.9;
    max-width: 900px;
    margin-bottom: 20px;
    animation: fadeUp 1s ease;
}

.hero h1 span {
    color: var(--purple);
    font-style: italic;
}

.hero p {
    max-width: 700px;
    color: var(--gray);
    font-size: 1.1rem;
    line-height: 1.8;
    animation: fadeUp 1.2s ease;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-top: 40px;
    flex-wrap: wrap;
    justify-content: center;
}

.btn {
    padding: 15px 32px;
    border-radius: 40px;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    transition: 0.4s;
    text-decoration: none;
    font-weight: 600;
}

.btn-primary {
    background: var(--purple);
    color: white;
    box-shadow: 0 10px 30px rgba(122, 36, 216, 0.3);
}

.btn-primary:hover {
    transform: translateY(-5px) scale(1.03);
}

.btn-secondary {
    background: transparent;
    border: 1px solid rgba(122, 36, 216, 0.3);
    color: var(--purple);
}

.section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 4rem;
    margin-bottom: 20px;
    text-align: center;
}

.section-title span {
    color: var(--purple);
    font-style: italic;
}

.section-text {
    max-width: 800px;
    margin: auto;
    text-align: center;
    line-height: 1.8;
    color: var(--gray);
    white-space: pre-line;
}

.glass-card {
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(16px);
    border-radius: 30px;
    padding: 40px;
    margin-top: 50px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

.invite-box {
    text-align: center;
}

.invite-date {
    font-size: 5rem;
    font-family: 'Cormorant Garamond', serif;
    color: var(--purple);
    margin: 30px 0;
}

.spotify {
    width: 100%;
    height: 380px;
    border: none;
    border-radius: 20px;
    margin-top: 40px;
}

.socials {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.social-card {
    background: white;
    padding: 25px;
    border-radius: 20px;
    min-width: 250px;
    transition: 0.4s;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
}

.social-card:hover {
    transform: translateY(-8px);
}

.social-card a {
    color: var(--purple);
    text-decoration: none;
    font-weight: 600;
}

.floating {
    pointer-events: none;
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(122, 36, 216, 0.08);
    filter: blur(40px);
    z-index: -1;
    animation: float 8s ease-in-out infinite;
}

.one {
    top: 0;
    left: -100px;
}

.two {
    bottom: 0;
    right: -100px;
}

.reveal {
    opacity: 0;
    transform: translateY(60px);
    transition: 1s;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.pre-venda-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    margin-top: 40px;
    align-items: center;
}

.pre-venda-img {
    width: 100%;
    border-radius: 25px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: 0.4s;
}

.pre-venda-img:hover {
    transform: scale(1.03);
}

.pre-venda-info h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--purple);
    font-family: 'Cormorant Garamond', serif;
}

.pre-venda-info p {
    line-height: 1.9;
    color: var(--gray);
    margin-bottom: 15px;
}

.badge a {
    display: inline-block;
    background: var(--purple);
    color: white;
    padding: 8px 18px;
    border-radius: 30px;
    font-size: 0.9rem;
    margin-top: 10px;
    text-decoration: none;
}

.mapa {
    width: 100%;
    height: 350px;
    border: none;
    border-radius: 25px;
    margin-top: 40px;
}

#contato {
    /* min-height: auto; */
    padding-bottom: 40px;
}

footer {
    padding: 20px;
    text-align: center;
    background: #ece7e0;
    color: #8b818f;
    margin-top: 40px;
}

/* .footer-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.footer-content img {
  width: 28px;
  opacity: 0.8;
}

.footer-content p {
  font-size: 0.9rem;
  color: #8b818f;
} */

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-30px);
    }

    100% {
        transform: translateY(0px);
    }
}

@media(max-width: 768px) {

    .floating {
        display: none;
    }

    nav {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    .menu-toggle {
        display: flex;
    }

    .menu {
        position: absolute;
        top: 100%;
        right: 0;
        width: 100%;
        background: rgba(244, 239, 232, 0.98);
        backdrop-filter: blur(14px);

        flex-direction: column;
        align-items: center;

        padding: 30px 0;

        gap: 25px;

        opacity: 0;
        visibility: hidden;
        transform: translateY(-20px);

        transition: 0.4s;
    }

    .menu.active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .hero h1 {
        font-size: 3rem;
    }

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

    .glass-card {
        padding: 25px;
    }

    .logo img {
        width: 140px;
    }

    .invite-date {
        font-size: 2.5rem;
    }

    .social-card {
        width: 100%;
    }

    iframe {
        height: 300px;
    }

    .pre-venda-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .pre-venda-img {
        max-width: 220px;
        width: 100%;
        margin: 0 auto;
        display: block;
    }

}

/* apoie css */

.apoio-container {
    text-align: center;
}

.apoio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.pix-card,
.apoio-info {
    background: rgba(255,255,255,0.7);
    border-radius: 30px;
    padding: 35px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.04);
}

.pix-card h3,
.apoio-info h3,
.comprar-livro h3 {
    font-size: 2rem;
    margin-bottom: 25px;
    color: var(--purple);
    font-family: 'Cormorant Garamond', serif;
}

.pix-qr {
    width: 230px;
    max-width: 100%;
    margin-bottom: 25px;
    border-radius: 20px;
}

.pix-key {
    background: white;
    padding: 18px;
    border-radius: 15px;
    margin-bottom: 20px;
    font-weight: 600;
    border: 1px solid rgba(122,36,216,0.15);
    word-break: break-word;
}

.pix-feedback {
    display: block;
    margin-top: 15px;
    color: var(--purple);
    font-weight: 600;
}

.valor-card {
    background: white;
    border-radius: 20px;
    padding: 18px;
    margin-bottom: 18px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid rgba(122,36,216,0.08);
}

.valor-card strong {
    color: var(--purple);
    font-size: 1.2rem;
}

.valor-card span {
    color: var(--gray);
}

.apoio-extra {
    margin-top: 25px;
    color: var(--gray);
    line-height: 1.7;
}

.comprar-livro {
    margin-top: 60px;
    background: rgba(255,255,255,0.5);
    border-radius: 30px;
    padding: 40px;
}

.comprar-livro p {
    color: var(--gray);
    line-height: 1.8;
    max-width: 700px;
    margin: auto;
}

.comprar-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 35px;
}

@media(max-width: 768px){

    .pix-card,
    .apoio-info,
    .comprar-livro{
        padding: 25px;
    }

    .valor-card{
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }

    .comprar-buttons{
        flex-direction: column;
    }

    .comprar-buttons .btn{
        width: 100%;
    }

}
