/* Reset e configurações base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #f0f0f0;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.container {
    width: 100%;
    max-width: 400px;
    padding: 0;
}

/* Seção Principal */
.main-section {
    background: white;
    border-radius: 20px;
    padding: 70px 40px 40px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    text-align: center;
    position: relative;
    border-top: 4px solid #e91e63;
}

.icon-container {
    position: absolute;
    top: -35px;
    left: 50%;
    transform: translateX(-50%);
}

.icon-circle {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #ff69b4 0%, #e91e63 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(233, 30, 99, 0.3);
    border: 4px solid white;
    position: relative;
}

.support-icon {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff69b4 0%, #e91e63 100%);
}

/* Avatar da Atendente */
.attendant-avatar {
    width: 45px;
    height: 50px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hair {
    width: 35px;
    height: 20px;
    background: #ffd54f;
    border-radius: 20px 20px 10px 10px;
    position: relative;
    margin-bottom: -5px;
}

.hair::before {
    content: '';
    position: absolute;
    top: 8px;
    left: -3px;
    width: 15px;
    height: 15px;
    background: #ffd54f;
    border-radius: 50%;
}

.hair::after {
    content: '';
    position: absolute;
    top: 8px;
    right: -3px;
    width: 15px;
    height: 15px;
    background: #ffd54f;
    border-radius: 50%;
}

.face {
    width: 28px;
    height: 28px;
    background: #ffcc9c;
    border-radius: 50%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.eyes {
    display: flex;
    gap: 6px;
    margin-top: -2px;
}

.eye {
    width: 3px;
    height: 3px;
    background: #333;
    border-radius: 50%;
}

.shirt {
    width: 32px;
    height: 18px;
    background: #42a5f5;
    border-radius: 0 0 8px 8px;
    margin-top: -2px;
    position: relative;
}

.shirt::before {
    content: '';
    position: absolute;
    top: 3px;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 8px;
    background: #1976d2;
    border-radius: 1px;
}

h1 {
    font-size: 26px;
    font-weight: 600;
    color: #333;
    margin: 30px 0 20px;
    line-height: 1.3;
}

.subtitle {
    color: #666;
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 40px;
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
}

/* Botões */
.buttons-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
}

.btn-primary {
    background: linear-gradient(135deg, #e91e63 0%, #ad1457 100%);
    color: white;
    border: none;
    padding: 18px 30px;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(233, 30, 99, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(233, 30, 99, 0.4);
}

.btn-secondary {
    background: rgba(233, 30, 99, 0.05);
    color: #e91e63;
    border: 2px solid rgba(233, 30, 99, 0.2);
    padding: 16px 30px;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: rgba(233, 30, 99, 0.1);
    border-color: rgba(233, 30, 99, 0.4);
    transform: translateY(-1px);
}

/* Links do Footer */
.footer-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.footer-links a {
    color: #e91e63;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #ad1457;
    text-decoration: underline;
}

.footer-links span {
    color: #ddd;
}

/* Modais */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    animation: fadeIn 0.3s ease;
}

.modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal-content {
    background: white;
    border-radius: 15px;
    width: 90%;
    max-width: 500px;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.3s ease;
}

.modal-header {
    padding: 25px 30px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #eee;
    padding-bottom: 20px;
    margin-bottom: 25px;
}

.modal-header h2 {
    color: #e91e63;
    font-size: 24px;
    font-weight: 600;
}

.close-btn {
    background: none;
    border: none;
    font-size: 30px;
    color: #999;
    cursor: pointer;
    padding: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.close-btn:hover {
    background: #f5f5f5;
    color: #333;
}

.modal-body {
    padding: 0 30px;
    color: #333;
    line-height: 1.6;
}

.modal-body p {
    margin-bottom: 15px;
}

.modal-body h4 {
    color: #e91e63;
    margin: 20px 0 10px;
    font-weight: 600;
}

/* Seções de informação do modal Saiba Mais */
.info-section {
    margin-bottom: 25px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 10px;
    border-left: 4px solid #e91e63;
}

.info-section h3 {
    color: #e91e63;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.info-section h3 i {
    font-size: 12px;
}

.info-section p {
    color: #666;
    margin: 0;
}

.modal-footer {
    padding: 25px 30px 30px;
    text-align: center;
}

.btn-close {
    background: #e91e63;
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-close:hover {
    background: #ad1457;
    transform: translateY(-1px);
}

/* Animações */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsividade */
@media (max-width: 480px) {
    .container {
        padding: 10px;
    }

    .main-section {
        padding: 60px 25px 30px;
    }

    .icon-circle {
        width: 70px;
        height: 70px;
        top: -30px;
    }

    .support-icon i {
        font-size: 28px;
    }

    h1 {
        font-size: 22px;
    }

    .subtitle {
        font-size: 15px;
    }

    .btn-primary,
    .btn-secondary {
        padding: 16px 25px;
        font-size: 15px;
    }

    .modal-content {
        width: 95%;
        margin: 10px;
    }

    .modal-header,
    .modal-body,
    .modal-footer {
        padding-left: 20px;
        padding-right: 20px;
    }

    .info-section {
        padding: 15px;
    }
}

/* Scroll personalizado para os modais */
.modal-content::-webkit-scrollbar {
    width: 6px;
}

.modal-content::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.modal-content::-webkit-scrollbar-thumb {
    background: #e91e63;
    border-radius: 10px;
}

.modal-content::-webkit-scrollbar-thumb:hover {
    background: #ad1457;
}