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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(to bottom, #f0f8ff, #ffffff);
    overflow-x: hidden;
}

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

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url('imagens/topo.jpg');
    background-size: cover;
    background-position: center right;
    background-repeat: no-repeat;
    background-attachment: scroll;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(30, 64, 175, 0.2), rgba(59, 130, 246, 0.2));
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: white;
    max-width: 800px;
    padding: 20px;
}

.logo {
    margin-bottom: 2rem;
}

.logo-image {
    width: 150px;
    height: 157px;
    object-fit: cover;
    margin-bottom: 1.5rem;
}

.main-title {
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 2rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.highlight {
    color: #93c5fd;
}

.hero-card {
    background: rgba(59, 130, 246, 0.7);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.hero-subtitle {
    font-size: clamp(1.25rem, 4vw, 1.875rem);
    font-weight: 600;
    margin-bottom: 1rem;
}

.hero-description {
    font-size: clamp(1rem, 3vw, 1.25rem);
    opacity: 0.9;
}

.cta-button, .cta-button-2 {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    font-size: 1.125rem;
    font-weight: 600;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.cta-button.primary, .cta-button-primary-2 {
    background: #3b82f6;
    color: white;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.cta-button.primary:hover, .cta-button-primary-2:hover {
    background: #2563eb;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.4);
}

.cta-button.secondary {
    background: white;
    color: #3b82f6;
    width: 100%;
    justify-content: center;
    font-size: 1.25rem;
    padding: 1.25rem 2rem;
}

.cta-button.secondary:hover {
    background: #f8fafc;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.arrow-icon {
    width: 20px;
    height: 20px;
}

/* Sections */
.section {
    position: relative;
    padding: 5rem 0;
}

.section:nth-child(even) {
    background: #f8fafc;
}

.section-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    text-align: center;
    margin-bottom: 2rem;
    color: #1e293b;
}

.section-text {
    font-size: 1.25rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #64748b;
    max-width: 850px;
    margin-left: auto;
    margin-right: auto;
}

.highlight-box {
    background: linear-gradient(135deg, #dbeafe, #bfdbfe);
    border-radius: 16px;
    padding: 3rem;
    text-align: center;
    font-size: 1.125rem;
    color: #1e40af;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.1);
}

/* Benefits Section with Background */
.benefits-section {
    position: relative;
    background-image: url('imagens/fundo.jpg');
    background-size: cover;
    background-position: center right;
    background-attachment: scroll;
    color: white;
}

.benefits-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(30, 64, 175, 0.8), rgba(59, 130, 246, 0.6));
}

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

.benefits-section .section-title {
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

/* Grid Layouts */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.program-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

/* Cards */
.card {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.check-icon-small {
    width: 24px;
    height: 24px;
    background: #3b82f6;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: bold;
    flex-shrink: 0;
}

.benefit-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    color: #1e293b;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.benefit-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.benefit-icon {
    width: 48px;
    height: 48px;
    background: #3b82f6;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
    margin: 0 auto 1rem;
}

.feature-card {
    text-align: center;
    padding: 1.5rem;
    transition: transform 0.3s ease;
}

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

.feature-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #1e293b;
}

.week-card {
    background: linear-gradient(135deg, #dbeafe, #bfdbfe);
    border-radius: 12px;
    padding: 2rem;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.1);
	
	& span {
		color: #000;
    		font-weight: 500;
	}
}

.week-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.2);
}

.week-number {
    position: absolute;
    top: -10px;
    left: 20px;
    width: 40px;
    height: 40px;
    background: #3b82f6;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.125rem;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.week-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #1e293b;
    margin-top: 1rem;
}

.week-card h4 {
    color: #3b82f6;
    font-weight: 500;
    margin-bottom: 1rem;
}

/* Levels Section */
.levels-section {
    background: linear-gradient(135deg, #dbeafe, #ffffff);
}

.level-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.level-tab {
    padding: 0.75rem 1.5rem;
    border: 2px solid #3b82f6;
    background: white;
    color: #3b82f6;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(59, 130, 246, 0.1);
}

.level-tab.active,
.level-tab:hover {
    background: #3b82f6;
    color: white;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
    transform: translateY(-1px);
}

.level-content {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.level-info {
    display: none;
}

.level-info.active {
    display: block;
}

.level-info h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1e293b;
}

.level-info > p {
    font-size: 1.125rem;
    color: #64748b;
    margin-bottom: 2rem;
}

.level-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.level-column h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1e293b;
}

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

