/*
Theme Name: Automatt Landing Page (Elementor Compatible)
Description: Tema WordPress compatível com Elementor para a landing page da Automatt
Version: 1.0
Author: Converted from React App
Text Domain: automatt
*/

/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

/* Base styles */
body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
}

/* Elementor Compatibility Styles */
.elementor {
    font-family: 'Inter', sans-serif;
}

.elementor-section {
    position: relative;
    margin-bottom: 0;
}

.elementor-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.elementor-row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.elementor-column {
    padding: 0 15px;
    box-sizing: border-box;
}

.elementor-col-100 { width: 100%; }
.elementor-col-50 { width: 50%; }
.elementor-col-33 { width: 33.333%; }

.elementor-widget-container {
    position: relative;
}

.elementor-heading-title {
    font-weight: 700;
    line-height: 1.2;
    margin: 0 0 20px 0;
    color: #333;
}

.elementor-size-xl .elementor-heading-title {
    font-size: 3rem;
}

.elementor-highlighted-text {
    background: linear-gradient(45deg, #1A56DB, #0E9F6E);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.elementor-button {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

.elementor-button-success {
    background: #0E9F6E;
    color: white;
}

.elementor-button-success:hover {
    background: #0A8F5F;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(14, 159, 110, 0.3);
}

.elementor-button-primary {
    background: #1A56DB;
    color: white;
}

.elementor-button-primary:hover {
    background: #1548B3;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(26, 86, 219, 0.3);
}

.elementor-button-outline {
    background: transparent;
    border: 2px solid #1A56DB;
    color: #1A56DB;
}

.elementor-button-outline:hover {
    background: #1A56DB;
    color: white;
}

.elementor-icon-box {
    text-align: center;
    padding: 40px 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.elementor-icon-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.elementor-icon {
    font-size: 3rem;
    color: #1A56DB;
    margin-bottom: 20px;
    display: block;
}

.elementor-icon-box-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
}

.elementor-icon-box-description {
    color: #666;
    font-size: 1rem;
}

.elementor-counter-wrapper {
    display: flex;
    justify-content: space-around;
    margin-top: 40px;
    flex-wrap: wrap;
}

.elementor-counter-item {
    text-align: center;
    min-width: 150px;
    margin: 20px 0;
}

.elementor-counter-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: #0E9F6E;
    display: block;
    margin-bottom: 10px;
}

.elementor-counter-title {
    font-size: 0.9rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.elementor-form {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 16px;
    max-width: 600px;
    margin: 0 auto;
}

.elementor-form-fields-wrapper {
    display: grid;
    gap: 20px;
}

.elementor-field-group {
    margin-bottom: 0;
}

.elementor-field-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #333;
}

.elementor-field {
    width: 100%;
    padding: 15px;
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 8px;
    background: rgba(255,255,255,0.1);
    color: #333;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.elementor-field:focus {
    outline: none;
    border-color: #1A56DB;
    box-shadow: 0 0 0 3px rgba(26, 86, 219, 0.1);
}

.elementor-field-textual {
    resize: vertical;
    min-height: 100px;
}

.elementor-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    text-align: center;
    transition: transform 0.3s ease;
}

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

.elementor-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
}

.elementor-card p {
    color: #666;
}

/* Responsive Design */
@media (max-width: 768px) {
    .elementor-col-50,
    .elementor-col-33 {
        width: 100%;
    }

    .elementor-size-xl .elementor-heading-title {
        font-size: 2rem;
    }

    .elementor-counter-wrapper {
        flex-direction: column;
        align-items: center;
    }

    .elementor-button-wrapper {
        flex-direction: column;
        gap: 15px;
    }

    .elementor-form {
        padding: 30px 20px;
    }
}

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

.elementor-section {
    animation: fadeInUp 0.6s ease-out;
}

/* Custom utilities */
.backdrop-blur-sm {
    backdrop-filter: blur(4px);
}

.backdrop-blur-lg {
    backdrop-filter: blur(16px);
}