/* 
 * Apetit Natural Survey - CSS
 * Estilo Typeform Responsivo com Cores da Marca
 */

:root {
    --apetit-orange: #E87640;
    --apetit-green-dark: #3D6E3C;
    --apetit-green-medium: #5A8F59;
    --apetit-green-light: #7CAA7B;
    --apetit-white: #FFFFFF;
    --apetit-gray-light: #F4F4F4;
    --apetit-gray-medium: #E0E0E0;
    --apetit-gray-dark: #666666;
    --apetit-shadow: rgba(0, 0, 0, 0.1);
}

/* Reset e Base */
.apetit-survey-wrapper {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    max-width: 100%;
    margin: 0 auto;
    padding: 0;
    background: linear-gradient(135deg, var(--apetit-green-dark) 0%, var(--apetit-green-medium) 100%);
    min-height: 100vh;
    position: relative;
}

/* Logo */
.apetit-survey-logo {
    text-align: center;
    padding: 30px 20px 20px;
    position: relative;
    z-index: 10;
}

.apetit-survey-logo img {
    max-width: 150px;
    height: auto;
    filter: drop-shadow(0 2px 8px rgba(0,0,0,0.2));
}

/* Barra de Progresso */
.apetit-progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: rgba(255, 255, 255, 0.3);
    z-index: 1000;
}

.apetit-progress-fill {
    height: 100%;
    background: var(--apetit-orange);
    transition: width 0.4s ease;
    width: 0%;
    box-shadow: 0 0 10px rgba(232, 118, 64, 0.5);
}

.apetit-progress-text {
    position: fixed;
    top: 10px;
    right: 20px;
    color: white;
    font-size: 14px;
    font-weight: bold;
    z-index: 1001;
    background: rgba(0,0,0,0.3);
    padding: 5px 12px;
    border-radius: 20px;
}

/* Formulário */
.apetit-survey-form {
    position: relative;
    min-height: calc(100vh - 200px);
}

/* Slides */
.apetit-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transform: translateX(50px);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 20px;
    box-sizing: border-box;
}

.apetit-slide.active {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
    position: relative;
}

.apetit-slide.exiting {
    transform: translateX(-50px);
}

