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

html {
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

:root {
    --primary-gradient: linear-gradient(135deg, #ff6b35, #f7931e);
    --secondary-gradient: linear-gradient(135deg, #1a1a1a, #2d2d2d);
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --glass-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.2);
    --text-primary: #ffffff;
    --text-secondary: #cccccc;
    --text-accent: #ff6b35;
    --backdrop-blur: blur(20px);
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background: #0a0a0a;
    overflow-x: hidden;
    padding-top: 80px;
    width: 100%;
    position: relative;
}

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

/* Glassmorphism Effect */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: var(--backdrop-blur);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    box-shadow: var(--glass-shadow);
    transition: all 0.3s ease;
}

/* Modal Styles */
.hotmart-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

/* Hide notifications when modal is active */
.hotmart-modal-overlay.active ~ #notification-container,
.hotmart-modal-overlay.active ~ .notification-container {
    display: none !important;
}

.hotmart-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.hotmart-modal-content {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    width: 95%;
    max-width: 1200px;
    max-height: 90vh;
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
}

#hotmart-checkout-container {
    flex: 1;
    overflow: hidden;
}

#hotmart-checkout-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

@media (max-width: 768px) {
    .hotmart-modal-content {
        width: 95%;
        height: 90vh;
        max-height: 90vh;
        margin: 5vh auto;
        border-radius: 8px;
    }
    
    .hotmart-modal-overlay {
        padding: 0;
        align-items: flex-start;
    }
}

.hotmart-modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(0, 0, 0, 0.1);
    border: none;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10001;
    transition: background 0.2s ease;
}

.hotmart-modal-close:hover {
    background: rgba(0, 0, 0, 0.2);
}

.hotmart-modal-close::before {
    content: '×';
    font-size: 20px;
    font-weight: bold;
    color: #666;
}

.glass-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-5px);
    box-shadow: 0 15px 45px 0 rgba(31, 38, 135, 0.3);
}

/* Fixed Navigation */
.navbar {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    width: 95%;
    max-width: 1200px;
    background: var(--glass-bg);
    backdrop-filter: var(--backdrop-blur);
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    padding: 0 30px;
    box-shadow: var(--glass-shadow);
    transition: all 0.3s ease;
}

.navbar:hover {
    background: rgba(255, 255, 255, 0.08);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.nav-logo .logo-img {
    height: 40px;
    width: auto;
    transition: all 0.3s ease;
}

.nav-logo .logo-img:hover {
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: var(--text-accent);
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 50%;
    background: var(--primary-gradient);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

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

.nav-cta {
    background: var(--primary-gradient);
    color: white;
    padding: 12px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(255, 107, 53, 0.3);
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 10px;
    position: relative;
    z-index: 1001;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-primary);
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: var(--secondary-gradient);
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255, 107, 53, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(247, 147, 30, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(255, 107, 53, 0.05) 0%, transparent 50%);
}

.hero-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://i.ibb.co/Q7j7JkVn/Whats-App-Image-2025-10-05-at-15-29-09-1.jpg') center/contain no-repeat;
    opacity: 0.1;
    z-index: 0;
}

.floating-shapes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: var(--primary-gradient);
    opacity: 0.1;
    animation: float 6s ease-in-out infinite;
}

.shape-1 {
    width: 100px;
    height: 100px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 150px;
    height: 150px;
    top: 60%;
    right: 10%;
    animation-delay: 2s;
}

.shape-3 {
    width: 80px;
    height: 80px;
    bottom: 20%;
    left: 20%;
    animation-delay: 4s;
}

.shape-4 {
    width: 120px;
    height: 120px;
    top: 10%;
    right: 30%;
    animation-delay: 1s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 50px;
    position: relative;
    z-index: 1;
}

/* Desktop Layout: Side by side */
.hero-main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    width: 100%;
    max-width: 1200px;
}

.hero-carousel {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-text-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    text-align: center;
}

.hero-problem-text {
    font-size: 2.3rem;
    line-height: 1.4;
    color: var(--text-primary);
    font-weight: 600;
    margin: 0;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    font-family: 'Poppins', sans-serif;
}

.hero-cta-section {
    display: flex;
    justify-content: center;
    width: 100%;
    max-width: 800px;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.netflix-carousel {
    width: 100%;
    max-width: 1500px;
    margin: 0 auto;
}

.carousel-header {
    margin-bottom: 20px;
}

.carousel-header h3 {
    color: var(--text-primary);
    font-size: 1.5rem;
    font-weight: 600;
    text-align: center;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.carousel-wrapper {
    position: relative;
    padding: 0;
}

.carousel-track {
    overflow: hidden;
    border-radius: 15px;
}

.carousel-slide {
    display: none;
    justify-content: center;
    align-items: center;
    animation: slideIn 0.5s ease-in-out;
}

.carousel-slide.active {
    display: flex;
}

.carousel-item {
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    transition: all 0.3s ease;
    width: auto;
    height: auto;
}

.carousel-item:hover {
    transform: scale(1.03);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
}

.carousel-img {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: all 0.3s ease;
}

.carousel-item.placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(247, 147, 30, 0.1));
    border: 2px dashed var(--glass-border);
}

.placeholder-content {
    text-align: center;
    color: var(--text-secondary);
}

.placeholder-content i {
    font-size: 2rem;
    color: var(--text-accent);
    margin-bottom: 10px;
    display: block;
}

.placeholder-content span {
    font-size: 0.9rem;
    font-weight: 500;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--glass-bg);
    backdrop-filter: var(--backdrop-blur);
    border: 1px solid var(--glass-border);
    border-radius: 50%;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.carousel-btn:hover {
    background: var(--primary-gradient);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
}

.prev-btn {
    left: -70px;
}

.next-btn {
    right: -70px;
}

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

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: var(--primary-gradient);
    transform: scale(1.2);
}

.dot:hover {
    background: rgba(255, 107, 53, 0.7);
    transform: scale(1.1);
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-logo {
    margin-bottom: 30px;
    text-align: center;
}

.hero-logo-img {
    max-width: 350px;
    width: 100%;
    height: auto;
    transition: all 0.3s ease;
    filter: drop-shadow(0 10px 30px rgba(255, 107, 53, 0.3));
    animation: glow 2s ease-in-out infinite alternate;
}

.hero-logo-img:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 15px 40px rgba(255, 107, 53, 0.5));
}

@keyframes glow {
    from { filter: drop-shadow(0 10px 30px rgba(255, 107, 53, 0.3)); }
    to { filter: drop-shadow(0 15px 40px rgba(255, 107, 53, 0.6)); }
}

.hero-subtitle {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 30px;
    color: var(--text-secondary);
}

.hero-description {
    font-size: 1.1rem;
    margin-bottom: 40px;
    color: var(--text-secondary);
    line-height: 1.8;
}

.hero-highlight {
    padding: 30px;
    margin: 40px 0;
    display: flex;
    align-items: center;
    gap: 20px;
}

