/* Reset e Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --black: #0a0a0b;
    --black-light: #121214;
    --black-card: #1a1a1f;
    --purple: #8b5cf6;
    --purple-dark: #7c3aed;
    --purple-glow: rgba(139, 92, 246, 0.3);
    --off-white: #f5f5f0;
    --off-white-muted: rgba(245, 245, 240, 0.7);
    --off-white-subtle: rgba(245, 245, 240, 0.5);
    --whatsapp: #25d366;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--black);
    color: var(--off-white);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    padding: 40px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--black) 0%, var(--black-light) 50%, var(--black) 100%);
}

/* Efeito de glow roxo sutil no fundo */
.hero::before {
    content: '';
    position: absolute;
    top: 10%;
    right: 5%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--purple-glow) 0%, transparent 70%);
    pointer-events: none;
    filter: blur(100px);
    opacity: 0.6;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -10%;
    left: 20%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.15) 0%, transparent 70%);
    pointer-events: none;
    filter: blur(80px);
}

.hero-content {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.header {
    grid-column: 1 / -1;
    margin-bottom: 20px;
}

.logo {
    height: 40px;
    width: auto;
}

.logo-gm {
    display: flex;
    align-items: center;
    gap: 14px;
}

.logo-gm svg {
    flex-shrink: 0;
}

.logo-text {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--off-white);
    letter-spacing: -0.5px;
}

.logo-text span {
    font-weight: 400;
    color: var(--off-white-muted);
}

.hero-text {
    z-index: 2;
}

.hero-text h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    color: var(--off-white);
    line-height: 1.1;
    margin-bottom: 24px;
}

.hero-text h1 .highlight {
    font-style: italic;
    font-weight: 600;
    color: var(--purple);
}

.description {
    font-size: 1.1rem;
    color: var(--off-white-muted);
    max-width: 500px;
    margin-bottom: 40px;
    line-height: 1.7;
}

.scroll-hint {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--off-white-subtle);
    font-size: 0.9rem;
}

.scroll-hint svg {
    color: var(--purple);
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(8px); }
    60% { transform: translateY(4px); }
}

.hero-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 70vh;
}

/* Glow roxo atrás das fotos */
.hero-image::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    background: radial-gradient(ellipse, var(--purple) 0%, transparent 70%);
    opacity: 0.5;
    filter: blur(80px);
    z-index: 0;
    animation: pulseGlow 4s ease-in-out infinite;
}

@keyframes pulseGlow {
    0%, 100% { opacity: 0.4; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 0.6; transform: translate(-50%, -50%) scale(1.05); }
}

/* Card glass para foto secundária */
.img-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 8px;
    z-index: 1;
    overflow: hidden;
}

.img-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 14px;
    filter: grayscale(30%);
}

.img-card-left {
    width: 140px;
    height: 180px;
    left: 0;
    top: 15%;
    transform: rotate(-5deg);
    animation: floatCard1 5s ease-in-out infinite;
}

@keyframes floatCard1 {
    0%, 100% { transform: rotate(-5deg) translateY(0); }
    50% { transform: rotate(-5deg) translateY(-15px); }
}

/* Imagem da frente (sentado) - principal */
.hero-image .img-front {
    position: relative;
    z-index: 2;
    max-height: 70vh;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 25px 50px rgba(0, 0, 0, 0.6));
    animation: floatImage 6s ease-in-out infinite;
    -webkit-mask-image: radial-gradient(ellipse 65% 55% at 50% 45%, black 35%, transparent 80%);
    mask-image: radial-gradient(ellipse 65% 55% at 50% 45%, black 35%, transparent 80%);
}

@keyframes floatImage {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* Badges flutuantes */
.badge {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--off-white);
    white-space: nowrap;
    z-index: 3;
}

.badge svg {
    color: var(--purple);
    flex-shrink: 0;
}

.badge-1 {
    top: 10%;
    right: 5%;
    animation: floatBadge 4s ease-in-out infinite;
}

.badge-2 {
    top: 35%;
    right: -5%;
    animation: floatBadge 4.5s ease-in-out infinite 0.5s;
}

.badge-3 {
    bottom: 30%;
    left: -5%;
    animation: floatBadge 5s ease-in-out infinite 1s;
}

.badge-4 {
    bottom: 10%;
    right: 10%;
    animation: floatBadge 4s ease-in-out infinite 1.5s;
}

