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

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #2C3E50;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    background-attachment: fixed;
    overflow-x: hidden;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(120, 119, 198, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 119, 198, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(120, 219, 255, 0.2) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    line-height: 1.2;
}

/* Header */
.header {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(30px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

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

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

.logo-icon {
    font-size: 2.5rem;
    background: linear-gradient(135deg, #ff6b9d, #4ecdc4, #45b7d1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: rainbow 3s ease-in-out infinite;
}

@keyframes rainbow {
    0%, 100% { filter: hue-rotate(0deg); }
    50% { filter: hue-rotate(30deg); }
}

.logo h1 {
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
    margin: 0;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.header-badge {
    background: linear-gradient(135deg, #ff6b9d, #4ecdc4);
    color: white;
    padding: 12px 25px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: 0 8px 25px rgba(255, 107, 157, 0.4);
    position: relative;
    overflow: hidden;
    animation: pulse 2s infinite;
}

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

.header-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transition: left 0.6s;
}

.header-badge:hover::before {
    left: 100%;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 120px;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 70%, rgba(255, 107, 157, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 30%, rgba(78, 205, 196, 0.1) 0%, transparent 50%);
    z-index: -1;
}

.hero-background::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 200 200"><defs><radialGradient id="a" cx="0.5" cy="0.5" r="0.5"><stop offset="0%" stop-color="rgba(255,255,255,0.2)"/><stop offset="100%" stop-color="transparent"/></radialGradient></defs><circle cx="100" cy="100" r="80" fill="url(%23a)"/></svg>') no-repeat center;
    background-size: 500px 500px;
    animation: float 8s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    33% { transform: translateY(-20px) rotate(1deg); }
    66% { transform: translateY(10px) rotate(-1deg); }
}

.hero-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.hero-text h1 {
    font-size: 4.5rem;
    font-weight: 800;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, #ff6b9d, #4ecdc4, #45b7d1, #96ceb4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1;
    animation: slideInUp 1.2s ease-out;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.hero-text p {
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    animation: slideInUp 1.2s ease-out 0.2s both;
}

.hero-highlight {
    display: inline-block;
    background: linear-gradient(135deg, #ff6b9d, #4ecdc4);
    color: white;
    padding: 20px 40px;
    border-radius: 60px;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: 0 15px 40px rgba(255, 107, 157, 0.4);
    transform: translateY(0);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    animation: slideInUp 1.2s ease-out 0.4s both;
}

.hero-highlight::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transition: left 0.6s;
}

.hero-highlight:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 25px 60px rgba(255, 107, 157, 0.6);
}

.hero-highlight:hover::before {
    left: 100%;
}

/* Video Section */
.video-section {
    padding: 120px 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(30px);
    position: relative;
}

.video-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(255, 107, 157, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(78, 205, 196, 0.05) 0%, transparent 50%);
    z-index: -1;
}

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

.video-header h2 {
    font-size: 3rem;
    background: linear-gradient(135deg, #ff6b9d, #4ecdc4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.video-header p {
    font-size: 1.3rem;
    color: #6C757D;
    max-width: 700px;
    margin: 0 auto;
    font-weight: 500;
}

.video-container {
    max-width: 900px;
    margin: 0 auto;
}

.video-player {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    background: #000;
    border: 2px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.video-player:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.25);
}

.video-player video {
    width: 100%;
    height: auto;
    display: block;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(0, 0, 0, 0.7), 
        rgba(0, 0, 0, 0.5));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    transition: opacity 0.4s ease;
    backdrop-filter: blur(5px);
}

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

.overlay-content {
    text-align: center;
    color: white;
    padding: 40px 30px;
}

.play-button {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.9);
    border: 3px solid rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.play-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 107, 157, 0.1), rgba(78, 205, 196, 0.1));
    border-radius: 50%;
    transform: scale(0);
    transition: transform 0.3s ease;
}

.play-button:hover {
    background: rgba(255, 255, 255, 1);
    transform: scale(1.1);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.play-button:hover::before {
    transform: scale(1);
}

.play-icon {
    font-size: 2rem;
    color: #333;
    font-weight: bold;
    position: relative;
    z-index: 2;
    margin-left: 3px;
}

.overlay-content h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 600;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.overlay-content p {
    font-size: 1.1rem;
    opacity: 0.9;
    font-weight: 400;
    line-height: 1.5;
}

/* Progress Bar */
.progress-container {
    margin-top: 40px;
    text-align: center;
}

.progress-bar {
    width: 100%;
    height: 12px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 20px;
    box-shadow: inset 0 3px 6px rgba(0, 0, 0, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #ff6b9d, #4ecdc4, #45b7d1);
    width: 0%;
    transition: width 0.4s ease;
    border-radius: 15px;
    position: relative;
    overflow: hidden;
}

.progress-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.5), transparent);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.progress-text {
    font-size: 1.1rem;
    color: #6C757D;
    font-weight: 600;
}

