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

body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #f9f9f9;
    background: url('./assets/imgs/bg.webp');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    min-height: 100vh;
    width: 100%;
    overflow-x: hidden;
}

header {
    display: flex;
    align-items: center;
    justify-content: center;

    padding: 15px;
    background-color: white;
}

header h2 {
    margin: 0 0 0 10px;
    font-size: 24px;
    color: #49C858;
}

header img {
    height: 30px;
}

.acesso-liberado {
    background-color: #25D366;
    color: white;
    font-weight: bold;
    padding: 8px 20px;
    border-radius: 20px;
    display: inline-block;
    margin: 15px auto;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.container {
    text-align: center;
    padding: 20px;
    max-width: 100%;
    margin: 0 auto;
}

/* Design responsivo para desktop mantendo aparência mobile */
@media (min-width: 768px) {
    .container {
        max-width: 480px;
        padding: 30px 20px;
    }
}

.container h2 {
    font-size: 30px;
    color: #333;
}

h2 {
    margin-top: 0;
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
    display: inline-block;
}

ul li {
    margin: 5px 0;
    position: relative;
    padding-left: 25px;
    font-size: 20px;
    font-weight: 800;
}

ul li::before {
    content: "⭘";
    position: absolute;
    left: 0;
    color: red;
    font-weight: bold;
}

.fotos-container {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 5px 0;
}

.logo {
    width: 350px;
    margin: 5px auto;
    border-radius: 20px;
}

.foto {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-color: #ddd;
    background-size: cover;
    background-position: center;
    border: 2px solid white;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);
}

.form {
    background: black;
    padding: 20px;
    border-radius: 25px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 20px auto;
    width: 95%;
    max-width: 100%;
    color: white;
}

/* Design responsivo para desktop mantendo aparência mobile */
@media (min-width: 768px) {
    .form {
        max-width: 440px;
        padding: 25px;
        margin: 30px auto;
    }
}

.form label {
    font-size: 22px;
    margin-bottom: 10px;
    font-weight: bolder;
}

.form input {
    width: 100%;
    padding: 10px;
    margin: 25px 0;
    border-radius: 8px;
    border: none;
    font-size: 16px;
}

.form button {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 50%, #25D366 100%);
    color: white;
    border: none;
    padding: 20px;
    font-size: 22px;
    font-weight: bold;
    border-radius: 12px;
    cursor: pointer;
    width: 100%;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 8px 25px rgba(37, 211, 102, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3),
        inset 0 -1px 0 rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.form button::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent,
        rgba(255, 255, 255, 0.1),
        transparent
    );
    transform: rotate(45deg);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    50% { transform: translateX(100%) translateY(100%) rotate(45deg); }
    100% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
}

.form button:hover {
    background: linear-gradient(135deg, #128C7E 0%, #25D366 50%, #128C7E 100%);
    transform: translateY(-2px);
    box-shadow: 
        0 12px 35px rgba(37, 211, 102, 0.6),
        inset 0 1px 0 rgba(255, 255, 255, 0.4),
        inset 0 -1px 0 rgba(0, 0, 0, 0.2);
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    animation: fadeIn 0.3s ease;
}

.modal-content {
    position: relative;
    background: white;
    margin: 0 auto;
    padding: 0;
    border-radius: 15px;
    width: 90%;
    max-width: 500px;
    animation: slideIn 0.5s ease;
}

.modal-header h2 {
    color: #333;
    font-size: 20px;
    font-weight: bold;
    letter-spacing: 2px;
}

.modal-body {
    padding: 30px;
    text-align: center;
}

.photo-container {
    margin-bottom: 25px;
}

.photo-container img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    border: 2px solid #D51000;
    box-shadow: 0 0 20px rgba(255, 68, 68, 0.4);
    animation: pulse 2s infinite;
}

.phone-display {
    margin-bottom: 30px;
    font-size: 22px;
    font-weight: 500;
    color: black;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.progress-container {
    margin-bottom: 20px;
}

.progress-bar {
    width: 100%;
    height: 20px;
    background: #333;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.5);
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #1FD360, #108D81);
    width: 0%;
    transition: width 0.1s ease;
    border-top-left-radius: 13px;
    animation: progressGlow 1s infinite alternate;
}

.progress-text {
    margin-top: 10px;
    font-size: 18px;
    font-weight: bold;
    color: #ff4444;
}

.gif-container {
    text-align: center;
}

.gif-container img {
    border-radius: 10px;
}

.gif-container p {
    margin-top: 15px;
    font-size: 24px;
    font-weight: bold;
    color: #44ff44;
    text-transform: uppercase;
    letter-spacing: 2px;
    animation: blink 1s infinite;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideIn {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

@keyframes progressGlow {
    0% {
        box-shadow: 0 0 10px #44ff44;
    }

    100% {
        box-shadow: 0 0 20px #44ff44;
    }
}

@keyframes blink {

    0%,
    50% {
        opacity: 1;
    }

    51%,
    100% {
        opacity: 0.5;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .modal-content {
        width: 95%;
        margin: 10% auto;
    }

    .photo-container img {
        width: 150px;
        height: 150px;
    }

    .modal-header h2 {
        font-size: 20px;
    }

    .phone-display {
        font-size: 18px;
    }
}

/* Caixa Informativa */
.info-box {
    background-color: white;
    border-radius: 15px;
    padding: 25px;
    margin: 30px 20px;
    max-width: 100%;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid #e0e0e0;
}

/* Design responsivo para desktop mantendo aparência mobile */
@media (min-width: 768px) {
    .info-box {
        max-width: 440px;
        margin: 40px auto;
        padding: 30px;
    }
}

.info-content {
    color: #333;
}

.info-number {
    font-size: 48px;
    font-weight: bold;
    color: #dc3545;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.info-title {
    font-size: 24px;
    font-weight: bold;
    color: white;
    margin-bottom: 15px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.info-subtitle {
    font-size: 16px;
    color: #888;
    font-weight: normal;
}

/* Rodapé */
.footer {
    background-color: #2c2c2c;
    color: #cccccc;
    padding: 40px 20px;
    margin-top: 60px;
    text-align: center;
}

.footer-content {
    max-width: 1000px;
    margin: 0 auto;
}

.footer-copyright {
    font-size: 18px;
    font-weight: bold;
    color: white;
    margin-bottom: 20px;
}

.footer-disclaimer {
    font-size: 12px;
    line-height: 1.6;
    color: #aaaaaa;
    text-align: justify;
}

.footer-link {
    color: #25D366;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #128C7E;
    text-decoration: underline;
}

/* Responsividade */
@media (max-width: 768px) {
    .info-box {
        margin: 30px 20px;
        padding: 25px;
    }
    
    .info-number {
        font-size: 36px;
    }
    
    .info-title {
        font-size: 20px;
    }
    
    .footer {
        padding: 30px 15px;
    }
    
    .footer-disclaimer {
        text-align: left;
    }
}

