        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            font-size: 16px;
        }

        body {
            font-family: 'Inter', sans-serif;
            min-height: 100vh;
            display: flex;
            justify-content: center;
            align-items: center;
            background: linear-gradient(135deg, #f5efe6 0%, #e8d9c5 100%);
            color: #2c1810;
            padding: 1rem;
            position: relative;
            overflow-x: hidden;
            width: 100%;
        }

        body::before {
            content: '';
            position: fixed;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: min(80vw, 800px);
            height: min(80vh, 800px);
            background-image: url('../assets/icons/logo1.png');
            background-size: contain;
            background-position: center;
            background-repeat: no-repeat;
            opacity: 0.05;
            pointer-events: none;
            z-index: 0;
            animation: floatLogo 20s ease-in-out infinite;
        }

        @keyframes floatLogo {
            0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.05; }
            50% { transform: translate(-50%, -50%) scale(1.05); opacity: 0.08; }
        }

        .wrapper {
            width: 100%;
            max-width: min(600px, 100%);
            position: relative;
            z-index: 10;
            animation: fadeIn 0.8s ease;
        }

        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(30px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .btn-voltar {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            margin-bottom: 1rem;
            text-decoration: none;
            color: #8B5A2B;
            font-weight: 600;
            font-family: 'Cinzel', serif;
            padding: 0.7rem 1.2rem;
            background: white;
            border-radius: 50px;
            box-shadow: 0 5px 15px rgba(139, 90, 43, 0.1);
            transition: all 0.3s;
            border: 1px solid rgba(139, 90, 43, 0.2);
            font-size: clamp(0.9rem, 2.5vw, 1rem);
        }

        .btn-voltar:hover {
            transform: translateX(-5px);
            background: linear-gradient(135deg, #8B5A2B, #C19A6B);
            color: white;
        }

        .total-promessas {
            position: fixed;
            top: clamp(1rem, 3vw, 2rem);
            right: clamp(1rem, 3vw, 2rem);
            background: white;
            padding: 0.8rem 1.5rem;
            border-radius: 60px;
            box-shadow: 0 10px 30px rgba(139, 90, 43, 0.15);
            border: 1px solid rgba(139, 90, 43, 0.2);
            z-index: 100;
            backdrop-filter: blur(5px);
            background: rgba(255, 255, 255, 0.95);
            animation: slideIn 0.5s ease;
            font-family: 'Cinzel', serif;
            text-align: center;
        }

        @keyframes slideIn {
            from { transform: translateX(100px); opacity: 0; }
            to { transform: translateX(0); opacity: 1; }
        }

        .total-promessas span {
            font-size: clamp(0.8rem, 2vw, 0.9rem);
            color: #8B5A2B;
            display: block;
            margin-bottom: 0.2rem;
        }

        .total-promessas strong {
            font-size: clamp(1.2rem, 4vw, 1.8rem);
            background: linear-gradient(135deg, #8B5A2B, #C19A6B);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .container {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(20px);
            padding: clamp(1.5rem, 5vw, 3rem);
            border-radius: clamp(20px, 5vw, 50px);
            box-shadow: 0 30px 60px rgba(139, 90, 43, 0.15);
            border: 1px solid rgba(139, 90, 43, 0.2);
            position: relative;
            overflow: hidden;
            width: 100%;
        }

        .container::before {
            content: '✡';
            position: absolute;
            bottom: -20px;
            right: -20px;
            font-size: min(8rem, 20vw);
            color: rgba(139, 90, 43, 0.03);
            transform: rotate(15deg);
            pointer-events: none;
        }

        .container::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(135deg, #8B5A2B, #C19A6B);
        }

        h1 {
            font-family: 'Cinzel', serif;
            font-size: clamp(1.5rem, 5vw, 2.5rem);
            margin-bottom: 0.5rem;
            color: #2c1810;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            flex-wrap: wrap;
            justify-content: center;
        }

        h1 i {
            color: #8B5A2B;
            font-size: clamp(1.2rem, 4vw, 2rem);
        }

        .subtitulo {
            font-family: 'Cormorant Garamond', serif;
            font-size: clamp(1rem, 3vw, 1.2rem);
            margin-bottom: 2rem;
            color: #5c4e3d;
            font-style: italic;
            border-left: 3px solid #8B5A2B;
            padding-left: 1rem;
            text-align: left;
        }

        .form-group {
            margin-bottom: 1.5rem;
        }

        label {
            display: block;
            font-family: 'Cinzel', serif;
            font-size: clamp(0.8rem, 2.5vw, 0.9rem);
            color: #8B5A2B;
            margin-bottom: 0.5rem;
            text-align: left;
        }

        select {
            width: 100%;
            padding: clamp(0.8rem, 3vw, 1.2rem);
            border: 2px solid rgba(139, 90, 43, 0.1);
            border-radius: 30px;
            font-size: clamp(0.9rem, 2.5vw, 1rem);
            outline: none;
            transition: all 0.3s;
            background: white;
            font-family: 'Cormorant Garamond', serif;
            cursor: pointer;
            appearance: none;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%238B5A2B' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
            background-repeat: no-repeat;
            background-position: right 1rem center;
            background-size: 1rem;
        }

        select:focus {
            border-color: #8B5A2B;
            box-shadow: 0 10px 20px rgba(139, 90, 43, 0.1);
        }

        .btn-acao {
            width: 100%;
            padding: clamp(0.8rem, 3vw, 1.2rem);
            border: none;
            border-radius: 50px;
            background: linear-gradient(135deg, #8B5A2B, #C19A6B);
            color: white;
            font-family: 'Cinzel', serif;
            font-size: clamp(1rem, 3vw, 1.2rem);
            font-weight: 600;
            cursor: pointer;
            transition: all 0.4s;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.8rem;
            box-shadow: 0 10px 25px rgba(139, 90, 43, 0.3);
        }

        .btn-acao:hover:not(:disabled) {
            transform: translateY(-3px);
            box-shadow: 0 20px 40px rgba(139, 90, 43, 0.4);
        }

        .btn-acao:disabled {
            opacity: 0.7;
            cursor: not-allowed;
        }

        .loading {
            margin-top: 1.5rem;
            padding: 1rem;
            display: none;
            font-family: 'Cinzel', serif;
            color: #8B5A2B;
            text-align: center;
            animation: pulse 1.5s infinite;
        }

        @keyframes pulse {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.5; }
        }

        .versiculo {
            margin-top: 1.5rem;
            padding: clamp(1rem, 3vw, 2rem);
            background: linear-gradient(135deg, rgba(139, 90, 43, 0.05), rgba(193, 154, 107, 0.05));
            border-radius: 30px;
            display: none;
            border: 2px solid rgba(139, 90, 43, 0.2);
            position: relative;
            animation: fadeIn 0.6s ease;
        }

        .versiculo strong {
            display: block;
            font-family: 'Cinzel', serif;
            font-size: clamp(1.2rem, 4vw, 1.8rem);
            color: #8B5A2B;
            margin-bottom: 0.8rem;
            line-height: 1.4;
            text-align: center;
        }

        .mensagem {
            font-family: 'Cormorant Garamond', serif;
            font-size: clamp(1rem, 2.5vw, 1.2rem);
            line-height: 1.6;
            color: #2c1810;
            margin-bottom: 1rem;
            text-align: center;
            font-style: italic;
        }

        .share-buttons {
            display: flex;
            gap: 0.8rem;
            margin-top: 1rem;
            flex-wrap: wrap;
            justify-content: center;
        }

        .share-buttons button {
            flex: 1;
            min-width: 140px;
            padding: 0.8rem 1.2rem;
            border: none;
            border-radius: 30px;
            font-family: 'Cinzel', serif;
            font-size: clamp(0.8rem, 2.5vw, 0.9rem);
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
        }

        .share-buttons button:first-child {
            background: white;
            color: #8B5A2B;
            border: 2px solid #8B5A2B;
        }

        .share-buttons button:first-child:hover {
            background: #8B5A2B;
            color: white;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(139, 90, 43, 0.2);
        }

        .share-buttons button:last-child {
            background: linear-gradient(135deg, #25D366, #128C7E);
            color: white;
        }

        .share-buttons button:last-child:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
        }

        .share-buttons button i {
            font-size: 1rem;
        }

        .shake {
            animation: shake 0.5s ease-in-out;
        }

        @keyframes shake {
            0%, 100% { transform: translateX(0); }
            25% { transform: translateX(-5px); }
            75% { transform: translateX(5px); }
        }

        .fade-in {
            animation: fadeInContent 0.6s ease;
        }

        @keyframes fadeInContent {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .toast {
            position: fixed;
            bottom: 2rem;
            left: 50%;
            transform: translateX(-50%);
            background: linear-gradient(135deg, #8B5A2B, #C19A6B);
            color: white;
            padding: 0.8rem 2rem;
            border-radius: 50px;
            font-family: 'Cinzel', serif;
            font-size: clamp(0.8rem, 2.5vw, 0.9rem);
            box-shadow: 0 15px 30px rgba(139, 90, 43, 0.3);
            z-index: 3000;
            animation: toastIn 0.3s ease;
            max-width: 90%;
            text-align: center;
        }

        @keyframes toastIn {
            from { transform: translateX(-50%) translateY(100px); opacity: 0; }
            to { transform: translateX(-50%) translateY(0); opacity: 1; }
        }

        .versiculo-rodape {
            text-align: center;
            margin-top: 1.5rem;
            font-family: 'Cormorant Garamond', serif;
            font-size: clamp(0.8rem, 2.5vw, 0.9rem);
            color: #5c4e3d;
            font-style: italic;
        }

        .versiculo-rodape strong {
            font-family: 'Cinzel', serif;
            color: #8B5A2B;
            font-style: normal;
        }

        /* Responsivo */
        @media (max-width: 768px) {
            .total-promessas {
                position: static;
                margin-bottom: 1rem;
                width: 100%;
                max-width: 300px;
                margin-left: auto;
                margin-right: auto;
            }

            .wrapper {
                margin-top: 0;
            }
            
            .share-buttons {
                flex-direction: column;
                align-items: stretch;
            }
            
            .share-buttons button {
                width: 100%;
            }
        }

        @media (max-width: 480px) {
            body {
                padding: 0.8rem;
            }
            
            .btn-voltar {
                width: 100%;
                justify-content: center;
            }
            
            h1 {
                justify-content: center;
                font-size: 1.3rem;
            }
        }

        @media (orientation: landscape) and (max-height: 600px) {
            body {
                align-items: flex-start;
                padding: 2rem 1rem;
            }
        }