/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

/* Color Variables */
:root {
    --primary-color: #343745;
    --secondary-color: #719E24;
    --accent-color: #5a6c7d;
    --light-bg: #f8f9fa;
    --white: #ffffff;
    --text-dark: #2c3e50;
    --text-light: #6c757d;
}

/* Navigation */
.custom-navbar {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    border: none;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    padding: 10px 0;
    z-index: 1000;
    min-height: 70px;
}

.custom-navbar .navbar-brand {
    color: var(--white) !important;
    font-size: 24px;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.custom-navbar .navbar-nav > li > a {
    color: var(--white) !important;
    font-weight: 500;
    padding: 15px 20px;
    transition: all 0.3s ease;
}

.custom-navbar .navbar-nav > li > a:hover {
    background-color: rgba(255,255,255,0.1);
    border-radius: 5px;
}

.btn-demo {
    background: var(--secondary-color) !important;
    border-radius: 25px !important;
    padding: 10px 25px !important;
    margin-left: 15px;
    font-weight: 600;
}

.btn-demo:hover {
    background: #5a7a1a !important;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(113, 158, 36, 0.3);
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 50%, var(--secondary-color) 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><radialGradient id="a" cx="50%" cy="50%"><stop offset="0%" stop-color="rgba(255,255,255,0.1)"/><stop offset="100%" stop-color="rgba(255,255,255,0)"/></radialGradient></defs><circle cx="200" cy="200" r="100" fill="url(%23a)"/><circle cx="800" cy="300" r="150" fill="url(%23a)"/><circle cx="400" cy="700" r="120" fill="url(%23a)"/></svg>');
    opacity: 0.3;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(52, 55, 69, 0.1);
    z-index: 1;
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    animation: fadeInUp 1s ease-out;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
    font-weight: 600;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-description {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 40px;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.hero-btn {
    background: var(--secondary-color);
    border: none;
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    animation: fadeInUp 1s ease-out 0.6s both;
    box-shadow: 0 5px 20px rgba(113, 158, 36, 0.3);
}

.hero-btn:hover {
    background: #5a7a1a;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(113, 158, 36, 0.4);
}

.hero-logo {
   margin: auto; /* Centraliza dentro do contêiner */
   display: block; /* Garante que o elemento seja tratado como bloco */
   width: 300px;
   height: 300px;
   background: url('https://devwin.com.br/img/logodev/Prancheta%2022.png') no-repeat center center;
   background-size: contain;
   animation: fadeInUp 1s ease-out 0.8s both;
   padding: 15px;
}

/* Features Section */
.features-section {
    padding: 100px 0;
    background: var(--light-bg);
    position: relative;
    z-index: 1;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 60px;
}

.feature-row {
    margin-bottom: 80px;
    align-items: center;
}

.feature-row.reverse {
    flex-direction: row-reverse;
}

.feature-content {
    padding: 40px;
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--secondary-color), #5a7a1a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(113, 158, 36, 0.2);
}

.feature-icon i {
    font-size: 2rem;
    color: var(--white);
}

.feature-content h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.feature-tagline {
    font-size: 1.1rem;
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 30px;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
    padding: 20px;
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.benefit-item i {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-right: 15px;
    margin-top: 5px;
}

.benefit-item strong {
    color: var(--primary-color);
    font-weight: 600;
    display: block;
    margin-bottom: 5px;
}

/* Feature Images */
.feature-image {
    padding: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.dashboard-mockup {
    width: 100%;
    max-width: 400px;
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: all 0.3s ease;
}

.dashboard-mockup:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 80px rgba(0,0,0,0.15);
}

.mockup-header {
    background: var(--primary-color);
    padding: 15px;
    display: flex;
    align-items: center;
}

.mockup-dots {
    display: flex;
    gap: 8px;
}

.mockup-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.3);
}

.mockup-dots span:first-child {
    background: #ff5f56;
}

.mockup-dots span:nth-child(2) {
    background: #ffbd2e;
}

.mockup-dots span:nth-child(3) {
    background: #27ca3f;
}

.mockup-content {
    padding: 60px 40px;
    text-align: center;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.security-visual i {
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.realtime-visual {
    position: relative;
}

.pulse-animation {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    border: 3px solid var(--secondary-color);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.realtime-visual i {
    color: var(--secondary-color);
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.export-formats {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.format-item {
    background: var(--light-bg);
    padding: 15px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: var(--primary-color);
}

.format-item i {
    font-size: 1.5rem;
    color: var(--secondary-color);
}

/* Additional Features */
.additional-features {
    padding: 80px 0;
    background: var(--white);
}

.feature-card {
    text-align: center;
    padding: 40px 30px;
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.12);
}

.card-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.card-icon i {
    font-size: 1.8rem;
    color: var(--white);
}

.feature-card h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.feature-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    padding: 80px 0;
    color: var(--white);
    text-align: center;
}

.cta-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.cta-btn {
    background: var(--white);
    color: var(--primary-color);
    border: none;
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.cta-btn:hover {
    background: var(--light-bg);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255,255,255,0.2);
}

/* Footer */
.footer {
    background: var(--primary-color);
    color: var(--white);
    padding: 40px 0;
}

.footer h5 {
    font-weight: 700;
    margin-bottom: 15px;
}

.footer p {
    opacity: 0.8;
    margin: 0;
}

/* Modal Styles */
.modal-content {
    border-radius: 15px;
    border: none;
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}

.modal-header {
    background: var(--primary-color);
    color: var(--white);
    border-radius: 15px 15px 0 0;
    border-bottom: none;
}

.modal-header .close {
    color: var(--white);
    opacity: 0.8;
}

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

.form-control {
    border-radius: 8px;
    border: 2px solid #e9ecef;
    padding: 12px 15px;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 0.2rem rgba(113, 158, 36, 0.25);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }
    100% {
        transform: translate(-50%, -50%) scale(1.5);
        opacity: 0;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .feature-content {
        padding: 20px;
    }
    
    .feature-row.reverse {
        flex-direction: column;
    }
    
    .feature-row.reverse .col-md-6:first-child {
        order: 2;
    }
    
    .feature-row.reverse .col-md-6:last-child {
        order: 1;
    }
    
    .dashboard-mockup {
        max-width: 300px;
    }
    
    .mockup-content {
        padding: 40px 20px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .feature-content h3 {
        font-size: 1.5rem;
    }
    
    .benefit-item {
        flex-direction: column;
        text-align: center;
    }
    
    .benefit-item i {
        margin-right: 0;
        margin-bottom: 10px;
    }
}


/* Contact Info Styles */
.contact-info {
    margin-top: 40px;
}

.contact-text {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 20px;
}

.contact-methods {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.contact-btn {
    background: var(--white);
    color: var(--primary-color);
    padding: 12px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.contact-btn:hover {
    background: var(--light-bg);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255,255,255,0.2);
    text-decoration: none;
    color: var(--primary-color);
}

.contact-btn.whatsapp:hover {
    background: #25D366;
    color: white;
}

.contact-btn.email:hover {
    background: #EA4335;
    color: white;
}

/* Contact Section */
.contact-section {
    background: var(--light-bg);
    padding: 80px 0;
}

.contact-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.contact-section > .container > .row:first-child p {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 60px;
}

.contact-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    margin-bottom: 30px;
    height: 100%;
    transition: all 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.contact-card h4 {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.contact-card h4 i {
    color: var(--secondary-color);
    margin-right: 10px;
}

.contact-card p {
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

.contact-methods-section {
    margin-top: 40px;
}

.contact-methods-section h4 {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 30px;
    font-size: 1.4rem;
}

.contact-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.contact-method-btn {
    background: var(--white);
    color: var(--primary-color);
    padding: 15px 25px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    min-width: 120px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.contact-method-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    text-decoration: none;
}

.contact-method-btn i {
    font-size: 1.8rem;
}

.contact-method-btn.email:hover {
    background: #EA4335;
    color: white;
}

.contact-method-btn.whatsapp:hover {
    background: #25D366;
    color: white;
}

.contact-method-btn.facebook:hover {
    background: #1877F2;
    color: white;
}

.contact-method-btn.instagram:hover {
    background: linear-gradient(45deg, #F56040, #E1306C, #C13584, #833AB4);
    color: white;
}

/* Responsive adjustments for contact */
@media (max-width: 768px) {
    .contact-methods {
        flex-direction: column;
        align-items: center;
    }
    
    .contact-btn {
        width: 200px;
        justify-content: center;
    }
    
    .contact-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .contact-method-btn {
        width: 150px;
    }
    
    .contact-card {
        margin-bottom: 20px;
    }
}

