/* markets.css - Estilos para Landing Page de Mercados */

:root {
    --primary-color: #2e7d32;
    --secondary-color: #4caf50;
    --text-color: #333;
    --bg-color: #fff;
    --light-bg: #f5f5f5;
    --border-color: #e0e0e0;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--bg-color);
}

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

.hero {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 80px 0;
    text-align: center;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 700;
}

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

.cta-button {
    background-color: #ff9800;
    color: white;
    border: none;
    padding: 15px 30px;
    font-size: 1.1rem;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.cta-button:hover {
    background-color: #f57c00;
}

.cta-button.large {
    padding: 20px 40px;
    font-size: 1.3rem;
}

.hero form {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.hero input {
    padding: 10px;
    font-size: 1rem;
    border: 1px solid #ccc;
    border-radius: 5px;
    width: 100%;
    max-width: 300px;
}

.message {
    margin-top: 20px;
    font-weight: bold;
}

.value-prop {
    padding: 60px 0;
    text-align: center;
    background-color: var(--light-bg);
}

.value-prop p {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.value-prop strong {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.benefits {
    padding: 60px 0;
}

.benefits h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2rem;
}

.benefits ul {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.benefits li {
    display: flex;
    align-items: center;
    padding: 20px;
    background-color: var(--light-bg);
    border-radius: 8px;
    border-left: 5px solid var(--primary-color);
}

.benefits svg {
    margin-right: 15px;
    color: var(--primary-color);
    flex-shrink: 0;
}

.results {
    padding: 60px 0;
    text-align: center;
    background-color: var(--primary-color);
    color: white;
}

.results p {
    font-size: 1.5rem;
    font-weight: 600;
}

.final-cta {
    padding: 60px 0;
    text-align: center;
}

.final-cta form {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.final-cta input {
    padding: 10px;
    font-size: 1rem;
    border: 1px solid #ccc;
    border-radius: 5px;
    width: 100%;
    max-width: 300px;
}

/* Responsivo */
@media (min-width: 768px) {
    .hero h1 {
        font-size: 3rem;
    }

    .hero p {
        font-size: 1.4rem;
    }

    .hero form {
        flex-direction: row;
        justify-content: center;
    }

    .hero input {
        max-width: 250px;
    }

    .benefits ul {
        grid-template-columns: repeat(2, 1fr);
    }

    .final-cta form {
        flex-direction: row;
        justify-content: center;
    }

    .final-cta input {
        max-width: 250px;
    }
}

@media (min-width: 1024px) {
    .benefits ul {
        grid-template-columns: repeat(3, 1fr);
    }
}