/* Custom Styles for Linha Ética PWA */

:root {
    --lle-red: #8B4513;
    --lle-gold: #FFD700;
    --light-purple: #E6E6FA;
    --dark-blue: #1e3a8a;
    --white: #ffffff;
    --black: #000000;
    --gray: #666666;
    --light-gray: #f5f5f5;
    --whatsapp-green: #25D366;
    --phone-blue: #007bff;
    --light-blue: #C7D7ED;
    --light-gray-bg: #EBEBEB;
    --footer-text: #D9D9D9;
    --border-color: #ACACAC;
}

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

body {
    font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--white);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Header Styles */
.header {
    background-color: var(--white);
    padding: 20px 0;
    border-bottom: 1px solid #ddd;
}

.header .row {
    align-items: center;
}

.logo-lle {
    display: flex;
    align-items: center;
    height: 50px;
}

.lle-logo {
    max-height: 40px;
    width: auto;
    max-width: 100%;
}

.badge-50-anos {
    background-color: var(--lle-red);
    border-radius: 8px;
    padding: 8px 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 15px;
    height: 40px;
    min-width: 60px;
}

.badge-content {
    text-align: center;
    color: var(--white);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.badge-50 {
    display: block;
    font-size: 18px;
    font-weight: bold;
    color: var(--lle-gold);
    line-height: 1;
}

.badge-anos {
    display: block;
    font-size: 10px;
    color: var(--white);
    margin-top: -2px;
    line-height: 1;
}

.linha-etica-logo {
    display: flex;
    align-items: center;
}

.house-shield-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 40px;
}

.linha-etica-icon {
    max-height: 35px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
}

.linha-etica-text {
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 40px;
}

.linha-etica-title {
    font-size: 18px;
    font-weight: bold;
    color: var(--black);
    margin-bottom: 2px;
    line-height: 1.2;
}

.disque-denuncia {
    font-size: 12px;
    color: var(--black);
    font-weight: normal;
    line-height: 1.2;
}

/* Main Content */
.main-content {
    flex: 1;
    padding: 40px 0;
}

/* Anonymity Section */
.anonymity-section {
    margin-bottom: 50px;
}

.anonymity-title {
    color: var(--black);
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-align: center;
    margin-bottom: 32px;
}

.anonymity-image-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.anonymity-image {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
}

/* Video Section (Commented out) */
.video-section {
    margin-bottom: 50px;
}

.video-title {
    font-size: 28px;
    font-weight: bold;
    color: var(--black);
    text-align: center;
    margin-bottom: 30px;
    line-height: 1.3;
}

.video-container {
    max-width: 800px;
    margin: 0 auto;
}

.video-placeholder {
    background-color: var(--light-purple);
    border-radius: 12px;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
}

.video-placeholder:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.play-button {
    width: 80px;
    height: 80px;
    background-color: var(--gray);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 24px;
    transition: all 0.3s ease;
}

.play-button:hover {
    background-color: var(--black);
    transform: scale(1.1);
}

/* Report Section */
.report-section {
    max-width: 800px;
    margin: 0 auto;
    padding-top: 24px;
}

.report-title {
    color: var(--black);
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-align: center;
    margin-bottom: 12px;
}

.report-cards {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.report-card {
    width: 347px;
    height: 138px;
    flex-shrink: 0;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    background: var(--white);
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
    cursor: pointer;
    transition: all 0.3s ease;
    margin: 0 auto;
}

.report-card:hover {
    transform: translateY(-2px);
    box-shadow: 0px 6px 8px 0px rgba(0, 0, 0, 0.3);
}

.report-card.whatsapp {
    background: var(--light-blue);
}

.card-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    padding: 20px;
}

.card-text {
    flex: 1;
    margin-right: 16px;
}

.card-title {
    color: var(--black);
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin-bottom: 8px;
}

.card-description {
    color: var(--black);
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.card-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    margin-left: 20px;
}

.card-icon-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Footer */
.footer {
    background-color: var(--dark-blue);
    color: var(--white);
    padding: 20px 0;
    margin-top: 32px;
}

.footer-text {
    color: var(--footer-text);
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin-bottom: 5px;
    opacity: 0.9;
}

.footer-text:last-child {
    margin-bottom: 0;
}

