/* Estilos Gerais */
:root {
    --primary-color: #ff5722;
    --secondary-color: #ff9800;
    --dark-color: #333;
    --light-color: #f4f4f4;
    --success-color: #28a745;
    --warning-color: #ffc107;
    --danger-color: #dc3545;
    --max-width: 1200px;
    --border-radius: 8px;
    --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    --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(--dark-color);
    background-color: #f9f9f9;
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: var(--transition);
}

a:hover {
    color: #e64a19;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
}

.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: var(--border-radius);
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition);
    text-align: center;
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
    border: none;
    box-shadow: 0 4px 10px rgba(255, 87, 34, 0.3);
}

.btn-primary:hover {
    background-color: #e64a19;
    color: white;
    box-shadow: 0 6px 12px rgba(255, 87, 34, 0.4);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

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

.btn-block {
    display: block;
    width: 100%;
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-header h2 {
    font-size: 2.2rem;
    margin-bottom: 10px;
    color: var(--dark-color);
}

.section-header p {
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

.hidden {
    display: none;
}

/* Navegação */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
}

.nav-menu {
    display: flex;
}

.nav-menu li {
    margin-left: 20px;
}

.nav-menu a {
    color: white;
    font-weight: 600;
    padding: 8px 15px;
    border-radius: var(--border-radius);
}

.nav-menu a:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.nav-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: white;
    margin: 3px 0;
    border-radius: 2px;
    transition: var(--transition);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 600px;
    background: linear-gradient(to right, #ff5722, #ff9800);
    color: white;
    overflow: hidden;
    padding: 0 0 50px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.1);
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
}

.hero-content {
    max-width: 600px;
    margin: 60px 0 40px;
}

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

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

.hero-buttons {
    display: flex;
    gap: 15px;
}

/* Estilo específico para o botão outline na seção hero */
.hero .btn-outline {
    border: 2px solid white;
    color: white;
}

.hero .btn-outline:hover {
    background-color: white;
    color: var(--primary-color);
}

.hero-image {
    align-self: center;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
}

/* Mockup */
.mockup {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    padding: 20px;
    height: 300px;
    width: 100%;
}

.mockup-content {
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 10px;
    height: 100%;
    overflow: hidden;
    color: var(--dark-color);
}

.mockup-header {
    background-color: #f1f1f1;
    padding: 15px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #ddd;
}

.mockup-icon {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: var(--primary-color);
    margin-right: 10px;
}

.mockup-title {
    font-weight: 600;
}

.mockup-body {
    padding: 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 15px;
}

.mockup-widget {
    background-color: #eee;
    border-radius: 8px;
    height: 100px;
}

.mockup-widget:first-child {
    grid-column: 1 / 3;
}

/* Info Banner */
.info-banner {
    background-color: #fff3e0;
    padding: 15px 0;
    border-bottom: 1px solid #ffe0b2;
}

.banner-content {
    display: flex;
    align-items: center;
    gap: 15px;
}

.banner-content i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

/* Features Section */
.features {
    padding: 80px 0;
    background-color: white;
}

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

.feature-card {
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    padding: 30px;
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    background-color: #fff3e0;
    color: var(--primary-color);
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.feature-icon i {
    font-size: 1.8rem;
}

.feature-card h3 {
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.feature-example {
    margin-top: 15px;
    background-color: #f9f9f9;
    padding: 15px;
    border-radius: var(--border-radius);
    border-left: 3px solid var(--primary-color);
}

.feature-example h4 {
    color: var(--primary-color);
    margin-bottom: 5px;
}

/* Banner de Novas Features */
.coming-soon-banner {
    margin-top: 50px;
    background: linear-gradient(to right, #f5f7fa, #e4e8f0);
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--box-shadow);
    text-align: center;
}

.banner-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
    justify-content: center;
}

.banner-icon {
    background-color: #fff;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    flex-shrink: 0;
}

.banner-icon i {
    font-size: 2.5rem;
    color: var(--primary-color);
}

.banner-header h3 {
    font-size: 1.8rem;
    color: var(--dark-color);
    margin: 0;
    line-height: 1.3;
}

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

.banner-content p {
    margin-bottom: 20px;
    line-height: 1.6;
    font-size: 1.05rem;
}

.btn-sm {
    padding: 10px 20px;
    font-size: 0.95rem;
}

/* Contact Section - Ajustado para remover o formulário */
.contact {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.contact-wrapper {
    display: flex;
    justify-content: center;
}

.contact-info {
    background-color: white;
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    width: 100%;
    max-width: 600px;
}

.contact-info h3 {
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.contact-methods {
    margin-top: 25px;
}

.contact-method {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.contact-method i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-right: 15px;
    width: 40px;
    height: 40px;
    background-color: #fff3e0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.method-details h4 {
    margin-bottom: 5px;
}

/* Media Queries para responsividade do banner */
@media screen and (max-width: 768px) {
    .banner-header {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .coming-soon-banner {
        padding: 30px 25px;
    }
    
    .banner-content p {
        padding: 0 10px;
    }
}

@media screen and (max-width: 576px) {
    .coming-soon-banner {
        padding: 30px 20px;
        margin-top: 30px;
    }
    
    .banner-icon {
        width: 70px;
        height: 70px;
    }
    
    .banner-icon i {
        font-size: 2rem;
    }
    
    .banner-header h3 {
        font-size: 1.6rem;
    }
    
    .banner-content p {
        font-size: 1rem;
        margin-bottom: 20px;
        line-height: 1.6;
    }
    
    .coming-soon-banner .btn-sm {
        width: 100%;
        max-width: 260px;
        margin: 0 auto;
        display: block;
        padding: 12px 20px;
        font-size: 1rem;
    }
}

/* Benefits Section */
.benefits {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.benefit-card {
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    padding: 25px;
    text-align: center;
    transition: var(--transition);
}

.benefit-card:hover {
    transform: translateY(-5px);
}

.benefit-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #fff3e0;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.benefit-icon i {
    font-size: 1.5rem;
}

.benefit-card h3 {
    margin-bottom: 10px;
}

/* Process Section */
.process {
    padding: 80px 0;
    background-color: white;
}

.process-steps {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.process-step {
    flex: 1;
    min-width: 220px;
    text-align: center;
    padding: 20px;
    position: relative;
}

.process-step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 40px;
    right: 0;
    width: 50%;
    height: 2px;
    background-color: #ddd;
}

.process-step:not(:first-child)::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 0;
    width: 50%;
    height: 2px;
    background-color: #ddd;
}

.step-number {
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.2rem;
    font-weight: 600;
    position: relative;
    z-index: 1;
}

.process-step h3 {
    margin-bottom: 10px;
}

/* Footer */
footer {
    background-color: var(--dark-color);
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.footer-logo .logo {
    margin-bottom: 15px;
}

.footer-logo p {
    color: #aaa;
}

.footer-info p,
.footer-contact p {
    margin-bottom: 10px;
    color: #aaa;
}

.footer-contact i {
    margin-right: 10px;
    color: var(--primary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #444;
    color: #777;
    font-size: 0.9rem;
}

/* Responsividade */
@media screen and (max-width: 991px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
}

@media screen and (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 0;
        right: -300px;
        width: 300px;
        height: 100%;
        background-color: var(--dark-color);
        flex-direction: column;
        padding: 80px 30px 30px;
        transition: right 0.3s ease;
        z-index: 100;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-menu li {
        margin: 15px 0;
    }
    
    .nav-toggle {
        display: flex;
        z-index: 101;
    }
    
    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    .hero-content {
        text-align: center;
        margin: 40px auto;
    }
    
    .hero-buttons {
        justify-content: center;
        flex-direction: column;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }
    
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .process-step::after,
    .process-step::before {
        display: none;
    }
    
    .process-steps {
        flex-direction: column;
    }
    
    .process-step {
        margin-bottom: 30px;
    }
    
    .banner-header {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .banner-content p {
        padding: 0 10px;
    }
    
    .contact-info {
        text-align: center;
    }
    
    .contact-method {
        flex-direction: column;
        align-items: center;
    }
    
    .contact-method i {
        margin-right: 0;
        margin-bottom: 10px;
    }
}

@media screen and (max-width: 576px) {
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .features-grid,
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-logo .logo {
        margin: 0 auto 15px;
    }
    
    .coming-soon-banner {
        padding: 25px 20px;
        margin-top: 30px;
    }
    
    .banner-icon {
        width: 60px;
        height: 60px;
    }
    
    .banner-icon i {
        font-size: 1.8rem;
    }
    
    .banner-header h3 {
        font-size: 1.3rem;
    }
    
    .banner-content p {
        font-size: 0.95rem;
    }
    
    .coming-soon-banner .btn-sm {
        width: 100%;
        max-width: 250px;
        margin: 0 auto;
        display: block;
    }
} 