/* Purchase Section */
.purchase-section {
    padding: 120px 0;
    background: linear-gradient(135deg, rgba(255, 107, 157, 0.05) 0%, rgba(78, 205, 196, 0.05) 100%);
    position: relative;
}

.purchase-section::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="25" height="25" patternUnits="userSpaceOnUse"><circle cx="12.5" cy="12.5" r="2" fill="rgba(255,107,157,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
    z-index: -1;
}

.purchase-content {
    max-width: 1000px;
    margin: 0 auto;
}

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

.purchase-header h2 {
    font-size: 3rem;
    background: linear-gradient(135deg, #ff6b9d, #4ecdc4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.purchase-header p {
    font-size: 1.3rem;
    color: #6C757D;
    font-weight: 500;
}

.offer-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(30px);
    border-radius: 40px;
    padding: 70px;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.15);
    border: 3px solid rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
    transform: perspective(1000px) rotateX(2deg);
    transition: transform 0.3s ease;
}

.offer-card:hover {
    transform: perspective(1000px) rotateX(0deg) scale(1.02);
}

.offer-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 107, 157, 0.05), rgba(78, 205, 196, 0.05));
    z-index: -1;
}

.offer-header {
    text-align: center;
    margin-bottom: 50px;
}

.offer-header h3 {
    font-size: 2.5rem;
    background: linear-gradient(135deg, #ff6b9d, #4ecdc4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 30px;
    font-weight: 700;
}

.offer-benefits {
    margin-bottom: 50px;
}

.offer-benefits h4 {
    font-size: 1.8rem;
    color: #2C3E50;
    margin-bottom: 30px;
    text-align: center;
    font-weight: 600;
}

.offer-benefits ul {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 20px;
}

.offer-benefits li {
    padding: 25px 30px;
    background: linear-gradient(135deg, rgba(255, 107, 157, 0.08), rgba(78, 205, 196, 0.08));
    border-radius: 25px;
    border-left: 5px solid #ff6b9d;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.offer-benefits li::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 107, 157, 0.15), rgba(78, 205, 196, 0.15));
    transform: translateX(-100%);
    transition: transform 0.4s ease;
    z-index: -1;
}

.offer-benefits li:hover {
    transform: translateX(10px) scale(1.02);
    box-shadow: 0 10px 30px rgba(255, 107, 157, 0.3);
}

.offer-benefits li:hover::before {
    transform: translateX(0);
}

.offer-cta {
    text-align: center;
}

.purchase-button {
    background: linear-gradient(135deg, #ff6b9d, #4ecdc4);
    color: white;
    border: none;
    padding: 30px 60px;
    font-size: 1.4rem;
    font-weight: 800;
    border-radius: 70px;
    cursor: pointer;
    transition: all 0.4s ease;
    box-shadow: 0 20px 50px rgba(255, 107, 157, 0.4);
    margin-bottom: 30px;
    min-width: 350px;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 2px;
    animation: pulse 2s infinite;
}

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

.purchase-button:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 30px 70px rgba(255, 107, 157, 0.6);
    animation: none;
}

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

.guarantee, .limited-offer {
    margin-bottom: 20px;
}

.guarantee p, .limited-offer p {
    font-size: 1rem;
    color: #6C757D;
    font-weight: 600;
}

/* Benefits Section */
.benefits-section {
    padding: 120px 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(30px);
    position: relative;
}

.benefits-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 70%, rgba(255, 107, 157, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 70% 30%, rgba(78, 205, 196, 0.05) 0%, transparent 50%);
    z-index: -1;
}

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

.benefit-card {
    text-align: center;
    padding: 60px 40px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border-radius: 30px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    border: 3px solid rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
    transform: perspective(1000px) rotateY(5deg);
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 107, 157, 0.08), rgba(78, 205, 196, 0.08));
    transform: scale(0);
    transition: transform 0.4s ease;
    z-index: -1;
}

.benefit-card:hover {
    transform: perspective(1000px) rotateY(0deg) translateY(-15px) scale(1.05);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.2);
}

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

.benefit-icon {
    font-size: 4rem;
    margin-bottom: 25px;
    display: block;
    animation: float 3s ease-in-out infinite;
}

.benefit-card h3 {
    font-size: 1.5rem;
    color: #2C3E50;
    margin-bottom: 20px;
    font-weight: 700;
}

.benefit-card p {
    color: #6C757D;
    font-size: 1rem;
    line-height: 1.7;
    font-weight: 500;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #2C3E50, #34495E);
    color: white;
    padding: 60px 0;
    text-align: center;
    margin-top: 0;
    position: relative;
    overflow: hidden;
}