@keyframes floatBadge {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

/* Cards Section */
.cards-section {
    background: var(--black);
    padding: 0 40px 80px;
    position: relative;
}

.cards-grid {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.card {
    padding: 32px;
    border-radius: 24px;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    color: var(--off-white);
}

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

.card-dark {
    background: var(--black-card);
    border: 1px solid rgba(245, 245, 240, 0.08);
}

.card-dark:hover {
    border-color: var(--purple);
    box-shadow: 0 8px 40px rgba(139, 92, 246, 0.15);
}

.card-dark::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.08) 0%, transparent 50%);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.card-dark:hover::before {
    opacity: 1;
}

.card-glass {
    background: rgba(139, 92, 246, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(139, 92, 246, 0.2);
}

.card-glass:hover {
    background: rgba(139, 92, 246, 0.15);
    border-color: var(--purple);
    box-shadow: 0 8px 40px rgba(139, 92, 246, 0.2);
}

.card-tag {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--purple);
}

.card h2 {
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1.2;
    color: var(--off-white);
}

.card h2 .italic {
    font-style: italic;
    font-weight: 500;
}

.card p {
    font-size: 0.95rem;
    color: var(--off-white-muted);
    flex: 1;
}

.btn-primary,
.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 12px;
    width: fit-content;
}

.btn-primary {
    background: var(--purple);
    color: var(--off-white);
}

.btn-primary:hover {
    background: var(--purple-dark);
    box-shadow: 0 4px 20px rgba(139, 92, 246, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--off-white);
    border: 1px solid rgba(245, 245, 240, 0.3);
}

.btn-secondary:hover {
    border-color: var(--purple);
    color: var(--purple);
}

.arrow {
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.card:hover .arrow {
    transform: translate(2px, -2px);
}

/* Gravações Section */
.gravacoes-section {
    background: var(--black);
    padding: 0 40px 40px;
}

.gravacoes-card {
    max-width: 1000px;
    margin: 0 auto;
    background: linear-gradient(135deg, var(--black-card) 0%, rgba(139, 92, 246, 0.1) 100%);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 24px;
    padding: 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    position: relative;
    overflow: hidden;
}

.gravacoes-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.gravacoes-content {
    flex: 1;
    position: relative;
    z-index: 1;
}

.gravacoes-tag {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--purple);
    margin-bottom: 12px;
    display: block;
}

.gravacoes-content h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--off-white);
    margin-bottom: 12px;
    line-height: 1.2;
}

.highlight-text {
    font-style: italic;
    font-weight: 500;
    color: var(--purple);
}

.gravacoes-content > p {
    color: var(--off-white-muted);
    margin-bottom: 24px;
    max-width: 450px;
}

.gravacoes-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-bottom: 28px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--off-white);
}

.feature svg {
    color: var(--purple);
    flex-shrink: 0;
}

.btn-gravacoes {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 32px;
    background: var(--purple);
    color: var(--off-white);
    text-decoration: none;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.btn-gravacoes:hover {
    background: var(--purple-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.3);
}

.gravacoes-visual {
    position: relative;
    width: 200px;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gravacoes-visual::before {
    content: '';
    position: absolute;
    width: 180px;
    height: 180px;
    border: 2px solid rgba(139, 92, 246, 0.3);
    border-radius: 50%;
    animation: pulseRing 2s ease-out infinite;
}

.gravacoes-visual::after {
    content: '';
    position: absolute;
    width: 140px;
    height: 140px;
    border: 2px solid rgba(139, 92, 246, 0.2);
    border-radius: 50%;
    animation: pulseRing 2s ease-out infinite 0.5s;
}

@keyframes pulseRing {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(1.5); opacity: 0; }
}

.play-button {
    width: 80px;
    height: 80px;
    background: var(--purple);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 1;
}

.play-button svg {
    color: var(--off-white);
    margin-left: 4px;
}

.play-button:hover {
    transform: scale(1.1);
    box-shadow: 0 10px 40px rgba(139, 92, 246, 0.4);
}

/* WhatsApp Section */
.whatsapp-section {
    background: var(--black);
    padding: 40px 40px 80px;
}

.whatsapp-card {
    max-width: 1000px;
    margin: 0 auto;
    background: var(--black-card);
    border: 1px solid rgba(245, 245, 240, 0.08);
    border-radius: 24px;
    padding: 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    position: relative;
    overflow: hidden;
}

.whatsapp-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(37, 211, 102, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.whatsapp-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--off-white);
    margin-bottom: 8px;
}

