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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #fff;
    overflow-x: hidden;
    background: #1a0a0a;
    position: relative;
}

/* Efeito de fundo feminino elegante */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        /* Base sofisticada com tons vermelhos e rosa */
        linear-gradient(135deg, #1a0a0a 0%, #2d1a1a 25%, #1a0f0f 50%, #2d1a1a 75%, #1a0a0a 100%),
        /* Padrões elegantes com vermelho e rosa */
        repeating-linear-gradient(
            30deg,
            transparent,
            transparent 20px,
            rgba(220, 20, 60, 0.04) 20px,
            rgba(220, 20, 60, 0.04) 40px
        ),
        repeating-linear-gradient(
            -30deg,
            transparent,
            transparent 25px,
            rgba(255, 105, 180, 0.03) 25px,
            rgba(255, 105, 180, 0.03) 50px
        ),
        /* Elementos decorativos femininos */
        radial-gradient(ellipse at 20% 30%, rgba(255, 182, 193, 0.06) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 70%, rgba(220, 20, 60, 0.05) 0%, transparent 60%),
        radial-gradient(ellipse at 50% 20%, rgba(255, 105, 180, 0.04) 0%, transparent 50%),
        radial-gradient(ellipse at 30% 80%, rgba(255, 192, 203, 0.05) 0%, transparent 60%);
    z-index: -2;
    animation: gentleFlow 25s ease-in-out infinite;
}

/* Animação suave e feminina */
@keyframes gentleFlow {
    0%, 100% {
        background-position: 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%;
    }
    25% {
        background-position: 0% 0%, 2px 2px, -2px 2px, 0% 0%, 0% 0%, 0% 0%, 0% 0%;
    }
    50% {
        background-position: 0% 0%, 4px 4px, -4px 4px, 0% 0%, 0% 0%, 0% 0%, 0% 0%;
    }
    75% {
        background-position: 0% 0%, 2px 2px, -2px 2px, 0% 0%, 0% 0%, 0% 0%, 0% 0%;
    }
}

/* Efeito adicional de partículas femininas */
body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        /* Pequenas flores e elementos decorativos */
        radial-gradient(circle at 15% 25%, rgba(255, 182, 193, 0.08) 2px, transparent 2px),
        radial-gradient(circle at 85% 15%, rgba(221, 160, 221, 0.06) 1px, transparent 1px),
        radial-gradient(circle at 45% 75%, rgba(255, 192, 203, 0.07) 1px, transparent 1px),
        radial-gradient(circle at 75% 85%, rgba(255, 182, 193, 0.05) 2px, transparent 2px),
        radial-gradient(circle at 25% 60%, rgba(221, 160, 221, 0.06) 1px, transparent 1px),
        radial-gradient(circle at 60% 40%, rgba(255, 192, 203, 0.08) 1px, transparent 1px);
    background-size: 300px 300px, 400px 400px, 350px 350px, 280px 280px, 320px 320px, 380px 380px;
    z-index: -1;
    animation: gentleParticles 30s linear infinite;
    opacity: 0.4;
}

