:root {
    --primary: #1a3a5f;
    --secondary: #d4af37;
    --accent: #c62828;
    --light: #f8f9fa;
    --dark: #212529;
    --gray: #6c757d;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: var(--dark);
    background-color: var(--light);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    margin-bottom: 1rem;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: var(--secondary);
    color: var(--primary);
    border: none;
    border-radius: 4px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
}

.btn:hover {
    background-color: #b8941f;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.btn-primary {
    background-color: var(--primary);
    color: white;
}

.btn-primary:hover {
    background-color: #0f2a46;
}

.btn-large {
    padding: 15px 40px;
    font-size: 1.1rem;
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
}

.btn-outline:hover {
    background-color: var(--primary);
    color: white;
}

section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 2.5rem;
    color: var(--primary);
    position: relative;
    display: inline-block;
}

.section-title h2:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--secondary);
}

/* Header */
header {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.header-container {
    padding: 20px 0;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary);
}

.logo span {
    color: var(--secondary);
}

nav ul {
    display: flex;
    list-style: none;
    align-items: center;
}

nav ul li {
    margin-left: 30px;
}

nav ul li a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 500;
    transition: var(--transition);
}

nav ul li a:hover {
    color: var(--secondary);
}

.mobile-menu-btn {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--primary);
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(26, 58, 95, 0.9), rgba(26, 58, 95, 0.8)), url('https://images.unsplash.com/photo-1589829545856-d10d557cf95f?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 180px 0 100px;
    text-align: center;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 30px;
}

