body {
    font-family: Arial, sans-serif;
    background-color: #f5f7fa;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

form {
    background: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    max-width: 400px;
    width: 100%;
    box-sizing: border-box;
    margin: auto;
}

header {
    background-color: #044c3d;
    width: 100%;
    color: white;
    padding: 10px;
    text-align: center;
}

h1 {
    margin: 0;
    padding: 10px 15px;
}

label {
    display: block;
    margin-top: 15px;
    font-weight: bold;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="number"] {
    width: 100%;
    padding: 10px;
    font-size: 16px;
    margin-top: 5px;
    border-radius: 8px;
    border: 1px solid #ccc;
    box-sizing: border-box;
}

button {
    width: 100%;
    padding: 12px;
    font-size: 16px;
    margin-top: 20px;
    border-radius: 8px;
    border: none;
    background-color: #044c3d;
    color: white;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s;
}

button:hover:enabled {
    background-color: #033026;
}

button:disabled {
    background-color: #888;
    cursor: not-allowed;
}

#resultado {
    max-width: 600px;
    width: 90%;
    margin-top: 30px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 15px;
}

.caixinha {
    background: white;
    border: 2px solid #044c3d;
    border-radius: 10px;
    padding: 15px;
    text-align: center;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.caixinha strong {
    font-size: 18px;
    margin-bottom: 10px;
    display: block;
}

.checkbox-container {
    margin-top: 15px;
    display: flex;
    align-items: center;
    font-size: 14px;
}

.checkbox-container input {
    margin-right: 8px;
}

.logo {
    max-height: 100px;
    margin-bottom: 10px;
}

#videoModal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    color: white;
    z-index: 99999;
}

.video-title {
    font-size: 24px;
    margin-bottom: 20px;
    text-align: center;
    max-width: 80%;
}

.video-container {
    width: 360px;
    max-width: 90%;
    border-radius: 12px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.7);
    position: relative;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 50%;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10;
}

.play-button::after {
    content: '';
    display: block;
    width: 0;
    height: 0;
    border-top: 20px solid transparent;
    border-bottom: 20px solid transparent;
    border-left: 30px solid #044c3d;
    margin-left: 5px;
}

.video-wrapper {
    position: relative;
    display: inline-block;
}

.radio-container {
    margin-top: 5px;
    display: flex;
    gap: 20px;
}

.radio-container input {
    margin-right: 5px;
}

.radio-container label {
    margin-top: 0;
    font-weight: normal;
}