/* Reset e Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    background-color: #9AA7BE;
    color: #0F3353;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Tipografia */
h1, h2, h3, h4 {
    font-weight: 600;
    margin-bottom: 1rem;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }

p {
    margin-bottom: 1rem;
    opacity: 0.8;
}

.highlight {
    background: linear-gradient(135deg, #6B46C1, #EC4899);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Botões */
.btn-primary, .btn-secondary {
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-primary {
    background: linear-gradient(135deg, #6B46C1, #EC4899);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(107, 70, 193, 0.3);
}

.btn-secondary {
    background: rgba(15, 51, 83, 0.1);
    color: #0F3353;
    border: 2px solid rgba(15, 51, 83, 0.2);
}

.btn-secondary:hover {
    background: rgba(15, 51, 83, 0.2);
}

.btn-primary.large, .btn-secondary.large {
    padding: 16px 32px;
    font-size: 1.1rem;
}

.full-width {
    width: 100%;
}

/* Header */
.header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(15, 51, 83, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* padding: 1rem 20px; */
}

.nav-brand {
    display: flex;
    flex-direction: row; /* empilha logo + texto */
    align-items: center;     /* centraliza horizontalmente */
    justify-content: center;
    text-align: center;
    gap: 1.5rem;
    flex-shrink: 0;
}

.logo {
    width: 80px;
    height: auto;
}

.logo img {
    width: 100%;
    height: auto;
}

.logo-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    /* line-height: 1.1; */
}

.brand-name {
    /* font-size: 1.4rem; */
    /* font-weight: bold; */
    color: black;
    justify-content: flex-start;
}

.logo-text{
    margin-left: -2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    line-height: 1.2;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    color: #0F3353;
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.nav-link:hover {
    opacity: 1;
}

.mobile-menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    padding: 80px 0;
    background: linear-gradient(135deg, #9AA7BE 0%, #B8C5D1 100%);
    text-align: center;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto 60px;
}

.hero-badge {
    display: inline-block;
    background: rgba(107, 70, 193, 0.1);
    color: #6B46C1;
    padding: 8px 16px;
    border-radius: 24px;
    font-size: 0.9rem;
    margin-bottom: 24px;
    border: 1px solid rgba(107, 70, 193, 0.2);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 24px;
    line-height: 1.2;
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-preview {
    max-width: 600px;
    margin: 0 auto;
}

.dashboard-mockup {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(15, 51, 83, 0.1);
    overflow: hidden;
}

.mockup-header {
    background: #F8F9FA;
    padding: 16px;
    border-bottom: 1px solid rgba(15, 51, 83, 0.1);
}

.mockup-dots {
    display: flex;
    gap: 8px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.dot.red { background: #FF5F57; }
.dot.yellow { background: #FFBD2E; }
.dot.green { background: #28CA42; }

.mockup-content {
    padding: 60px 20px;
}

.mockup-dashboard {
    text-align: center;
}

.dashboard-icon {
    font-size: 3rem;
    margin-bottom: 16px;
}

/* Features Section */
.features {
    padding: 80px 0;
    background: rgba(255, 255, 255, 0.5);
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.section-header p {
    font-size: 1.1rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 24px;
}

.feature-card {
    background: white;
    padding: 32px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(15, 51, 83, 0.08);
    transition: all 0.3s ease;
    position: relative;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(15, 51, 83, 0.15);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.feature-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 500;
}

.feature-badge.essential {
    background: rgba(59, 130, 246, 0.1);
    color: #3B82F6;
}

.feature-badge.innovation {
    background: rgba(16, 185, 129, 0.1);
    color: #10B981;
}

.feature-badge.differential {
    background: rgba(251, 146, 60, 0.1);
    color: #FB923C;
}

.feature-badge.premium {
    background: rgba(147, 51, 234, 0.1);
    color: #9333EA;
}

.feature-card h3 {
    margin-bottom: 12px;
}

.feature-card p {
    opacity: 0.7;
}

/* Pricing Section */
.pricing {
    padding: 80px 0;
    background: linear-gradient(135deg, #9AA7BE 0%, #B8C5D1 100%);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
    margin-bottom: 60px;
}

.pricing-card {
    background: white;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 8px 30px rgba(15, 51, 83, 0.1);
    position: relative;
    transition: all 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-4px);
}

.pricing-card.popular {
    border: 2px solid #6B46C1;
    transform: scale(1.05);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #6B46C1, #EC4899);
    color: white;
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

.pricing-header {
    text-align: center;
    margin-bottom: 32px;
}

.plan-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    color: #0F3353;
}

.price span {
    font-size: 1rem;
    opacity: 0.6;
}

.pricing-features h4 {
    margin-bottom: 16px;
    color: #0F3353;
}

.pricing-features ul {
    list-style: none;
    margin-bottom: 24px;
}

.pricing-features li {
    padding: 8px 0;
    opacity: 0.8;
}

.pricing-features .optional li {
    opacity: 0.6;
    font-style: italic;
}

.pricing-footer {
    text-align: center;
}

.pricing-footer p {
    margin-bottom: 20px;
    font-size: 1.1rem;
}

/* Footer */
.footer {
    background: rgba(255, 255, 255, 0.95);
    padding: 60px 0 20px;
    border-top: 1px solid rgba(15, 51, 83, 0.1);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-brand {
    max-width: 400px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.contact-info {
    margin-top: 20px;
}

.contact-info div {
    margin-bottom: 8px;
    opacity: 0.8;
}

.footer-links {
    display: flex;
    gap: 60px;
}

.link-group h3 {
    margin-bottom: 16px;
    color: #0F3353;
}

.link-group a {
    display: block;
    color: #0F3353;
    text-decoration: none;
    opacity: 0.7;
    margin-bottom: 8px;
    transition: opacity 0.3s;
}

.link-group a:hover {
    opacity: 1;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(15, 51, 83, 0.1);
    opacity: 0.6;
}

/* Responsividade */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-card.popular {
        transform: none;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 40px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .hero {
        padding: 60px 0;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .features, .pricing {
        padding: 60px 0;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .feature-card, .pricing-card {
        padding: 24px;
    }
}
