* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.container {
    max-width: 450px;
    width: 100%;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    margin: 20px;
}

.logo-container {
    text-align: center;
    padding: 20px 0 10px 0;
    background: white;
}

.logo {
    width: 120px;
    height: 60px;
    border-radius: 8px;
    object-fit: contain;
}

.progress-container {
    padding: 0 20px 20px 20px;
}

.progress-bar {
    width: 100%;
    height: 8px;
    background: #e0e0e0;
    border-radius: 4px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #4CAF50, #8BC34A);
    border-radius: 4px;
    transition: width 0.3s ease;
}

.main-content {
    padding: 20px;
    text-align: center;
    background: white;
}

.main-image {
    width: 100%;
    height: auto;
    border-radius: 15px;
    margin-bottom: 20px;
    max-width: 100%;
    display: block;
}

.main-title {
    font-size: 24px;
    font-weight: bold;
    line-height: 1.3;
    margin-bottom: 30px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.highlight {
    color: #FFEB3B;
    font-weight: 900;
}

.highlight-italic {
    color: #FFEB3B;
    font-style: italic;
    font-weight: 900;
}

.highlight-box {
    background: white;
    color: #2E7D32;
    padding: 4px 8px;
    border-radius: 8px;
    font-weight: 900;
    display: inline-block;
    margin: 0 2px;
}

.brand-circle {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, #FFF8E1, #FFFFFF);
    border-radius: 50%;
    margin: 30px auto;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    border: 8px solid #8D6E63;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.brand-text {
    text-align: center;
    color: #2E7D32;
}

.brand-name {
    display: block;
    font-size: 32px;
    font-weight: 900;
    font-style: italic;
    line-height: 1;
    margin-bottom: 5px;
}

.brand-subtitle {
    display: block;
    font-size: 20px;
    font-weight: 900;
    font-style: italic;
}

.leaf-decoration {
    position: absolute;
    width: 40px;
    height: 20px;
    background: #4CAF50;
    border-radius: 0 100% 0 100%;
}

.leaf-left {
    top: 20px;
    left: 30px;
    transform: rotate(-45deg);
}

.leaf-right {
    bottom: 20px;
    right: 30px;
    transform: rotate(135deg);
}

.leaf-decoration::before {
    content: '';
    position: absolute;
    width: 30px;
    height: 15px;
    background: #66BB6A;
    border-radius: 0 100% 0 100%;
    top: 2px;
    left: 2px;
}

.warning-text {
    background: #FFF8E1;
    color: #333;
    padding: 15px;
    border-radius: 10px;
    margin: 20px 0;
    font-size: 14px;
    line-height: 1.4;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border: 2px solid #FFE082;
}

.attention {
    color: #f44336;
    font-weight: bold;
}

.continue-btn {
    background: linear-gradient(135deg, #4CAF50, #66BB6A);
    color: white;
    border: none;
    padding: 15px 40px;
    font-size: 18px;
    font-weight: bold;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 10px;
}

.continue-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(76, 175, 80, 0.4);
    background: linear-gradient(135deg, #66BB6A, #4CAF50);
}

.continue-btn:active {
    transform: translateY(0);
}

/* Responsividade */
@media (max-width: 480px) {
    .container {
        margin: 10px;
        border-radius: 15px;
    }
    
    .main-title {
        font-size: 20px;
    }
    
    .brand-circle {
        width: 160px;
        height: 160px;
    }
    
    .brand-name {
        font-size: 26px;
    }
    
    .brand-subtitle {
        font-size: 16px;
    }
    
    .continue-btn {
        padding: 12px 30px;
        font-size: 16px;
    }
} 