.level-column li {
    margin-bottom: 0.5rem;
    color: #64748b;
}

/* Pricing Section */
.pricing-section {
    background: white;
}

.pricing-card {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    border-radius: 16px;
    padding: 3rem;
    color: white;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    box-shadow: 0 20px 40px rgba(59, 130, 246, 0.3);
}

.price-info {
    margin-bottom: 2rem;
}

.old-price {
    font-size: 1.125rem;
    text-decoration: line-through;
    opacity: 0.8;
    margin-bottom: 0.5rem;
}

.new-price {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.bonus-section,
.guarantee-section {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.bonus-section h4,
.guarantee-section h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.urgency-section {
    background: rgba(239, 68, 68, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 1rem;
    margin-bottom: 2rem;
    font-weight: 600;
}

/* Contact Section */
.contact-section {
    background: linear-gradient(135deg, #dbeafe, #bfdbfe);
}

.contact-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    margin: 0 auto;
}

.contact-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.phone-icon {
    font-size: 2rem;
}

.phone-number {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1e293b;
}

.instructor-name {
    font-size: 1.125rem;
    color: #64748b;
    margin-bottom: 1.5rem;
}

.brand-name {
    color: #3b82f6;
    font-weight: 600;
    font-size: 1.125rem;
}

/* Responsive Design */
@media (max-width: 768px) {

    .hero {
    	background-image: url('imagens/topo-2.jpg');
    }

    .hero-content {
        padding: 1rem;
    }
    
    .hero-card {
        padding: 1.5rem;
    }
    
    .section {
        padding: 3rem 0;
    }
    
    .grid,
    .benefits-grid,
    .features-grid,
    .program-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .level-tabs {
        flex-direction: column;
        align-items: center;
    }
    
    .level-tab {
        width: 200px;
        text-align: center;
    }
    
    .level-details {
        grid-template-columns: 1fr;
    }
    
    .pricing-card {
        padding: 2rem;
        margin: 0 1rem;
    }
    
    .contact-info {
        flex-direction: column;
        gap: 0.5rem;

	& img {
	    max-width: 325px;
	    height: auto;
	}
    }
    
    .phone-number {
        font-size: 1.25rem;
    }
    
    .logo-image {
        width: 100px;
        height: 100px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .main-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.125rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .new-price {
        font-size: 2rem;
    }
    
    .logo-image {
        width: 80px;
        height: 80px;
    }
}

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

.hero-content > * {
    animation: fadeInUp 0.8s ease-out;
}

.hero-content > *:nth-child(2) {
    animation-delay: 0.2s;
}

.hero-content > *:nth-child(3) {
    animation-delay: 0.4s;
}

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


/* Promise Section */
.promise-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 80px 0;
}

.promise-section .section-title {
    color: white;
    margin-bottom: 30px;
}

.promise-section .section-text {
    font-size: 1.1em;
    margin-bottom: 20px;
    opacity: 0.95;
}

/* Method Details */
.method-details {
    margin-top: 50px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
}

.method-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.method-card h3 {
    color: #4f46e5;
    margin-bottom: 15px;
    font-size: 1.3em;
}

.method-card p {
    line-height: 1.7;
    color: #666;
}

/* Week Cards Enhanced */
.week-card p {
    margin-bottom: 10px;
}

.week-card p:last-child {
    margin-bottom: 0;
}

.week-card strong {
    color: #4f46e5;
}

/* Level Details Enhanced */
.level-column p {
    line-height: 1.7;
    margin-bottom: 15px;
}

.level-column:last-child p {
    margin-bottom: 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .method-details {
        grid-template-columns: 1fr;
    }
    
    .method-card {
        padding: 20px;
    }
    
    .level-column p {
        font-size: 0.95em;
    }

    .logo-image {
    	width: 180px;
    	height: 180px;
    }

    .highlight {
	color: #FFF;
    }
}