/* Conteúdo do Slide */
.apetit-slide-content {
    max-width: 700px;
    margin: 0 auto;
    background: var(--apetit-white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    animation: slideIn 0.5s ease-out;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Telas Especiais */
.welcome-screen,
.thank-you-screen {
    text-align: center;
    padding: 60px 40px;
}

.thank-you-animation {
    margin-bottom: 30px;
}

.emoji-large {
    font-size: 80px;
    display: inline-block;
    animation: bounce 1s ease infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

/* Títulos e Textos */
.apetit-title {
    font-size: 32px;
    font-weight: bold;
    color: var(--apetit-green-dark);
    margin: 0 0 15px 0;
    line-height: 1.2;
}

.apetit-subtitle {
    font-size: 24px;
    color: var(--apetit-orange);
    margin: 0 0 25px 0;
}

.apetit-description {
    font-size: 18px;
    color: var(--apetit-gray-dark);
    line-height: 1.6;
    margin-bottom: 30px;
}

.promo-info {
    background: var(--apetit-gray-light);
    padding: 20px;
    border-radius: 8px;
    margin: 30px 0;
    border-left: 4px solid var(--apetit-orange);
}

.promo-info p {
    margin: 10px 0;
    font-size: 16px;
    color: var(--apetit-gray-dark);
}

.thank-you-info {
    background: #E8F5E9;
    padding: 25px;
    border-radius: 8px;
    margin: 30px 0;
    border: 2px solid var(--apetit-green-medium);
}

.thank-you-info p {
    margin: 12px 0;
    font-size: 16px;
    color: var(--apetit-green-dark);
}

/* Pergunta */
.apetit-question {
    display: block;
    font-size: 24px;
    font-weight: 600;
    color: var(--apetit-green-dark);
    margin-bottom: 30px;
    line-height: 1.4;
}

.question-number {
    display: inline-block;
    background: var(--apetit-orange);
    color: white;
    width: 36px;
    height: 36px;
    line-height: 36px;
    text-align: center;
    border-radius: 50%;
    margin-right: 12px;
    font-size: 18px;
}

.apetit-help-text {
    font-size: 14px;
    color: var(--apetit-gray-dark);
    margin-top: 10px;
    font-style: italic;
}

.apetit-small-text {
    font-size: 14px;
    color: var(--apetit-gray-dark);
    margin-top: 20px;
}

.apetit-small-text a {
    color: var(--apetit-orange);
    text-decoration: underline;
}

/* Inputs */
.apetit-input,
.apetit-textarea {
    width: 100%;
    padding: 16px 20px;
    font-size: 18px;
    border: 2px solid var(--apetit-gray-medium);
    border-radius: 8px;
    box-sizing: border-box;
    transition: all 0.3s ease;
    font-family: inherit;
}

.apetit-input:focus,
.apetit-textarea:focus {
    outline: none;
    border-color: var(--apetit-orange);
    box-shadow: 0 0 0 3px rgba(232, 118, 64, 0.1);
}

.apetit-textarea {
    resize: vertical;
    min-height: 150px;
}

/* Opções de Múltipla Escolha */
.apetit-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.apetit-option {
    position: relative;
    display: block;
    padding: 18px 20px;
    background: var(--apetit-gray-light);
    border: 2px solid transparent;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.apetit-option:hover {
    background: #E8F5E9;
    border-color: var(--apetit-green-medium);
}

.apetit-option input[type="radio"] {
    position: absolute;
    opacity: 0;
}

.apetit-option input[type="radio"]:checked + span {
    color: var(--apetit-green-dark);
    font-weight: 600;
}

.apetit-option input[type="radio"]:checked ~ * {
    background: var(--apetit-green-light);
    border-color: var(--apetit-green-dark);
    color: white;
}

.apetit-option span {
    display: block;
    font-size: 16px;
    color: var(--apetit-gray-dark);
    padding-left: 30px;
    position: relative;
}

.apetit-option span:before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    border: 2px solid var(--apetit-gray-medium);
    border-radius: 50%;
    background: white;
}

.apetit-option input[type="radio"]:checked + span:before {
    border-color: var(--apetit-orange);
    background: var(--apetit-orange);
    box-shadow: inset 0 0 0 3px white;
}

/* Checkbox Grid Layout */
.apetit-checkbox-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

@media (max-width: 768px) {
    .apetit-checkbox-grid {
        grid-template-columns: 1fr;
    }
}

/* Checkbox Styles */
.apetit-checkbox {
    display: flex;
    align-items: center;
    gap: 12px;
}

.apetit-checkbox input[type="checkbox"] {
    position: absolute;
    opacity: 0;
}

.checkbox-mark {
    width: 22px;
    height: 22px;
    min-width: 22px;
    border: 2px solid var(--apetit-gray-medium);
    border-radius: 4px;
    position: relative;
    transition: all 0.3s ease;
    background: white;
}

.apetit-checkbox input[type="checkbox"]:checked ~ .checkbox-mark {
    background: var(--apetit-orange);
    border-color: var(--apetit-orange);
}

.apetit-checkbox input[type="checkbox"]:checked ~ .checkbox-mark::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 16px;
    font-weight: bold;
    line-height: 1;
}

.apetit-checkbox input[type="checkbox"]:checked ~ span:not(.checkbox-mark) {
    color: var(--apetit-green-dark);
    font-weight: 600;
}

.apetit-checkbox:has(input[type="checkbox"]:checked) {
    background: #E8F5E9;
    border-color: var(--apetit-green-dark);
}

/* Escala Likert */
.apetit-likert {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    margin: 30px 0;
}

.apetit-likert-option {
    flex: 1;
    text-align: center;
    cursor: pointer;
}

.apetit-likert-option input[type="radio"] {
    display: none;
}

.apetit-likert-option span {
    display: block;
    padding: 20px 10px;
    background: var(--apetit-gray-light);
    border: 2px solid transparent;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-size: 14px;
    line-height: 1.4;
}

.apetit-likert-option:hover span {
    background: #E8F5E9;
    border-color: var(--apetit-green-medium);
}

.apetit-likert-option input[type="radio"]:checked + span {
    background: var(--apetit-orange);
    border-color: var(--apetit-orange);
    color: white;
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(232, 118, 64, 0.3);
}

/* Escala de Rating 0-10 */
.apetit-rating-scale {
    display: flex;
    justify-content: space-between;
    gap: 8px;
    margin: 30px 0;
    flex-wrap: wrap;
}

.apetit-rating-option {
    flex: 0 0 calc(20% - 8px);
    text-align: center;
    cursor: pointer;
}

.apetit-rating-option input[type="radio"] {
    display: none;
}

.apetit-rating-option span {
    display: block;
    padding: 16px 10px;
    background: var(--apetit-gray-light);
    border: 2px solid transparent;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-size: 20px;
    font-weight: bold;
}

.apetit-rating-option:hover span {
    background: #E8F5E9;
    border-color: var(--apetit-green-medium);
}

.apetit-rating-option input[type="radio"]:checked + span {
    background: var(--apetit-orange);
    border-color: var(--apetit-orange);
    color: white;
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(232, 118, 64, 0.3);
}

/* Botões */
.apetit-btn {
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
    text-decoration: none;
    text-align: center;
}

.apetit-btn-start {
    background: var(--apetit-orange);
    color: white;
    font-size: 18px;
    padding: 18px 40px;
    box-shadow: 0 4px 12px rgba(232, 118, 64, 0.3);
}

.apetit-btn-start:hover {
    background: #D96835;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(232, 118, 64, 0.4);
}

.apetit-btn-next {
    background: var(--apetit-green-dark);
    color: white;
}

.apetit-btn-next:hover {
    background: var(--apetit-green-medium);
    transform: translateY(-2px);
}

.apetit-btn-back {
    background: var(--apetit-gray-medium);
    color: var(--apetit-gray-dark);
}

.apetit-btn-back:hover {
    background: var(--apetit-gray-dark);
    color: white;
}

.apetit-btn-submit {
    background: var(--apetit-orange);
    color: white;
    font-size: 18px;
    padding: 18px 40px;
    box-shadow: 0 4px 12px rgba(232, 118, 64, 0.3);
}

.apetit-btn-submit:hover {
    background: #D96835;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(232, 118, 64, 0.4);
}

.apetit-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.apetit-nav-buttons {
    display: flex;
    gap: 15px;
    margin-top: 30px;
    justify-content: space-between;
}

/* Social Links */
.social-links {
    margin-top: 40px;
}

.social-links p {
    margin-bottom: 15px;
    font-size: 16px;
    color: var(--apetit-gray-dark);
}

.social-btn {
    display: inline-block;
    margin: 0 10px;
    padding: 12px 24px;
    background: var(--apetit-gray-light);
    color: var(--apetit-gray-dark);
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-btn:hover {
    background: var(--apetit-green-light);
    color: white;
    transform: translateY(-2px);
}

/* Modal Regulamento */
.apetit-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.6);
    animation: fadeIn 0.3s;
}

.apetit-modal.show {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.apetit-modal-content {
    background-color: white;
    margin: 5% auto;
    padding: 40px;
    border-radius: 12px;
    width: 90%;
    max-width: 800px;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    animation: slideDown 0.3s;
}

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

.apetit-modal-close {
    color: var(--apetit-gray-dark);
    float: right;
    font-size: 32px;
    font-weight: bold;
    cursor: pointer;
    line-height: 1;
}

.apetit-modal-close:hover {
    color: var(--apetit-orange);
}

.apetit-modal-content h2 {
    color: var(--apetit-green-dark);
    margin-bottom: 10px;
}

.apetit-modal-content h3 {
    color: var(--apetit-orange);
    margin-bottom: 30px;
}

.regulamento-content {
    margin: 30px 0;
}

.regulamento-section {
    margin-bottom: 30px;
}

.regulamento-section h4 {
    color: var(--apetit-green-dark);
    margin-bottom: 15px;
    font-size: 18px;
}

.regulamento-section p {
    margin-bottom: 12px;
    line-height: 1.6;
    color: var(--apetit-gray-dark);
}

.regulamento-footer {
    background: var(--apetit-gray-light);
    padding: 20px;
    border-radius: 8px;
    margin-top: 30px;
    text-align: center;
}

.regulamento-footer p {
    margin: 8px 0;
    color: var(--apetit-gray-dark);
}

/* Loading e Mensagens */
.apetit-loading {
    text-align: center;
    padding: 20px;
    color: var(--apetit-orange);
    font-size: 18px;
}

.apetit-error {
    background: #ffebee;
    color: #c62828;
    padding: 15px;
    border-radius: 8px;
    margin: 20px 0;
    border-left: 4px solid #c62828;
}

.apetit-success {
    background: #e8f5e9;
    color: var(--apetit-green-dark);
    padding: 15px;
    border-radius: 8px;
    margin: 20px 0;
    border-left: 4px solid var(--apetit-green-dark);
}

/* RESPONSIVO */

/* Tablets */
@media (max-width: 768px) {
    .apetit-survey-logo img {
        max-width: 120px;
    }
    
    .apetit-slide-content {
        padding: 30px 25px;
    }
    
    .apetit-title {
        font-size: 26px;
    }
    
    .apetit-subtitle {
        font-size: 20px;
    }
    
    .apetit-question {
        font-size: 20px;
    }
    
    .apetit-likert {
        gap: 8px;
    }
    
    .apetit-likert-option span {
        padding: 15px 8px;
        font-size: 12px;
    }
    
    .apetit-rating-option {
        flex: 0 0 calc(20% - 6px);
    }
    
    .apetit-rating-option span {
        padding: 12px 8px;
        font-size: 16px;
    }
    
    .apetit-modal-content {
        padding: 30px 20px;
        margin: 10% auto;
        width: 95%;
    }
}

/* Mobile */
@media (max-width: 480px) {
    .apetit-survey-logo {
        padding: 20px 15px 15px;
    }
    
    .apetit-survey-logo img {
        max-width: 100px;
    }
    
    .apetit-progress-text {
        top: 8px;
        right: 10px;
        font-size: 12px;
        padding: 4px 10px;
    }
    
    .apetit-slide {
        padding: 15px 10px;
    }
    
    .apetit-slide-content {
        padding: 25px 20px;
    }
    
    .welcome-screen,
    .thank-you-screen {
        padding: 30px 20px;
    }
    
    .apetit-title {
        font-size: 22px;
    }
    
    .apetit-subtitle {
        font-size: 18px;
    }
    
    .apetit-description {
        font-size: 16px;
    }
    
    .apetit-question {
        font-size: 18px;
        margin-bottom: 25px;
    }
    
    .question-number {
        width: 32px;
        height: 32px;
        line-height: 32px;
        font-size: 16px;
    }
    
    .apetit-input,
    .apetit-textarea {
        padding: 14px 16px;
        font-size: 16px;
    }
    
    .apetit-option {
        padding: 16px 18px;
    }
    
    .apetit-option span {
        font-size: 15px;
        padding-left: 28px;
    }
    
    .apetit-likert {
        flex-wrap: wrap;
        gap: 10px;
    }
    
    .apetit-likert-option {
        flex: 0 0 calc(33.333% - 8px);
    }
    
    .apetit-likert-option span {
        padding: 12px 6px;
        font-size: 11px;
    }
    
    .apetit-rating-scale {
        gap: 6px;
    }
    
    .apetit-rating-option {
        flex: 0 0 calc(20% - 6px);
    }
    
    .apetit-rating-option span {
        padding: 10px 6px;
        font-size: 14px;
    }
    
    .apetit-btn {
        padding: 14px 24px;
        font-size: 15px;
    }
    
    .apetit-btn-start,
    .apetit-btn-submit {
        font-size: 16px;
        padding: 16px 32px;
    }
    
    .apetit-nav-buttons {
        flex-direction: column-reverse;
        gap: 10px;
    }
    
    .apetit-nav-buttons .apetit-btn {
        width: 100%;
    }
    
    .social-btn {
        display: block;
        margin: 10px 0;
    }
    
    .emoji-large {
        font-size: 60px;
    }
    
    .promo-info,
    .thank-you-info {
        padding: 18px;
    }
    
    .promo-info p,
    .thank-you-info p {
        font-size: 14px;
    }
    
    .apetit-modal-content {
        padding: 25px 15px;
        margin: 5% auto;
        width: 98%;
    }
    
    .apetit-modal-content h2 {
        font-size: 20px;
    }
    
    .apetit-modal-content h3 {
        font-size: 16px;
    }
    
    .regulamento-section h4 {
        font-size: 16px;
    }
    
    .regulamento-section p {
        font-size: 14px;
    }
}

/* Animações de transição entre perguntas */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* ========================================
   TELA DE PRÊMIO GARANTIDO (v1.3.0)
   Inspirado no design amarelo vibrante
   ======================================== */

.prize-screen {
    background: linear-gradient(135deg, #FFD54F 0%, #FFA726 50%, #FF9800 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    position: relative;
    overflow: hidden;
}

/* Efeito de bolhas/splash de suco */
.prize-screen::before,
.prize-screen::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    animation: float 6s infinite ease-in-out;
}

.prize-screen::before {
    width: 300px;
    height: 300px;
    top: -100px;
    right: -100px;
    animation-delay: 0s;
}

.prize-screen::after {
    width: 200px;
    height: 200px;
    bottom: -50px;
    left: -50px;
    animation-delay: 3s;
}

@keyframes float {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-20px) scale(1.05); }
}

