/* Reset e Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #D47A00;
    --white: #FFFFFF;
    --light-gray: #F8F9FA;
    --dark-gray: #212529;
    --text-gray: #6c757d;
    --border-gray: #e9ecef;
    --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.15);
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--dark-gray);
    background-color: var(--white);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3rem;
    font-weight: 700;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
    color: var(--text-gray);
}

.highlight {
    color: var(--primary-color);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
    gap: 8px;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
}

.btn-primary:hover {
    background-color: #b86500;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

.btn-large {
    padding: 16px 32px;
    font-size: 1.1rem;
}

.btn-full {
    width: 100%;
}

/* Header */
.header {
    background-color: var(--white);
    box-shadow: var(--shadow);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.nav-logo i {
    font-size: 2rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    text-decoration: none;
    color: var(--dark-gray);
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: var(--primary-color);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--dark-gray);
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, var(--light-gray) 0%, var(--white) 100%);
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-text h1 {
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: var(--text-gray);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
}


/* Hero Dashboard Mockup */
.hero-dashboard {
    position: relative;
}

.dashboard-mockup {
    background: var(--white);
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    padding: 0;
    border: 1px solid var(--border-gray);
    overflow: hidden;
}

.dashboard-screenshot {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
    max-width: 600px;
    margin: 0 auto;
}

/* Responsive adjustments for dashboard image */
@media (max-width: 768px) {
    .dashboard-screenshot {
        max-width: 100%;
        border-radius: 8px;
    }
}

/* Funcionalidades Section */
.funcionalidades {
    padding: 80px 0;
    background-color: var(--white);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.funcionalidades-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.funcionalidade-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-gray);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.funcionalidade-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.funcionalidade-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), #f4a261);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.funcionalidade-icon i {
    font-size: 2rem;
    color: var(--white);
}

.funcionalidade-card h3 {
    margin-bottom: 1rem;
    color: var(--dark-gray);
}

.funcionalidade-card p {
    line-height: 1.6;
}

/* Benefícios Section */
.beneficios {
    padding: 80px 0;
    background-color: var(--light-gray);
}

.beneficios-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.beneficios-text h2 {
    margin-bottom: 2rem;
}

.beneficios-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.beneficio-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.beneficio-icon {
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.beneficio-icon i {
    color: var(--white);
    font-size: 1.2rem;
}

.beneficio-content h3 {
    margin-bottom: 0.5rem;
    color: var(--dark-gray);
}

.beneficio-content p {
    margin: 0;
}

/* Benefícios Mockup */
.beneficios-mockup {
    display: flex;
    justify-content: center;
}

.beneficios-screenshot {
    max-width: 300px;
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}


/* Planos Section */
.planos {
    padding: 80px 0;
    background-color: var(--white);
}

.planos-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.plano-card {
    background: var(--white);
    border-radius: 12px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-gray);
    padding: 1.5rem;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.plano-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.plano-recomendado {
    border: 2px solid var(--primary-color);
    transform: scale(1.05);
}

.plano-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.plano-header {
    text-align: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-gray);
}

.plano-header h3 {
    font-size: 1.5rem;
    color: var(--dark-gray);
    margin-bottom: 0.5rem;
}

.plano-faixa {
    color: var(--text-gray);
    font-size: 0.9rem;
}

.plano-funcionalidades {
    margin-bottom: 1.5rem;
}

.plano-funcionalidades ul {
    list-style: none;
    padding: 0;
}

.plano-funcionalidades li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.6rem;
    color: var(--dark-gray);
    font-size: 0.9rem;
}

.plano-funcionalidades li i {
    color: var(--primary-color);
    font-size: 0.9rem;
}

.plano-preco {
    display: flex;
    justify-content: center;
    align-items: baseline;
    white-space: nowrap;
    margin-bottom: 1.5rem;
    gap: 0.25rem;
}

.preco-valor {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.preco-periodo {
    color: var(--text-gray);
    font-size: 1rem;
}

.planos-nota {
    text-align: center;
    margin-top: 2rem;
}

.planos-nota p {
    color: var(--text-gray);
    font-size: 0.9rem;
}

/* Responsive adjustments for plans */
@media (max-width: 1200px) {
    .planos-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .planos-grid {
        grid-template-columns: 1fr;
    }
    
    .plano-recomendado {
        transform: none;
    }
    
    .plano-card {
        margin-bottom: 1rem;
    }
}

/* CTA Section */
.cta {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-color), #b86500);
    color: var(--white);
    text-align: center;
}

.cta h2 {
    color: var(--white);
    margin-bottom: 1rem;
}

.cta h2 .highlight {
    color: var(--white);
    background: rgba(255, 255, 255, 0.2);
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    font-weight: 700;
}

.cta p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.95);
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 2rem;
}

.cta .btn-primary {
    background-color: rgba(255, 255, 255, 0.2);
    border: 2px solid var(--white);
    color: var(--white);
}

.cta .btn-primary:hover {
    background-color: var(--white);
    color: var(--primary-color);
}

.cta .btn-secondary {
    background-color: transparent;
    border: 2px solid var(--white);
    color: var(--white);
}

.cta .btn-secondary:hover {
    background-color: var(--white);
    color: var(--primary-color);
}

.cta-features {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--white);
}

.cta-feature i {
    color: var(--white);
}

/* Contato Section */
.contato {
    padding: 80px 0;
    background-color: var(--light-gray);
}

.contato-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: flex-start;
}

.contato-info h2 {
    margin-bottom: 1rem;
}

.contato-info p {
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.contato-details {
    display: flex;
    flex-direction: row;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.contato-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.contato-item i {
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.contato-item h4 {
    margin: 0;
    color: var(--dark-gray);
    font-size: 1.1rem;
    font-weight: 600;
}

.contato-item p {
    margin: 0;
    color: var(--text-gray);
    font-size: 0.9rem;
    font-weight: 500;
}

.contato-email {
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 1.5rem;
    border-radius: 16px;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 2px solid transparent;
    min-width: 200px;
    text-align: center;
}

.contato-email:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 123, 255, 0.2);
    background: linear-gradient(135deg, #ffffff 0%, #e3f2fd 100%);
    border-color: #2196f3;
}

.contato-email i {
    background: linear-gradient(135deg, var(--primary-color), #ff9800);
    color: var(--white);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 1rem;
    box-shadow: 0 4px 15px rgba(212, 122, 0, 0.3);
}

.contato-whatsapp {
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 1.5rem;
    border-radius: 16px;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 2px solid transparent;
    min-width: 200px;
    text-align: center;
}

.contato-whatsapp:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.2);
    background: linear-gradient(135deg, #ffffff 0%, #e8f5e8 100%);
    border-color: #25D366;
}

.contato-whatsapp i {
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: var(--white);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 1rem;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

/* Form */
.form {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border-gray);
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

/* Footer */
.footer {
    background-color: var(--dark-gray);
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.footer-logo i {
    font-size: 2rem;
}

.footer-section h4 {
    color: var(--white);
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-color);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .beneficios-content {
        grid-template-columns: 1fr;
    }
    
    .contato-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .contato-details {
        flex-direction: row;
        justify-content: center;
        gap: 1rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-features {
        flex-direction: column;
        align-items: center;
    }
    
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 100px 0 60px;
    }
    
    .funcionalidades,
    .beneficios,
    .depoimentos,
    .contato {
        padding: 60px 0;
    }
    
    .cta {
        padding: 60px 0;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    .hero-buttons {
        width: 100%;
    }
    
    .btn-large {
        width: 100%;
    }
}

