@font-face {
    font-family: 'Roboto';
    src: url('JTUSjIg1_i6t8kCHKm459WlhyyTh89Y.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
}

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

body {
    font-family: 'Roboto', Arial, sans-serif;
    background-color: #f8f9fa;
    color: #333;
    line-height: 1.4;
}

.container {
    max-width: 375px;
    margin: 0 auto;
    padding: 20px 25px;
    background-color: #f8f9fa;
    min-height: 100vh;
    position: relative;
}

.logo-container {
    text-align: center;
    margin-bottom: 8px;
    padding: 15px 0 0 0;
}

.logo {
    width: 96px;
    height: 96px;
}

.main-title {
    font-size: 32px;
    font-weight: 1000;
    font-family: "Montserrat", sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Noto Color Emoji", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    text-align: center;
    margin-bottom: 15px;
    color: #2c2c2c;
    line-height: 1.1;
    letter-spacing: -0.5px;
    text-shadow: 0.5px 0.5px 0px rgba(44, 44, 44, 0.3);
}

.highlight {
    color: #4CAF50;
    font-weight: 900;
}

.subtitle {
    font-size: 14px;
    color: #000000;
    text-align: center;
    margin-bottom: 20px;
    font-style: italic;
    font-weight: 400;
}

wistia-player {
    margin: 20px 0;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    max-width: 240px;
    margin-left: auto;
    margin-right: auto;
    display: block;
}



.continue-btn {
    width: 110%;
    background-color: #4CAF50;
    color: white;
    border: none;
    padding: 16px 30px;
    font-size: 20px;
    font-weight: 600;
    border-radius: 15px;
    cursor: pointer;
    margin: 20px -5%;
    font-family: 'Roboto', Arial, sans-serif;
    text-transform: none;
}

.continue-btn:hover {
    background-color: #45a049;
}

.footer-text {
    font-size: 13px;
    color: #999;
    text-align: center;
    line-height: 1.5;
    margin-top: 25px;
    padding: 0 10px;
}

.link {
    color: #666;
    text-decoration: underline;
    font-weight: 500;
}

/* Responsividade para mobile */
@media (max-width: 375px) {
    .container {
        padding: 15px 20px;
    }
    
    .main-title {
        font-size: 28px;
    }
    
    .subtitle {
        font-size: 16px;
    }
    

    
    .continue-btn {
        font-size: 18px;
        padding: 18px;
    }
}