.prize-container {
    background: white;
    border-radius: 30px;
    padding: 50px 40px;
    max-width: 600px;
    width: 100%;
    box-shadow: 
        0 20px 60px rgba(0,0,0,0.15),
        0 0 0 1px rgba(255,255,255,0.3);
    position: relative;
    z-index: 1;
    text-align: center;
    animation: slideUp 0.6s ease-out;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Animação de Celebração */
.prize-animation {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-bottom: 30px;
    font-size: 60px;
    animation: bounce 1s ease-in-out infinite;
}

.emoji-celebration {
    animation: rotate 2s linear infinite;
}

.emoji-juice {
    font-size: 80px;
    animation: pulse 1.5s ease-in-out infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

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

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

/* Título Principal */
.prize-title {
    font-size: 48px;
    font-weight: 900;
    color: #FF6F00;
    margin: 0 0 30px 0;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
    letter-spacing: 2px;
}

/* Box do Prêmio */
.prize-box {
    background: linear-gradient(135deg, #FFA726 0%, #FF9800 100%);
    padding: 40px 30px;
    border-radius: 20px;
    margin: 0 0 40px 0;
    box-shadow: 0 10px 30px rgba(255,152,0,0.3);
    border: 4px solid #FFD54F;
    position: relative;
    overflow: hidden;
}

.prize-box::before {
    content: '✨';
    position: absolute;
    top: 10px;
    left: 10px;
    font-size: 30px;
    animation: twinkle 2s infinite;
}

.prize-box::after {
    content: '✨';
    position: absolute;
    bottom: 10px;
    right: 10px;
    font-size: 30px;
    animation: twinkle 2s infinite 1s;
}

@keyframes twinkle {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.8); }
}

.prize-text-top {
    font-size: 20px;
    font-weight: 700;
    color: white;
    letter-spacing: 3px;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.prize-text-main {
    font-size: 72px;
    font-weight: 900;
    color: white;
    line-height: 1;
    margin: 10px 0;
    text-shadow: 
        3px 3px 0 #FF6F00,
        6px 6px 10px rgba(0,0,0,0.3);
    letter-spacing: 5px;
}

.prize-text-subtitle {
    font-size: 24px;
    font-weight: 600;
    color: #FFF3E0;
    margin-top: 10px;
    font-style: italic;
}

/* Instruções */
.prize-instructions {
    background: #F5F5F5;
    padding: 30px 25px;
    border-radius: 15px;
    margin-bottom: 30px;
    text-align: left;
}

.instruction-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #E0E0E0;
}

.instruction-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.instruction-icon {
    font-size: 30px;
    flex-shrink: 0;
}

.instruction-item p {
    margin: 0;
    font-size: 16px;
    line-height: 1.6;
    color: #333;
}

.instruction-item strong {
    color: #FF6F00;
}

/* Badge de Confirmação */
.confirmation-badge {
    background: linear-gradient(135deg, #3D6E3C 0%, #2E5C2D 100%);
    color: white;
    padding: 20px;
    border-radius: 15px;
    margin-bottom: 30px;
    box-shadow: 0 5px 20px rgba(61,110,60,0.3);
}

.badge-number {
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 5px 0;
}

.badge-date {
    font-size: 14px;
    opacity: 0.9;
    margin: 0;
}

/* Mensagem de Agradecimento */
.thank-you-message {
    padding: 20px;
    margin-bottom: 30px;
}

.thank-you-message p:first-child {
    font-size: 20px;
    font-weight: 700;
    color: #3D6E3C;
    margin: 0 0 10px 0;
}

.small-text {
    font-size: 14px;
    color: #666;
    margin: 0;
}

/* Social Links na tela de prêmio */
.social-links-prize {
    padding-top: 30px;
    border-top: 2px dashed #E0E0E0;
}

.social-title {
    font-size: 16px;
    font-weight: 600;
    color: #666;
    margin: 0 0 15px 0;
}

.social-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.social-btn-prize {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.social-btn-prize span {
    font-size: 18px;
}

.social-btn-prize.instagram {
    background: linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%);
    color: white;
}

.social-btn-prize.facebook {
    background: #1877F2;
    color: white;
}

.social-btn-prize:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

/* Responsivo */
@media (max-width: 768px) {
    .prize-container {
        padding: 40px 25px;
        border-radius: 20px;
    }
    
    .prize-title {
        font-size: 36px;
    }
    
    .prize-animation {
        font-size: 50px;
        gap: 20px;
    }
    
    .emoji-juice {
        font-size: 60px;
    }
    
    .prize-text-main {
        font-size: 56px;
    }
    
    .prize-text-top {
        font-size: 16px;
    }
    
    .prize-text-subtitle {
        font-size: 18px;
    }
    
    .instruction-item p {
        font-size: 14px;
    }
    
    .social-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    
    .social-btn-prize {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .prize-screen {
        padding: 20px 15px;
    }
    
    .prize-container {
        padding: 30px 20px;
    }
    
    .prize-title {
        font-size: 28px;
        margin-bottom: 20px;
    }
    
    .prize-animation {
        font-size: 40px;
    }
    
    .emoji-juice {
        font-size: 50px;
    }
    
    .prize-box {
        padding: 30px 20px;
    }
    
    .prize-text-main {
        font-size: 48px;
    }
    
    .prize-instructions {
        padding: 20px 15px;
    }
    
    .instruction-icon {
        font-size: 24px;
    }
}