.hero-badge {
    display: inline-block;
    background-color: var(--secondary);
    color: var(--primary);
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: 600;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

/* Features Section */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature-card {
    background-color: white;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: var(--transition);
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.feature-icon { font-size: 2.5rem; color: var(--secondary); margin-bottom: 20px; }

.feature-card h3 { font-size: 1.5rem; margin-bottom: 15px; }

/* Credits Section */
.credits-section { background-color: var(--primary); color: white; }

.credits-container { display: flex; align-items: center; gap: 50px; }
.credits-content { flex: 1; }
.credits-visual { flex: 1; text-align: center; }
.credits-card { background: white; color: var(--dark); border-radius: 10px; padding: 30px; box-shadow: 0 10px 30px rgba(0,0,0,0.2); max-width: 400px; margin: 0 auto; }
.credits-value { font-size: 3.5rem; font-weight: 700; color: var(--secondary); margin: 20px 0; }
.credits-label { font-size: 1.2rem; margin-bottom: 20px; }

.comparison-table { width: 100%; border-collapse: collapse; margin-top: 30px; }
.comparison-table th, .comparison-table td { padding: 15px; text-align: left; border-bottom: 1px solid #eee; }
.comparison-table th { background-color: #f8f9fa; font-weight: 600; }
.comparison-table tr:last-child td { border-bottom: none; }
.check { color: #28a745; }
.cross { color: #dc3545; }

/* Benefits */
.benefits { background-color: #f8f9fa; }
.benefits-container { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; }
.benefit-item { text-align: center; padding: 20px; }
.benefit-icon { font-size: 2.5rem; color: var(--secondary); margin-bottom: 20px; }
.benefit-item h3 { font-size: 1.3rem; margin-bottom: 15px; }

/* Packages */
.packages-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 30px; }
.package-card { background-color: white; border-radius: 8px; overflow: hidden; box-shadow: 0 5px 15px rgba(0,0,0,0.05); transition: var(--transition); position: relative; }
.package-card.featured { transform: scale(1.05); border: 2px solid var(--secondary); }
.package-card.featured:before { content: 'MAIS POPULAR'; position: absolute; top: 20px; right: -30px; background-color: var(--secondary); color: var(--primary); padding: 5px 30px; font-size: 0.8rem; font-weight: 600; transform: rotate(45deg); }
.package-header { background-color: var(--primary); color: white; padding: 30px; text-align: center; }
.package-header h3 { font-size: 1.5rem; margin-bottom: 10px; }
.credits { font-size: 3rem; font-weight: 700; margin: 15px 0; color: var(--secondary); }
.price { font-size: 1.8rem; font-weight: 700; margin: 15px 0; }
.price span { font-size: 1rem; font-weight: normal; }
.package-body { padding: 30px; }
.package-features { list-style: none; margin-bottom: 30px; }
.package-features li { padding: 10px 0; border-bottom: 1px solid #eee; }
.package-features li:last-child { border-bottom: none; }
.package-features li i { color: var(--secondary); margin-right: 10px; }

/* Testimonials */
.testimonials-slider { max-width: 800px; margin: 0 auto; position: relative; }
.testimonial { background-color: white; padding: 30px; border-radius: 8px; box-shadow: 0 5px 15px rgba(0,0,0,0.05); text-align: center; }
.testimonial-text { font-style: italic; margin-bottom: 20px; }
.testimonial-author { display: flex; align-items: center; justify-content: center; }
.author-avatar { width: 60px; height: 60px; border-radius: 50%; overflow: hidden; margin-right: 15px; }
.author-avatar img { width: 100%; height: 100%; object-fit: cover; }
.author-info h4 { margin-bottom: 5px; }
.author-info p { color: var(--gray); font-size: 0.9rem; }

/* FAQ */
.faq-container { max-width: 800px; margin: 0 auto; }
.faq-item { margin-bottom: 15px; border-radius: 8px; overflow: hidden; box-shadow: 0 3px 10px rgba(0,0,0,0.05); }
.faq-question { background-color: white; padding: 20px; cursor: pointer; display: flex; justify-content: space-between; align-items: center; font-weight: 600; }
.faq-question i { transition: var(--transition); }
.faq-answer { background-color: #f8f9fa; padding: 0 20px; max-height: 0; overflow: hidden; transition: var(--transition); }
.faq-item.active .faq-question i { transform: rotate(180deg); }
.faq-item.active .faq-answer { padding: 20px; max-height: 500px; }

/* CTA */
.cta { background: linear-gradient(rgba(26, 58, 95, 0.9), rgba(26, 58, 95, 0.9)), url('https://images.unsplash.com/photo-1589829545856-d10d557cf95f?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80'); background-size: cover; background-position: center; color: white; text-align: center; padding: 100px 0; }

/* Footer */
footer { background-color: var(--dark); color: white; padding: 80px 0 30px; }
.footer-container { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 40px; margin-bottom: 50px; }
.footer-column h3 { font-size: 1.3rem; margin-bottom: 20px; position: relative; padding-bottom: 10px; }
.footer-column h3:after { content: ''; position: absolute; bottom: 0; left: 0; width: 40px; height: 2px; background-color: var(--secondary); }
.footer-column ul { list-style: none; }
.footer-column ul li { margin-bottom: 10px; }
.footer-column ul li a { color: #adb5bd; text-decoration: none; transition: var(--transition); }
.footer-column ul li a:hover { color: var(--secondary); }
.social-links { display: flex; margin-top: 20px; }
.social-links a { display: flex; align-items: center; justify-content: center; width: 40px; height: 40px; background-color: rgba(255,255,255,0.1); border-radius: 50%; margin-right: 10px; color: white; transition: var(--transition); }
.social-links a:hover { background-color: var(--secondary); color: var(--primary); }
.copyright { text-align: center; padding-top: 30px; border-top: 1px solid rgba(255,255,255,0.1); color: #adb5bd; font-size: 0.9rem; }

/* Responsive */
@media (max-width: 992px) {
    .hero h1 { font-size: 2.8rem; }
    .section-title h2 { font-size: 2rem; }
    .package-card.featured { transform: scale(1); }
    .credits-container { flex-direction: column; }
}

@media (max-width: 768px) {
    nav { position: fixed; top: 80px; left: 0; width: 100%; background-color: white; box-shadow: 0 5px 10px rgba(0,0,0,0.1); padding: 20px; transform: translateY(-100%); opacity: 0; visibility: hidden; transition: var(--transition); }
    nav.active { transform: translateY(0); opacity: 1; visibility: visible; }
    nav ul { flex-direction: column; }
    nav ul li { margin: 10px 0; }
    .hero { padding: 150px 0 80px; }
    .hero h1 { font-size: 2.2rem; }
    section { padding: 60px 0; }
}

@media (max-width: 576px) {
    .hero h1 { font-size: 1.8rem; }
    .btn-large { padding: 12px 30px; font-size: 1rem; }
}