.highlight-icon {
    font-size: 2rem;
    color: var(--text-accent);
    flex-shrink: 0;
}

.highlight-text p {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.highlight-text p:last-child {
    margin-bottom: 0;
    color: var(--text-accent);
    font-weight: 600;
}

.highlight-sub {
    font-size: 1rem !important;
    color: var(--text-secondary) !important;
    font-style: italic;
    margin-top: 15px !important;
}

.hero-cta {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
    text-align: center;
    margin-top: 40px;
}

.cta-button {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    background: var(--primary-gradient);
    color: white;
    padding: 18px 45px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.4);
    position: relative;
    overflow: hidden;
    min-width: 300px;
    max-width: 350px;
}

.pulse-btn {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1.05);
        box-shadow: 0 15px 40px rgba(255, 107, 53, 0.4);
    }
    50% {
        transform: scale(1.08);
        box-shadow: 0 20px 50px rgba(255, 107, 53, 0.6);
    }
    100% {
        transform: scale(1.05);
        box-shadow: 0 15px 40px rgba(255, 107, 53, 0.4);
    }
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    transform: scale(1.1) translateY(-3px);
    box-shadow: 0 25px 60px rgba(255, 107, 53, 0.6);
}

.cta-button span {
    font-size: 1.2rem;
}

.cta-price {
    margin-top: 15px;
    text-align: center;
}

.cta-price p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin: 0;
}

.cta-price strong {
    color: var(--primary-color);
    font-size: 1.4rem;
    font-weight: 700;
}

.cta-security {
    margin-top: 10px;
}

.security-text {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #4CAF50;
    font-size: 0.9rem;
    font-weight: 600;
    margin: 0;
}

.security-text i {
    color: #4CAF50;
    font-size: 1rem;
}

.cta-info {
    margin-top: 15px;
}

.lifetime-access {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: rgba(76, 175, 80, 0.1);
    border: 1px solid rgba(76, 175, 80, 0.3);
    border-radius: 15px;
    padding: 15px 20px;
    color: #4CAF50;
    font-size: 0.95rem;
}

.lifetime-access i {
    color: #4CAF50;
    font-size: 1.2rem;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 3rem;
    font-weight: 700;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
}

.section-line {
    width: 100px;
    height: 4px;
    background: var(--primary-gradient);
    margin: 0 auto;
    border-radius: 2px;
}

/* Sections */
section {
    padding: 100px 0;
    position: relative;
}

section:nth-child(even) {
    background: rgba(255, 255, 255, 0.02);
}

/* Credentials Section */
.credentials-section {
    background: var(--secondary-gradient);
    padding: 120px 0;
}

.credentials-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.credentials-carousel {
    width: 100%;
    max-width: 500px;
    margin: 0;
}

.credentials-text {
    padding-left: 40px;
}

.credentials-title {
    font-size: 3.5rem;
    font-weight: 900;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
    text-align: left;
    line-height: 1.2;
}

.credentials-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin: 30px 0 40px 0;
}

.credentials-highlights {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 20px;
    background: rgba(255, 107, 53, 0.1);
    border: 1px solid rgba(255, 107, 53, 0.2);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.highlight-item:hover {
    background: rgba(255, 107, 53, 0.15);
    border-color: rgba(255, 107, 53, 0.4);
    transform: translateX(10px);
}

.highlight-item i {
    color: var(--text-accent);
    font-size: 1.3rem;
    min-width: 20px;
}

.highlight-item span {
    color: var(--text-primary);
    font-weight: 600;
    font-size: 1rem;
}

.credentials-wrapper {
    position: relative;
    padding: 0;
}

.credentials-track {
    overflow: hidden;
    border-radius: 20px;
}

.credentials-slide {
    display: none;
    justify-content: center;
    align-items: center;
    animation: slideIn 0.5s ease-in-out;
}

.credentials-slide.active {
    display: flex;
}

.credentials-item {
    width: 100%;
    max-width: 400px;
    aspect-ratio: 3/4;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    transition: all 0.3s ease;
    background: var(--glass-bg);
    backdrop-filter: var(--backdrop-blur);
    border: 2px solid var(--glass-border);
    box-shadow: var(--glass-shadow);
}

.credentials-item:hover {
    transform: scale(1.02);
    box-shadow: 0 20px 60px rgba(255, 107, 53, 0.3);
}

.credentials-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: all 0.3s ease;
}

@media (max-width: 768px) {
    .credentials-img {
        height: 60vh;
        width: 100%;
        object-fit: cover;
    }
}

.credentials-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--glass-bg);
    backdrop-filter: var(--backdrop-blur);
    border: 1px solid var(--glass-border);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.credentials-btn:hover {
    background: var(--primary-gradient);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 5px 20px rgba(255, 107, 53, 0.4);
}

.credentials-btn.prev-btn {
    left: -75px;
}

.credentials-btn.next-btn {
    right: -75px;
}

.credentials-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 30px;
}

.credentials-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.credentials-dot.active {
    background: var(--primary-gradient);
    transform: scale(1.3);
}

.credentials-dot:hover {
    background: rgba(255, 107, 53, 0.7);
    transform: scale(1.2);
}

/* About Section */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-image .image-placeholder {
    width: 250px;
    height: 250px;
}

.about-text p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: var(--text-secondary);
    line-height: 1.8;
}

.credentials {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 30px;
}

.credential {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 20px;
    background: rgba(255, 107, 53, 0.1);
    border-radius: 10px;
    border: 1px solid rgba(255, 107, 53, 0.2);
}

.credential i {
    color: var(--text-accent);
    font-size: 1.2rem;
}

/* About Title Styling */
.about-title {
    font-size: 3rem;
    font-weight: 700;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
}

/* About Carousel */
.about-carousel {
    position: relative;
    max-width: 600px;
    margin: 0 auto;
}

.about-wrapper {
    position: relative;
    overflow: hidden;
}

.about-track {
    display: flex;
    transition: transform 0.3s ease;
    position: relative;
}

.about-slide {
    min-width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.about-slide.active {
    opacity: 1;
    position: relative;
}

.about-item {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
}

.about-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
    aspect-ratio: 3/4;
}

.about-img:not([src]), .about-img[src=""] {
    background: var(--glass-bg);
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-img:not([src]):before, .about-img[src=""]:before {
    content: '📷';
    font-size: 4rem;
    color: var(--text-secondary);
}

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

.about-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    z-index: 2;
}

.about-btn:hover {
    background: rgba(255, 107, 53, 0.8);
    border-color: rgba(255, 107, 53, 1);
    transform: translateY(-50%) scale(1.1);
}

.about-btn.prev-btn {
    left: 20px;
}

.about-btn.next-btn {
    right: 20px;
}

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

.about-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.about-dot.active {
    background: var(--primary-color);
    transform: scale(1.2);
}

/* Transformation Section */
.transformation-section {
    background: var(--secondary-gradient);
    padding: 120px 0;
}

