/* Growth Style - Base Styles */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800&family=Open+Sans:wght@300;400;500;600;700&display=swap');

:root {
    --verde-growth: #00a64e;
    --verde-escuro: #008a3e;
    --azul-escuro: #1899d5;
    --preto: #000000;
    --cinza-escuro: #333333;
    --cinza-medio: #666666;
    --cinza-claro: #f5f5f5;
    --cinza-borda: #e0e0e0;
    --branco: #ffffff;
    --vermelho: #e74c3c;
    --laranja: #f39c12;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

*::-webkit-scrollbar {
    display: none;
}

body {
    font-family: 'Montserrat', 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    color: var(--preto);
    line-height: 1.6;
    min-height: 100vh;
}

.app-container {
    width: 100%;
    max-width: 430px;
    margin: 0 auto;
    min-height: 100vh;
    background-color: var(--branco);
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    position: relative;
}

.main-content {
    flex: 1;
    padding: 0 25px 80px;
    padding-top: 90px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    color: var(--preto);
    line-height: 1.2;
    font-family: 'Montserrat', sans-serif;
}

h1 {
    font-size: 32px;
    margin-bottom: 12px;
}

h2 {
    font-size: 24px;
}

h3 {
    font-size: 20px;
}

p {
    color: var(--cinza-medio);
    font-size: 15px;
    font-family: 'Open Sans', sans-serif;
    line-height: 1.5;
}

a {
    color: var(--verde-growth);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
    font-family: 'Montserrat', sans-serif;
}

a:hover {
    color: var(--verde-escuro);
}

/* Form Styles */
.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    font-weight: 600;
    color: var(--preto);
    margin-bottom: 10px;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-family: 'Montserrat', sans-serif;
}

.form-group input {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid var(--cinza-borda);
    border-radius: 8px;
    font-size: 16px;
    background-color: var(--branco);
    transition: all 0.3s ease;
    outline: none;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
}

.form-group input:focus {
    border-color: var(--verde-growth);
    box-shadow: 0 0 0 3px rgba(0, 166, 78, 0.1);
    transform: translateY(-1px);
}

.form-group input::placeholder {
    color: var(--cinza-medio);
    font-weight: 400;
}

/* Buttons */
.btn-primary {
    width: 100%;
    padding: 18px 24px;
    background: linear-gradient(135deg, var(--verde-growth) 0%, var(--verde-escuro) 100%);
    color: var(--branco);
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 30px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-family: 'Montserrat', sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 166, 78, 0.3);
}

.btn-primary:active {
    transform: translateY(0);
}

/* Checkbox Styles */
.checkbox-container {
    display: flex;
    align-items: flex-start;
    cursor: pointer;
    font-size: 14px;
    color: var(--cinza-escuro);
    user-select: none;
    gap: 12px;
    line-height: 1.4;
    font-family: 'Open Sans', sans-serif;
}

.checkbox-container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkmark {
    width: 20px;
    height: 20px;
    background-color: var(--branco);
    border: 2px solid var(--cinza-borda);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
    margin-top: 2px;
}

.checkbox-container:hover input ~ .checkmark {
    border-color: var(--verde-growth);
}

.checkbox-container input:checked ~ .checkmark {
    background-color: var(--verde-growth);
    border-color: var(--verde-growth);
}

.checkbox-container input:checked ~ .checkmark::after {
    content: "✓";
    color: var(--branco);
    font-size: 12px;
    font-weight: bold;
}

/* Responsive Design */
@media (max-width: 430px) {
    .app-container {
        width: 100%;
        box-shadow: none;
    }
    
    .main-content {
        padding: 0 20px 80px;
        padding-top: 80px;
    }
    
    h1 {
        font-size: 28px;
    }
    
    .form-group input {
        padding: 14px 16px;
    }
    
    .btn-primary {
        padding: 16px 20px;
    }
}

@media (min-height: 800px) {
    body {
        align-items: center;
    }
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.text-green {
    color: var(--verde-growth);
}

.text-bold {
    font-weight: 700;
}

.mt-20 {
    margin-top: 20px;
}

.mb-20 {
    margin-bottom: 20px;
}