/* Reset & Base */
body, html {
    margin: 0;
    padding: 0;
    font-family: 'Outfit', sans-serif;
    color: #333;
    background-color: #f8fafc;
    scroll-behavior: smooth;
}

* {
    box-sizing: border-box;
}

/* Typography */
h1, h2, h3 {
    margin: 0;
    font-weight: 800;
}

p {
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Layout Utilities */
.lp-container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.lp-header {
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.lp-header .lp-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100px;
}

.lp-logo img {
    height: 80px;
    width: auto;
    object-fit: contain;
}

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

.lp-nav a:not(.lp-btn-login) {
    text-decoration: none;
    color: #475569;
    font-weight: 600;
    font-size: 1rem;
    transition: color 0.3s ease;
    padding-bottom: 5px;
    border-bottom: 2px solid transparent;
}

.lp-nav a:not(.lp-btn-login):hover, .lp-nav a.active:not(.lp-btn-login) {
    color: #3b82f6;
}

.lp-nav a.active:not(.lp-btn-login) {
    border-bottom: 2px solid #3b82f6;
}

/* Buttons */
.lp-btn {
    display: inline-block;
    padding: 10px 24px;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
}

.lp-btn-login {
    background-color: rgba(59, 130, 246, 0.1);
    border: 1px solid transparent;
    color: #3b82f6 !important;
    border-radius: 50px;
    padding: 8px 24px;
    font-size: 0.95rem;
}

.lp-btn-login:hover {
    background-color: #3b82f6;
    color: #ffffff !important;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
    transform: translateY(-2px);
}

.lp-btn-primary {
    background-color: #2563eb;
    color: #fff !important;
    border: none;
    padding: 15px 32px;
    font-size: 1.1rem;
    box-shadow: 0 4px 6px rgba(37, 99, 235, 0.2);
}

.lp-btn-primary:hover {
    background-color: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(37, 99, 235, 0.3);
}

/* Hero Section */
.lp-hero {
    padding: 60px 0;
    min-height: calc(100vh - 100px - 85px);
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    text-align: center;
}

.lp-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.lp-hero-logo {
    max-width: 100%;
    height: auto;
    max-height: 400px; /* Adjust as needed */
    margin-bottom: 40px;
    object-fit: contain;
    animation: fadeIn 1s ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Sections */
.lp-section-title {
    font-size: 2.5rem;
    color: #1e293b;
    margin-bottom: 40px;
    text-align: center;
}

.lp-section-desc {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px auto;
    font-size: 1.1rem;
    color: #64748b;
}

.lp-section-desc-formatted {
    max-width: 900px;
    margin: 0 auto 50px auto;
    font-size: 1.1rem;
    color: #475569;
    line-height: 1.8;
}

.lp-recursos {
    padding: 80px 0;
    background-color: #ffffff;
}

.lp-recursos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.lp-recurso-card {
    background: #f8fafc;
    border-radius: 12px;
    padding: 30px 20px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #e2e8f0;
}

.lp-recurso-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.lp-recurso-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.lp-recurso-card h3 {
    color: #1e293b;
    margin-bottom: 15px;
    font-size: 1.25rem;
}

.lp-recurso-card p {
    color: #475569;
    font-size: 0.95rem;
}

.lp-planos {
    padding: 80px 0;
    background-color: #f1f5f9;
}

.lp-planos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.lp-plano-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 40px 30px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #e2e8f0;
    display: flex;
    flex-direction: column;
}

.lp-plano-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.08);
    border-color: #3b82f6;
}

.lp-plano-card h3 {
    color: #1e293b;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.lp-plano-preco {
    display: flex;
    justify-content: center;
    align-items: baseline;
    margin-bottom: 15px;
    color: #0f172a;
}

.lp-plano-preco .currency {
    font-size: 1.2rem;
    font-weight: 600;
    margin-right: 5px;
}

.lp-plano-preco .value {
    font-size: 3rem;
    font-weight: 800;
    letter-spacing: -1px;
}

.lp-plano-preco .period {
    font-size: 1rem;
    color: #64748b;
    margin-left: 5px;
}

.lp-plano-desc {
    color: #64748b;
    font-size: 0.95rem;
    margin-bottom: 25px;
    min-height: 45px;
}

.lp-plano-features {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
    text-align: left;
    flex-grow: 1;
}

.lp-plano-features li {
    padding: 10px 0;
    border-bottom: 1px solid #f1f5f9;
    color: #475569;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
}

.lp-plano-features li:last-child {
    border-bottom: none;
}

.lp-plano-features li i, .lp-plano-features li span {
    margin-right: 10px;
    color: #10b981;
}

.lp-btn-assinatura {
    display: inline-block;
    padding: 12px 25px;
    background-color: #3b82f6;
    color: #fff;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: background-color 0.3s;
    margin-top: auto;
}

.lp-btn-assinatura:hover {
    background-color: #2563eb;
    color: #fff;
}

.lp-sobre {
    padding: 80px 0;
    background-color: #f8fafc;
}

.lp-sobre-text {
    text-align: left;
    max-width: 900px;
    margin: 0 auto;
    font-size: 1.1rem;
    color: #475569;
    line-height: 1.8;
}

.lp-contato {
    padding: 80px 0;
    background-color: #ffffff;
}

.lp-contato-cards {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.lp-card {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    text-align: center;
    min-width: 250px;
    border-top: 4px solid #2563eb;
}

.lp-card h3 {
    margin-bottom: 10px;
    color: #1e293b;
}

.lp-card p {
    color: #64748b;
    font-size: 1.1rem;
}

/* Footer */
.lp-footer {
    background-color: #1e293b;
    color: #94a3b8;
    text-align: center;
    padding: 30px 0;
}

/* Responsive */
@media (max-width: 768px) {
    .lp-hero-title {
        font-size: 2.5rem;
    }
    
    .lp-nav {
        display: none; /* simple mobile nav */
    }
}