.before-after-container {
    display: flex;
    justify-content: center;
    margin-top: 60px;
}

.comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    width: 100%;
    max-width: 1400px;
}

.before-after-slider {
    position: relative;
    width: 100%;
    height: 800px;
    overflow: hidden;
    border-radius: 20px;
    cursor: ew-resize;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

.comparison-title {
    text-align: center;
    margin-top: 20px;
    font-size: 1.3rem;
    font-weight: 600;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.before-image, .after-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.before-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

.after-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

.after-image {
    clip-path: inset(0 50% 0 0);
}

/* Ajuste específico para a imagem da mulher do lado esquerdo */
.before-after-slider[data-comparison="mulher"] .before-image img {
    object-position: center 15%;
}

.image-label {
    position: absolute;
    top: 20px;
    padding: 8px 16px;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    font-weight: 700;
    font-size: 0.9rem;
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.before-label {
    left: 20px;
}

.after-label {
    right: 20px;
}

.slider-control {
    position: absolute;
    top: 0;
    left: 50%;
    width: 2px;
    height: 100%;
    transform: translateX(-50%);
    transition: left 0.1s ease;
}

.slider-handle {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.slider-line {
    width: 2px;
    flex: 1;
    background: white;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.slider-button {
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    color: var(--primary-color);
    font-size: 1rem;
    margin: 5px 0;
}

.slider-button:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

/* Responsive */
@media (max-width: 768px) {
    .comparison-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .before-after-slider {
        height: 600px;
    }
    
    .transformation-section h2 {
        font-size: 2.5rem;
    }
    
    .comparison-title {
        font-size: 1.1rem;
    }
}

/* Method Section */
.method-intro {
    padding: 40px;
    text-align: center;
    margin-bottom: 60px;
    display: flex;
    align-items: center;
    gap: 30px;
}

.method-icon {
    font-size: 3rem;
    color: var(--text-accent);
    flex-shrink: 0;
}

.method-intro p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

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

.feature {
    padding: 40px 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.feature-icon {
    font-size: 3rem;
    color: var(--text-accent);
    margin-bottom: 20px;
}

.feature h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.feature p {
    color: var(--text-secondary);
    line-height: 1.6;
}

.feature-highlight {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--primary-gradient);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.feature:hover .feature-highlight {
    transform: scaleX(1);
}

/* Why Different Section */
.why-different {
    background: var(--secondary-gradient);
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 15px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.benefit-card {
    position: relative;
    background: var(--glass-bg);
    backdrop-filter: var(--backdrop-blur);
    border: 1px solid var(--glass-border);
    border-radius: 25px;
    padding: 40px 30px;
    text-align: left;
    transition: all 0.4s ease;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--primary-gradient);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.benefit-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 80px rgba(255, 107, 53, 0.3);
    border-color: rgba(255, 107, 53, 0.3);
}

.benefit-card:hover::before {
    transform: scaleX(1);
}

.benefit-icon {
    width: 70px;
    height: 70px;
    background: var(--primary-gradient);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    margin-bottom: 25px;
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
    transition: all 0.3s ease;
}

.benefit-card:hover .benefit-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.5);
}

.benefit-content h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--text-primary);
    font-weight: 700;
}

.benefit-content p {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 1rem;
}

.benefit-number {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 4rem;
    font-weight: 900;
    color: rgba(255, 107, 53, 0.1);
    line-height: 1;
    transition: all 0.3s ease;
}

.benefit-card:hover .benefit-number {
    color: rgba(255, 107, 53, 0.2);
    transform: scale(1.1);
}

/* How It Works Section */
.how-it-works {
    padding: 120px 0;
    background: rgba(0, 0, 0, 0.02);
}

.section-description {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-top: 10px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

/* Netflix Style Carousel */
.netflix-carousel {
    margin-top: 80px;
}

.netflix-header {
    margin-bottom: 20px;
}

.netflix-header h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
}

.netflix-container {
    position: relative;
    overflow-x: auto;
    overflow-y: visible;
    padding: 10px 0 50px 0;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.netflix-container::-webkit-scrollbar {
    display: none;
}

.netflix-track {
    display: flex;
    gap: 15px;
    padding: 0 20px;
    min-width: max-content;
    animation: netflixScroll 25s linear infinite;
}

.netflix-container:hover .netflix-track {
    animation-play-state: paused;
}

@keyframes netflixScroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-320px * 5 - 15px * 4));
    }
}

.netflix-item {
    flex: 0 0 320px;
    position: relative;
    transition: all 0.3s ease;
}

.netflix-item:hover {
    transform: scale(1.05);
    z-index: 10;
}

.netflix-cover {
    position: relative;
    width: 100%;
    height: 460px;
    border-radius: 12px;
    overflow: hidden;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    cursor: pointer;
}

.netflix-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
}

.netflix-overlay {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 50%;
    background: linear-gradient(
        180deg,
        transparent 0%,
        rgba(0, 0, 0, 0.3) 20%,
        rgba(0, 0, 0, 0.6) 50%,
        rgba(0, 0, 0, 0.8) 80%,
        rgba(0, 0, 0, 0.95) 100%
    );
    padding: 25px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    opacity: 1;
    transition: all 0.3s ease;
}

.netflix-item:hover .netflix-overlay {
    background: linear-gradient(
        180deg,
        transparent 0%,
        rgba(0, 0, 0, 0.4) 20%,
        rgba(0, 0, 0, 0.7) 50%,
        rgba(0, 0, 0, 0.9) 80%,
        rgba(0, 0, 0, 1) 100%
    );
}

.netflix-item:hover .netflix-cover img {
    transform: scale(1.1);
}

.netflix-content h4 {
    font-size: 1.6rem;
    font-weight: 800;
    color: white;
    margin: 0 0 12px 0;
    line-height: 1.1;
    text-shadow: 0 3px 6px rgba(0, 0, 0, 0.9);
    letter-spacing: -0.5px;
}

.netflix-content p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 0 0 15px 0;
    line-height: 1.4;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-weight: 400;
}

.netflix-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.tag {
    background: var(--primary-gradient);
    color: white;
    font-size: 0.8rem;
    font-weight: 700;
    padding: 4px 8px;
    border-radius: 10px;
    white-space: nowrap;
    text-shadow: none;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.4);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .netflix-track {
        gap: 12px;
        padding: 0 15px;
    }
    
    .netflix-item {
        flex: 0 0 220px;
    }
    
    .netflix-cover {
        height: 70vh;
    }
    
    .netflix-overlay {
        padding: 20px;
    }
    
    .netflix-content h4 {
        font-size: 1.3rem;
        margin: 0 0 8px 0;
    }
    
    .netflix-content p {
        font-size: 0.85rem;
        -webkit-line-clamp: 2;
        margin: 0 0 10px 0;
    }
    
    .tag {
        font-size: 0.75rem;
        padding: 3px 6px;
    }
}