.footer-content {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0;
    position: relative;
    z-index: 2;
}

/* Informações da Especialista */
.specialist-info {
    background: rgba(255, 255, 255, 0.08);
    padding: 40px 35px;
    border-radius: 20px 20px 0 0;
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(15px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.specialist-name {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #4ECDC4;
    margin-bottom: 20px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.4);
    letter-spacing: 1px;
}

.specialist-description {
    font-size: 1.15rem;
    line-height: 1.7;
    opacity: 0.95;
    margin: 0;
    text-align: center;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.95);
}

/* Informações da Empresa */
.footer-info {
    background: linear-gradient(135deg, #FF6B9D, #FF4081);
    padding: 30px 35px;
    border-radius: 0 0 20px 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    box-shadow: 0 8px 32px rgba(255, 107, 157, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.company-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.company-info p {
    margin: 0;
    font-size: 1rem;
    font-weight: 500;
    color: white;
}

.copyright {
    font-weight: 700;
    font-size: 1.1rem;
    color: white;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.cnpj {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
}

.email {
    color: #FFE066;
    font-weight: 700;
    font-size: 1.05rem;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

/* Links do Footer */
.footer-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 5px;
}

.footer-link {
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.footer-link:hover {
    color: #FFE066;
    text-decoration: none;
    transform: translateY(-1px);
}

.separator {
    color: rgba(255, 255, 255, 0.8);
    font-weight: 400;
    font-size: 1.2rem;
}

/* Páginas Legais */
.legal-page {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    min-height: 70vh;
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 50px;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.legal-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #2C3E50;
    text-align: center;
    margin-bottom: 40px;
    border-bottom: 3px solid #FF6B9D;
    padding-bottom: 20px;
}

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

.legal-section h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.4rem;
    color: #34495E;
    margin-bottom: 15px;
    font-weight: 600;
}

.legal-section p {
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 15px;
}

.legal-section ul {
    list-style: none;
    padding-left: 0;
}

.legal-section ul li {
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 8px;
    padding-left: 25px;
    position: relative;
}

.legal-section ul li::before {
    content: "•";
    color: #FF6B9D;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.back-link {
    text-align: center;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid #eee;
}

.btn-back {
    display: inline-block;
    background: linear-gradient(135deg, #FF6B9D, #4ECDC4);
    color: white;
    text-decoration: none;
    padding: 15px 30px;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 157, 0.3);
}

.btn-back:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 157, 0.4);
    text-decoration: none;
    color: white;
}

/* Responsive para páginas legais */
@media (max-width: 768px) {
    .legal-content {
        padding: 30px 20px;
        margin: 0 15px;
    }
    
    .legal-content h1 {
        font-size: 2rem;
    }
    
    .legal-section h2 {
        font-size: 1.2rem;
    }
}

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

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

.hero-content,
.video-header,
.purchase-header,
.benefit-card {
    animation: fadeInUp 1s ease-out;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-text h1 {
        font-size: 3rem;
    }
    
    .hero-text p {
        font-size: 1.1rem;
    }
    
    .video-header h2,
    .purchase-header h2 {
        font-size: 2.5rem;
    }
    
    .offer-card {
        padding: 40px 25px;
    }
    
    .offer-benefits ul {
        grid-template-columns: 1fr;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .purchase-button {
        min-width: 280px;
        padding: 25px 40px;
        font-size: 1.2rem;
    }
    
    .header-content {
        flex-direction: column;
        gap: 20px;
    }
    
    .logo h1 {
        font-size: 1.5rem;
    }

    /* Footer responsivo */
    .footer {
        padding: 40px 0;
    }
    
    .footer-content {
        margin: 0 15px;
        max-width: calc(100% - 30px);
    }
    
    .specialist-info {
        padding: 30px 20px;
        border-radius: 15px 15px 0 0;
    }
    
    .specialist-name {
        font-size: 2rem;
        letter-spacing: 0.5px;
    }
    
    .specialist-description {
        font-size: 1rem;
        line-height: 1.6;
    }
    
    .footer-info {
        padding: 25px 20px;
        border-radius: 0 0 15px 15px;
        gap: 15px;
    }
    
    .company-info {
        gap: 10px;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 12px;
        margin-top: 10px;
    }
    
    .separator {
        display: none;
    }
    
    .copyright {
        font-size: 1rem;
    }
    
    .email {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 2.5rem;
    }
    
    .video-header h2,
    .purchase-header h2 {
        font-size: 2rem;
    }
    
    .offer-card {
        padding: 30px 20px;
    }
    
    .purchase-button {
        min-width: 250px;
        padding: 20px 30px;
        font-size: 1rem;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #ff6b9d, #4ecdc4);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #e55a8a, #3db8b0);
}