@keyframes gentleParticles {
    0% {
        background-position: 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%;
    }
    100% {
        background-position: 300px 300px, -400px 400px, 350px -350px, -280px 280px, 320px 320px, -380px -380px;
    }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(26, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(255, 105, 180, 0.2);
    box-shadow: 0 4px 20px rgba(255, 105, 180, 0.1);
    position: relative;
}

.header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        /* Efeito floral sutil no header */
        repeating-linear-gradient(
            30deg,
            transparent,
            transparent 2px,
            rgba(255, 182, 193, 0.03) 2px,
            rgba(255, 182, 193, 0.03) 4px
        );
    z-index: -1;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.logo-initials {
    background: linear-gradient(135deg, #ff69b4, #dc143c, #ff1493);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 32px;
    font-weight: 900;
    letter-spacing: -1px;
    text-shadow: 0 0 20px rgba(255, 105, 180, 0.3);
    position: relative;
}

.logo-initials::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, #ff69b4, #dc143c, #ff1493);
    border-radius: 8px;
    z-index: -1;
    opacity: 0.1;
}

.logo-text {
    color: #ffb6c1;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-style: italic;
}

.nav {
    display: flex;
    gap: 30px;
}

.nav-link {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    padding: 8px 16px;
    border-radius: 25px;
}

.nav-link:hover {
    color: #ff69b4;
    background: rgba(255, 105, 180, 0.1);
    transform: translateY(-2px);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: linear-gradient(135deg, #dda0dd, #ffb6c1);
    transition: width 0.3s ease;
    border-radius: 2px;
}

.nav-link:hover::after {
    width: 100%;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: linear-gradient(135deg, #1a0a0a 0%, #2d1a1a 25%, #1a0f0f 50%, #2d1a1a 75%, #1a0a0a 100%);
    overflow: hidden;
    padding: 120px 0 80px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(255, 105, 180, 0.15) 0%, transparent 60%),
        radial-gradient(circle at 80% 20%, rgba(220, 20, 60, 0.12) 0%, transparent 60%),
        radial-gradient(circle at 50% 50%, rgba(255, 182, 193, 0.08) 0%, transparent 70%);
    z-index: 1;
}

.hero-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at 60% 30%, rgba(255, 105, 180, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 40% 70%, rgba(220, 20, 60, 0.06) 0%, transparent 50%);
    opacity: 0.6;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

.hero-title {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 40px;
}

.hero-title-main {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    color: #fff;
    letter-spacing: -1px;
    line-height: 1.1;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-title-highlight {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 800;
    background: linear-gradient(135deg, #ff69b4, #dc143c, #ff1493);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -1px;
    line-height: 1.1;
    text-shadow: 0 2px 10px rgba(221, 160, 221, 0.2);
}

.hero-title-sub {
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    font-weight: 600;
    color: #ffb6c1;
    letter-spacing: -1px;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-video {
    margin: 40px 0;
}

/* Hero Image Styles */
.hero-image {
    margin: 60px 0;
}

.hero-image-container {
    position: relative;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 
        0 30px 60px rgba(221, 160, 221, 0.3),
        0 0 0 2px rgba(255, 255, 255, 0.4),
        0 15px 40px rgba(255, 182, 193, 0.2);
    background: linear-gradient(135deg, #fef7f0, #f8f0ff);
    aspect-ratio: 1/1;
    border: 4px solid rgba(255, 182, 193, 0.3);
    transition: all 0.4s ease;
    box-sizing: border-box;
}

.hero-image-container:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 
        0 40px 80px rgba(221, 160, 221, 0.4),
        0 0 0 3px rgba(255, 255, 255, 0.5),
        0 20px 50px rgba(255, 182, 193, 0.3);
}

.hero-main-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center center;
    display: block;
    border-radius: 25px;
    transition: transform 0.4s ease;
}

.hero-image-container:hover .hero-main-image {
    transform: scale(1.05);
}

.video-placeholder {
    background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
    border-radius: 20px;
    padding: 60px 40px;
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid rgba(0, 255, 136, 0.2);
}

.video-placeholder:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 255, 136, 0.1);
    border-color: rgba(0, 255, 136, 0.4);
}

.play-button {
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

.video-placeholder:hover .play-button {
    transform: scale(1.1);
}

.video-placeholder p {
    color: #ccc;
    font-size: 18px;
    font-weight: 500;
}

.hero-cta {
    margin-top: 50px;
}

.price-section {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.price-old {
    display: flex;
    flex-direction: column;
    align-items: center;
    opacity: 0.7;
}

.price-old .price-label {
    color: #ccc;
    font-size: 14px;
    font-weight: 500;
}

.price-old .price-value {
    color: #ccc;
    font-size: 24px;
    font-weight: 600;
    text-decoration: line-through;
}

.price-new {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.price-new .price-label {
    color: #dda0dd;
    font-size: 18px;
    font-weight: 700;
}

.price-new .price-value {
    color: #fff;
    font-size: 52px;
    font-weight: 900;
    background: linear-gradient(135deg, #ff69b4, #dc143c, #ff1493);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.urgency-badge {
    background: linear-gradient(135deg, #ff69b4, #ff1493, #ff69b4);
    padding: 12px 24px;
    border-radius: 30px;
    animation: pulse 2s infinite;
    box-shadow: 0 5px 15px rgba(255, 105, 180, 0.3);
}

.urgency-text {
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.cta-button {
    background: linear-gradient(135deg, #ff69b4, #dc143c, #ff1493);
    border: none;
    padding: 25px 50px;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin: 0 auto 30px auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: 
        0 15px 35px rgba(221, 160, 221, 0.3),
        0 5px 15px rgba(255, 182, 193, 0.2);
    width: fit-content;
    max-width: 100%;
    position: relative;
    overflow: hidden;
}

.cta-button:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 
        0 20px 45px rgba(221, 160, 221, 0.4),
        0 8px 20px rgba(255, 182, 193, 0.3);
    background: linear-gradient(135deg, #ffb6c1, #dda0dd, #ffc0cb);
}

.cta-text {
    color: #fff;
    font-size: 22px;
    font-weight: 800;
    letter-spacing: 0.5px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.cta-subtext {
    color: #ffb6c1;
    font-size: 16px;
    font-weight: 600;
    opacity: 0.9;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.urgency-timer {
    text-align: center;
}

.timer-text {
    color: #ff69b4;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

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

.countdown-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 15px 20px;
    border-radius: 10px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.countdown-number {
    display: block;
    color: #ff6b9d;
    font-size: 24px;
    font-weight: 900;
}

.countdown-label {
    color: #ccc;
    font-size: 12px;
    font-weight: 500;
}

/* About Section */
.about {
    padding: 100px 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    position: relative;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        /* Efeito de mármore branco sutil */
        linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(248, 249, 250, 0.9) 100%),
        repeating-linear-gradient(
            30deg,
            transparent,
            transparent 1px,
            rgba(0, 0, 0, 0.02) 1px,
            rgba(0, 0, 0, 0.02) 2px
        );
    z-index: -1;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    color: #ff6b9d;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.section-subtitle {
    font-size: 18px;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    font-weight: 500;
}

.marble-showcase {
    margin-top: 60px;
}

.marble-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.marble-item {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.marble-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        /* Efeito de mármore branco nos cards */
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 1px,
            rgba(0, 0, 0, 0.01) 1px,
            rgba(0, 0, 0, 0.01) 2px
        ),
        radial-gradient(ellipse at 20% 30%, rgba(0, 0, 0, 0.02) 0%, transparent 50%);
    z-index: -1;
    opacity: 0.5;
}

.marble-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: rgba(255, 107, 157, 0.3);
}

.marble-image {
    width: 120px;
    height: 120px;
    border-radius: 15px;
    margin: 0 auto 20px;
    position: relative;
    overflow: hidden;
}

.nero-gold {
    background-image: url('https://i.ibb.co/B5thC1MW/Whats-App-Image-2025-09-05-at-22-03-55.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.carrara {
    background-image: url('https://i.ibb.co/1YQTGSWQ/Whats-App-Image-2025-09-05-at-22-03-56.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.exotico {
    background-image: url('https://i.ibb.co/JwLjSxmw/Whats-App-Image-2025-09-05-at-22-03-56-1.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.marquina {
    background-image: url('https://i.ibb.co/NgCHjtRj/Whats-App-Image-2025-09-05-at-22-03-55-1.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.marble-item h3 {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 10px;
    letter-spacing: 0.5px;
}

.marble-item p {
    color: #666;
    font-size: 14px;
    font-weight: 500;
}

/* Benefits Section */
.benefits {
    padding: 100px 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%);
    position: relative;
    overflow: hidden;
}

.benefits::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at 20% 30%, rgba(255, 105, 180, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 70%, rgba(220, 20, 60, 0.06) 0%, transparent 50%),
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 2px,
            rgba(255, 255, 255, 0.02) 2px,
            rgba(255, 255, 255, 0.02) 4px
        );
    z-index: 1;
}

.benefits .container {
    position: relative;
    z-index: 2;
}

.benefits .section-title {
    color: #fff;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    text-align: center;
    margin-bottom: 20px;
    letter-spacing: -1px;
    background: linear-gradient(135deg, #ff6b9d, #ff8fab, #ff69b4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.benefits .section-subtitle {
    color: #ccc;
    font-size: 18px;
    text-align: center;
    max-width: 600px;
    margin: 0 auto 60px;
    font-weight: 500;
}

.benefits-showcase {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-top: 60px;
}

.benefit-feature {
    display: flex;
    align-items: center;
    gap: 40px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 25px;
    padding: 40px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 107, 157, 0.2);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.benefit-feature::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        repeating-linear-gradient(
            30deg,
            transparent,
            transparent 2px,
            rgba(255, 107, 157, 0.02) 2px,
            rgba(255, 107, 157, 0.02) 4px
        );
    z-index: -1;
    opacity: 0.5;
}

.benefit-feature:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 107, 157, 0.4);
    box-shadow: 0 20px 40px rgba(255, 107, 157, 0.1);
}

.benefit-number {
    font-size: 48px;
    font-weight: 900;
    color: #ff6b9d;
    background: linear-gradient(135deg, #ff6b9d, #ff8fab);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    min-width: 80px;
    text-align: center;
    line-height: 1;
}

.benefit-content {
    display: flex;
    align-items: center;
    gap: 30px;
    flex: 1;
}

.benefit-icon-large {
    color: #ff6b9d;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.benefit-feature:hover .benefit-icon-large {
    transform: scale(1.1);
}

.benefit-text {
    flex: 1;
}

.benefit-text h3 {
    color: #fff;
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 15px;
    letter-spacing: 0.5px;
}

.benefit-text p {
    color: #e0e0e0;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 15px;
}

.benefit-highlight {
    display: inline-block;
    background: linear-gradient(135deg, rgba(255, 107, 157, 0.2), rgba(255, 143, 171, 0.2));
    color: #ff6b9d;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    border: 1px solid rgba(255, 107, 157, 0.3);
}

.benefits-cta {
    margin-top: 80px;
    text-align: center;
}

.cta-highlight {
    background: linear-gradient(135deg, rgba(255, 107, 157, 0.1), rgba(255, 143, 171, 0.1));
    border: 2px solid rgba(255, 107, 157, 0.3);
    border-radius: 30px;
    padding: 50px 40px;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.cta-highlight::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 3px,
            rgba(255, 107, 157, 0.05) 3px,
            rgba(255, 107, 157, 0.05) 6px
        );
    z-index: -1;
}

.cta-icon {
    font-size: 48px;
    display: block;
    margin-bottom: 20px;
}

.cta-highlight h3 {
    color: #fff;
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #ff6b9d, #ff8fab);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-highlight p {
    color: #ccc;
    font-size: 18px;
    font-weight: 500;
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    text-align: center;
    position: relative;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        /* Efeito de mármore preto premium */
        linear-gradient(135deg, rgba(0, 0, 0, 0.9) 0%, rgba(26, 26, 26, 0.9) 100%),
        radial-gradient(ellipse at 30% 20%, rgba(255, 255, 255, 0.02) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 80%, rgba(255, 255, 255, 0.015) 0%, transparent 50%);
    z-index: -1;
}

.cta-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    color: #fff;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.cta-subtitle {
    font-size: 18px;
    color: #ccc;
    margin-bottom: 50px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.final-offer {
    max-width: 500px;
    margin: 0 auto;
}

.offer-highlight {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 30px;
    border: 2px solid rgba(255, 107, 157, 0.3);
}

.offer-text {
    color: #ff6b9d;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 15px;
}

.offer-price {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-bottom: 10px;
}

.old-price {
    color: #999;
    font-size: 20px;
    text-decoration: line-through;
}

.new-price {
    color: #fff;
    font-size: 36px;
    font-weight: 900;
    background: linear-gradient(135deg, #ff6b9d, #ff8fab);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.offer-discount {
    color: #ff4757;
    font-size: 16px;
    font-weight: 700;
}

.final-cta-button {
    background: linear-gradient(135deg, #ff6b9d, #ff8fab);
    border: none;
    padding: 25px 50px;
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin: 0 auto 30px auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    box-shadow: 0 15px 40px rgba(255, 107, 157, 0.3);
    width: fit-content;
    max-width: 100%;
}

.final-cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 50px rgba(255, 107, 157, 0.4);
}

.guarantee {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-top: 40px;
}

.guarantee-icon {
    color: #ff6b9d;
}

.guarantee p {
    color: #ccc;
    font-size: 16px;
    font-weight: 500;
}

/* Footer */
.footer {
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    padding: 50px 0 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        /* Efeito de mármore preto no footer */
        linear-gradient(135deg, rgba(0, 0, 0, 0.9) 0%, rgba(26, 26, 26, 0.9) 100%),
        repeating-linear-gradient(
            60deg,
            transparent,
            transparent 3px,
            rgba(255, 255, 255, 0.01) 3px,
            rgba(255, 255, 255, 0.01) 6px
        );
    z-index: -1;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.footer-logo-initials {
    background: linear-gradient(135deg, #ff69b4, #dc143c, #ff1493);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 24px;
    font-weight: 900;
    letter-spacing: -1px;
    text-shadow: 0 0 15px rgba(255, 105, 180, 0.3);
}

.footer-brand {
    color: #ffb6c1;
    font-size: 18px;
    font-weight: 600;
    font-style: italic;
}

.footer-links {
    display: flex;
    gap: 30px;
}

.footer-link {
    color: #ccc;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #ff6b9d;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: #666;
    font-size: 14px;
}

/* Mobile Menu */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.mobile-nav {
    display: flex;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.98);
    backdrop-filter: blur(20px);
    z-index: 1000;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-nav.active {
    opacity: 1;
    visibility: visible;
}

.mobile-nav .nav-link {
    font-size: 24px;
    font-weight: 600;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.mobile-nav .nav-link:hover {
    color: #ff6b9d;
    transform: scale(1.1);
}

.mobile-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: linear-gradient(135deg, #ff6b9d, #ff8fab);
    transition: width 0.3s ease;
}

.mobile-nav .nav-link:hover::after {
    width: 100%;
}

/* Animação do texto "marmore" */
.hero-title-highlight {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 900;
    background: linear-gradient(135deg, #ff69b4, #dc143c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -1px;
    line-height: 1.1;
    position: relative;
    animation: marbleGlow 3s ease-in-out infinite;
}

@keyframes marbleGlow {
    0%, 100% {
        background: linear-gradient(135deg, #ff69b4, #dc143c);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        filter: brightness(1);
    }
    50% {
        background: linear-gradient(135deg, #dc143c, #ff69b4, #ff1493);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        filter: brightness(1.2);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .header .container {
        padding: 0 20px;
    }
    
    .hero {
        padding-top: 80px;
        min-height: 100vh;
    }
    
    .hero-content {
        padding: 0 15px;
    }
    
    .hero-title {
        margin-bottom: 30px;
    }
    
    .hero-image {
        margin: 40px 0;
    }
    
    .hero-image-container {
        max-width: 90%;
        border-radius: 20px;
        border: 3px solid rgba(255, 182, 193, 0.3);
        aspect-ratio: 1/1;
        box-sizing: border-box;
    }
    
    .hero-main-image {
        border-radius: 15px;
    }
    
    .video-placeholder {
        padding: 40px 20px;
        border-radius: 15px;
    }
    
    .play-button svg {
        width: 50px;
        height: 50px;
    }
    
    .price-section {
        flex-direction: column;
        gap: 20px;
        margin-bottom: 25px;
    }
    
    .price-new .price-value {
        font-size: 40px;
    }
    
    .countdown {
        gap: 10px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .countdown-item {
        padding: 12px 16px;
        min-width: 70px;
    }
    
    .countdown-number {
        font-size: 18px;
    }
    
    .countdown-label {
        font-size: 11px;
    }
    
    .cta-button {
        padding: 18px 35px;
        margin-bottom: 25px;
    }
    
    .cta-text {
        font-size: 18px;
    }
    
    .urgency-timer {
        margin-top: 20px;
    }
    
    .timer-text {
        font-size: 14px;
        margin-bottom: 15px;
    }
    
    .about {
        padding: 60px 0;
    }
    
    .section-header {
        margin-bottom: 40px;
    }
    
    .marble-showcase {
        margin-top: 40px;
    }
    
    .marble-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .marble-item {
        padding: 25px 20px;
    }
    
    .marble-image {
        width: 100px;
        height: 100px;
    }
    
    .benefits {
        padding: 60px 0;
    }
    
    .benefits-showcase {
        gap: 30px;
        margin-top: 40px;
    }
    
    .benefit-feature {
        flex-direction: column;
        text-align: center;
        gap: 20px;
        padding: 30px 25px;
    }
    
    .benefit-content {
        flex-direction: column;
        gap: 20px;
    }
    
    .benefit-number {
        font-size: 36px;
        min-width: auto;
    }
    
    .benefit-icon-large svg {
        width: 48px;
        height: 48px;
    }
    
    .benefit-text h3 {
        font-size: 20px;
    }
    
    .benefit-text p {
        font-size: 15px;
    }
    
    .benefits-cta {
        margin-top: 60px;
    }
    
    .cta-highlight {
        padding: 40px 25px;
    }
    
    .cta-highlight h3 {
        font-size: 24px;
    }
    
    .cta-highlight p {
        font-size: 16px;
    }
    
    .cta-section {
        padding: 60px 0;
    }
    
    .cta-title {
        margin-bottom: 15px;
    }
    
    .cta-subtitle {
        margin-bottom: 40px;
        font-size: 16px;
    }
    
    .final-offer {
        max-width: 100%;
    }
    
    .offer-highlight {
        padding: 25px 20px;
        margin-bottom: 25px;
    }
    
    .offer-price {
        gap: 15px;
    }
    
    .old-price {
        font-size: 18px;
    }
    
    .new-price {
        font-size: 32px;
    }
    
    .final-cta-button {
        padding: 20px 40px;
        margin-bottom: 25px;
    }
    
    .guarantee {
        margin-top: 30px;
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .footer {
        padding: 40px 0 25px;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }
    
    .footer-bottom {
        padding-top: 20px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    /* Centralização específica para botões CTA no mobile */
    .hero-cta {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
    }
    
    .cta-button {
        margin: 0 auto 25px auto;
        width: fit-content;
        max-width: calc(100vw - 40px);
        padding: 18px 35px;
    }
    
    .final-offer {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
    }
    
    .final-cta-button {
        margin: 0 auto 25px auto;
        width: fit-content;
        max-width: calc(100vw - 40px);
        padding: 18px 35px;
    }
    
    .header {
        padding: 12px 0;
    }
    
    .logo-initials {
        font-size: 28px;
    }
    
    .logo-text {
        font-size: 14px;
    }
    
    .hero {
        padding-top: 70px;
    }
    
    .hero-content {
        padding: 0 10px;
    }
    
    .hero-image {
        margin: 35px 0;
    }
    
    .hero-image-container {
        border-radius: 15px;
        border: 2px solid rgba(255, 182, 193, 0.3);
        max-width: 95%;
        box-sizing: border-box;
        aspect-ratio: 1/1;
    }
    
    .hero-main-image {
        border-radius: 12px;
        object-fit: contain;
        object-position: center center;
    }
    
    .hero-title-main {
        font-size: clamp(2rem, 8vw, 2.5rem);
    }
    
    .hero-title-highlight {
        font-size: clamp(1.8rem, 7vw, 2.2rem);
    }
    
    .hero-title-sub {
        font-size: clamp(1.3rem, 5vw, 1.8rem);
    }
    
    .video-placeholder {
        padding: 30px 15px;
        border-radius: 12px;
    }
    
    .play-button svg {
        width: 45px;
        height: 45px;
    }
    
    .video-placeholder p {
        font-size: 16px;
    }
    
    .price-section {
        gap: 15px;
    }
    
    .price-old .price-value {
        font-size: 20px;
    }
    
    .price-new .price-value {
        font-size: 36px;
    }
    
    .urgency-badge {
        padding: 6px 12px;
    }
    
    .urgency-text {
        font-size: 11px;
    }
    
    .cta-button,
    .final-cta-button {
        padding: 16px 30px;
        border-radius: 12px;
        margin: 0 auto 25px auto;
        width: fit-content;
        max-width: calc(100% - 20px);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    
    .cta-text {
        font-size: 16px;
    }
    
    .cta-subtext {
        font-size: 13px;
    }
    
    .countdown {
        gap: 8px;
    }
    
    .countdown-item {
        padding: 10px 12px;
        min-width: 60px;
    }
    
    .countdown-number {
        font-size: 16px;
    }
    
    .countdown-label {
        font-size: 10px;
    }
    
    .timer-text {
        font-size: 13px;
    }
    
    .about {
        padding: 50px 0;
    }
    
    .section-title {
        font-size: clamp(1.8rem, 6vw, 2.2rem);
    }
    
    .section-subtitle {
        font-size: 16px;
    }
    
    .marble-item {
        padding: 20px 15px;
    }
    
    .marble-image {
        width: 80px;
        height: 80px;
    }
    
    .marble-item h3 {
        font-size: 16px;
    }
    
    .marble-item p {
        font-size: 13px;
    }
    
    .benefits {
        padding: 50px 0;
    }
    
    .benefit-feature {
        padding: 25px 20px;
    }
    
    .benefit-number {
        font-size: 32px;
    }
    
    .benefit-icon-large svg {
        width: 40px;
        height: 40px;
    }
    
    .benefit-text h3 {
        font-size: 18px;
        margin-bottom: 12px;
    }
    
    .benefit-text p {
        font-size: 14px;
    }
    
    .benefit-highlight {
        font-size: 12px;
        padding: 6px 12px;
    }
    
    .cta-highlight {
        padding: 30px 20px;
    }
    
    .cta-icon {
        font-size: 36px;
    }
    
    .cta-highlight h3 {
        font-size: 20px;
    }
    
    .cta-highlight p {
        font-size: 14px;
    }
    
    .cta-section {
        padding: 50px 0;
    }
    
    .cta-title {
        font-size: clamp(1.8rem, 6vw, 2.2rem);
    }
    
    .cta-subtitle {
        font-size: 15px;
        margin-bottom: 35px;
    }
    
    .offer-highlight {
        padding: 20px 15px;
    }
    
    .offer-text {
        font-size: 12px;
        margin-bottom: 12px;
    }
    
    .offer-price {
        gap: 12px;
    }
    
    .old-price {
        font-size: 16px;
    }
    
    .new-price {
        font-size: 28px;
    }
    
    .offer-discount {
        font-size: 14px;
    }
    
    .final-cta-button {
        padding: 18px 35px;
    }
    
    .guarantee {
        margin-top: 25px;
    }
    
    .guarantee p {
        font-size: 14px;
    }
    
    .footer {
        padding: 35px 0 20px;
    }
    
    .footer-logo-initials {
        font-size: 20px;
    }
    
    .footer-brand {
        font-size: 16px;
    }
    
    .footer-links {
        gap: 15px;
    }
    
    .footer-link {
        font-size: 14px;
    }
    
    .footer-bottom p {
        font-size: 12px;
    }
}

/* Melhorias para tablets */
@media (min-width: 769px) and (max-width: 1024px) {
    .container {
        padding: 0 30px;
    }
    
    .hero-content {
        max-width: 800px;
    }
    
    .marble-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .price-section {
        gap: 25px;
    }
    
    .countdown {
        gap: 18px;
    }
}

/* Melhorias para telas muito pequenas */
@media (max-width: 360px) {
    .container {
        padding: 0 10px;
    }
    
    .hero-content {
        padding: 0 8px;
    }
    
    .hero-image {
        margin: 25px 0;
    }
    
    .hero-image-container {
        border-radius: 12px;
        border: 1px solid rgba(255, 182, 193, 0.3);
        max-width: 98%;
        aspect-ratio: 1/1;
    }
    
    .hero-main-image {
        border-radius: 10px;
        object-fit: contain;
        object-position: center center;
    }
    
    .video-placeholder {
        padding: 25px 10px;
    }
    
    .play-button svg {
        width: 40px;
        height: 40px;
    }
    
    .countdown-item {
        padding: 8px 10px;
        min-width: 55px;
    }
    
    .countdown-number {
        font-size: 14px;
    }
    
    .countdown-label {
        font-size: 9px;
    }
    
    .marble-item,
    .benefit-card {
        padding: 20px 15px;
    }
    
    .offer-highlight {
        padding: 18px 12px;
    }
}

/* Otimização específica para celulares muito pequenos */
@media (max-width: 320px) {
    .hero-content {
        padding: 0 5px;
    }
    
    .hero-image {
        margin: 20px 0;
    }
    
    .hero-image-container {
        border-radius: 10px;
        border: 1px solid rgba(255, 182, 193, 0.3);
        max-width: 100%;
        aspect-ratio: 1/1;
    }
    
    .hero-main-image {
        border-radius: 8px;
        object-fit: contain;
        object-position: center center;
    }
}

/* Social Proof Section */
.social-proof {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 50%, #1a1a1a 100%);
    position: relative;
    overflow: hidden;
}

.social-proof::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at 20% 30%, rgba(0, 255, 136, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 70%, rgba(0, 212, 255, 0.08) 0%, transparent 50%);
    z-index: 1;
}

.social-proof .container {
    position: relative;
    z-index: 2;
}

.social-proof .section-title {
    color: #fff;
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 900;
    text-align: center;
    margin-bottom: 20px;
    letter-spacing: -1px;
    background: linear-gradient(135deg, #ff6b9d, #ff8fab);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.social-proof .section-subtitle {
    color: #ccc;
    font-size: 18px;
    text-align: center;
    max-width: 600px;
    margin: 0 auto 60px;
    font-weight: 500;
}

.social-proof-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-top: 60px;
}

/* Testimonials Grid */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 30px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 107, 157, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        repeating-linear-gradient(
            30deg,
            transparent,
            transparent 2px,
            rgba(255, 107, 157, 0.02) 2px,
            rgba(255, 107, 157, 0.02) 4px
        );
    z-index: -1;
    opacity: 0.7;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 107, 157, 0.4);
    box-shadow: 0 20px 40px rgba(255, 107, 157, 0.1);
}

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

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(255, 107, 157, 0.3);
}

.testimonial-info h4 {
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 5px;
}

.testimonial-info p {
    color: #ff6b9d;
    font-size: 14px;
    font-weight: 500;
    margin: 0;
}

.testimonial-text {
    color: #e0e0e0;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 15px;
    font-style: italic;
}

.testimonial-rating {
    color: #ffd700;
    font-size: 18px;
    text-align: center;
}

.testimonial-video {
    position: relative;
}

.social-proof-image {
    margin-top: 30px;
    text-align: center;
}

.proof-image {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(255, 107, 157, 0.2);
    transition: all 0.3s ease;
}

.proof-image:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(255, 107, 157, 0.2);
    border-color: rgba(255, 107, 157, 0.4);
}

.proof-caption {
    margin-top: 15px;
    color: #ff6b9d;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
}

.social-proof-stats {
    display: flex;
    flex-direction: column;
    gap: 40px;
    padding: 40px 0;
}

.stat-item {
    text-align: center;
    padding: 30px 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 2px,
            rgba(255, 255, 255, 0.02) 2px,
            rgba(255, 255, 255, 0.02) 4px
        );
    z-index: -1;
    opacity: 0.5;
}

.stat-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 107, 157, 0.3);
    box-shadow: 0 20px 40px rgba(255, 107, 157, 0.1);
}

.stat-number {
    font-size: 48px;
    font-weight: 900;
    color: #ff6b9d;
    margin-bottom: 10px;
    background: linear-gradient(135deg, #ff6b9d, #ff8fab);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 16px;
    color: #ccc;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Responsive Design para Social Proof */
@media (max-width: 768px) {
    .social-proof {
        padding: 60px 0;
    }
    
    .social-proof-content {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-top: 40px;
    }
    
    .social-proof-stats {
        gap: 20px;
        padding: 20px 0;
    }
    
    .stat-item {
        padding: 25px 15px;
    }
    
    .stat-number {
        font-size: 36px;
    }
    
    .stat-label {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .social-proof {
        padding: 40px 0;
    }
    
    .social-proof-content {
        gap: 30px;
        margin-top: 30px;
    }
    
    .stat-item {
        padding: 20px 15px;
    }
    
    .stat-number {
        font-size: 32px;
    }
    
    .stat-label {
        font-size: 13px;
    }
}

/* Quem Somos Section */
.quem-somos {
    padding: 100px 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%);
    position: relative;
    overflow: hidden;
}

.quem-somos::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at 30% 20%, rgba(0, 255, 136, 0.05) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 80%, rgba(0, 212, 255, 0.05) 0%, transparent 50%);
    z-index: 1;
}

.quem-somos .container {
    position: relative;
    z-index: 2;
}

.quem-somos-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-top: 60px;
}

.instructors-photos {
    display: flex;
    gap: 30px;
    justify-content: center;
    max-width: 400px;
    margin: 0 auto;
}

.instructor-photo {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(255, 107, 157, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    min-width: 300px;
    max-width: 400px;
    flex: 1;
    aspect-ratio: 1/1;
}

.instructor-photo:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 
        0 30px 60px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(255, 107, 157, 0.3),
        0 0 30px rgba(255, 107, 157, 0.2);
}

.instructor-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
    border-radius: 20px;
    transition: transform 0.4s ease;
}

.instructor-photo:hover .instructor-img {
    transform: scale(1.05);
}

.quem-somos-text {
    padding: 20px 0;
}

.instructors-description {
    font-size: 18px;
    line-height: 1.8;
    color: #e0e0e0;
    text-align: left;
    margin: 0;
}

.instructors-description strong {
    color: #ff6b9d;
    font-weight: 700;
    background: linear-gradient(135deg, #ff6b9d, #ff8fab);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Responsive Design para Quem Somos */
@media (max-width: 768px) {
    .quem-somos {
        padding: 60px 0;
    }
    
    .quem-somos-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .instructors-photos {
        flex-direction: row;
        align-items: center;
        gap: 15px;
        max-width: 100%;
        padding: 0 20px;
    }
    
    .instructor-photo {
        max-width: 200px;
        min-width: 180px;
        width: 100%;
        flex: 1;
    }
    
    .instructors-description {
        font-size: 16px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .quem-somos {
        padding: 40px 0;
    }
    
    .quem-somos-content {
        gap: 30px;
        margin-top: 40px;
    }
    
    .instructors-photos {
        gap: 10px;
        padding: 0 15px;
    }
    
    .instructor-photo {
        max-width: 180px;
        min-width: 150px;
        border-radius: 15px;
    }
    
    .instructor-img {
        border-radius: 15px;
    }
    
    .instructors-description {
        font-size: 15px;
        line-height: 1.6;
    }
}

/* VSL Video Player Styles */
.video-container {
    position: relative;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(255, 255, 255, 0.1);
    background: #000;
    aspect-ratio: 16/9;
}

.vsl-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 20px;
}

/* Hide native video controls */
.vsl-video::-webkit-media-controls {
    display: none !important;
}

.vsl-video::-webkit-media-controls-panel {
    display: none !important;
}

.vsl-video::-webkit-media-controls-play-button {
    display: none !important;
}

.vsl-video::-webkit-media-controls-timeline {
    display: none !important;
}

.vsl-video::-webkit-media-controls-current-time-display {
    display: none !important;
}

.vsl-video::-webkit-media-controls-time-remaining-display {
    display: none !important;
}

.vsl-video::-webkit-media-controls-mute-button {
    display: none !important;
}

.vsl-video::-webkit-media-controls-volume-slider {
    display: none !important;
}

.vsl-video::-webkit-media-controls-fullscreen-button {
    display: none !important;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.2));
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    border-radius: 20px;
}

.video-overlay.hidden {
    opacity: 0;
    pointer-events: none;
}

.center-play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    transition: all 0.3s ease;
}

.center-play-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    filter: drop-shadow(0 10px 20px rgba(0, 255, 136, 0.3));
}

.center-play-btn:hover {
    transform: scale(1.1);
    filter: drop-shadow(0 15px 30px rgba(0, 255, 136, 0.5));
}

.center-play-button.hidden {
    opacity: 0;
    pointer-events: none;
}

.play-button {
    margin-bottom: 20px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    filter: drop-shadow(0 10px 20px rgba(0, 255, 136, 0.3));
}

.play-button:hover {
    transform: scale(1.1);
    filter: drop-shadow(0 15px 30px rgba(0, 255, 136, 0.5));
}

.video-title {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.video-subtitle {
    font-size: 16px;
    color: #ff69b4;
    font-weight: 500;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.loading-spinner {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
}

.spinner {
    width: 60px;
    height: 60px;
    border: 4px solid rgba(255, 255, 255, 0.3);
    border-top: 4px solid #ff69b4;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.video-controls {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
    padding: 15px 20px 20px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    border-radius: 0 0 20px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.video-container:hover .video-controls,
.video-container.playing .video-controls {
    transform: translateY(0);
}



.controls-row {
    display: flex;
    align-items: center;
    gap: 15px;
}

.control-btn {
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
    padding: 8px;
    border-radius: 8px;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.control-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: scale(1.1);
}



.volume-container {
    display: flex;
    align-items: center;
    gap: 8px;
    flex: 1;
    max-width: 100px;
}

.volume-slider {
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 2px;
    outline: none;
    cursor: pointer;
    -webkit-appearance: none;
    appearance: none;
}

.volume-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 12px;
    height: 12px;
    background: #ff69b4;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}

.volume-slider::-moz-range-thumb {
    width: 12px;
    height: 12px;
    background: #ff69b4;
    border-radius: 50%;
    cursor: pointer;
    border: none;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}

/* Video Player Responsive */
@media (max-width: 768px) {
    .video-container {
        border-radius: 15px;
        max-width: 100%;
        aspect-ratio: 16/9;
    }
    
    .vsl-video {
        border-radius: 15px;
    }
    
    .play-button svg {
        width: 60px;
        height: 60px;
    }
    
    .center-play-btn svg {
        width: 50px;
        height: 50px;
    }
    
    .video-title {
        font-size: 20px;
    }
    
    .video-subtitle {
        font-size: 14px;
    }
    
    .video-controls {
        padding: 15px;
    }
    
    .controls-row {
        gap: 10px;
    }
    

    
    .volume-container {
        max-width: 80px;
    }
}

@media (max-width: 480px) {
    .video-container {
        border-radius: 12px;
        aspect-ratio: 16/9;
    }
    
    .vsl-video {
        border-radius: 12px;
    }
    
    .play-button svg {
        width: 50px;
        height: 50px;
    }
    
    .center-play-btn svg {
        width: 40px;
        height: 40px;
    }
    
    .video-title {
        font-size: 18px;
    }
    
    .video-subtitle {
        font-size: 13px;
    }
    
    .video-controls {
        padding: 12px;
    }
    
    .controls-row {
        gap: 8px;
    }
    
    .control-btn {
        padding: 6px;
    }
    
    .control-btn svg {
        width: 20px;
        height: 20px;
    }
    

    
    .volume-container {
        max-width: 60px;
    }
}