/* PPL System */
.workout-table {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.workout-section {
    background: var(--glass-bg);
    backdrop-filter: var(--backdrop-blur);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.workout-section:hover {
    transform: translateY(-5px);
}

.workout-header {
    background: var(--primary-gradient);
    color: white;
    font-weight: 800;
    font-size: 1.4rem;
    padding: 20px;
    text-align: center;
    letter-spacing: 1px;
}

.exercise-row {
    display: grid;
    grid-template-columns: 100px 1fr;
    border-bottom: 1px solid var(--glass-border);
    transition: background 0.3s ease;
}

.exercise-row:last-child {
    border-bottom: none;
}

.exercise-row:hover {
    background: rgba(255, 107, 53, 0.05);
}

.sets {
    background: rgba(255, 107, 53, 0.1);
    padding: 15px;
    font-weight: 700;
    color: var(--primary-color);
    text-align: center;
    border-right: 1px solid var(--glass-border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

.exercise {
    padding: 15px 20px;
    color: var(--text-primary);
    font-weight: 500;
    line-height: 1.4;
    display: flex;
    align-items: center;
}

/* Exercise Groups Carousel */
.exercise-groups-section {
    margin-top: 60px;
    padding: 40px 0;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.05), rgba(247, 147, 30, 0.05));
    border-radius: 25px;
    border: 1px solid var(--glass-border);
}

.exercise-groups-section .section-header h2 {
    font-size: 2.5rem;
    color: var(--text-primary);
    text-align: center;
    margin-bottom: 15px;
    font-weight: 700;
    line-height: 1.2;
}

.exercise-groups-section .section-subtitle {
    text-align: center;
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.exercise-carousel-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.exercise-carousel {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
}

.exercise-wrapper {
    overflow: hidden;
}

.exercise-track {
    display: flex;
    transition: transform 0.5s ease;
    width: 300%;
}

.exercise-slide {
    width: 33.333%;
    flex-shrink: 0;
    padding: 0 15px;
}

.exercise-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    backdrop-filter: var(--backdrop-blur);
    overflow: hidden;
    transition: all 0.3s ease;
    height: 500px;
    display: flex;
    flex-direction: column;
}

.exercise-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 107, 53, 0.2);
}

.exercise-image-container {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.exercise-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
}

.exercise-card:hover .exercise-img {
    transform: scale(1.05);
}

.exercise-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        transparent 0%,
        rgba(0, 0, 0, 0.3) 50%,
        rgba(0, 0, 0, 0.7) 100%
    );
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    padding: 20px;
}

.exercise-badge {
    background: var(--primary-gradient);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.exercise-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.exercise-content h4 {
    color: var(--text-primary);
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.exercise-content p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.exercise-highlights {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.highlight-tag {
    background: rgba(255, 107, 53, 0.1);
    color: var(--primary-color);
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    border: 1px solid rgba(255, 107, 53, 0.2);
}

.exercise-navigation {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    pointer-events: none;
}

.exercise-nav-btn {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: var(--backdrop-blur);
    pointer-events: all;
    font-size: 1.1rem;
}

.exercise-nav-btn:hover {
    background: var(--primary-gradient);
    color: white;
    transform: scale(1.1);
    box-shadow: 0 10px 25px rgba(255, 107, 53, 0.3);
}

.exercise-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 30px;
}

.exercise-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.exercise-dot.active {
    background: var(--primary-gradient);
    transform: scale(1.2);
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
}

.exercise-dot:hover {
    background: rgba(255, 107, 53, 0.6);
    transform: scale(1.1);
}

/* Responsive */
@media (max-width: 768px) {
    .exercise-carousel-container {
        max-width: 100%;
        padding: 0 20px;
    }
    
    .exercise-card {
        height: 95vh;
    }
    
    .exercise-image-container {
        height: 85vh;
    }
    
    .exercise-content {
        padding: 20px;
    }
    
    .exercise-content h4 {
        font-size: 1.2rem;
    }
    
    .exercise-navigation {
        padding: 0 10px;
    }
    
    .exercise-nav-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}

/* Pricing Section */
.pricing {
    background: var(--secondary-gradient);
    position: relative;
}

.pricing::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 20%, rgba(255, 107, 53, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(247, 147, 30, 0.1) 0%, transparent 50%);
}

.price-comparison {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin: 50px 0;
    position: relative;
    z-index: 1;
}

.market-price, .launch-price {
    padding: 50px 40px;
    border-radius: 25px;
    text-align: center;
    transition: all 0.3s ease;
}

.market-price {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.7;
    transform: scale(0.95);
}

.launch-price {
    background: var(--glass-bg);
    backdrop-filter: var(--backdrop-blur);
    border: 2px solid var(--text-accent);
    transform: scale(1.05);
    box-shadow: 0 20px 50px rgba(255, 107, 53, 0.3);
}

.old-price {
    font-size: 2.5rem;
    text-decoration: line-through;
    color: #999;
    font-weight: 300;
}

.current-price {
    font-size: 4rem;
    font-weight: 900;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
}

.highlight {
    background: var(--primary-gradient);
    color: white;
    padding: 15px 30px;
    border-radius: 25px;
    font-weight: 600;
    display: inline-block;
}

.what-you-get {
    background: var(--glass-bg);
    backdrop-filter: var(--backdrop-blur);
    border: 2px solid #f7931e;
    border-radius: 25px;
    padding: 50px;
    margin: 50px 0;
    position: relative;
    z-index: 1;
}

.what-you-get h3 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 1.8rem;
    color: #f7931e;
}