.footer-left {
    text-align: left;
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .header {
        padding: 15px 0;
    }
    
    .logo-lle {
        height: 40px;
    }
    
    .linha-etica-logo {
        height: 40px;
    }

    .house-shield-icon {
        height: 30px;
    }
    
    .linha-etica-text {
        height: 30px;
    }
    
    .badge-50-anos {
        padding: 6px 10px;
        margin-left: 10px;
        height: 30px;
        min-width: 50px;
    }
    
    .badge-50 {
        font-size: 16px;
    }
    
    .badge-anos {
        font-size: 9px;
    }
    
    .linha-etica-title {
        font-size: 16px;
    }
    
    .disque-denuncia {
        font-size: 11px;
    }
    
    .anonymity-title,
    .report-title {
        font-size: 18px;
        margin-bottom: 20px;
    }
    
    .report-section {
        padding-top: 20px;
    }
    
    .report-cards {
        gap: 20px;
    }
    
    .report-card {
        width: 100%;
        max-width: 347px;
        height: 120px;
    }
    
    .card-content {
        padding: 15px;
    }
    
    .card-title {
        font-size: 14px;
    }
    
    .card-description {
        font-size: 14px;
    }
    
    .card-icon {
        width: 50px;
        height: 50px;
        margin-left: 15px;
    }
    
    .footer-text {
        font-size: 11px;
    }
}

@media (max-width: 480px) {
    .container-fluid {
        padding-left: 15px;
        padding-right: 15px;
    }
    
    .logo-lle {
        height: 35px;
    }
    
    .linha-etica-logo {
        height: 35px;
    }
    
    .house-shield-icon {
        height: 25px;
    }
    
    .linha-etica-text {
        height: 25px;
    }
    
    .badge-50-anos {
        padding: 5px 8px;
        margin-left: 8px;
        height: 25px;
        min-width: 40px;
    }
    
    .badge-50 {
        font-size: 14px;
    }
    
    .badge-anos {
        font-size: 8px;
    }
    
    .linha-etica-logo {
        gap: 8px;
    }
    
    .linha-etica-title {
        font-size: 14px;
    }
    
    .disque-denuncia {
        font-size: 10px;
    }
    
    .anonymity-title,
    .report-title {
        font-size: 16px;
        margin-bottom: 16px;
    }
    
    .report-section {
        padding-top: 16px;
    }
    
    .report-cards {
        gap: 16px;
    }
    
    .report-card {
        width: 100%;
        max-width: 320px;
        height: 110px;
    }
    
    .card-content {
        padding: 12px;
    }
    
    .card-title {
        font-size: 13px;
    }
    
    .card-description {
        font-size: 13px;
    }
    
    .card-icon {
        width: 45px;
        height: 45px;
        margin-left: 12px;
    }
}

/* PWA Specific Styles */
@media (display-mode: standalone) {
    body {
        padding-top: 0;
    }
    
    .header {
        padding-top: env(safe-area-inset-top);
    }
}

/* Loading Animation */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255,255,255,.3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Focus Styles for Accessibility */
.report-card:focus {
    outline: 3px solid var(--phone-blue);
    outline-offset: 2px;
}

.anonymity-image:focus {
    outline: 3px solid var(--phone-blue);
    outline-offset: 2px;
}

/* Print Styles */
@media print {
    .report-card,
    .anonymity-image {
        box-shadow: none;
        border: 1px solid #ddd;
    }
    
    .footer {
        background-color: #f5f5f5;
        color: #333;
    }
} 


/* css ligacao */
.test-info {
    background: #e8f4fd;
    padding: 20px;
    border-radius: 5px;
    margin-bottom: 20px;
    border-left: 4px solid #2196F3;
}
.test-info h3 {
    margin-top: 0;
    color: #1976D2;
}
.test-info ul {
    margin: 10px 0;
    padding-left: 20px;
}
.test-info li {
    margin: 5px 0;
}
.status {
    text-align: center;
    background: #e8f5e8;
    border-radius: 5px;
    color: #2e7d32;
    font-weight: bold;
}
body #position-button{
    position: fixed !important;
    top: -1000% !important;
    left: -1000% !important;
    right: auto !important;
}
body #position-button *{
    position: fixed !important;
    top: -1000% !important;
    left: -1000% !important;
    right: auto !important;
}