.whatsapp-text {
    font-style: italic;
    font-weight: 500;
    color: var(--whatsapp);
}

.whatsapp-content p {
    color: var(--off-white-muted);
    margin-bottom: 24px;
}

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 18px 36px;
    background: var(--whatsapp);
    color: var(--black);
    text-decoration: none;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.btn-whatsapp:hover {
    background: #1fb855;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
}

.whatsapp-icons {
    position: relative;
    width: 200px;
    height: 150px;
}

.wpp-icon {
    position: absolute;
    opacity: 0.6;
}

.wpp-1 {
    width: 80px;
    height: 80px;
    top: 0;
    right: 20px;
    transform: rotate(-15deg);
}

.wpp-2 {
    width: 120px;
    height: 120px;
    bottom: 0;
    right: 60px;
    transform: rotate(10deg);
}

/* Footer */
.footer {
    background: var(--black);
    text-align: center;
    padding: 40px;
    border-top: 1px solid rgba(245, 245, 240, 0.05);
}

.footer p {
    font-size: 0.9rem;
    color: var(--off-white-subtle);
}

.footer-brand {
    margin-top: 8px;
    font-size: 0.8rem;
}

.footer-brand a {
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.footer-brand a:hover {
    opacity: 0.8;
}

.footer-brand strong {
    color: var(--purple);
}

/* Responsivo */
@media (max-width: 900px) {
    .hero::before {
        top: 5%;
        right: -20%;
        width: 300px;
        height: 300px;
    }

    .hero::after {
        display: none;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-text {
        order: 2;
    }

    .hero-image {
        order: 1;
    }

    .hero-image::before {
        width: 80%;
        height: 60%;
        opacity: 0.3;
    }

    .hero-image .img-front {
        max-height: 45vh;
        animation: none;
    }

    .img-card-left {
        width: 100px;
        height: 130px;
        left: 5%;
        top: 5%;
    }

    .badge {
        font-size: 0.7rem;
        padding: 8px 12px;
    }

    .badge-2, .badge-3 {
        display: none;
    }

    .badge-1 {
        top: 5%;
        right: 5%;
    }

    .badge-4 {
        bottom: 15%;
        right: 5%;
    }

    .description {
        margin: 0 auto 40px;
    }

    .scroll-hint {
        justify-content: center;
    }

    .cards-grid {
        grid-template-columns: 1fr;
    }

    .whatsapp-card {
        flex-direction: column;
        text-align: center;
    }

    .whatsapp-icons {
        display: none;
    }
}

@media (max-width: 600px) {
    .hero {
        padding: 24px;
    }

    .cards-section,
    .whatsapp-section,
    .gravacoes-section {
        padding: 0 24px 40px;
    }

    .hero-text h1 {
        font-size: 2rem;
    }

    .card {
        padding: 24px;
    }

    .card h2 {
        font-size: 1.4rem;
    }

    .whatsapp-card,
    .gravacoes-card {
        padding: 32px 24px;
        flex-direction: column;
        text-align: center;
    }

    .whatsapp-content h2,
    .gravacoes-content h2 {
        font-size: 1.8rem;
    }

    .gravacoes-features {
        grid-template-columns: 1fr;
        text-align: left;
    }

    .gravacoes-visual {
        width: 150px;
        height: 150px;
    }

    .gravacoes-visual::before {
        width: 130px;
        height: 130px;
    }

    .gravacoes-visual::after {
        width: 100px;
        height: 100px;
    }

    .play-button {
        width: 60px;
        height: 60px;
    }

    .play-button svg {
        width: 28px;
        height: 28px;
    }

    .logo-text {
        font-size: 1.1rem;
    }

    .logo-gm svg {
        width: 40px;
        height: 40px;
    }
}

/* Animações de entrada */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.card {
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
}

.card:nth-child(1) { animation-delay: 0.1s; }
.card:nth-child(2) { animation-delay: 0.2s; }
.card:nth-child(3) { animation-delay: 0.3s; }
.card:nth-child(4) { animation-delay: 0.4s; }
