/* Reset e configurações básicas */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f5f5f5;
}

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

/* Header */
.header {
    background-color: #6B9BD2;
    padding: 20px 0;
}

.logo img {
    height: 60px;
    width: auto;
}

/* Main Content */
.main-content {
    background-color: #ffffff;
    padding: 40px 0;
    min-height: calc(100vh - 200px);
}

.content-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    align-items: start;
}

.text-content {
    padding-right: 20px;
}

.text-content h1 {
    font-size: 24px;
    font-weight: bold;
    color: #333;
    margin-bottom: 30px;
    text-align: left;
}

.section {
    margin-bottom: 30px;
}

.section h2 {
    font-size: 16px;
    font-weight: bold;
    color: #333;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.section p {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 15px;
    text-align: justify;
    color: #555;
}

.section ul {
    margin-left: 20px;
    margin-bottom: 15px;
}

.section li {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 8px;
    color: #555;
}

.section strong {
    font-weight: bold;
    color: #333;
}

/* Image Content */
.image-content {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding-top: 20px;
}

.app-image {
    max-width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: contain;
}

/* Footer */
.footer {
    background-color: #f8f9fa;
    color: #333;
    padding: 30px 0 10px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    margin-bottom: 20px;
}

.footer-left {
    display: flex;
    gap: 30px;
}

.footer-logo img {
    height: 80px;
    width: auto;
}

.footer-info h3 {
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 8px;
    margin-top: 15px;
}

.footer-info h3:first-child {
    margin-top: 0;
}

.footer-info p {
    font-size: 12px;
    line-height: 1.4;
    margin-bottom: 10px;
}

.footer-right {
    text-align: center;
}

.footer-right p {
    font-size: 12px;
    line-height: 1.4;
    margin-bottom: 15px;
}

.qr-code img {
    width: 80px;
    height: 80px;
    background-color: white;
    padding: 5px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    padding-top: 15px;
    text-align: center;
}

.footer-bottom p {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.8);
}

/* Responsividade para tablets */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .content-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .text-content {
        padding-right: 0;
    }
    
    .text-content h1 {
        font-size: 22px;
        text-align: center;
        margin-bottom: 25px;
    }
    
    .section h2 {
        font-size: 15px;
    }
    
    .section p,
    .section li {
        font-size: 13px;
    }
    
    .image-content {
        order: -1;
        padding-top: 0;
        margin-bottom: 20px;
    }
    
    .app-image {
        max-height: 400px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .footer-left {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .footer-logo {
        align-self: center;
    }
}

/* Responsividade para smartphones */
@media (max-width: 480px) {
    .header {
        padding: 15px 0;
    }
    
    .logo img {
        height: 50px;
    }
    
    .main-content {
        padding: 25px 0;
    }
    
    .container {
        padding: 0 10px;
    }
    
    .text-content h1 {
        font-size: 20px;
        margin-bottom: 20px;
    }
    
    .section {
        margin-bottom: 25px;
    }
    
    .section h2 {
        font-size: 14px;
        margin-bottom: 12px;
    }
    
    .section p,
    .section li {
        font-size: 12px;
        line-height: 1.5;
    }
    
    .section ul {
        margin-left: 15px;
    }
    
    .app-image {
        max-height: 300px;
    }
    
    .footer {
        padding: 20px 0 10px;
    }
    
    .footer-left {
        gap: 15px;
    }
    
    .footer-logo img {
        height: 60px;
    }
    
    .footer-info h3 {
        font-size: 13px;
        margin-top: 12px;
    }
    
    .footer-info p {
        font-size: 11px;
    }
    
    .footer-right p {
        font-size: 11px;
    }
    
    .qr-code img {
        width: 70px;
        height: 70px;
    }
    
    .footer-bottom p {
        font-size: 11px;
    }
}

/* Responsividade para telas muito pequenas */
@media (max-width: 320px) {
    .container {
        padding: 0 8px;
    }
    
    .text-content h1 {
        font-size: 18px;
    }
    
    .section h2 {
        font-size: 13px;
    }
    
    .section p,
    .section li {
        font-size: 11px;
    }
    
    .app-image {
        max-height: 250px;
    }
    
    .footer-logo img {
        height: 50px;
    }
    
    .qr-code img {
        width: 60px;
        height: 60px;
    }
}

/* Melhorias de acessibilidade e usabilidade */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Print styles */
@media print {
    .header,
    .footer {
        background-color: #333 !important;
        color: white !important;
    }
    
    .main-content {
        background-color: white !important;
    }
    
    .content-wrapper {
        grid-template-columns: 1fr;
    }
    
    .image-content {
        display: none;
    }
}

