/* Reset e Variáveis */
:root {
    --primary-color: #4a90e2;
    --secondary-color: #2c3e50;
    --accent-color: #f39c12;
    --text-color: #333;
    --bg-light: #f4f7f6;
    --white: #ffffff;
    --transition: all 0.3s ease;
}

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--white);
    scroll-behavior: smooth;
}

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

/* Header */
.header-lntemplate {
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

nav.container-lntemplate {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo-lntemplate {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--secondary-color);
}

.logo-lntemplate span {
    color: var(--primary-color);
}

.nav-links-lntemplate {
    list-style: none;
}

.nav-links-lntemplate li a {
    text-decoration: none;
    color: var(--secondary-color);
    margin: 0 15px;
    font-weight: 500;
    transition: var(--transition);
}

.nav-links-lntemplate li a:hover {
    color: var(--primary-color);
}

.menu-toggle-lntemplate {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Botões */
.btn-lntemplate {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: var(--transition);
    cursor: pointer;
    border: none;
}

.btn-primary-lntemplate {
    background: var(--primary-color);
    color: var(--white);
}

.btn-primary-lntemplate:hover {
    background: #357abd;
}

.btn-secondary-lntemplate {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    margin-left: 10px;
}

.btn-secondary-lntemplate:hover {
    background: var(--primary-color);
    color: var(--white);
}

.btn-buy-lntemplate {
    background: var(--accent-color);
    color: var(--white);
    width: 100%;
}

/* Hero Section */
.hero-lntemplate {
    padding: 150px 0 100px;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.hero-content-lntemplate {
    display: flex;
    align-items: center;
    gap: 50px;
}

.hero-text-lntemplate h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-text-lntemplate h1 span {
    color: var(--primary-color);
}

.hero-text-lntemplate p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.hero-image-lntemplate img {
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

/* Seções Gerais */
section {
    padding: 80px 0;
}

.section-title-lntemplate {
    text-align: center;
    margin-bottom: 50px;
}

.section-title-lntemplate h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

/* Benefícios */
.beneficios-grid-lntemplate {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.beneficio-card-lntemplate {
    text-align: center;
    padding: 40px;
    background: var(--bg-light);
    border-radius: 10px;
    transition: var(--transition);
}

.beneficio-card-lntemplate:hover {
    transform: translateY(-10px);
}

.beneficio-card-lntemplate i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

/* Templates Grid */
.templates-grid-lntemplate {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.template-card-lntemplate {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: var(--transition);
}

.template-card-lntemplate:hover {
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.template-img-lntemplate img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.template-info-lntemplate {
    padding: 20px;
}

.template-info-lntemplate h3 {
    margin-bottom: 10px;
}

.price-lntemplate {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 20px;
}

/* Depoimentos */
.depoimentos-lntemplate {
    background: var(--secondary-color);
    color: var(--white);
}

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

.depoimento-card-lntemplate {
    background: rgba(255,255,255,0.1);
    padding: 30px;
    border-radius: 10px;
}

.cliente-lntemplate {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
}

.cliente-lntemplate span {
    font-size: 0.9rem;
    opacity: 0.7;
}

/* FAQ */
.faq-list-lntemplate {
    max-width: 800px;
    margin: 0 auto;
    padding-bottom: 25px;
}

.faq-item-lntemplate {
    border-bottom: 1px solid #ddd;
    padding: 20px 0;
}

.faq-question-lntemplate {
    font-weight: bold;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-answer-lntemplate {
    padding-top: 10px;
    display: none;
}

.faq-item-lntemplate.active .faq-answer-lntemplate {
    display: block;
}

.faq-item-lntemplate.active i {
    transform: rotate(180deg);
}

/* Footer */
.footer-lntemplate {
    background: #1a252f;
    color: var(--white);
    padding: 50px 0;
    text-align: center;
}

.footer-logo-lntemplate {
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 20px;
}

.social-links-lntemplate {
    margin-bottom: 20px;
}

.social-links-lntemplate a {
    color: var(--white);
    font-size: 1.5rem;
    margin: 0 10px;
    transition: var(--transition);
}

.social-links-lntemplate a:hover {
    color: var(--primary-color);
}

/* Responsividade */
@media (max-width: 768px) {
    .nav-links-lntemplate {
        display: none;
    }
    
    .menu-toggle-lntemplate {
        display: block;
    }
    
    .hero-content-lntemplate {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-text-lntemplate h1 {
        font-size: 2.2rem;
    }
    
    .hero-btns-lntemplate {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }
    
    .btn-secondary-lntemplate {
        margin-left: 0;
    }
    
    .btn-primary-lntemplate {
        padding: 15px;
    }
}