.what-you-get ul {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.what-you-get li {
    padding: 20px;
    background: rgba(247, 147, 30, 0.1);
    border-radius: 15px;
    position: relative;
    padding-left: 60px;
    border: 1px solid rgba(247, 147, 30, 0.2);
    transition: all 0.3s ease;
}

.what-you-get li:hover {
    transform: translateX(10px);
    background: rgba(247, 147, 30, 0.15);
}

.what-you-get li:before {
    content: '✓';
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: #f7931e;
    font-weight: bold;
    font-size: 1.2rem;
    width: 25px;
    height: 25px;
    background: rgba(247, 147, 30, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.payment-options {
    text-align: center;
    margin: 40px 0;
    position: relative;
    z-index: 1;
}

.payment-options h3 {
    margin-bottom: 20px;
    color: var(--text-accent);
}

.payment-options p {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: var(--text-secondary);
}

/* FAQ Section */
.faq-item {
    background: var(--glass-bg);
    backdrop-filter: var(--backdrop-blur);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--text-accent);
}

.faq-item h3 {
    margin-bottom: 15px;
    color: var(--text-accent);
    cursor: pointer;
    user-select: none;
}

.faq-item p {
    color: var(--text-secondary);
    line-height: 1.8;
}

/* Final CTA */
.final-cta {
    background: var(--primary-gradient);
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.final-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="2" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
}

.final-cta .container {
    position: relative;
    z-index: 1;
}

.final-cta h2 {
    color: white;
    margin-bottom: 30px;
}

.final-cta p {
    font-size: 1.3rem;
    margin-bottom: 25px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.95;
}

.final-cta .cta-button {
    background: white;
    color: #ff6b35;
    font-size: 1.4rem;
    padding: 30px 50px;
    margin-top: 30px;
}

.final-cta .cta-button:hover {
    background: #f0f0f0;
}

/* Footer */
footer {
    background: #0a0a0a;
    padding: 40px 0;
    text-align: center;
    color: #666;
    border-top: 1px solid #333;
}

/* Responsive Design */
@media (max-width: 768px) {
    body {
        padding-top: 100px;
    }

    .navbar {
        width: 95%;
        padding: 0 20px;
        min-height: 60px;
        display: flex;
        align-items: center;
    }

    .credentials-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .credentials-text {
        padding-left: 0;
        order: -1;
    }

    .credentials-title {
        font-size: 2.5rem;
        text-align: center;
    }

    .credentials-carousel {
        max-width: 400px;
        margin: 0 auto;
    }

    .credentials-item {
        max-width: 300px;
    }

    .credentials-btn.prev-btn,
    .credentials-btn.next-btn {
        width: 40px;
        height: 40px;
    }

    .credentials-btn.prev-btn {
        left: -25px;
    }

    .credentials-btn.next-btn {
        right: -25px;
    }

    .nav-menu {
        position: fixed;
        top: 100px;
        left: 50%;
        transform: translateX(-50%);
        background: var(--glass-bg);
        backdrop-filter: var(--backdrop-blur);
        border: 1px solid var(--glass-border);
        border-radius: 20px;
        padding: 30px;
        flex-direction: column;
        gap: 20px;
        width: 90%;
        max-width: 300px;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }

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

    .nav-toggle {
        display: flex;
        padding: 12px;
        margin-left: auto;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 8px;
        min-width: 44px;
        min-height: 44px;
        justify-content: center;
        align-items: center;
    }

    .hero-content {
        gap: 35px;
    }

    .hero-logo-img {
        max-width: 350px;
    }

    .hero-subtitle {
        font-size: 1.4rem;
    }

    .netflix-carousel {
        max-width: 600px;
    }
    
    .prev-btn, .next-btn {
        left: -20px;
        right: -20px;
        width: 35px;
        height: 35px;
    }
    
    .next-btn {
        right: -20px;
    }
    
    .hero-logo-img {
        max-width: 280px;
    }

    .about-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    
    .about-title {
        font-size: 2.5rem;
    }
    
    .about-carousel {
        max-width: 400px;
    }
    
    .about-item {
        height: 400px;
    }

    .method-intro {
        flex-direction: column;
        text-align: center;
    }

    .features-grid, .benefits-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .how-carousel-item {
        height: 300px;
    }
    
    .benefit-card {
        padding: 30px 25px;
    }
    
    .benefit-icon {
        width: 60px;
        height: 60px;
        font-size: 1.8rem;
    }
    
    .benefit-number {
        font-size: 3rem;
        top: 15px;
        right: 20px;
    }

    .workout-table {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .sets {
        font-size: 0.9rem;
        padding: 12px;
    }

    .exercise {
        padding: 12px 15px;
        font-size: 0.9rem;
    }


    .schedule-row > div {
        display: block;
        text-align: left;
        padding: 15px 20px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .schedule-row > div:first-child {
        font-weight: bold;
        color: var(--text-accent);
        border-bottom: none;
    }

    .price-comparison {
        grid-template-columns: 1fr;
    }

    .launch-price, .market-price {
        transform: none;
    }

    .what-you-get ul {
        grid-template-columns: 1fr;
    }

    .current-price {
        font-size: 3rem;
    }

    .section-header h2 {
        font-size: 2.5rem;
    }

    section {
        padding: 60px 0;
    }
}

@media (max-width: 480px) {
    .hero-logo-img {
        max-width: 280px;
    }
    
    .nav-logo .logo-img {
        height: 35px;
    }

    .credentials-title {
        font-size: 2rem;
        line-height: 1.3;
        text-align: center;
    }

    .credentials-carousel {
        max-width: 100vw;
        width: 100%;
    }

    .credentials-item {
        max-width: 100%;
        height: 60vh;
    }

    .credentials-subtitle {
        font-size: 1rem;
    }

    .credentials-btn.prev-btn,
    .credentials-btn.next-btn {
        display: none;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .netflix-carousel {
        max-width: 500px;
    }
    
    .carousel-item {
        width: auto;
        height: auto;
    }
    
    .prev-btn, .next-btn {
        display: none;
    }
    
    .hero-logo-img {
        max-width: 240px;
    }

    .current-price {
        font-size: 2.5rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .cta-button {
        padding: 20px 30px;
    }

    .glass-card {
        border-radius: 15px;
    }

    .navbar {
        border-radius: 25px;
    }
}

/* Additional Animations */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.animate-in {
    animation: slideInUp 0.8s ease forwards;
}

.animate-left {
    animation: slideInLeft 0.8s ease forwards;
}

.animate-right {
    animation: slideInRight 0.8s ease forwards;
}

/* Locked Workout Sections */
.workout-section.locked {
    position: relative;
    pointer-events: none;
}

.workout-section.locked .exercise-row {
    filter: blur(3px);
    opacity: 0.4;
}

.lock-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 10;
    color: white;
    text-align: center;
    padding: 20px;
    pointer-events: auto;
}

.lock-icon {
    font-size: 3rem;
    color: #ff6b35;
    margin-bottom: 15px;
    animation: lockBounce 2s infinite;
}

.lock-message h4 {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.lock-message p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    margin: 0;
}

.simple-purchase-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(45deg, #ff6b35, #f7931e);
    color: white;
    padding: 15px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(255, 107, 53, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 15px;
}

.simple-purchase-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
    background: linear-gradient(45deg, #f7931e, #ff6b35);
}

.simple-purchase-btn i {
    font-size: 1.1rem;
}

/* Removed global blur - now handled by specific locked section styling */


@keyframes lockBounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* Mobile styles for locked sections */
@media (max-width: 768px) {
    .lock-overlay {
        padding: 15px;
    }
    
    .lock-icon {
        font-size: 2.5rem;
        margin-bottom: 10px;
    }
    
    .lock-message h4 {
        font-size: 1.2rem;
    }
    
    .lock-message p {
        font-size: 0.9rem;
    }
    
    .simple-purchase-btn {
        padding: 12px 20px;
        font-size: 0.9rem;
    }
}

/* WhatsApp Exclusive Section */
.whatsapp-exclusive {
    background: var(--section-bg);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.whatsapp-exclusive::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(37, 211, 102, 0.05), rgba(255, 107, 53, 0.05));
    z-index: -1;
}

.whatsapp-content {
    display: flex;
    justify-content: center;
    align-items: start;
    margin-top: 60px;
}

.whatsapp-intro {
    background: var(--glass-bg);
    backdrop-filter: var(--backdrop-blur);
    border: 1px solid var(--glass-border);
    border-radius: 25px;
    padding: 40px;
}

.instructor-profile {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.instructor-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--text-accent);
}

.instructor-info h3 {
    color: var(--text-accent);
    font-size: 1.5rem;
    margin-bottom: 5px;
    font-weight: 700;
}

.instructor-info p {
    color: var(--text-secondary);
    margin-bottom: 10px;
}

.instructor-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 107, 53, 0.1);
    padding: 8px 15px;
    border-radius: 20px;
    border: 1px solid rgba(255, 107, 53, 0.3);
}

.instructor-badge i {
    color: var(--text-accent);
    font-size: 0.9rem;
}

.instructor-badge span {
    color: var(--text-accent);
    font-size: 0.85rem;
    font-weight: 600;
}

.whatsapp-benefits {
    display: grid;
    gap: 20px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.benefit-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--text-accent);
    transform: translateX(5px);
}

.benefit-item i {
    color: var(--text-accent);
    font-size: 1.3rem;
    min-width: 25px;
}

.benefit-item span {
    color: var(--text-primary);
    font-weight: 600;
}

/* WhatsApp Chat Simulation */
.whatsapp-chat-simulation {
    background: #f0f0f0;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    max-width: 400px;
    margin: 0 auto;
}

.chat-header {
    background: #25d366;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    color: white;
}

.chat-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.chat-info h4 {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 5px;
    font-weight: 600;
}

.chat-info p {
    font-size: 0.85rem;
    margin: 0;
    opacity: 0.9;
}

.online {
    color: #4ade80;
    font-size: 0.7rem;
    margin-right: 5px;
}

.whatsapp-logo {
    margin-left: auto;
    font-size: 1.5rem;
}

.chat-messages {
    padding: 20px;
    background: #e5ddd5;
    height: 500px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.message {
    display: flex;
    align-items: flex-end;
    gap: 10px;
    opacity: 1;
}

.message.sent {
    flex-direction: row-reverse;
    justify-content: flex-start;
}

.message-avatar {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.message-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.message-content {
    max-width: 70%;
    background: white;
    padding: 12px 15px;
    border-radius: 18px;
    position: relative;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.message.sent .message-content {
    background: #dcf8c6;
}

.sender-name {
    font-weight: 600;
    color: #075e54;
    font-size: 0.85rem;
    display: block;
    margin-bottom: 5px;
}

.message-content p {
    margin: 0;
    color: #333;
    font-size: 0.9rem;
    line-height: 1.4;
}

.message-content p + p {
    margin-top: 5px;
}

.message-time {
    font-size: 0.7rem;
    color: #999;
    margin-top: 5px;
    display: block;
    text-align: right;
}

.typing-indicator {
    display: flex;
    align-items: flex-end;
    gap: 10px;
    opacity: 0.8;
}

.typing-content {
    background: white;
    padding: 12px 15px;
    border-radius: 18px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.typing-dots {
    display: flex;
    gap: 4px;
    align-items: center;
}

.typing-dots span {
    width: 6px;
    height: 6px;
    background: #999;
    border-radius: 50%;
    animation: typingAnimation 1.5s infinite;
}

.typing-dots span:nth-child(2) {
    animation-delay: 0.2s;
}

.typing-dots span:nth-child(3) {
    animation-delay: 0.4s;
}

.chat-footer {
    background: #075e54;
    padding: 15px 20px;
    text-align: center;
}

.exclusive-access {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: white;
    font-size: 0.9rem;
    font-weight: 500;
}

.exclusive-access i {
    color: #ffd700;
}

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

@keyframes typingAnimation {
    0%, 60%, 100% {
        transform: translateY(0);
        opacity: 0.4;
    }
    30% {
        transform: translateY(-10px);
        opacity: 1;
    }
}

.typewriter {
    overflow: hidden;
    border-right: 2px solid #075e54;
    white-space: nowrap;
    margin: 0;
    letter-spacing: 0.05em;
    animation: typing 2s steps(40, end), blink-caret 0.75s step-end infinite;
}

@keyframes typing {
    from { width: 0 }
    to { width: 100% }
}

@keyframes blink-caret {
    from, to { border-color: transparent }
    50% { border-color: #075e54 }
}

.message.typing .message-content p {
    border-right: 2px solid #075e54;
    animation: blink-caret 0.75s step-end infinite;
}

/* Results Gallery Section - Pinterest Style */
.results-gallery {
    background: var(--section-bg);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.results-gallery::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.03), rgba(37, 211, 102, 0.03));
    z-index: -1;
}

.pinterest-grid {
    columns: 4;
    column-gap: 20px;
    margin-top: 60px;
}

.pinterest-item {
    break-inside: avoid;
    margin-bottom: 20px;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s ease;
    cursor: pointer;
    background: var(--glass-bg);
    backdrop-filter: var(--backdrop-blur);
    border: 1px solid var(--glass-border);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.pinterest-item:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
    border-color: var(--text-accent);
}

.pinterest-item img {
    width: 100%;
    height: auto;
    display: block;
    transition: all 0.4s ease;
    object-fit: cover;
}

.pinterest-item:hover img {
    transform: scale(1.05);
    filter: brightness(0.8);
}

/* Pinterest hover effects without text overlays */

/* Responsive Pinterest Grid */
@media (max-width: 1200px) {
    .pinterest-grid {
        columns: 3;
        column-gap: 15px;
    }
}

@media (max-width: 768px) {
    .pinterest-grid {
        columns: 2;
        column-gap: 15px;
    }
    
    .pinterest-item {
        margin-bottom: 15px;
    }
    
    .overlay {
        padding: 15px;
    }
    
    .overlay-content h4 {
        font-size: 1rem;
    }
    
    .overlay-content p {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .pinterest-grid {
        columns: 1;
    }
    
    .results-gallery {
        padding: 60px 0;
    }
}

/* SaaS-Style Pricing Section */
.pricing {
    background: var(--primary-gradient);
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.pricing::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(37, 211, 102, 0.1));
    z-index: -1;
}

.pricing-cards {
    display: flex;
    justify-content: center;
    margin-top: 60px;
}

.pricing-card {
    background: var(--glass-bg);
    backdrop-filter: var(--backdrop-blur);
    border: 2px solid var(--glass-border);
    border-radius: 30px;
    padding: 40px;
    max-width: 450px;
    width: 100%;
    position: relative;
    transition: all 0.4s ease;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.pricing-card.featured {
    border-color: var(--text-accent);
    transform: scale(1.02);
    box-shadow: 0 30px 80px rgba(255, 107, 53, 0.2);
}

.pricing-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: var(--text-accent);
    box-shadow: 0 40px 100px rgba(255, 107, 53, 0.3);
}

.card-header {
    text-align: center;
    margin-bottom: 30px;
    position: relative;
}

.plan-badge {
    background: linear-gradient(45deg, #25d366, #20c997);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 15px;
    display: inline-block;
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
}

.pricing-logo {
    margin-bottom: 15px;
}

.pricing-logo-img {
    height: 60px;
    width: auto;
    transition: all 0.3s ease;
}

.pricing-logo-img:hover {
    transform: scale(1.05);
}

.plan-subtitle {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin: 0;
}

.price-section {
    text-align: center;
    margin-bottom: 40px;
    padding: 30px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.price-container {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 5px;
    margin-bottom: 15px;
}

.currency {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-accent);
}

.price {
    font-size: 6rem;
    font-weight: 900;
    color: var(--text-accent);
    line-height: 1;
}

.cents {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-accent);
}

.price-description {
    color: var(--text-secondary);
    font-size: 1rem;
    margin-bottom: 15px;
}

.discount-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.old-price {
    text-decoration: line-through;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.discount {
    background: linear-gradient(45deg, #ff6b35, #f7931e);
    color: white;
    padding: 4px 12px;
    border-radius: 15px;
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
}

.features-section {
    margin-bottom: 30px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: rgba(255, 255, 255, 0.02);
    padding-left: 10px;
}

.feature-item i {
    color: #25d366;
    font-size: 1.2rem;
    min-width: 20px;
    text-shadow: 0 0 10px rgba(37, 211, 102, 0.3);
}

.feature-item span {
    color: var(--text-primary);
    font-weight: 500;
    line-height: 1.4;
}

.payment-methods {
    margin-bottom: 30px;
    text-align: center;
}

.payment-methods p {
    color: var(--text-secondary);
    margin-bottom: 15px;
    font-weight: 600;
}

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

.payment-option {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.05);
    padding: 10px 15px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.payment-option i {
    color: var(--text-accent);
}

.payment-option span {
    color: var(--text-primary);
    font-size: 0.9rem;
    font-weight: 500;
}

.cta-button.saas-style {
    background: linear-gradient(45deg, #25d366, #20c997);
    color: white;
    padding: 22px 50px;
    border-radius: 60px;
    font-size: 1.3rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 15px 40px rgba(37, 211, 102, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    width: 100%;
    margin-bottom: 20px;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    animation: ctaPulse 2s infinite;
}

.cta-button.saas-style::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.cta-button.saas-style:hover::before {
    left: 100%;
}

.cta-button.saas-style:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 20px 50px rgba(37, 211, 102, 0.5);
    background: linear-gradient(45deg, #20c997, #25d366);
    animation: ctaPulseHover 1s infinite;
}

.cta-button.saas-style i {
    transition: all 0.3s ease;
    font-size: 1.4rem;
}

.cta-button.saas-style:hover i {
    transform: translateX(8px) scale(1.1);
}

@keyframes ctaPulse {
    0% {
        box-shadow: 0 15px 40px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 15px 40px rgba(37, 211, 102, 0.6), 0 0 0 10px rgba(37, 211, 102, 0.1);
    }
    100% {
        box-shadow: 0 15px 40px rgba(37, 211, 102, 0.4);
    }
}

@keyframes ctaPulseHover {
    0% {
        box-shadow: 0 20px 50px rgba(37, 211, 102, 0.5);
    }
    50% {
        box-shadow: 0 25px 60px rgba(37, 211, 102, 0.7), 0 0 0 15px rgba(37, 211, 102, 0.2);
    }
    100% {
        box-shadow: 0 20px 50px rgba(37, 211, 102, 0.5);
    }
}

.guarantee {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 500;
}

.guarantee i {
    color: #25d366;
    font-size: 1rem;
}

.trust-indicators {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-secondary);
    font-weight: 600;
}

.trust-item i {
    color: #25d366;
    font-size: 1.1rem;
}

/* Responsive Pricing */
@media (max-width: 768px) {
    .pricing {
        padding: 80px 0;
    }
    
    .pricing-card {
        padding: 30px 20px;
    }
    
    .card-header h3 {
        font-size: 1.5rem;
    }
    
    .currency {
        font-size: 1.8rem;
    }
    
    .price {
        font-size: 4rem;
    }
    
    .cents {
        font-size: 2rem;
    }
    
    .payment-options {
        flex-direction: column;
        gap: 10px;
    }
    
    .trust-indicators {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .cta-button.saas-style {
        padding: 18px 30px;
        font-size: 1rem;
    }
}

/* Modern SaaS Footer */
.modern-footer {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: white;
    padding: 80px 0 0;
    position: relative;
    overflow: hidden;
}

.modern-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.05), rgba(37, 211, 102, 0.05));
    z-index: -1;
}

.footer-content {
    display: flex;
    flex-direction: column;
}

.footer-main {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.footer-logo {
    height: 50px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
    transition: all 0.3s ease;
}

.footer-logo:hover {
    transform: scale(1.05);
}

.footer-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    font-size: 1rem;
    margin: 0;
    max-width: 350px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-link:hover {
    background: var(--text-accent);
    border-color: var(--text-accent);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 107, 53, 0.3);
}

.social-link i {
    font-size: 1.2rem;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-column h4 {
    color: var(--text-accent);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column li {
    margin-bottom: 12px;
}

.footer-column a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.footer-column a:hover {
    color: var(--text-accent);
    padding-left: 5px;
}

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

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
    font-size: 0.9rem;
}

.footer-badges {
    display: flex;
    gap: 20px;
}

.security-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.05);
    padding: 8px 15px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.security-badge i {
    color: #25d366;
    font-size: 0.9rem;
}

.security-badge span {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.85rem;
    font-weight: 600;
}

/* Responsive Footer */
@media (max-width: 1024px) {
    .footer-main {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .modern-footer {
        padding: 60px 0 0;
    }
    
    .footer-main {
        gap: 30px;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .footer-badges {
        justify-content: center;
    }
    
    .social-links {
        justify-content: center;
    }
}

/* Mobile Navigation Button */
.mobile-buy-btn {
    display: flex !important;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    animation: mobilePulse 2s infinite;
}

.mobile-buy-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4) !important;
}

@keyframes mobilePulse {
    0% {
        box-shadow: 0 3px 15px rgba(37, 211, 102, 0.3);
    }
    50% {
        box-shadow: 0 3px 15px rgba(37, 211, 102, 0.5), 0 0 0 5px rgba(37, 211, 102, 0.1);
    }
    100% {
        box-shadow: 0 3px 15px rgba(37, 211, 102, 0.3);
    }
}

/* Mobile Responsive Improvements */
@media (max-width: 768px) {
    /* Navigation */
    .nav-container {
        padding: 0 15px;
        height: 60px;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    
    .nav-logo .logo-img {
        height: 35px;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: rgba(0, 0, 0, 0.95);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 50px;
        transition: left 0.3s ease;
        z-index: 1000;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-link {
        font-size: 1.2rem;
        margin: 15px 0;
        padding: 15px 30px;
        border-radius: 10px;
        background: rgba(255, 255, 255, 0.1);
        width: 80%;
        text-align: center;
    }
    
    .nav-cta {
        margin-top: 20px;
        font-size: 1.1rem;
        padding: 15px 40px;
    }
    
    /* Hero Section */
    .hero {
        padding: 100px 0 60px;
        min-height: auto;
    }
    
    .hero-content {
        gap: 30px;
    }
    
    .hero-main {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .hero-text-section {
        order: 1;
        gap: 25px;
    }
    
    .hero-problem-text {
        font-size: 1.6rem;
        line-height: 1.3;
    }
    
    .hero-carousel {
        order: 2;
    }
    
    .hero-logo-img {
        height: 80px;
    }
    
    .hero-subtitle {
        font-size: 1.3rem;
        line-height: 1.4;
    }
    
    .hero-description {
        font-size: 1rem;
        line-height: 1.6;
    }
    
    .cta-button {
        font-size: 1rem;
        padding: 18px 30px;
    }
    
    .cta-price {
        font-size: 1.1rem;
    }
    
    /* Sections */
    section {
        padding: 60px 0;
    }
    
    .container {
        padding: 0 20px;
    }
    
    .section-header h2 {
        font-size: 2rem;
        line-height: 1.2;
    }
    
    .section-subtitle {
        font-size: 1rem;
        line-height: 1.5;
    }
    
    /* Carousel */
    .carousel-img {
        width: auto;
        height: auto;
        max-width: 100%;
        max-height: 70vh;
        object-fit: contain;
    }
    
    .netflix-carousel {
        width: 100%;
        margin: 0 -20px;
    }
    
    .carousel-wrapper {
        width: 100vw;
        position: relative;
        left: 50%;
        right: 50%;
        margin-left: -50vw;
        margin-right: -50vw;
    }
    
    .carousel-item {
        width: auto;
        height: auto;
        max-height: 70vh;
    }
    
    /* Credentials */
    .credentials-content {
        flex-direction: column;
        gap: 30px;
    }
    
    .credentials-text {
        text-align: center;
    }
    
    .credentials-title {
        font-size: 1.8rem;
        line-height: 1.3;
    }
    
    /* About */
    .about-content {
        flex-direction: column;
        gap: 30px;
    }
    
    .about-title {
        font-size: 2rem;
        text-align: center;
    }
    
    /* Method */
    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .feature {
        padding: 25px 20px;
    }
    
    /* Transformation */
    .comparison-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .before-after-slider {
        height: 650px;
    }
    
    /* Benefits */
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .benefit-card {
        padding: 25px 20px;
    }
    
    /* How it works */
    .netflix-item {
        min-width: 280px;
    }
    
    /* PPL System */
    .workout-table {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        margin: 0 -20px;
        padding: 0 20px;
    }
    
    .workout-section {
        min-width: 300px;
        margin-bottom: 20px;
    }
    
    .workout-header {
        font-size: 1rem;
        padding: 15px;
    }
    
    .exercise-row {
        padding: 12px;
        font-size: 0.9rem;
    }
    
    .exercise-row .sets {
        min-width: 40px;
        font-size: 0.8rem;
    }
    
    .lock-overlay {
        padding: 15px;
    }
    
    .lock-icon {
        font-size: 2rem;
    }
    
    .simple-purchase-btn {
        font-size: 0.8rem;
        padding: 10px 20px;
    }
    
    /* Exercise Groups */
    .exercise-carousel-container {
        overflow: hidden;
    }
    
    /* WhatsApp */
    .whatsapp-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .whatsapp-intro {
        padding: 30px 20px;
    }
    
    .instructor-profile {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .instructor-avatar {
        width: 100px;
        height: 100px;
    }
    
    .whatsapp-chat-simulation {
        max-width: 100%;
    }
    
    .message-content {
        max-width: 85%;
    }
    
    .chat-messages {
        max-height: 400px;
    }
    
    /* FAQ */
    .faq-item {
        padding: 20px;
        margin-bottom: 15px;
    }
    
    .faq-item h3 {
        font-size: 1.1rem;
        line-height: 1.3;
    }
    
    .faq-item p {
        font-size: 0.95rem;
        line-height: 1.5;
    }
}

/* Small Mobile (480px and below) */
@media (max-width: 480px) {
    .nav-container {
        padding: 0 10px;
    }
    
    .hero {
        padding: 80px 0 40px;
    }
    
    .hero-problem-text {
        font-size: 1.4rem;
        line-height: 1.3;
    }
    
    .section-header h2 {
        font-size: 1.7rem;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .pinterest-grid {
        columns: 1;
        column-gap: 0;
    }
    
    .pinterest-item {
        margin-bottom: 15px;
        border-radius: 15px;
    }
    
    .workout-section {
        min-width: 250px;
    }
    
    .exercise-row {
        font-size: 0.8rem;
        padding: 10px;
    }
    
    .chat-messages {
        padding: 15px;
        max-height: 350px;
    }
    
    .message-content {
        max-width: 90%;
        padding: 10px 12px;
        font-size: 0.85rem;
    }
}

/* Sistema de Notificações */
.notification-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 10000;
    pointer-events: none;
}

.notification {
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 12px 16px;
    margin-bottom: 10px;
    min-width: 280px;
    max-width: 320px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
    transform: translateX(100%);
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    position: relative;
    overflow: hidden;
}

.notification.show {
    transform: translateX(0);
    opacity: 1;
}

.notification.hide {
    transform: translateX(100%);
    opacity: 0;
}

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

.notification-logo {
    width: 32px;
    height: 32px;
    border-radius: 6px;
    overflow: hidden;
    flex-shrink: 0;
}

.notification-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.notification-text {
    flex: 1;
    color: white;
}

.notification-title {
    font-size: 12px;
    font-weight: 600;
    margin: 0 0 3px 0;
    color: white;
}

.notification-message {
    font-size: 11px;
    margin: 0 0 3px 0;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.3;
}

.notification-time {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.notification::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #f7931e, #ff6b35);
}

/* Versão Mobile */
@media (max-width: 768px) {
    html, body {
        overflow-x: hidden;
        position: relative;
        width: 100%;
    }
    
    .notification-container {
        position: fixed;
        bottom: 20px;
        left: 10px;
        right: 10px;
        transform: none;
        width: auto;
        max-width: none;
    }

    .notification {
        min-width: auto;
        width: 100%;
        transform: translateX(100%);
        opacity: 0;
        max-width: 100%;
        padding: 10px 12px;
    }

    .notification.show {
        transform: translateX(0);
        opacity: 1;
    }

    .notification.hide {
        transform: translateX(100%);
        opacity: 0;
    }
    
    .notification-content {
        gap: 8px;
    }
    
    .notification-logo {
        width: 28px;
        height: 28px;
    }
}